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. "gpt_api.Core/1.0.0": {
  2017. "type": "project",
  2018. "framework": ".NETCoreApp,Version=v7.0",
  2019. "dependencies": {
  2020. "Furion.Extras.Authentication.JwtBearer": "4.8.7.36",
  2021. "Furion.Extras.ObjectMapper.Mapster": "4.8.7.36",
  2022. "Furion.Pure": "4.8.7.36",
  2023. "Namotion.Reflection": "2.1.1",
  2024. "SqlSugarCore": "5.1.4.65"
  2025. },
  2026. "compile": {
  2027. "bin/placeholder/gpt_api.Core.dll": {}
  2028. },
  2029. "runtime": {
  2030. "bin/placeholder/gpt_api.Core.dll": {}
  2031. }
  2032. }
  2033. }
  2034. },
  2035. "libraries": {
  2036. "Ben.Demystifier/0.4.1": {
  2037. "sha512": "axFeEMfmEORy3ipAzOXG/lE+KcNptRbei3F0C4kQCdeiQtW+qJW90K5iIovITGrdLt8AjhNCwk5qLSX9/rFpoA==",
  2038. "type": "package",
  2039. "path": "ben.demystifier/0.4.1",
  2040. "files": [
  2041. ".nupkg.metadata",
  2042. ".signature.p7s",
  2043. "ben.demystifier.0.4.1.nupkg.sha512",
  2044. "ben.demystifier.nuspec",
  2045. "icon.png",
  2046. "lib/net45/Ben.Demystifier.dll",
  2047. "lib/netstandard2.0/Ben.Demystifier.dll",
  2048. "lib/netstandard2.1/Ben.Demystifier.dll",
  2049. "readme.md"
  2050. ]
  2051. },
  2052. "Furion.Extras.Authentication.JwtBearer/4.8.7.36": {
  2053. "sha512": "Z1aC8hICg/RUFgXg+S2XQeCBeW7c3uaIrnm+ojddD9YqXVjPoRE+WAVtKZiR9mHX33RI6u/W2w2SNFC9hZAW5g==",
  2054. "type": "package",
  2055. "path": "furion.extras.authentication.jwtbearer/4.8.7.36",
  2056. "files": [
  2057. ".nupkg.metadata",
  2058. ".signature.p7s",
  2059. "README.md",
  2060. "furion.extras.authentication.jwtbearer.4.8.7.36.nupkg.sha512",
  2061. "furion.extras.authentication.jwtbearer.nuspec",
  2062. "icon.png",
  2063. "lib/net5.0/Furion.Extras.Authentication.JwtBearer.dll",
  2064. "lib/net5.0/Furion.Extras.Authentication.JwtBearer.xml",
  2065. "lib/net6.0/Furion.Extras.Authentication.JwtBearer.dll",
  2066. "lib/net6.0/Furion.Extras.Authentication.JwtBearer.xml",
  2067. "lib/net7.0/Furion.Extras.Authentication.JwtBearer.dll",
  2068. "lib/net7.0/Furion.Extras.Authentication.JwtBearer.xml",
  2069. "lib/net8.0/Furion.Extras.Authentication.JwtBearer.dll",
  2070. "lib/net8.0/Furion.Extras.Authentication.JwtBearer.xml"
  2071. ]
  2072. },
  2073. "Furion.Extras.ObjectMapper.Mapster/4.8.7.36": {
  2074. "sha512": "oaQmJ/oPz7jbdI3xIWb7cql1WEkblSOrYSER3znEbnazB9UJRX2OzwnZD6xbCVNXfzAXEir8krlyJmSm/LCgEg==",
  2075. "type": "package",
  2076. "path": "furion.extras.objectmapper.mapster/4.8.7.36",
  2077. "files": [
  2078. ".nupkg.metadata",
  2079. ".signature.p7s",
  2080. "README.md",
  2081. "furion.extras.objectmapper.mapster.4.8.7.36.nupkg.sha512",
  2082. "furion.extras.objectmapper.mapster.nuspec",
  2083. "icon.png",
  2084. "lib/net5.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2085. "lib/net5.0/Furion.Extras.ObjectMapper.Mapster.xml",
  2086. "lib/net6.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2087. "lib/net6.0/Furion.Extras.ObjectMapper.Mapster.xml",
  2088. "lib/net7.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2089. "lib/net7.0/Furion.Extras.ObjectMapper.Mapster.xml",
  2090. "lib/net8.0/Furion.Extras.ObjectMapper.Mapster.dll",
  2091. "lib/net8.0/Furion.Extras.ObjectMapper.Mapster.xml"
  2092. ]
  2093. },
  2094. "Furion.Pure/4.8.7.36": {
  2095. "sha512": "JsWEdVtsxfB+z9UJA0k1R1Yx3Sn7aYvBgLGwy6Dxb7iQrPqHzioLsrqKjDntL3KRVwhiyfOxS1LzN4BvFKKCvw==",
  2096. "type": "package",
  2097. "path": "furion.pure/4.8.7.36",
  2098. "files": [
  2099. ".nupkg.metadata",
  2100. ".signature.p7s",
  2101. "README.md",
  2102. "furion.pure.4.8.7.36.nupkg.sha512",
  2103. "furion.pure.nuspec",
  2104. "icon.png",
  2105. "lib/net5.0/Furion.Pure.dll",
  2106. "lib/net5.0/Furion.Pure.xml",
  2107. "lib/net6.0/Furion.Pure.dll",
  2108. "lib/net6.0/Furion.Pure.xml",
  2109. "lib/net7.0/Furion.Pure.dll",
  2110. "lib/net7.0/Furion.Pure.xml",
  2111. "lib/net8.0/Furion.Pure.dll",
  2112. "lib/net8.0/Furion.Pure.xml"
  2113. ]
  2114. },
  2115. "Furion.Pure.Extras.DependencyModel.CodeAnalysis/4.8.7.36": {
  2116. "sha512": "W9ROD2uWaUy9wPsW4ip5wgcjKEmVlzhNNkm4/EnJ7vdov9nAzSzA59BZcGvmEEj0i5QFIJzxDWAVKsD4R+rGYw==",
  2117. "type": "package",
  2118. "path": "furion.pure.extras.dependencymodel.codeanalysis/4.8.7.36",
  2119. "files": [
  2120. ".nupkg.metadata",
  2121. ".signature.p7s",
  2122. "README.md",
  2123. "furion.pure.extras.dependencymodel.codeanalysis.4.8.7.36.nupkg.sha512",
  2124. "furion.pure.extras.dependencymodel.codeanalysis.nuspec",
  2125. "icon.png",
  2126. "lib/net5.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2127. "lib/net5.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml",
  2128. "lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2129. "lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml",
  2130. "lib/net7.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2131. "lib/net7.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml",
  2132. "lib/net8.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
  2133. "lib/net8.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml"
  2134. ]
  2135. },
  2136. "Mapster/7.3.0": {
  2137. "sha512": "NrCUX/rJa5PTyo6iW4AL5dZLU9PDNlYnrJOVjgdpo5OQM9EtWH2CMHnC5sSuJWC0d0b0SnmeRrIviEem6WxtuQ==",
  2138. "type": "package",
  2139. "path": "mapster/7.3.0",
  2140. "files": [
  2141. ".nupkg.metadata",
  2142. ".signature.p7s",
  2143. "icon.png",
  2144. "lib/netstandard1.3/Mapster.dll",
  2145. "lib/netstandard2.0/Mapster.dll",
  2146. "mapster.7.3.0.nupkg.sha512",
  2147. "mapster.nuspec"
  2148. ]
  2149. },
  2150. "Mapster.Core/1.2.0": {
  2151. "sha512": "TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==",
  2152. "type": "package",
  2153. "path": "mapster.core/1.2.0",
  2154. "files": [
  2155. ".nupkg.metadata",
  2156. ".signature.p7s",
  2157. "icon.png",
  2158. "lib/net40/Mapster.Core.dll",
  2159. "lib/net45/Mapster.Core.dll",
  2160. "lib/netstandard1.3/Mapster.Core.dll",
  2161. "lib/netstandard2.0/Mapster.Core.dll",
  2162. "mapster.core.1.2.0.nupkg.sha512",
  2163. "mapster.core.nuspec"
  2164. ]
  2165. },
  2166. "Mapster.DependencyInjection/1.0.0": {
  2167. "sha512": "nNSGrgu5GirZ8nmuFXHGct+GwXjmbAAb+UqBl3Bwx/vbkCOypuvOziC+wTaNEjz/OE6LMg8yMCZzOtl59Lxw9Q==",
  2168. "type": "package",
  2169. "path": "mapster.dependencyinjection/1.0.0",
  2170. "files": [
  2171. ".nupkg.metadata",
  2172. ".signature.p7s",
  2173. "icon.png",
  2174. "lib/net40/Mapster.DependencyInjection.dll",
  2175. "lib/net45/Mapster.DependencyInjection.dll",
  2176. "lib/netstandard1.3/Mapster.DependencyInjection.dll",
  2177. "lib/netstandard2.0/Mapster.DependencyInjection.dll",
  2178. "mapster.dependencyinjection.1.0.0.nupkg.sha512",
  2179. "mapster.dependencyinjection.nuspec"
  2180. ]
  2181. },
  2182. "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.4": {
  2183. "sha512": "yMCO9yU1kNQ5MomCnGDNsjPyIvnxHu4U7AfRkLmzZuzCeOGGA5XiehmpfzzqlyIs8wbSR/c6jbuLexedfKgjgA==",
  2184. "type": "package",
  2185. "path": "microsoft.aspnetcore.authentication.jwtbearer/7.0.4",
  2186. "files": [
  2187. ".nupkg.metadata",
  2188. ".signature.p7s",
  2189. "Icon.png",
  2190. "THIRD-PARTY-NOTICES.TXT",
  2191. "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  2192. "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  2193. "microsoft.aspnetcore.authentication.jwtbearer.7.0.4.nupkg.sha512",
  2194. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  2195. ]
  2196. },
  2197. "Microsoft.AspNetCore.JsonPatch/7.0.4": {
  2198. "sha512": "Ign6gpOinYLePR66lVRHhh3qY9sBiVwvp2P3kjYIi5yRd/60BC5kQb+NZWqaIz1/8BXnVqdRE2baEKDm5fU3gg==",
  2199. "type": "package",
  2200. "path": "microsoft.aspnetcore.jsonpatch/7.0.4",
  2201. "files": [
  2202. ".nupkg.metadata",
  2203. ".signature.p7s",
  2204. "Icon.png",
  2205. "THIRD-PARTY-NOTICES.TXT",
  2206. "lib/net462/Microsoft.AspNetCore.JsonPatch.dll",
  2207. "lib/net462/Microsoft.AspNetCore.JsonPatch.xml",
  2208. "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll",
  2209. "lib/net7.0/Microsoft.AspNetCore.JsonPatch.xml",
  2210. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  2211. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  2212. "microsoft.aspnetcore.jsonpatch.7.0.4.nupkg.sha512",
  2213. "microsoft.aspnetcore.jsonpatch.nuspec"
  2214. ]
  2215. },
  2216. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.4": {
  2217. "sha512": "o7gsUVT5HjBWBOeh8OaZSIoKBr5gCZdBfThivMr8Xh3IPGcQDO1cGHzBTaQQ/DoxhPnducXacCl9On5GFxcOxw==",
  2218. "type": "package",
  2219. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.4",
  2220. "files": [
  2221. ".nupkg.metadata",
  2222. ".signature.p7s",
  2223. "Icon.png",
  2224. "THIRD-PARTY-NOTICES.TXT",
  2225. "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  2226. "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  2227. "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.4.nupkg.sha512",
  2228. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  2229. ]
  2230. },
  2231. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": {
  2232. "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==",
  2233. "type": "package",
  2234. "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0",
  2235. "files": [
  2236. ".nupkg.metadata",
  2237. ".signature.p7s",
  2238. "Icon.png",
  2239. "THIRD-PARTY-NOTICES.TXT",
  2240. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  2241. "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512",
  2242. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  2243. ]
  2244. },
  2245. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/7.0.4": {
  2246. "sha512": "jMCy3GrhNCgXy2vzISIjye1o1N2WHpMTLMcRtBg3sXeZhK6N8rHA8bZUorQaGl/GX3GOkW/PsgISzCQjVA3WkQ==",
  2247. "type": "package",
  2248. "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/7.0.4",
  2249. "files": [
  2250. ".nupkg.metadata",
  2251. ".signature.p7s",
  2252. "Icon.png",
  2253. "THIRD-PARTY-NOTICES.TXT",
  2254. "build/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  2255. "buildTransitive/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  2256. "lib/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll",
  2257. "lib/net7.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml",
  2258. "microsoft.aspnetcore.mvc.razor.runtimecompilation.7.0.4.nupkg.sha512",
  2259. "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec"
  2260. ]
  2261. },
  2262. "Microsoft.AspNetCore.Razor.Language/6.0.15": {
  2263. "sha512": "AzJIbL5XPxfgFas691Yjm3r+NUyM633xAlA4uAzmcbtVmGReAzUjLJAZiAi/onBrX3s8aeKNrw7OuHvtmYGmHw==",
  2264. "type": "package",
  2265. "path": "microsoft.aspnetcore.razor.language/6.0.15",
  2266. "files": [
  2267. ".nupkg.metadata",
  2268. ".signature.p7s",
  2269. "Icon.png",
  2270. "THIRD-PARTY-NOTICES.TXT",
  2271. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  2272. "microsoft.aspnetcore.razor.language.6.0.15.nupkg.sha512",
  2273. "microsoft.aspnetcore.razor.language.nuspec"
  2274. ]
  2275. },
  2276. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  2277. "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
  2278. "type": "package",
  2279. "path": "microsoft.codeanalysis.analyzers/3.3.3",
  2280. "hasTools": true,
  2281. "files": [
  2282. ".nupkg.metadata",
  2283. ".signature.p7s",
  2284. "Icon.png",
  2285. "ThirdPartyNotices.rtf",
  2286. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  2287. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  2288. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2289. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2290. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2291. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2292. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2293. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2294. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2295. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2296. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2297. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2298. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2299. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2300. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2301. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  2302. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  2303. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2304. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2305. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2306. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2307. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2308. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2309. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2310. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2311. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2312. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2313. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2314. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2315. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2316. "build/Microsoft.CodeAnalysis.Analyzers.props",
  2317. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  2318. "build/config/analysislevel_2_9_8_all.editorconfig",
  2319. "build/config/analysislevel_2_9_8_default.editorconfig",
  2320. "build/config/analysislevel_2_9_8_minimum.editorconfig",
  2321. "build/config/analysislevel_2_9_8_none.editorconfig",
  2322. "build/config/analysislevel_2_9_8_recommended.editorconfig",
  2323. "build/config/analysislevel_3_3_all.editorconfig",
  2324. "build/config/analysislevel_3_3_default.editorconfig",
  2325. "build/config/analysislevel_3_3_minimum.editorconfig",
  2326. "build/config/analysislevel_3_3_none.editorconfig",
  2327. "build/config/analysislevel_3_3_recommended.editorconfig",
  2328. "build/config/analysislevel_3_all.editorconfig",
  2329. "build/config/analysislevel_3_default.editorconfig",
  2330. "build/config/analysislevel_3_minimum.editorconfig",
  2331. "build/config/analysislevel_3_none.editorconfig",
  2332. "build/config/analysislevel_3_recommended.editorconfig",
  2333. "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
  2334. "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
  2335. "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
  2336. "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
  2337. "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
  2338. "build/config/analysislevelcorrectness_3_3_all.editorconfig",
  2339. "build/config/analysislevelcorrectness_3_3_default.editorconfig",
  2340. "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
  2341. "build/config/analysislevelcorrectness_3_3_none.editorconfig",
  2342. "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
  2343. "build/config/analysislevelcorrectness_3_all.editorconfig",
  2344. "build/config/analysislevelcorrectness_3_default.editorconfig",
  2345. "build/config/analysislevelcorrectness_3_minimum.editorconfig",
  2346. "build/config/analysislevelcorrectness_3_none.editorconfig",
  2347. "build/config/analysislevelcorrectness_3_recommended.editorconfig",
  2348. "build/config/analysislevellibrary_2_9_8_all.editorconfig",
  2349. "build/config/analysislevellibrary_2_9_8_default.editorconfig",
  2350. "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
  2351. "build/config/analysislevellibrary_2_9_8_none.editorconfig",
  2352. "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
  2353. "build/config/analysislevellibrary_3_3_all.editorconfig",
  2354. "build/config/analysislevellibrary_3_3_default.editorconfig",
  2355. "build/config/analysislevellibrary_3_3_minimum.editorconfig",
  2356. "build/config/analysislevellibrary_3_3_none.editorconfig",
  2357. "build/config/analysislevellibrary_3_3_recommended.editorconfig",
  2358. "build/config/analysislevellibrary_3_all.editorconfig",
  2359. "build/config/analysislevellibrary_3_default.editorconfig",
  2360. "build/config/analysislevellibrary_3_minimum.editorconfig",
  2361. "build/config/analysislevellibrary_3_none.editorconfig",
  2362. "build/config/analysislevellibrary_3_recommended.editorconfig",
  2363. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
  2364. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
  2365. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
  2366. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
  2367. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
  2368. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
  2369. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
  2370. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
  2371. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
  2372. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
  2373. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
  2374. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
  2375. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
  2376. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
  2377. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
  2378. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
  2379. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
  2380. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
  2381. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
  2382. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
  2383. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
  2384. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
  2385. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
  2386. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
  2387. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
  2388. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
  2389. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
  2390. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
  2391. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
  2392. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
  2393. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
  2394. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
  2395. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
  2396. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
  2397. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
  2398. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
  2399. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
  2400. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
  2401. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
  2402. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
  2403. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
  2404. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
  2405. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
  2406. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
  2407. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
  2408. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
  2409. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
  2410. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
  2411. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
  2412. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
  2413. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
  2414. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
  2415. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
  2416. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
  2417. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
  2418. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
  2419. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
  2420. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
  2421. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
  2422. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
  2423. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
  2424. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
  2425. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
  2426. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
  2427. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
  2428. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
  2429. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
  2430. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
  2431. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
  2432. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
  2433. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
  2434. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
  2435. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
  2436. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
  2437. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
  2438. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
  2439. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
  2440. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
  2441. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
  2442. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
  2443. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
  2444. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
  2445. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
  2446. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
  2447. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
  2448. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
  2449. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
  2450. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
  2451. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
  2452. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
  2453. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
  2454. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
  2455. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
  2456. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
  2457. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
  2458. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
  2459. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
  2460. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
  2461. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
  2462. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
  2463. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
  2464. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
  2465. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
  2466. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
  2467. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
  2468. "documentation/Analyzer Configuration.md",
  2469. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  2470. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  2471. "editorconfig/AllRulesDefault/.editorconfig",
  2472. "editorconfig/AllRulesDisabled/.editorconfig",
  2473. "editorconfig/AllRulesEnabled/.editorconfig",
  2474. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  2475. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  2476. "editorconfig/DataflowRulesDefault/.editorconfig",
  2477. "editorconfig/DataflowRulesEnabled/.editorconfig",
  2478. "editorconfig/LibraryRulesDefault/.editorconfig",
  2479. "editorconfig/LibraryRulesEnabled/.editorconfig",
  2480. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  2481. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  2482. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  2483. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  2484. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  2485. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  2486. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  2487. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  2488. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  2489. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  2490. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  2491. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  2492. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  2493. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  2494. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  2495. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  2496. "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
  2497. "microsoft.codeanalysis.analyzers.nuspec",
  2498. "rulesets/AllRulesDefault.ruleset",
  2499. "rulesets/AllRulesDisabled.ruleset",
  2500. "rulesets/AllRulesEnabled.ruleset",
  2501. "rulesets/CorrectnessRulesDefault.ruleset",
  2502. "rulesets/CorrectnessRulesEnabled.ruleset",
  2503. "rulesets/DataflowRulesDefault.ruleset",
  2504. "rulesets/DataflowRulesEnabled.ruleset",
  2505. "rulesets/LibraryRulesDefault.ruleset",
  2506. "rulesets/LibraryRulesEnabled.ruleset",
  2507. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  2508. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  2509. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  2510. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  2511. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  2512. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  2513. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  2514. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  2515. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  2516. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  2517. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  2518. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  2519. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  2520. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  2521. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  2522. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  2523. "tools/install.ps1",
  2524. "tools/uninstall.ps1"
  2525. ]
  2526. },
  2527. "Microsoft.CodeAnalysis.Common/4.5.0": {
  2528. "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
  2529. "type": "package",
  2530. "path": "microsoft.codeanalysis.common/4.5.0",
  2531. "files": [
  2532. ".nupkg.metadata",
  2533. ".signature.p7s",
  2534. "Icon.png",
  2535. "ThirdPartyNotices.rtf",
  2536. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  2537. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  2538. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  2539. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  2540. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  2541. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  2542. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  2543. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  2544. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  2545. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  2546. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  2547. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2548. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  2549. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  2550. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2551. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2552. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  2553. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  2554. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  2555. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  2556. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  2557. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  2558. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  2559. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  2560. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  2561. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  2562. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  2563. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2564. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  2565. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  2566. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2567. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2568. "microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
  2569. "microsoft.codeanalysis.common.nuspec"
  2570. ]
  2571. },
  2572. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  2573. "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
  2574. "type": "package",
  2575. "path": "microsoft.codeanalysis.csharp/4.5.0",
  2576. "files": [
  2577. ".nupkg.metadata",
  2578. ".signature.p7s",
  2579. "Icon.png",
  2580. "ThirdPartyNotices.rtf",
  2581. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  2582. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  2583. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  2584. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2585. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2586. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2587. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2588. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2589. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2590. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2591. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2592. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2593. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2594. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2595. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2596. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2597. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2598. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2599. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2600. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2601. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2602. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2603. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2604. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2605. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2606. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2607. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2608. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2609. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2610. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2611. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2612. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2613. "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
  2614. "microsoft.codeanalysis.csharp.nuspec"
  2615. ]
  2616. },
  2617. "Microsoft.CodeAnalysis.Razor/6.0.0": {
  2618. "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==",
  2619. "type": "package",
  2620. "path": "microsoft.codeanalysis.razor/6.0.0",
  2621. "files": [
  2622. ".nupkg.metadata",
  2623. ".signature.p7s",
  2624. "Icon.png",
  2625. "THIRD-PARTY-NOTICES.TXT",
  2626. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  2627. "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512",
  2628. "microsoft.codeanalysis.razor.nuspec"
  2629. ]
  2630. },
  2631. "Microsoft.CSharp/4.7.0": {
  2632. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2633. "type": "package",
  2634. "path": "microsoft.csharp/4.7.0",
  2635. "files": [
  2636. ".nupkg.metadata",
  2637. ".signature.p7s",
  2638. "LICENSE.TXT",
  2639. "THIRD-PARTY-NOTICES.TXT",
  2640. "lib/MonoAndroid10/_._",
  2641. "lib/MonoTouch10/_._",
  2642. "lib/net45/_._",
  2643. "lib/netcore50/Microsoft.CSharp.dll",
  2644. "lib/netcoreapp2.0/_._",
  2645. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2646. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2647. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2648. "lib/portable-net45+win8+wp8+wpa81/_._",
  2649. "lib/uap10.0.16299/_._",
  2650. "lib/win8/_._",
  2651. "lib/wp80/_._",
  2652. "lib/wpa81/_._",
  2653. "lib/xamarinios10/_._",
  2654. "lib/xamarinmac20/_._",
  2655. "lib/xamarintvos10/_._",
  2656. "lib/xamarinwatchos10/_._",
  2657. "microsoft.csharp.4.7.0.nupkg.sha512",
  2658. "microsoft.csharp.nuspec",
  2659. "ref/MonoAndroid10/_._",
  2660. "ref/MonoTouch10/_._",
  2661. "ref/net45/_._",
  2662. "ref/netcore50/Microsoft.CSharp.dll",
  2663. "ref/netcore50/Microsoft.CSharp.xml",
  2664. "ref/netcore50/de/Microsoft.CSharp.xml",
  2665. "ref/netcore50/es/Microsoft.CSharp.xml",
  2666. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2667. "ref/netcore50/it/Microsoft.CSharp.xml",
  2668. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2669. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2670. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2671. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2672. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2673. "ref/netcoreapp2.0/_._",
  2674. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2675. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2676. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2677. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2678. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2679. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2680. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2681. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2682. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2683. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2684. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2685. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2686. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2687. "ref/portable-net45+win8+wp8+wpa81/_._",
  2688. "ref/uap10.0.16299/_._",
  2689. "ref/win8/_._",
  2690. "ref/wp80/_._",
  2691. "ref/wpa81/_._",
  2692. "ref/xamarinios10/_._",
  2693. "ref/xamarinmac20/_._",
  2694. "ref/xamarintvos10/_._",
  2695. "ref/xamarinwatchos10/_._",
  2696. "useSharedDesignerContext.txt",
  2697. "version.txt"
  2698. ]
  2699. },
  2700. "Microsoft.Data.SqlClient/2.1.4": {
  2701. "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  2702. "type": "package",
  2703. "path": "microsoft.data.sqlclient/2.1.4",
  2704. "files": [
  2705. ".nupkg.metadata",
  2706. ".signature.p7s",
  2707. "dotnet.png",
  2708. "lib/net46/Microsoft.Data.SqlClient.dll",
  2709. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2710. "lib/net46/Microsoft.Data.SqlClient.xml",
  2711. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2712. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2713. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2714. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2715. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2716. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2717. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2718. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2719. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2720. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2721. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2722. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2723. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2724. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2725. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2726. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2727. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2728. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2729. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2730. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2731. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2732. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2733. "microsoft.data.sqlclient.2.1.4.nupkg.sha512",
  2734. "microsoft.data.sqlclient.nuspec",
  2735. "ref/net46/Microsoft.Data.SqlClient.dll",
  2736. "ref/net46/Microsoft.Data.SqlClient.pdb",
  2737. "ref/net46/Microsoft.Data.SqlClient.xml",
  2738. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2739. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2740. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2741. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2742. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2743. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2744. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2745. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2746. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2747. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2748. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2749. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2750. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2751. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2752. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2753. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2754. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2755. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2756. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2757. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2758. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  2759. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  2760. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2761. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2762. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2763. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2764. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2765. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2766. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2767. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2768. ]
  2769. },
  2770. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2771. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2772. "type": "package",
  2773. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2774. "files": [
  2775. ".nupkg.metadata",
  2776. ".signature.p7s",
  2777. "LICENSE.txt",
  2778. "dotnet.png",
  2779. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  2780. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2781. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2782. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2783. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2784. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2785. ]
  2786. },
  2787. "Microsoft.Data.Sqlite/5.0.5": {
  2788. "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  2789. "type": "package",
  2790. "path": "microsoft.data.sqlite/5.0.5",
  2791. "files": [
  2792. ".nupkg.metadata",
  2793. ".signature.p7s",
  2794. "Icon.png",
  2795. "lib/netstandard2.0/_._",
  2796. "microsoft.data.sqlite.5.0.5.nupkg.sha512",
  2797. "microsoft.data.sqlite.nuspec"
  2798. ]
  2799. },
  2800. "Microsoft.Data.Sqlite.Core/5.0.5": {
  2801. "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  2802. "type": "package",
  2803. "path": "microsoft.data.sqlite.core/5.0.5",
  2804. "files": [
  2805. ".nupkg.metadata",
  2806. ".signature.p7s",
  2807. "Icon.png",
  2808. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  2809. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  2810. "microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
  2811. "microsoft.data.sqlite.core.nuspec"
  2812. ]
  2813. },
  2814. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  2815. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  2816. "type": "package",
  2817. "path": "microsoft.extensions.apidescription.server/6.0.5",
  2818. "hasTools": true,
  2819. "files": [
  2820. ".nupkg.metadata",
  2821. ".signature.p7s",
  2822. "Icon.png",
  2823. "build/Microsoft.Extensions.ApiDescription.Server.props",
  2824. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  2825. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  2826. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  2827. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  2828. "microsoft.extensions.apidescription.server.nuspec",
  2829. "tools/Newtonsoft.Json.dll",
  2830. "tools/dotnet-getdocument.deps.json",
  2831. "tools/dotnet-getdocument.dll",
  2832. "tools/dotnet-getdocument.runtimeconfig.json",
  2833. "tools/net461-x86/GetDocument.Insider.exe",
  2834. "tools/net461-x86/GetDocument.Insider.exe.config",
  2835. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  2836. "tools/net461-x86/System.AppContext.dll",
  2837. "tools/net461-x86/System.Buffers.dll",
  2838. "tools/net461-x86/System.Collections.Concurrent.dll",
  2839. "tools/net461-x86/System.Collections.NonGeneric.dll",
  2840. "tools/net461-x86/System.Collections.Specialized.dll",
  2841. "tools/net461-x86/System.Collections.dll",
  2842. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  2843. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  2844. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  2845. "tools/net461-x86/System.ComponentModel.dll",
  2846. "tools/net461-x86/System.Console.dll",
  2847. "tools/net461-x86/System.Data.Common.dll",
  2848. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  2849. "tools/net461-x86/System.Diagnostics.Debug.dll",
  2850. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  2851. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  2852. "tools/net461-x86/System.Diagnostics.Process.dll",
  2853. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  2854. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  2855. "tools/net461-x86/System.Diagnostics.Tools.dll",
  2856. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  2857. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  2858. "tools/net461-x86/System.Drawing.Primitives.dll",
  2859. "tools/net461-x86/System.Dynamic.Runtime.dll",
  2860. "tools/net461-x86/System.Globalization.Calendars.dll",
  2861. "tools/net461-x86/System.Globalization.Extensions.dll",
  2862. "tools/net461-x86/System.Globalization.dll",
  2863. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  2864. "tools/net461-x86/System.IO.Compression.dll",
  2865. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  2866. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  2867. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  2868. "tools/net461-x86/System.IO.FileSystem.dll",
  2869. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  2870. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  2871. "tools/net461-x86/System.IO.Pipes.dll",
  2872. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  2873. "tools/net461-x86/System.IO.dll",
  2874. "tools/net461-x86/System.Linq.Expressions.dll",
  2875. "tools/net461-x86/System.Linq.Parallel.dll",
  2876. "tools/net461-x86/System.Linq.Queryable.dll",
  2877. "tools/net461-x86/System.Linq.dll",
  2878. "tools/net461-x86/System.Memory.dll",
  2879. "tools/net461-x86/System.Net.Http.dll",
  2880. "tools/net461-x86/System.Net.NameResolution.dll",
  2881. "tools/net461-x86/System.Net.NetworkInformation.dll",
  2882. "tools/net461-x86/System.Net.Ping.dll",
  2883. "tools/net461-x86/System.Net.Primitives.dll",
  2884. "tools/net461-x86/System.Net.Requests.dll",
  2885. "tools/net461-x86/System.Net.Security.dll",
  2886. "tools/net461-x86/System.Net.Sockets.dll",
  2887. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  2888. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  2889. "tools/net461-x86/System.Net.WebSockets.dll",
  2890. "tools/net461-x86/System.Numerics.Vectors.dll",
  2891. "tools/net461-x86/System.ObjectModel.dll",
  2892. "tools/net461-x86/System.Reflection.Extensions.dll",
  2893. "tools/net461-x86/System.Reflection.Primitives.dll",
  2894. "tools/net461-x86/System.Reflection.dll",
  2895. "tools/net461-x86/System.Resources.Reader.dll",
  2896. "tools/net461-x86/System.Resources.ResourceManager.dll",
  2897. "tools/net461-x86/System.Resources.Writer.dll",
  2898. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  2899. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  2900. "tools/net461-x86/System.Runtime.Extensions.dll",
  2901. "tools/net461-x86/System.Runtime.Handles.dll",
  2902. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  2903. "tools/net461-x86/System.Runtime.InteropServices.dll",
  2904. "tools/net461-x86/System.Runtime.Numerics.dll",
  2905. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  2906. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  2907. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  2908. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  2909. "tools/net461-x86/System.Runtime.dll",
  2910. "tools/net461-x86/System.Security.Claims.dll",
  2911. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  2912. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  2913. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  2914. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  2915. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  2916. "tools/net461-x86/System.Security.Principal.dll",
  2917. "tools/net461-x86/System.Security.SecureString.dll",
  2918. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  2919. "tools/net461-x86/System.Text.Encoding.dll",
  2920. "tools/net461-x86/System.Text.RegularExpressions.dll",
  2921. "tools/net461-x86/System.Threading.Overlapped.dll",
  2922. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  2923. "tools/net461-x86/System.Threading.Tasks.dll",
  2924. "tools/net461-x86/System.Threading.Thread.dll",
  2925. "tools/net461-x86/System.Threading.ThreadPool.dll",
  2926. "tools/net461-x86/System.Threading.Timer.dll",
  2927. "tools/net461-x86/System.Threading.dll",
  2928. "tools/net461-x86/System.ValueTuple.dll",
  2929. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  2930. "tools/net461-x86/System.Xml.XDocument.dll",
  2931. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  2932. "tools/net461-x86/System.Xml.XPath.dll",
  2933. "tools/net461-x86/System.Xml.XmlDocument.dll",
  2934. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  2935. "tools/net461-x86/netstandard.dll",
  2936. "tools/net461/GetDocument.Insider.exe",
  2937. "tools/net461/GetDocument.Insider.exe.config",
  2938. "tools/net461/Microsoft.Win32.Primitives.dll",
  2939. "tools/net461/System.AppContext.dll",
  2940. "tools/net461/System.Buffers.dll",
  2941. "tools/net461/System.Collections.Concurrent.dll",
  2942. "tools/net461/System.Collections.NonGeneric.dll",
  2943. "tools/net461/System.Collections.Specialized.dll",
  2944. "tools/net461/System.Collections.dll",
  2945. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  2946. "tools/net461/System.ComponentModel.Primitives.dll",
  2947. "tools/net461/System.ComponentModel.TypeConverter.dll",
  2948. "tools/net461/System.ComponentModel.dll",
  2949. "tools/net461/System.Console.dll",
  2950. "tools/net461/System.Data.Common.dll",
  2951. "tools/net461/System.Diagnostics.Contracts.dll",
  2952. "tools/net461/System.Diagnostics.Debug.dll",
  2953. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  2954. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  2955. "tools/net461/System.Diagnostics.Process.dll",
  2956. "tools/net461/System.Diagnostics.StackTrace.dll",
  2957. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  2958. "tools/net461/System.Diagnostics.Tools.dll",
  2959. "tools/net461/System.Diagnostics.TraceSource.dll",
  2960. "tools/net461/System.Diagnostics.Tracing.dll",
  2961. "tools/net461/System.Drawing.Primitives.dll",
  2962. "tools/net461/System.Dynamic.Runtime.dll",
  2963. "tools/net461/System.Globalization.Calendars.dll",
  2964. "tools/net461/System.Globalization.Extensions.dll",
  2965. "tools/net461/System.Globalization.dll",
  2966. "tools/net461/System.IO.Compression.ZipFile.dll",
  2967. "tools/net461/System.IO.Compression.dll",
  2968. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  2969. "tools/net461/System.IO.FileSystem.Primitives.dll",
  2970. "tools/net461/System.IO.FileSystem.Watcher.dll",
  2971. "tools/net461/System.IO.FileSystem.dll",
  2972. "tools/net461/System.IO.IsolatedStorage.dll",
  2973. "tools/net461/System.IO.MemoryMappedFiles.dll",
  2974. "tools/net461/System.IO.Pipes.dll",
  2975. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  2976. "tools/net461/System.IO.dll",
  2977. "tools/net461/System.Linq.Expressions.dll",
  2978. "tools/net461/System.Linq.Parallel.dll",
  2979. "tools/net461/System.Linq.Queryable.dll",
  2980. "tools/net461/System.Linq.dll",
  2981. "tools/net461/System.Memory.dll",
  2982. "tools/net461/System.Net.Http.dll",
  2983. "tools/net461/System.Net.NameResolution.dll",
  2984. "tools/net461/System.Net.NetworkInformation.dll",
  2985. "tools/net461/System.Net.Ping.dll",
  2986. "tools/net461/System.Net.Primitives.dll",
  2987. "tools/net461/System.Net.Requests.dll",
  2988. "tools/net461/System.Net.Security.dll",
  2989. "tools/net461/System.Net.Sockets.dll",
  2990. "tools/net461/System.Net.WebHeaderCollection.dll",
  2991. "tools/net461/System.Net.WebSockets.Client.dll",
  2992. "tools/net461/System.Net.WebSockets.dll",
  2993. "tools/net461/System.Numerics.Vectors.dll",
  2994. "tools/net461/System.ObjectModel.dll",
  2995. "tools/net461/System.Reflection.Extensions.dll",
  2996. "tools/net461/System.Reflection.Primitives.dll",
  2997. "tools/net461/System.Reflection.dll",
  2998. "tools/net461/System.Resources.Reader.dll",
  2999. "tools/net461/System.Resources.ResourceManager.dll",
  3000. "tools/net461/System.Resources.Writer.dll",
  3001. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3002. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  3003. "tools/net461/System.Runtime.Extensions.dll",
  3004. "tools/net461/System.Runtime.Handles.dll",
  3005. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  3006. "tools/net461/System.Runtime.InteropServices.dll",
  3007. "tools/net461/System.Runtime.Numerics.dll",
  3008. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  3009. "tools/net461/System.Runtime.Serialization.Json.dll",
  3010. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  3011. "tools/net461/System.Runtime.Serialization.Xml.dll",
  3012. "tools/net461/System.Runtime.dll",
  3013. "tools/net461/System.Security.Claims.dll",
  3014. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  3015. "tools/net461/System.Security.Cryptography.Csp.dll",
  3016. "tools/net461/System.Security.Cryptography.Encoding.dll",
  3017. "tools/net461/System.Security.Cryptography.Primitives.dll",
  3018. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  3019. "tools/net461/System.Security.Principal.dll",
  3020. "tools/net461/System.Security.SecureString.dll",
  3021. "tools/net461/System.Text.Encoding.Extensions.dll",
  3022. "tools/net461/System.Text.Encoding.dll",
  3023. "tools/net461/System.Text.RegularExpressions.dll",
  3024. "tools/net461/System.Threading.Overlapped.dll",
  3025. "tools/net461/System.Threading.Tasks.Parallel.dll",
  3026. "tools/net461/System.Threading.Tasks.dll",
  3027. "tools/net461/System.Threading.Thread.dll",
  3028. "tools/net461/System.Threading.ThreadPool.dll",
  3029. "tools/net461/System.Threading.Timer.dll",
  3030. "tools/net461/System.Threading.dll",
  3031. "tools/net461/System.ValueTuple.dll",
  3032. "tools/net461/System.Xml.ReaderWriter.dll",
  3033. "tools/net461/System.Xml.XDocument.dll",
  3034. "tools/net461/System.Xml.XPath.XDocument.dll",
  3035. "tools/net461/System.Xml.XPath.dll",
  3036. "tools/net461/System.Xml.XmlDocument.dll",
  3037. "tools/net461/System.Xml.XmlSerializer.dll",
  3038. "tools/net461/netstandard.dll",
  3039. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3040. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3041. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  3042. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  3043. ]
  3044. },
  3045. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  3046. "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  3047. "type": "package",
  3048. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  3049. "files": [
  3050. ".nupkg.metadata",
  3051. ".signature.p7s",
  3052. "Icon.png",
  3053. "LICENSE.TXT",
  3054. "THIRD-PARTY-NOTICES.TXT",
  3055. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3056. "buildTransitive/net462/_._",
  3057. "buildTransitive/net6.0/_._",
  3058. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3059. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3060. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3061. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3062. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3063. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3064. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3065. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3066. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3067. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3068. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3069. "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
  3070. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3071. "useSharedDesignerContext.txt"
  3072. ]
  3073. },
  3074. "Microsoft.Extensions.DependencyModel/7.0.0": {
  3075. "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==",
  3076. "type": "package",
  3077. "path": "microsoft.extensions.dependencymodel/7.0.0",
  3078. "files": [
  3079. ".nupkg.metadata",
  3080. ".signature.p7s",
  3081. "Icon.png",
  3082. "LICENSE.TXT",
  3083. "README.md",
  3084. "THIRD-PARTY-NOTICES.TXT",
  3085. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  3086. "buildTransitive/net462/_._",
  3087. "buildTransitive/net6.0/_._",
  3088. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  3089. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  3090. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  3091. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  3092. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  3093. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  3094. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  3095. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3096. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3097. "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
  3098. "microsoft.extensions.dependencymodel.nuspec",
  3099. "useSharedDesignerContext.txt"
  3100. ]
  3101. },
  3102. "Microsoft.Identity.Client/4.21.1": {
  3103. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  3104. "type": "package",
  3105. "path": "microsoft.identity.client/4.21.1",
  3106. "files": [
  3107. ".nupkg.metadata",
  3108. ".signature.p7s",
  3109. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3110. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3111. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3112. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3113. "lib/net45/Microsoft.Identity.Client.dll",
  3114. "lib/net45/Microsoft.Identity.Client.xml",
  3115. "lib/net461/Microsoft.Identity.Client.dll",
  3116. "lib/net461/Microsoft.Identity.Client.xml",
  3117. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3118. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3119. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3120. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3121. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3122. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3123. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3124. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3125. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3126. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3127. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3128. "microsoft.identity.client.4.21.1.nupkg.sha512",
  3129. "microsoft.identity.client.nuspec",
  3130. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  3131. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  3132. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3133. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3134. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3135. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3136. "ref/net45/Microsoft.Identity.Client.dll",
  3137. "ref/net45/Microsoft.Identity.Client.xml",
  3138. "ref/net461/Microsoft.Identity.Client.dll",
  3139. "ref/net461/Microsoft.Identity.Client.xml",
  3140. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3141. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3142. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3143. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3144. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3145. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3146. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3147. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3148. ]
  3149. },
  3150. "Microsoft.IdentityModel.JsonWebTokens/6.15.1": {
  3151. "sha512": "X5K/Pt02agb1V+khh5u7Q8hg02IVTshxV5owpR7UdQ9zfs0+A6qzca0F9jyv3o8SlOjEFHBabs+5cp7Noofzvg==",
  3152. "type": "package",
  3153. "path": "microsoft.identitymodel.jsonwebtokens/6.15.1",
  3154. "files": [
  3155. ".nupkg.metadata",
  3156. ".signature.p7s",
  3157. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3158. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3159. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3160. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3161. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3162. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3163. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3164. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3165. "microsoft.identitymodel.jsonwebtokens.6.15.1.nupkg.sha512",
  3166. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3167. ]
  3168. },
  3169. "Microsoft.IdentityModel.Logging/6.15.1": {
  3170. "sha512": "PpZHL/Bt/8vQ8g/6LxweuI1EusV0ogUBYnGM+bPeL/SG89gx2n05xKNE/U5JNEkLFLL+sk7O8T7c/PXhFtUtUg==",
  3171. "type": "package",
  3172. "path": "microsoft.identitymodel.logging/6.15.1",
  3173. "files": [
  3174. ".nupkg.metadata",
  3175. ".signature.p7s",
  3176. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3177. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3178. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3179. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3180. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3181. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3182. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3183. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3184. "microsoft.identitymodel.logging.6.15.1.nupkg.sha512",
  3185. "microsoft.identitymodel.logging.nuspec"
  3186. ]
  3187. },
  3188. "Microsoft.IdentityModel.Protocols/6.15.1": {
  3189. "sha512": "6nHr+4yE8vj620Vy4L0pl7kmkvWc06wBrJ+AOo/gjqzu/UD/MYgySUqRGlZYrvvNmKkUWMw4hdn78MPCb4bstA==",
  3190. "type": "package",
  3191. "path": "microsoft.identitymodel.protocols/6.15.1",
  3192. "files": [
  3193. ".nupkg.metadata",
  3194. ".signature.p7s",
  3195. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3196. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3197. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3198. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3199. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  3200. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  3201. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3202. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3203. "microsoft.identitymodel.protocols.6.15.1.nupkg.sha512",
  3204. "microsoft.identitymodel.protocols.nuspec"
  3205. ]
  3206. },
  3207. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": {
  3208. "sha512": "WwecgT/PNrytLNUWjkYtnnG2LXMAzkINSaZM+8dPPiEpOGz1bQDBWAenTSurYICxGoA1sOPriFXk+ocnQyprKw==",
  3209. "type": "package",
  3210. "path": "microsoft.identitymodel.protocols.openidconnect/6.15.1",
  3211. "files": [
  3212. ".nupkg.metadata",
  3213. ".signature.p7s",
  3214. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3215. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3216. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3217. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3218. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3219. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3220. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3221. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3222. "microsoft.identitymodel.protocols.openidconnect.6.15.1.nupkg.sha512",
  3223. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3224. ]
  3225. },
  3226. "Microsoft.IdentityModel.Tokens/6.15.1": {
  3227. "sha512": "0bd0ocKuNai0/GdhboIW37R6z8I0vFqlmiPeG055SJxPPJ7dfBo2tjJ3bPV9vjFCRDuusj24dldOsg4hWui6iw==",
  3228. "type": "package",
  3229. "path": "microsoft.identitymodel.tokens/6.15.1",
  3230. "files": [
  3231. ".nupkg.metadata",
  3232. ".signature.p7s",
  3233. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3234. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3235. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3236. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3237. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3238. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3239. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3240. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3241. "microsoft.identitymodel.tokens.6.15.1.nupkg.sha512",
  3242. "microsoft.identitymodel.tokens.nuspec"
  3243. ]
  3244. },
  3245. "Microsoft.NETCore.Platforms/3.1.0": {
  3246. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3247. "type": "package",
  3248. "path": "microsoft.netcore.platforms/3.1.0",
  3249. "files": [
  3250. ".nupkg.metadata",
  3251. ".signature.p7s",
  3252. "LICENSE.TXT",
  3253. "THIRD-PARTY-NOTICES.TXT",
  3254. "lib/netstandard1.0/_._",
  3255. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3256. "microsoft.netcore.platforms.nuspec",
  3257. "runtime.json",
  3258. "useSharedDesignerContext.txt",
  3259. "version.txt"
  3260. ]
  3261. },
  3262. "Microsoft.NETCore.Targets/1.1.0": {
  3263. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3264. "type": "package",
  3265. "path": "microsoft.netcore.targets/1.1.0",
  3266. "files": [
  3267. ".nupkg.metadata",
  3268. ".signature.p7s",
  3269. "ThirdPartyNotices.txt",
  3270. "dotnet_library_license.txt",
  3271. "lib/netstandard1.0/_._",
  3272. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3273. "microsoft.netcore.targets.nuspec",
  3274. "runtime.json"
  3275. ]
  3276. },
  3277. "Microsoft.OpenApi/1.2.3": {
  3278. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  3279. "type": "package",
  3280. "path": "microsoft.openapi/1.2.3",
  3281. "files": [
  3282. ".nupkg.metadata",
  3283. ".signature.p7s",
  3284. "lib/net46/Microsoft.OpenApi.dll",
  3285. "lib/net46/Microsoft.OpenApi.pdb",
  3286. "lib/net46/Microsoft.OpenApi.xml",
  3287. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3288. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3289. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3290. "microsoft.openapi.1.2.3.nupkg.sha512",
  3291. "microsoft.openapi.nuspec"
  3292. ]
  3293. },
  3294. "Microsoft.Win32.Registry/4.7.0": {
  3295. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3296. "type": "package",
  3297. "path": "microsoft.win32.registry/4.7.0",
  3298. "files": [
  3299. ".nupkg.metadata",
  3300. ".signature.p7s",
  3301. "LICENSE.TXT",
  3302. "THIRD-PARTY-NOTICES.TXT",
  3303. "lib/net46/Microsoft.Win32.Registry.dll",
  3304. "lib/net461/Microsoft.Win32.Registry.dll",
  3305. "lib/net461/Microsoft.Win32.Registry.xml",
  3306. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3307. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3308. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3309. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3310. "microsoft.win32.registry.nuspec",
  3311. "ref/net46/Microsoft.Win32.Registry.dll",
  3312. "ref/net461/Microsoft.Win32.Registry.dll",
  3313. "ref/net461/Microsoft.Win32.Registry.xml",
  3314. "ref/net472/Microsoft.Win32.Registry.dll",
  3315. "ref/net472/Microsoft.Win32.Registry.xml",
  3316. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3317. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3318. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3319. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3320. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3321. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3322. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3323. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3324. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3325. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3326. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3327. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3328. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3329. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3330. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3331. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3332. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3333. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3334. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3335. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3336. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3337. "useSharedDesignerContext.txt",
  3338. "version.txt"
  3339. ]
  3340. },
  3341. "Microsoft.Win32.SystemEvents/4.7.0": {
  3342. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3343. "type": "package",
  3344. "path": "microsoft.win32.systemevents/4.7.0",
  3345. "files": [
  3346. ".nupkg.metadata",
  3347. ".signature.p7s",
  3348. "LICENSE.TXT",
  3349. "THIRD-PARTY-NOTICES.TXT",
  3350. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3351. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3352. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3353. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3354. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3355. "microsoft.win32.systemevents.nuspec",
  3356. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3357. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3358. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3359. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3360. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3361. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3362. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3363. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3364. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3365. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3366. "useSharedDesignerContext.txt",
  3367. "version.txt"
  3368. ]
  3369. },
  3370. "MiniProfiler.AspNetCore/4.2.22": {
  3371. "sha512": "bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==",
  3372. "type": "package",
  3373. "path": "miniprofiler.aspnetcore/4.2.22",
  3374. "files": [
  3375. ".nupkg.metadata",
  3376. ".signature.p7s",
  3377. "LICENSE.txt",
  3378. "lib/net461/MiniProfiler.AspNetCore.dll",
  3379. "lib/net461/MiniProfiler.AspNetCore.xml",
  3380. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll",
  3381. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.xml",
  3382. "lib/netstandard2.0/MiniProfiler.AspNetCore.dll",
  3383. "lib/netstandard2.0/MiniProfiler.AspNetCore.xml",
  3384. "miniprofiler.aspnetcore.4.2.22.nupkg.sha512",
  3385. "miniprofiler.aspnetcore.nuspec"
  3386. ]
  3387. },
  3388. "MiniProfiler.AspNetCore.Mvc/4.2.22": {
  3389. "sha512": "nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==",
  3390. "type": "package",
  3391. "path": "miniprofiler.aspnetcore.mvc/4.2.22",
  3392. "files": [
  3393. ".nupkg.metadata",
  3394. ".signature.p7s",
  3395. "LICENSE.txt",
  3396. "lib/net461/MiniProfiler.AspNetCore.Mvc.dll",
  3397. "lib/net461/MiniProfiler.AspNetCore.Mvc.xml",
  3398. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll",
  3399. "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.xml",
  3400. "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.dll",
  3401. "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.xml",
  3402. "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512",
  3403. "miniprofiler.aspnetcore.mvc.nuspec"
  3404. ]
  3405. },
  3406. "MiniProfiler.Shared/4.2.22": {
  3407. "sha512": "OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==",
  3408. "type": "package",
  3409. "path": "miniprofiler.shared/4.2.22",
  3410. "files": [
  3411. ".nupkg.metadata",
  3412. ".signature.p7s",
  3413. "LICENSE.txt",
  3414. "lib/net461/MiniProfiler.Shared.dll",
  3415. "lib/net461/MiniProfiler.Shared.xml",
  3416. "lib/netstandard2.0/MiniProfiler.Shared.dll",
  3417. "lib/netstandard2.0/MiniProfiler.Shared.xml",
  3418. "miniprofiler.shared.4.2.22.nupkg.sha512",
  3419. "miniprofiler.shared.nuspec"
  3420. ]
  3421. },
  3422. "MySqlConnector/2.2.5": {
  3423. "sha512": "6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==",
  3424. "type": "package",
  3425. "path": "mysqlconnector/2.2.5",
  3426. "files": [
  3427. ".nupkg.metadata",
  3428. ".signature.p7s",
  3429. "README.md",
  3430. "lib/net461/MySqlConnector.dll",
  3431. "lib/net461/MySqlConnector.xml",
  3432. "lib/net471/MySqlConnector.dll",
  3433. "lib/net471/MySqlConnector.xml",
  3434. "lib/net6.0/MySqlConnector.dll",
  3435. "lib/net6.0/MySqlConnector.xml",
  3436. "lib/net7.0/MySqlConnector.dll",
  3437. "lib/net7.0/MySqlConnector.xml",
  3438. "lib/netcoreapp3.1/MySqlConnector.dll",
  3439. "lib/netcoreapp3.1/MySqlConnector.xml",
  3440. "lib/netstandard2.0/MySqlConnector.dll",
  3441. "lib/netstandard2.0/MySqlConnector.xml",
  3442. "lib/netstandard2.1/MySqlConnector.dll",
  3443. "lib/netstandard2.1/MySqlConnector.xml",
  3444. "logo.png",
  3445. "mysqlconnector.2.2.5.nupkg.sha512",
  3446. "mysqlconnector.nuspec"
  3447. ]
  3448. },
  3449. "Namotion.Reflection/2.1.1": {
  3450. "sha512": "trZzWMjzoZyfn34HtMs6cuoR0ssPZGpn9pyBWMGkaHdGA9VZzWLho+Rldtf+Ojej596PIal/vPdrDr1+MERXbA==",
  3451. "type": "package",
  3452. "path": "namotion.reflection/2.1.1",
  3453. "files": [
  3454. ".nupkg.metadata",
  3455. ".signature.p7s",
  3456. "lib/net40/Namotion.Reflection.dll",
  3457. "lib/net40/Namotion.Reflection.xml",
  3458. "lib/net45/Namotion.Reflection.dll",
  3459. "lib/net45/Namotion.Reflection.xml",
  3460. "lib/netstandard1.0/Namotion.Reflection.dll",
  3461. "lib/netstandard1.0/Namotion.Reflection.xml",
  3462. "lib/netstandard2.0/Namotion.Reflection.dll",
  3463. "lib/netstandard2.0/Namotion.Reflection.xml",
  3464. "namotion.reflection.2.1.1.nupkg.sha512",
  3465. "namotion.reflection.nuspec"
  3466. ]
  3467. },
  3468. "Newtonsoft.Json/13.0.2": {
  3469. "sha512": "R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
  3470. "type": "package",
  3471. "path": "newtonsoft.json/13.0.2",
  3472. "files": [
  3473. ".nupkg.metadata",
  3474. ".signature.p7s",
  3475. "LICENSE.md",
  3476. "README.md",
  3477. "lib/net20/Newtonsoft.Json.dll",
  3478. "lib/net20/Newtonsoft.Json.xml",
  3479. "lib/net35/Newtonsoft.Json.dll",
  3480. "lib/net35/Newtonsoft.Json.xml",
  3481. "lib/net40/Newtonsoft.Json.dll",
  3482. "lib/net40/Newtonsoft.Json.xml",
  3483. "lib/net45/Newtonsoft.Json.dll",
  3484. "lib/net45/Newtonsoft.Json.xml",
  3485. "lib/net6.0/Newtonsoft.Json.dll",
  3486. "lib/net6.0/Newtonsoft.Json.xml",
  3487. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3488. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3489. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3490. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3491. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3492. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3493. "newtonsoft.json.13.0.2.nupkg.sha512",
  3494. "newtonsoft.json.nuspec",
  3495. "packageIcon.png"
  3496. ]
  3497. },
  3498. "Newtonsoft.Json.Bson/1.0.2": {
  3499. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  3500. "type": "package",
  3501. "path": "newtonsoft.json.bson/1.0.2",
  3502. "files": [
  3503. ".nupkg.metadata",
  3504. ".signature.p7s",
  3505. "LICENSE.md",
  3506. "lib/net45/Newtonsoft.Json.Bson.dll",
  3507. "lib/net45/Newtonsoft.Json.Bson.pdb",
  3508. "lib/net45/Newtonsoft.Json.Bson.xml",
  3509. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  3510. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  3511. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  3512. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  3513. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  3514. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  3515. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  3516. "newtonsoft.json.bson.nuspec"
  3517. ]
  3518. },
  3519. "Npgsql/5.0.7": {
  3520. "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  3521. "type": "package",
  3522. "path": "npgsql/5.0.7",
  3523. "files": [
  3524. ".nupkg.metadata",
  3525. ".signature.p7s",
  3526. "lib/net5.0/Npgsql.dll",
  3527. "lib/net5.0/Npgsql.xml",
  3528. "lib/netcoreapp3.1/Npgsql.dll",
  3529. "lib/netcoreapp3.1/Npgsql.xml",
  3530. "lib/netstandard2.0/Npgsql.dll",
  3531. "lib/netstandard2.0/Npgsql.xml",
  3532. "lib/netstandard2.1/Npgsql.dll",
  3533. "lib/netstandard2.1/Npgsql.xml",
  3534. "npgsql.5.0.7.nupkg.sha512",
  3535. "npgsql.nuspec",
  3536. "postgresql.png"
  3537. ]
  3538. },
  3539. "Oracle.ManagedDataAccess.Core/3.21.1": {
  3540. "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  3541. "type": "package",
  3542. "path": "oracle.manageddataaccess.core/3.21.1",
  3543. "files": [
  3544. ".nupkg.metadata",
  3545. ".signature.p7s",
  3546. "PerfCounters/register_odpc_perfmon_counters.ps1",
  3547. "PerfCounters/unregister_odpc_perfmon_counters.ps1",
  3548. "info.txt",
  3549. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
  3550. "oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
  3551. "oracle.manageddataaccess.core.nuspec",
  3552. "readme.txt"
  3553. ]
  3554. },
  3555. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  3556. "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  3557. "type": "package",
  3558. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  3559. "files": [
  3560. ".nupkg.metadata",
  3561. ".signature.p7s",
  3562. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3563. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  3564. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  3565. "lib/net461/SQLitePCLRaw.nativelibrary.dll",
  3566. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
  3567. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
  3568. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  3569. "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
  3570. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  3571. ]
  3572. },
  3573. "SQLitePCLRaw.core/2.0.4": {
  3574. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  3575. "type": "package",
  3576. "path": "sqlitepclraw.core/2.0.4",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  3581. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  3582. "sqlitepclraw.core.nuspec"
  3583. ]
  3584. },
  3585. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  3586. "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  3587. "type": "package",
  3588. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  3589. "files": [
  3590. ".nupkg.metadata",
  3591. ".signature.p7s",
  3592. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  3593. "lib/net461/_._",
  3594. "lib/netstandard2.0/_._",
  3595. "runtimes/alpine-x64/native/libe_sqlite3.so",
  3596. "runtimes/linux-arm/native/libe_sqlite3.so",
  3597. "runtimes/linux-arm64/native/libe_sqlite3.so",
  3598. "runtimes/linux-armel/native/libe_sqlite3.so",
  3599. "runtimes/linux-mips64/native/libe_sqlite3.so",
  3600. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  3601. "runtimes/linux-x64/native/libe_sqlite3.so",
  3602. "runtimes/linux-x86/native/libe_sqlite3.so",
  3603. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  3604. "runtimes/win-arm/native/e_sqlite3.dll",
  3605. "runtimes/win-arm64/native/e_sqlite3.dll",
  3606. "runtimes/win-x64/native/e_sqlite3.dll",
  3607. "runtimes/win-x86/native/e_sqlite3.dll",
  3608. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  3609. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  3610. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  3611. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  3612. "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
  3613. "sqlitepclraw.lib.e_sqlite3.nuspec"
  3614. ]
  3615. },
  3616. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  3617. "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  3618. "type": "package",
  3619. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  3620. "files": [
  3621. ".nupkg.metadata",
  3622. ".signature.p7s",
  3623. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
  3624. "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
  3625. "sqlitepclraw.provider.dynamic_cdecl.nuspec"
  3626. ]
  3627. },
  3628. "SqlSugarCore/5.1.4.65": {
  3629. "sha512": "dtkmcOBn1yJWnPS+QI84WE/ux9KR6QURHKWQO0A8ZojXscWo3Xs93mmr8PwKTh+tBYOBilqY7GH5gGhx6lNrtA==",
  3630. "type": "package",
  3631. "path": "sqlsugarcore/5.1.4.65",
  3632. "files": [
  3633. ".nupkg.metadata",
  3634. ".signature.p7s",
  3635. "lib/netstandard2.1/SqlSugar.dll",
  3636. "sqlsugarcore.5.1.4.65.nupkg.sha512",
  3637. "sqlsugarcore.nuspec"
  3638. ]
  3639. },
  3640. "SqlSugarCore.Dm/1.0.0": {
  3641. "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  3642. "type": "package",
  3643. "path": "sqlsugarcore.dm/1.0.0",
  3644. "files": [
  3645. ".nupkg.metadata",
  3646. ".signature.p7s",
  3647. "lib/netstandard2.0/DmProvider.dll",
  3648. "sqlsugarcore.dm.1.0.0.nupkg.sha512",
  3649. "sqlsugarcore.dm.nuspec"
  3650. ]
  3651. },
  3652. "SqlSugarCore.Kdbndp/7.3.0": {
  3653. "sha512": "yi3C3dphrOsL+tqascH29eyMjakFK2xRdVguZphH9OiKj8HZVHHSzo02jCfniIE5vK0KF8LQTAgmkVXJm5JWnw==",
  3654. "type": "package",
  3655. "path": "sqlsugarcore.kdbndp/7.3.0",
  3656. "files": [
  3657. ".nupkg.metadata",
  3658. ".signature.p7s",
  3659. "lib/netstandard2.1/Kdbndp.dll",
  3660. "sqlsugarcore.kdbndp.7.3.0.nupkg.sha512",
  3661. "sqlsugarcore.kdbndp.nuspec"
  3662. ]
  3663. },
  3664. "Swashbuckle.AspNetCore/6.5.0": {
  3665. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  3666. "type": "package",
  3667. "path": "swashbuckle.aspnetcore/6.5.0",
  3668. "files": [
  3669. ".nupkg.metadata",
  3670. ".signature.p7s",
  3671. "build/Swashbuckle.AspNetCore.props",
  3672. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  3673. "swashbuckle.aspnetcore.nuspec"
  3674. ]
  3675. },
  3676. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  3677. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  3678. "type": "package",
  3679. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  3680. "files": [
  3681. ".nupkg.metadata",
  3682. ".signature.p7s",
  3683. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  3684. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3685. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  3686. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  3687. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3688. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  3689. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  3690. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3691. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  3692. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  3693. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3694. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  3695. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  3696. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3697. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  3698. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  3699. "swashbuckle.aspnetcore.swagger.nuspec"
  3700. ]
  3701. },
  3702. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  3703. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  3704. "type": "package",
  3705. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  3706. "files": [
  3707. ".nupkg.metadata",
  3708. ".signature.p7s",
  3709. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3710. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3711. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3712. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3713. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3714. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3715. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3716. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3717. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3718. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3719. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3720. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3721. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3722. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3723. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3724. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  3725. "swashbuckle.aspnetcore.swaggergen.nuspec"
  3726. ]
  3727. },
  3728. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  3729. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  3730. "type": "package",
  3731. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  3732. "files": [
  3733. ".nupkg.metadata",
  3734. ".signature.p7s",
  3735. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3736. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3737. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3738. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3739. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3740. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3741. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3742. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3743. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3744. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3745. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3746. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3747. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3748. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3749. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3750. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  3751. "swashbuckle.aspnetcore.swaggerui.nuspec"
  3752. ]
  3753. },
  3754. "System.Collections/4.3.0": {
  3755. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3756. "type": "package",
  3757. "path": "system.collections/4.3.0",
  3758. "files": [
  3759. ".nupkg.metadata",
  3760. ".signature.p7s",
  3761. "ThirdPartyNotices.txt",
  3762. "dotnet_library_license.txt",
  3763. "lib/MonoAndroid10/_._",
  3764. "lib/MonoTouch10/_._",
  3765. "lib/net45/_._",
  3766. "lib/portable-net45+win8+wp8+wpa81/_._",
  3767. "lib/win8/_._",
  3768. "lib/wp80/_._",
  3769. "lib/wpa81/_._",
  3770. "lib/xamarinios10/_._",
  3771. "lib/xamarinmac20/_._",
  3772. "lib/xamarintvos10/_._",
  3773. "lib/xamarinwatchos10/_._",
  3774. "ref/MonoAndroid10/_._",
  3775. "ref/MonoTouch10/_._",
  3776. "ref/net45/_._",
  3777. "ref/netcore50/System.Collections.dll",
  3778. "ref/netcore50/System.Collections.xml",
  3779. "ref/netcore50/de/System.Collections.xml",
  3780. "ref/netcore50/es/System.Collections.xml",
  3781. "ref/netcore50/fr/System.Collections.xml",
  3782. "ref/netcore50/it/System.Collections.xml",
  3783. "ref/netcore50/ja/System.Collections.xml",
  3784. "ref/netcore50/ko/System.Collections.xml",
  3785. "ref/netcore50/ru/System.Collections.xml",
  3786. "ref/netcore50/zh-hans/System.Collections.xml",
  3787. "ref/netcore50/zh-hant/System.Collections.xml",
  3788. "ref/netstandard1.0/System.Collections.dll",
  3789. "ref/netstandard1.0/System.Collections.xml",
  3790. "ref/netstandard1.0/de/System.Collections.xml",
  3791. "ref/netstandard1.0/es/System.Collections.xml",
  3792. "ref/netstandard1.0/fr/System.Collections.xml",
  3793. "ref/netstandard1.0/it/System.Collections.xml",
  3794. "ref/netstandard1.0/ja/System.Collections.xml",
  3795. "ref/netstandard1.0/ko/System.Collections.xml",
  3796. "ref/netstandard1.0/ru/System.Collections.xml",
  3797. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3798. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3799. "ref/netstandard1.3/System.Collections.dll",
  3800. "ref/netstandard1.3/System.Collections.xml",
  3801. "ref/netstandard1.3/de/System.Collections.xml",
  3802. "ref/netstandard1.3/es/System.Collections.xml",
  3803. "ref/netstandard1.3/fr/System.Collections.xml",
  3804. "ref/netstandard1.3/it/System.Collections.xml",
  3805. "ref/netstandard1.3/ja/System.Collections.xml",
  3806. "ref/netstandard1.3/ko/System.Collections.xml",
  3807. "ref/netstandard1.3/ru/System.Collections.xml",
  3808. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3809. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3810. "ref/portable-net45+win8+wp8+wpa81/_._",
  3811. "ref/win8/_._",
  3812. "ref/wp80/_._",
  3813. "ref/wpa81/_._",
  3814. "ref/xamarinios10/_._",
  3815. "ref/xamarinmac20/_._",
  3816. "ref/xamarintvos10/_._",
  3817. "ref/xamarinwatchos10/_._",
  3818. "system.collections.4.3.0.nupkg.sha512",
  3819. "system.collections.nuspec"
  3820. ]
  3821. },
  3822. "System.Collections.Concurrent/4.3.0": {
  3823. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3824. "type": "package",
  3825. "path": "system.collections.concurrent/4.3.0",
  3826. "files": [
  3827. ".nupkg.metadata",
  3828. ".signature.p7s",
  3829. "ThirdPartyNotices.txt",
  3830. "dotnet_library_license.txt",
  3831. "lib/MonoAndroid10/_._",
  3832. "lib/MonoTouch10/_._",
  3833. "lib/net45/_._",
  3834. "lib/netcore50/System.Collections.Concurrent.dll",
  3835. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3836. "lib/portable-net45+win8+wpa81/_._",
  3837. "lib/win8/_._",
  3838. "lib/wpa81/_._",
  3839. "lib/xamarinios10/_._",
  3840. "lib/xamarinmac20/_._",
  3841. "lib/xamarintvos10/_._",
  3842. "lib/xamarinwatchos10/_._",
  3843. "ref/MonoAndroid10/_._",
  3844. "ref/MonoTouch10/_._",
  3845. "ref/net45/_._",
  3846. "ref/netcore50/System.Collections.Concurrent.dll",
  3847. "ref/netcore50/System.Collections.Concurrent.xml",
  3848. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3849. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3850. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3851. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3852. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3853. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3854. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3855. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3856. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3857. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3858. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3859. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3860. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3861. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3862. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3863. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3864. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3865. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3866. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3867. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3868. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3869. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3870. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3871. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3872. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3873. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3874. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3875. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3876. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3877. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3878. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3879. "ref/portable-net45+win8+wpa81/_._",
  3880. "ref/win8/_._",
  3881. "ref/wpa81/_._",
  3882. "ref/xamarinios10/_._",
  3883. "ref/xamarinmac20/_._",
  3884. "ref/xamarintvos10/_._",
  3885. "ref/xamarinwatchos10/_._",
  3886. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3887. "system.collections.concurrent.nuspec"
  3888. ]
  3889. },
  3890. "System.Collections.Immutable/6.0.0": {
  3891. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  3892. "type": "package",
  3893. "path": "system.collections.immutable/6.0.0",
  3894. "files": [
  3895. ".nupkg.metadata",
  3896. ".signature.p7s",
  3897. "Icon.png",
  3898. "LICENSE.TXT",
  3899. "THIRD-PARTY-NOTICES.TXT",
  3900. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  3901. "buildTransitive/netcoreapp3.1/_._",
  3902. "lib/net461/System.Collections.Immutable.dll",
  3903. "lib/net461/System.Collections.Immutable.xml",
  3904. "lib/net6.0/System.Collections.Immutable.dll",
  3905. "lib/net6.0/System.Collections.Immutable.xml",
  3906. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3907. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3908. "system.collections.immutable.6.0.0.nupkg.sha512",
  3909. "system.collections.immutable.nuspec",
  3910. "useSharedDesignerContext.txt"
  3911. ]
  3912. },
  3913. "System.ComponentModel/4.3.0": {
  3914. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  3915. "type": "package",
  3916. "path": "system.componentmodel/4.3.0",
  3917. "files": [
  3918. ".nupkg.metadata",
  3919. ".signature.p7s",
  3920. "ThirdPartyNotices.txt",
  3921. "dotnet_library_license.txt",
  3922. "lib/MonoAndroid10/_._",
  3923. "lib/MonoTouch10/_._",
  3924. "lib/net45/_._",
  3925. "lib/netcore50/System.ComponentModel.dll",
  3926. "lib/netstandard1.3/System.ComponentModel.dll",
  3927. "lib/portable-net45+win8+wp8+wpa81/_._",
  3928. "lib/win8/_._",
  3929. "lib/wp80/_._",
  3930. "lib/wpa81/_._",
  3931. "lib/xamarinios10/_._",
  3932. "lib/xamarinmac20/_._",
  3933. "lib/xamarintvos10/_._",
  3934. "lib/xamarinwatchos10/_._",
  3935. "ref/MonoAndroid10/_._",
  3936. "ref/MonoTouch10/_._",
  3937. "ref/net45/_._",
  3938. "ref/netcore50/System.ComponentModel.dll",
  3939. "ref/netcore50/System.ComponentModel.xml",
  3940. "ref/netcore50/de/System.ComponentModel.xml",
  3941. "ref/netcore50/es/System.ComponentModel.xml",
  3942. "ref/netcore50/fr/System.ComponentModel.xml",
  3943. "ref/netcore50/it/System.ComponentModel.xml",
  3944. "ref/netcore50/ja/System.ComponentModel.xml",
  3945. "ref/netcore50/ko/System.ComponentModel.xml",
  3946. "ref/netcore50/ru/System.ComponentModel.xml",
  3947. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  3948. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  3949. "ref/netstandard1.0/System.ComponentModel.dll",
  3950. "ref/netstandard1.0/System.ComponentModel.xml",
  3951. "ref/netstandard1.0/de/System.ComponentModel.xml",
  3952. "ref/netstandard1.0/es/System.ComponentModel.xml",
  3953. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  3954. "ref/netstandard1.0/it/System.ComponentModel.xml",
  3955. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  3956. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  3957. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  3958. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  3959. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  3960. "ref/portable-net45+win8+wp8+wpa81/_._",
  3961. "ref/win8/_._",
  3962. "ref/wp80/_._",
  3963. "ref/wpa81/_._",
  3964. "ref/xamarinios10/_._",
  3965. "ref/xamarinmac20/_._",
  3966. "ref/xamarintvos10/_._",
  3967. "ref/xamarinwatchos10/_._",
  3968. "system.componentmodel.4.3.0.nupkg.sha512",
  3969. "system.componentmodel.nuspec"
  3970. ]
  3971. },
  3972. "System.ComponentModel.Primitives/4.3.0": {
  3973. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  3974. "type": "package",
  3975. "path": "system.componentmodel.primitives/4.3.0",
  3976. "files": [
  3977. ".nupkg.metadata",
  3978. ".signature.p7s",
  3979. "ThirdPartyNotices.txt",
  3980. "dotnet_library_license.txt",
  3981. "lib/MonoAndroid10/_._",
  3982. "lib/MonoTouch10/_._",
  3983. "lib/net45/System.ComponentModel.Primitives.dll",
  3984. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  3985. "lib/xamarinios10/_._",
  3986. "lib/xamarinmac20/_._",
  3987. "lib/xamarintvos10/_._",
  3988. "lib/xamarinwatchos10/_._",
  3989. "ref/MonoAndroid10/_._",
  3990. "ref/MonoTouch10/_._",
  3991. "ref/net45/System.ComponentModel.Primitives.dll",
  3992. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  3993. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  3994. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  3995. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  3996. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  3997. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  3998. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  3999. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4000. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4001. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4002. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4003. "ref/xamarinios10/_._",
  4004. "ref/xamarinmac20/_._",
  4005. "ref/xamarintvos10/_._",
  4006. "ref/xamarinwatchos10/_._",
  4007. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4008. "system.componentmodel.primitives.nuspec"
  4009. ]
  4010. },
  4011. "System.Configuration.ConfigurationManager/4.7.0": {
  4012. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4013. "type": "package",
  4014. "path": "system.configuration.configurationmanager/4.7.0",
  4015. "files": [
  4016. ".nupkg.metadata",
  4017. ".signature.p7s",
  4018. "LICENSE.TXT",
  4019. "THIRD-PARTY-NOTICES.TXT",
  4020. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4021. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4022. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4023. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4024. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4025. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4026. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4027. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4028. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4029. "system.configuration.configurationmanager.nuspec",
  4030. "useSharedDesignerContext.txt",
  4031. "version.txt"
  4032. ]
  4033. },
  4034. "System.Data.Common/4.3.0": {
  4035. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4036. "type": "package",
  4037. "path": "system.data.common/4.3.0",
  4038. "files": [
  4039. ".nupkg.metadata",
  4040. ".signature.p7s",
  4041. "ThirdPartyNotices.txt",
  4042. "dotnet_library_license.txt",
  4043. "lib/MonoAndroid10/_._",
  4044. "lib/MonoTouch10/_._",
  4045. "lib/net451/System.Data.Common.dll",
  4046. "lib/netstandard1.2/System.Data.Common.dll",
  4047. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4048. "lib/xamarinios10/_._",
  4049. "lib/xamarinmac20/_._",
  4050. "lib/xamarintvos10/_._",
  4051. "lib/xamarinwatchos10/_._",
  4052. "ref/MonoAndroid10/_._",
  4053. "ref/MonoTouch10/_._",
  4054. "ref/net451/System.Data.Common.dll",
  4055. "ref/netstandard1.2/System.Data.Common.dll",
  4056. "ref/netstandard1.2/System.Data.Common.xml",
  4057. "ref/netstandard1.2/de/System.Data.Common.xml",
  4058. "ref/netstandard1.2/es/System.Data.Common.xml",
  4059. "ref/netstandard1.2/fr/System.Data.Common.xml",
  4060. "ref/netstandard1.2/it/System.Data.Common.xml",
  4061. "ref/netstandard1.2/ja/System.Data.Common.xml",
  4062. "ref/netstandard1.2/ko/System.Data.Common.xml",
  4063. "ref/netstandard1.2/ru/System.Data.Common.xml",
  4064. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  4065. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  4066. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4067. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  4068. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  4069. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  4070. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  4071. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  4072. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  4073. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  4074. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  4075. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  4076. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  4077. "ref/xamarinios10/_._",
  4078. "ref/xamarinmac20/_._",
  4079. "ref/xamarintvos10/_._",
  4080. "ref/xamarinwatchos10/_._",
  4081. "system.data.common.4.3.0.nupkg.sha512",
  4082. "system.data.common.nuspec"
  4083. ]
  4084. },
  4085. "System.Diagnostics.Debug/4.3.0": {
  4086. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4087. "type": "package",
  4088. "path": "system.diagnostics.debug/4.3.0",
  4089. "files": [
  4090. ".nupkg.metadata",
  4091. ".signature.p7s",
  4092. "ThirdPartyNotices.txt",
  4093. "dotnet_library_license.txt",
  4094. "lib/MonoAndroid10/_._",
  4095. "lib/MonoTouch10/_._",
  4096. "lib/net45/_._",
  4097. "lib/portable-net45+win8+wp8+wpa81/_._",
  4098. "lib/win8/_._",
  4099. "lib/wp80/_._",
  4100. "lib/wpa81/_._",
  4101. "lib/xamarinios10/_._",
  4102. "lib/xamarinmac20/_._",
  4103. "lib/xamarintvos10/_._",
  4104. "lib/xamarinwatchos10/_._",
  4105. "ref/MonoAndroid10/_._",
  4106. "ref/MonoTouch10/_._",
  4107. "ref/net45/_._",
  4108. "ref/netcore50/System.Diagnostics.Debug.dll",
  4109. "ref/netcore50/System.Diagnostics.Debug.xml",
  4110. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4111. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4112. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4113. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4114. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4115. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4116. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4117. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4118. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4119. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4120. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4121. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4122. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4123. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4124. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4125. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4126. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4127. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4128. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4129. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4130. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4131. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4132. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4133. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4134. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4135. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4136. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4137. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4138. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4139. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4140. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4141. "ref/portable-net45+win8+wp8+wpa81/_._",
  4142. "ref/win8/_._",
  4143. "ref/wp80/_._",
  4144. "ref/wpa81/_._",
  4145. "ref/xamarinios10/_._",
  4146. "ref/xamarinmac20/_._",
  4147. "ref/xamarintvos10/_._",
  4148. "ref/xamarinwatchos10/_._",
  4149. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4150. "system.diagnostics.debug.nuspec"
  4151. ]
  4152. },
  4153. "System.Diagnostics.DiagnosticSource/4.7.0": {
  4154. "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
  4155. "type": "package",
  4156. "path": "system.diagnostics.diagnosticsource/4.7.0",
  4157. "files": [
  4158. ".nupkg.metadata",
  4159. ".signature.p7s",
  4160. "LICENSE.TXT",
  4161. "THIRD-PARTY-NOTICES.TXT",
  4162. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4163. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4164. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4165. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4166. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4167. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4168. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4169. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4170. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4171. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4172. "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
  4173. "system.diagnostics.diagnosticsource.nuspec",
  4174. "useSharedDesignerContext.txt",
  4175. "version.txt"
  4176. ]
  4177. },
  4178. "System.Diagnostics.PerformanceCounter/4.7.0": {
  4179. "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  4180. "type": "package",
  4181. "path": "system.diagnostics.performancecounter/4.7.0",
  4182. "files": [
  4183. ".nupkg.metadata",
  4184. ".signature.p7s",
  4185. "LICENSE.TXT",
  4186. "THIRD-PARTY-NOTICES.TXT",
  4187. "lib/MonoAndroid10/_._",
  4188. "lib/MonoTouch10/_._",
  4189. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  4190. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  4191. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4192. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4193. "lib/xamarinios10/_._",
  4194. "lib/xamarinmac20/_._",
  4195. "lib/xamarintvos10/_._",
  4196. "lib/xamarinwatchos10/_._",
  4197. "ref/MonoAndroid10/_._",
  4198. "ref/MonoTouch10/_._",
  4199. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  4200. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  4201. "ref/net472/System.Diagnostics.PerformanceCounter.dll",
  4202. "ref/net472/System.Diagnostics.PerformanceCounter.xml",
  4203. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4204. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4205. "ref/xamarinios10/_._",
  4206. "ref/xamarinmac20/_._",
  4207. "ref/xamarintvos10/_._",
  4208. "ref/xamarinwatchos10/_._",
  4209. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  4210. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  4211. "system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
  4212. "system.diagnostics.performancecounter.nuspec",
  4213. "useSharedDesignerContext.txt",
  4214. "version.txt"
  4215. ]
  4216. },
  4217. "System.Diagnostics.StackTrace/4.3.0": {
  4218. "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  4219. "type": "package",
  4220. "path": "system.diagnostics.stacktrace/4.3.0",
  4221. "files": [
  4222. ".nupkg.metadata",
  4223. ".signature.p7s",
  4224. "ThirdPartyNotices.txt",
  4225. "dotnet_library_license.txt",
  4226. "lib/MonoAndroid10/_._",
  4227. "lib/MonoTouch10/_._",
  4228. "lib/net46/System.Diagnostics.StackTrace.dll",
  4229. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  4230. "lib/xamarinios10/_._",
  4231. "lib/xamarinmac20/_._",
  4232. "lib/xamarintvos10/_._",
  4233. "lib/xamarinwatchos10/_._",
  4234. "ref/MonoAndroid10/_._",
  4235. "ref/MonoTouch10/_._",
  4236. "ref/net46/System.Diagnostics.StackTrace.dll",
  4237. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  4238. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  4239. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  4240. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  4241. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  4242. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  4243. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  4244. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  4245. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  4246. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  4247. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  4248. "ref/xamarinios10/_._",
  4249. "ref/xamarinmac20/_._",
  4250. "ref/xamarintvos10/_._",
  4251. "ref/xamarinwatchos10/_._",
  4252. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
  4253. "system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
  4254. "system.diagnostics.stacktrace.nuspec"
  4255. ]
  4256. },
  4257. "System.Diagnostics.Tracing/4.3.0": {
  4258. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4259. "type": "package",
  4260. "path": "system.diagnostics.tracing/4.3.0",
  4261. "files": [
  4262. ".nupkg.metadata",
  4263. ".signature.p7s",
  4264. "ThirdPartyNotices.txt",
  4265. "dotnet_library_license.txt",
  4266. "lib/MonoAndroid10/_._",
  4267. "lib/MonoTouch10/_._",
  4268. "lib/net45/_._",
  4269. "lib/net462/System.Diagnostics.Tracing.dll",
  4270. "lib/portable-net45+win8+wpa81/_._",
  4271. "lib/win8/_._",
  4272. "lib/wpa81/_._",
  4273. "lib/xamarinios10/_._",
  4274. "lib/xamarinmac20/_._",
  4275. "lib/xamarintvos10/_._",
  4276. "lib/xamarinwatchos10/_._",
  4277. "ref/MonoAndroid10/_._",
  4278. "ref/MonoTouch10/_._",
  4279. "ref/net45/_._",
  4280. "ref/net462/System.Diagnostics.Tracing.dll",
  4281. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4282. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4283. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4284. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4285. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4286. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4287. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4288. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4289. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4290. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4291. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4292. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4293. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4294. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4295. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4296. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4297. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4298. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4299. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4300. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4301. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4302. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4303. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4304. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4305. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4306. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4307. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4308. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4309. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4310. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4311. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4312. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4313. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4314. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4315. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4316. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4317. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4318. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4319. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4320. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4321. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4322. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4323. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4324. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4325. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4326. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4327. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4328. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4329. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4330. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4331. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4332. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4333. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4334. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4335. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4336. "ref/portable-net45+win8+wpa81/_._",
  4337. "ref/win8/_._",
  4338. "ref/wpa81/_._",
  4339. "ref/xamarinios10/_._",
  4340. "ref/xamarinmac20/_._",
  4341. "ref/xamarintvos10/_._",
  4342. "ref/xamarinwatchos10/_._",
  4343. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4344. "system.diagnostics.tracing.nuspec"
  4345. ]
  4346. },
  4347. "System.DirectoryServices/4.7.0": {
  4348. "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  4349. "type": "package",
  4350. "path": "system.directoryservices/4.7.0",
  4351. "files": [
  4352. ".nupkg.metadata",
  4353. ".signature.p7s",
  4354. "LICENSE.TXT",
  4355. "THIRD-PARTY-NOTICES.TXT",
  4356. "lib/net45/_._",
  4357. "lib/netstandard2.0/System.DirectoryServices.dll",
  4358. "lib/netstandard2.0/System.DirectoryServices.xml",
  4359. "ref/net45/_._",
  4360. "ref/netstandard2.0/System.DirectoryServices.dll",
  4361. "ref/netstandard2.0/System.DirectoryServices.xml",
  4362. "runtimes/win/lib/net45/_._",
  4363. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
  4364. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
  4365. "system.directoryservices.4.7.0.nupkg.sha512",
  4366. "system.directoryservices.nuspec",
  4367. "useSharedDesignerContext.txt",
  4368. "version.txt"
  4369. ]
  4370. },
  4371. "System.DirectoryServices.Protocols/4.7.0": {
  4372. "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  4373. "type": "package",
  4374. "path": "system.directoryservices.protocols/4.7.0",
  4375. "files": [
  4376. ".nupkg.metadata",
  4377. ".signature.p7s",
  4378. "LICENSE.TXT",
  4379. "THIRD-PARTY-NOTICES.TXT",
  4380. "lib/net45/_._",
  4381. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4382. "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4383. "ref/net45/_._",
  4384. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4385. "ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4386. "runtimes/win/lib/net45/_._",
  4387. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
  4388. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
  4389. "system.directoryservices.protocols.4.7.0.nupkg.sha512",
  4390. "system.directoryservices.protocols.nuspec",
  4391. "useSharedDesignerContext.txt",
  4392. "version.txt"
  4393. ]
  4394. },
  4395. "System.Drawing.Common/4.7.0": {
  4396. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4397. "type": "package",
  4398. "path": "system.drawing.common/4.7.0",
  4399. "files": [
  4400. ".nupkg.metadata",
  4401. ".signature.p7s",
  4402. "LICENSE.TXT",
  4403. "THIRD-PARTY-NOTICES.TXT",
  4404. "lib/MonoAndroid10/_._",
  4405. "lib/MonoTouch10/_._",
  4406. "lib/net461/System.Drawing.Common.dll",
  4407. "lib/netstandard2.0/System.Drawing.Common.dll",
  4408. "lib/xamarinios10/_._",
  4409. "lib/xamarinmac20/_._",
  4410. "lib/xamarintvos10/_._",
  4411. "lib/xamarinwatchos10/_._",
  4412. "ref/MonoAndroid10/_._",
  4413. "ref/MonoTouch10/_._",
  4414. "ref/net461/System.Drawing.Common.dll",
  4415. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4416. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4417. "ref/netstandard2.0/System.Drawing.Common.dll",
  4418. "ref/xamarinios10/_._",
  4419. "ref/xamarinmac20/_._",
  4420. "ref/xamarintvos10/_._",
  4421. "ref/xamarinwatchos10/_._",
  4422. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4423. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4424. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4425. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4426. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4427. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4428. "system.drawing.common.4.7.0.nupkg.sha512",
  4429. "system.drawing.common.nuspec",
  4430. "useSharedDesignerContext.txt",
  4431. "version.txt"
  4432. ]
  4433. },
  4434. "System.Dynamic.Runtime/4.3.0": {
  4435. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  4436. "type": "package",
  4437. "path": "system.dynamic.runtime/4.3.0",
  4438. "files": [
  4439. ".nupkg.metadata",
  4440. ".signature.p7s",
  4441. "ThirdPartyNotices.txt",
  4442. "dotnet_library_license.txt",
  4443. "lib/MonoAndroid10/_._",
  4444. "lib/MonoTouch10/_._",
  4445. "lib/net45/_._",
  4446. "lib/netcore50/System.Dynamic.Runtime.dll",
  4447. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  4448. "lib/portable-net45+win8+wp8+wpa81/_._",
  4449. "lib/win8/_._",
  4450. "lib/wp80/_._",
  4451. "lib/wpa81/_._",
  4452. "lib/xamarinios10/_._",
  4453. "lib/xamarinmac20/_._",
  4454. "lib/xamarintvos10/_._",
  4455. "lib/xamarinwatchos10/_._",
  4456. "ref/MonoAndroid10/_._",
  4457. "ref/MonoTouch10/_._",
  4458. "ref/net45/_._",
  4459. "ref/netcore50/System.Dynamic.Runtime.dll",
  4460. "ref/netcore50/System.Dynamic.Runtime.xml",
  4461. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  4462. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  4463. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  4464. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  4465. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  4466. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  4467. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  4468. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  4469. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  4470. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  4471. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  4472. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  4473. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  4474. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  4475. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  4476. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  4477. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  4478. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  4479. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  4480. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  4481. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  4482. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  4483. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  4484. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  4485. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  4486. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  4487. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  4488. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  4489. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  4490. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  4491. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  4492. "ref/portable-net45+win8+wp8+wpa81/_._",
  4493. "ref/win8/_._",
  4494. "ref/wp80/_._",
  4495. "ref/wpa81/_._",
  4496. "ref/xamarinios10/_._",
  4497. "ref/xamarinmac20/_._",
  4498. "ref/xamarintvos10/_._",
  4499. "ref/xamarinwatchos10/_._",
  4500. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  4501. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  4502. "system.dynamic.runtime.nuspec"
  4503. ]
  4504. },
  4505. "System.Globalization/4.3.0": {
  4506. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4507. "type": "package",
  4508. "path": "system.globalization/4.3.0",
  4509. "files": [
  4510. ".nupkg.metadata",
  4511. ".signature.p7s",
  4512. "ThirdPartyNotices.txt",
  4513. "dotnet_library_license.txt",
  4514. "lib/MonoAndroid10/_._",
  4515. "lib/MonoTouch10/_._",
  4516. "lib/net45/_._",
  4517. "lib/portable-net45+win8+wp8+wpa81/_._",
  4518. "lib/win8/_._",
  4519. "lib/wp80/_._",
  4520. "lib/wpa81/_._",
  4521. "lib/xamarinios10/_._",
  4522. "lib/xamarinmac20/_._",
  4523. "lib/xamarintvos10/_._",
  4524. "lib/xamarinwatchos10/_._",
  4525. "ref/MonoAndroid10/_._",
  4526. "ref/MonoTouch10/_._",
  4527. "ref/net45/_._",
  4528. "ref/netcore50/System.Globalization.dll",
  4529. "ref/netcore50/System.Globalization.xml",
  4530. "ref/netcore50/de/System.Globalization.xml",
  4531. "ref/netcore50/es/System.Globalization.xml",
  4532. "ref/netcore50/fr/System.Globalization.xml",
  4533. "ref/netcore50/it/System.Globalization.xml",
  4534. "ref/netcore50/ja/System.Globalization.xml",
  4535. "ref/netcore50/ko/System.Globalization.xml",
  4536. "ref/netcore50/ru/System.Globalization.xml",
  4537. "ref/netcore50/zh-hans/System.Globalization.xml",
  4538. "ref/netcore50/zh-hant/System.Globalization.xml",
  4539. "ref/netstandard1.0/System.Globalization.dll",
  4540. "ref/netstandard1.0/System.Globalization.xml",
  4541. "ref/netstandard1.0/de/System.Globalization.xml",
  4542. "ref/netstandard1.0/es/System.Globalization.xml",
  4543. "ref/netstandard1.0/fr/System.Globalization.xml",
  4544. "ref/netstandard1.0/it/System.Globalization.xml",
  4545. "ref/netstandard1.0/ja/System.Globalization.xml",
  4546. "ref/netstandard1.0/ko/System.Globalization.xml",
  4547. "ref/netstandard1.0/ru/System.Globalization.xml",
  4548. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4549. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4550. "ref/netstandard1.3/System.Globalization.dll",
  4551. "ref/netstandard1.3/System.Globalization.xml",
  4552. "ref/netstandard1.3/de/System.Globalization.xml",
  4553. "ref/netstandard1.3/es/System.Globalization.xml",
  4554. "ref/netstandard1.3/fr/System.Globalization.xml",
  4555. "ref/netstandard1.3/it/System.Globalization.xml",
  4556. "ref/netstandard1.3/ja/System.Globalization.xml",
  4557. "ref/netstandard1.3/ko/System.Globalization.xml",
  4558. "ref/netstandard1.3/ru/System.Globalization.xml",
  4559. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4560. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4561. "ref/portable-net45+win8+wp8+wpa81/_._",
  4562. "ref/win8/_._",
  4563. "ref/wp80/_._",
  4564. "ref/wpa81/_._",
  4565. "ref/xamarinios10/_._",
  4566. "ref/xamarinmac20/_._",
  4567. "ref/xamarintvos10/_._",
  4568. "ref/xamarinwatchos10/_._",
  4569. "system.globalization.4.3.0.nupkg.sha512",
  4570. "system.globalization.nuspec"
  4571. ]
  4572. },
  4573. "System.IdentityModel.Tokens.Jwt/6.15.1": {
  4574. "sha512": "q3ZLyWmpX4+jW4XITf7Axd+9sC6w2NrQaKcQQT9A8waoknHgaNwSeookpUmPMQDqS0afT9Lh0JYub196vzuzbA==",
  4575. "type": "package",
  4576. "path": "system.identitymodel.tokens.jwt/6.15.1",
  4577. "files": [
  4578. ".nupkg.metadata",
  4579. ".signature.p7s",
  4580. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4581. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4582. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4583. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4584. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  4585. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  4586. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4587. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4588. "system.identitymodel.tokens.jwt.6.15.1.nupkg.sha512",
  4589. "system.identitymodel.tokens.jwt.nuspec"
  4590. ]
  4591. },
  4592. "System.IO/4.3.0": {
  4593. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4594. "type": "package",
  4595. "path": "system.io/4.3.0",
  4596. "files": [
  4597. ".nupkg.metadata",
  4598. ".signature.p7s",
  4599. "ThirdPartyNotices.txt",
  4600. "dotnet_library_license.txt",
  4601. "lib/MonoAndroid10/_._",
  4602. "lib/MonoTouch10/_._",
  4603. "lib/net45/_._",
  4604. "lib/net462/System.IO.dll",
  4605. "lib/portable-net45+win8+wp8+wpa81/_._",
  4606. "lib/win8/_._",
  4607. "lib/wp80/_._",
  4608. "lib/wpa81/_._",
  4609. "lib/xamarinios10/_._",
  4610. "lib/xamarinmac20/_._",
  4611. "lib/xamarintvos10/_._",
  4612. "lib/xamarinwatchos10/_._",
  4613. "ref/MonoAndroid10/_._",
  4614. "ref/MonoTouch10/_._",
  4615. "ref/net45/_._",
  4616. "ref/net462/System.IO.dll",
  4617. "ref/netcore50/System.IO.dll",
  4618. "ref/netcore50/System.IO.xml",
  4619. "ref/netcore50/de/System.IO.xml",
  4620. "ref/netcore50/es/System.IO.xml",
  4621. "ref/netcore50/fr/System.IO.xml",
  4622. "ref/netcore50/it/System.IO.xml",
  4623. "ref/netcore50/ja/System.IO.xml",
  4624. "ref/netcore50/ko/System.IO.xml",
  4625. "ref/netcore50/ru/System.IO.xml",
  4626. "ref/netcore50/zh-hans/System.IO.xml",
  4627. "ref/netcore50/zh-hant/System.IO.xml",
  4628. "ref/netstandard1.0/System.IO.dll",
  4629. "ref/netstandard1.0/System.IO.xml",
  4630. "ref/netstandard1.0/de/System.IO.xml",
  4631. "ref/netstandard1.0/es/System.IO.xml",
  4632. "ref/netstandard1.0/fr/System.IO.xml",
  4633. "ref/netstandard1.0/it/System.IO.xml",
  4634. "ref/netstandard1.0/ja/System.IO.xml",
  4635. "ref/netstandard1.0/ko/System.IO.xml",
  4636. "ref/netstandard1.0/ru/System.IO.xml",
  4637. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4638. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4639. "ref/netstandard1.3/System.IO.dll",
  4640. "ref/netstandard1.3/System.IO.xml",
  4641. "ref/netstandard1.3/de/System.IO.xml",
  4642. "ref/netstandard1.3/es/System.IO.xml",
  4643. "ref/netstandard1.3/fr/System.IO.xml",
  4644. "ref/netstandard1.3/it/System.IO.xml",
  4645. "ref/netstandard1.3/ja/System.IO.xml",
  4646. "ref/netstandard1.3/ko/System.IO.xml",
  4647. "ref/netstandard1.3/ru/System.IO.xml",
  4648. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4649. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4650. "ref/netstandard1.5/System.IO.dll",
  4651. "ref/netstandard1.5/System.IO.xml",
  4652. "ref/netstandard1.5/de/System.IO.xml",
  4653. "ref/netstandard1.5/es/System.IO.xml",
  4654. "ref/netstandard1.5/fr/System.IO.xml",
  4655. "ref/netstandard1.5/it/System.IO.xml",
  4656. "ref/netstandard1.5/ja/System.IO.xml",
  4657. "ref/netstandard1.5/ko/System.IO.xml",
  4658. "ref/netstandard1.5/ru/System.IO.xml",
  4659. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4660. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4661. "ref/portable-net45+win8+wp8+wpa81/_._",
  4662. "ref/win8/_._",
  4663. "ref/wp80/_._",
  4664. "ref/wpa81/_._",
  4665. "ref/xamarinios10/_._",
  4666. "ref/xamarinmac20/_._",
  4667. "ref/xamarintvos10/_._",
  4668. "ref/xamarinwatchos10/_._",
  4669. "system.io.4.3.0.nupkg.sha512",
  4670. "system.io.nuspec"
  4671. ]
  4672. },
  4673. "System.IO.FileSystem/4.3.0": {
  4674. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4675. "type": "package",
  4676. "path": "system.io.filesystem/4.3.0",
  4677. "files": [
  4678. ".nupkg.metadata",
  4679. ".signature.p7s",
  4680. "ThirdPartyNotices.txt",
  4681. "dotnet_library_license.txt",
  4682. "lib/MonoAndroid10/_._",
  4683. "lib/MonoTouch10/_._",
  4684. "lib/net46/System.IO.FileSystem.dll",
  4685. "lib/xamarinios10/_._",
  4686. "lib/xamarinmac20/_._",
  4687. "lib/xamarintvos10/_._",
  4688. "lib/xamarinwatchos10/_._",
  4689. "ref/MonoAndroid10/_._",
  4690. "ref/MonoTouch10/_._",
  4691. "ref/net46/System.IO.FileSystem.dll",
  4692. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4693. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4694. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4695. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4696. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4697. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4698. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4699. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4700. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4701. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4702. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4703. "ref/xamarinios10/_._",
  4704. "ref/xamarinmac20/_._",
  4705. "ref/xamarintvos10/_._",
  4706. "ref/xamarinwatchos10/_._",
  4707. "system.io.filesystem.4.3.0.nupkg.sha512",
  4708. "system.io.filesystem.nuspec"
  4709. ]
  4710. },
  4711. "System.IO.FileSystem.AccessControl/4.7.0": {
  4712. "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  4713. "type": "package",
  4714. "path": "system.io.filesystem.accesscontrol/4.7.0",
  4715. "files": [
  4716. ".nupkg.metadata",
  4717. ".signature.p7s",
  4718. "LICENSE.TXT",
  4719. "THIRD-PARTY-NOTICES.TXT",
  4720. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  4721. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  4722. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  4723. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  4724. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  4725. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  4726. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  4727. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  4728. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  4729. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  4730. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  4731. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  4732. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  4733. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  4734. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  4735. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  4736. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  4737. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  4738. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  4739. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  4740. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  4741. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  4742. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  4743. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  4744. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  4745. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  4746. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  4747. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  4748. "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
  4749. "system.io.filesystem.accesscontrol.nuspec",
  4750. "useSharedDesignerContext.txt",
  4751. "version.txt"
  4752. ]
  4753. },
  4754. "System.IO.FileSystem.Primitives/4.3.0": {
  4755. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  4756. "type": "package",
  4757. "path": "system.io.filesystem.primitives/4.3.0",
  4758. "files": [
  4759. ".nupkg.metadata",
  4760. ".signature.p7s",
  4761. "ThirdPartyNotices.txt",
  4762. "dotnet_library_license.txt",
  4763. "lib/MonoAndroid10/_._",
  4764. "lib/MonoTouch10/_._",
  4765. "lib/net46/System.IO.FileSystem.Primitives.dll",
  4766. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4767. "lib/xamarinios10/_._",
  4768. "lib/xamarinmac20/_._",
  4769. "lib/xamarintvos10/_._",
  4770. "lib/xamarinwatchos10/_._",
  4771. "ref/MonoAndroid10/_._",
  4772. "ref/MonoTouch10/_._",
  4773. "ref/net46/System.IO.FileSystem.Primitives.dll",
  4774. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4775. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  4776. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  4777. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  4778. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  4779. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  4780. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  4781. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  4782. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  4783. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  4784. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  4785. "ref/xamarinios10/_._",
  4786. "ref/xamarinmac20/_._",
  4787. "ref/xamarintvos10/_._",
  4788. "ref/xamarinwatchos10/_._",
  4789. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  4790. "system.io.filesystem.primitives.nuspec"
  4791. ]
  4792. },
  4793. "System.Linq/4.3.0": {
  4794. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  4795. "type": "package",
  4796. "path": "system.linq/4.3.0",
  4797. "files": [
  4798. ".nupkg.metadata",
  4799. ".signature.p7s",
  4800. "ThirdPartyNotices.txt",
  4801. "dotnet_library_license.txt",
  4802. "lib/MonoAndroid10/_._",
  4803. "lib/MonoTouch10/_._",
  4804. "lib/net45/_._",
  4805. "lib/net463/System.Linq.dll",
  4806. "lib/netcore50/System.Linq.dll",
  4807. "lib/netstandard1.6/System.Linq.dll",
  4808. "lib/portable-net45+win8+wp8+wpa81/_._",
  4809. "lib/win8/_._",
  4810. "lib/wp80/_._",
  4811. "lib/wpa81/_._",
  4812. "lib/xamarinios10/_._",
  4813. "lib/xamarinmac20/_._",
  4814. "lib/xamarintvos10/_._",
  4815. "lib/xamarinwatchos10/_._",
  4816. "ref/MonoAndroid10/_._",
  4817. "ref/MonoTouch10/_._",
  4818. "ref/net45/_._",
  4819. "ref/net463/System.Linq.dll",
  4820. "ref/netcore50/System.Linq.dll",
  4821. "ref/netcore50/System.Linq.xml",
  4822. "ref/netcore50/de/System.Linq.xml",
  4823. "ref/netcore50/es/System.Linq.xml",
  4824. "ref/netcore50/fr/System.Linq.xml",
  4825. "ref/netcore50/it/System.Linq.xml",
  4826. "ref/netcore50/ja/System.Linq.xml",
  4827. "ref/netcore50/ko/System.Linq.xml",
  4828. "ref/netcore50/ru/System.Linq.xml",
  4829. "ref/netcore50/zh-hans/System.Linq.xml",
  4830. "ref/netcore50/zh-hant/System.Linq.xml",
  4831. "ref/netstandard1.0/System.Linq.dll",
  4832. "ref/netstandard1.0/System.Linq.xml",
  4833. "ref/netstandard1.0/de/System.Linq.xml",
  4834. "ref/netstandard1.0/es/System.Linq.xml",
  4835. "ref/netstandard1.0/fr/System.Linq.xml",
  4836. "ref/netstandard1.0/it/System.Linq.xml",
  4837. "ref/netstandard1.0/ja/System.Linq.xml",
  4838. "ref/netstandard1.0/ko/System.Linq.xml",
  4839. "ref/netstandard1.0/ru/System.Linq.xml",
  4840. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  4841. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  4842. "ref/netstandard1.6/System.Linq.dll",
  4843. "ref/netstandard1.6/System.Linq.xml",
  4844. "ref/netstandard1.6/de/System.Linq.xml",
  4845. "ref/netstandard1.6/es/System.Linq.xml",
  4846. "ref/netstandard1.6/fr/System.Linq.xml",
  4847. "ref/netstandard1.6/it/System.Linq.xml",
  4848. "ref/netstandard1.6/ja/System.Linq.xml",
  4849. "ref/netstandard1.6/ko/System.Linq.xml",
  4850. "ref/netstandard1.6/ru/System.Linq.xml",
  4851. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  4852. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  4853. "ref/portable-net45+win8+wp8+wpa81/_._",
  4854. "ref/win8/_._",
  4855. "ref/wp80/_._",
  4856. "ref/wpa81/_._",
  4857. "ref/xamarinios10/_._",
  4858. "ref/xamarinmac20/_._",
  4859. "ref/xamarintvos10/_._",
  4860. "ref/xamarinwatchos10/_._",
  4861. "system.linq.4.3.0.nupkg.sha512",
  4862. "system.linq.nuspec"
  4863. ]
  4864. },
  4865. "System.Linq.Expressions/4.3.0": {
  4866. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  4867. "type": "package",
  4868. "path": "system.linq.expressions/4.3.0",
  4869. "files": [
  4870. ".nupkg.metadata",
  4871. ".signature.p7s",
  4872. "ThirdPartyNotices.txt",
  4873. "dotnet_library_license.txt",
  4874. "lib/MonoAndroid10/_._",
  4875. "lib/MonoTouch10/_._",
  4876. "lib/net45/_._",
  4877. "lib/net463/System.Linq.Expressions.dll",
  4878. "lib/netcore50/System.Linq.Expressions.dll",
  4879. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4880. "lib/portable-net45+win8+wp8+wpa81/_._",
  4881. "lib/win8/_._",
  4882. "lib/wp80/_._",
  4883. "lib/wpa81/_._",
  4884. "lib/xamarinios10/_._",
  4885. "lib/xamarinmac20/_._",
  4886. "lib/xamarintvos10/_._",
  4887. "lib/xamarinwatchos10/_._",
  4888. "ref/MonoAndroid10/_._",
  4889. "ref/MonoTouch10/_._",
  4890. "ref/net45/_._",
  4891. "ref/net463/System.Linq.Expressions.dll",
  4892. "ref/netcore50/System.Linq.Expressions.dll",
  4893. "ref/netcore50/System.Linq.Expressions.xml",
  4894. "ref/netcore50/de/System.Linq.Expressions.xml",
  4895. "ref/netcore50/es/System.Linq.Expressions.xml",
  4896. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4897. "ref/netcore50/it/System.Linq.Expressions.xml",
  4898. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4899. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4900. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4901. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4902. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4903. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4904. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4905. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4906. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4907. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4908. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4909. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4910. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4911. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4912. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4913. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4914. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4915. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4916. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4917. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4918. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4919. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4920. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4921. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4922. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4923. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4924. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4925. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4926. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4927. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4928. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4929. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4930. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4931. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4932. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4933. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4934. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4935. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4936. "ref/portable-net45+win8+wp8+wpa81/_._",
  4937. "ref/win8/_._",
  4938. "ref/wp80/_._",
  4939. "ref/wpa81/_._",
  4940. "ref/xamarinios10/_._",
  4941. "ref/xamarinmac20/_._",
  4942. "ref/xamarintvos10/_._",
  4943. "ref/xamarinwatchos10/_._",
  4944. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4945. "system.linq.expressions.4.3.0.nupkg.sha512",
  4946. "system.linq.expressions.nuspec"
  4947. ]
  4948. },
  4949. "System.Memory/4.5.3": {
  4950. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  4951. "type": "package",
  4952. "path": "system.memory/4.5.3",
  4953. "files": [
  4954. ".nupkg.metadata",
  4955. ".signature.p7s",
  4956. "LICENSE.TXT",
  4957. "THIRD-PARTY-NOTICES.TXT",
  4958. "lib/netcoreapp2.1/_._",
  4959. "lib/netstandard1.1/System.Memory.dll",
  4960. "lib/netstandard1.1/System.Memory.xml",
  4961. "lib/netstandard2.0/System.Memory.dll",
  4962. "lib/netstandard2.0/System.Memory.xml",
  4963. "ref/netcoreapp2.1/_._",
  4964. "system.memory.4.5.3.nupkg.sha512",
  4965. "system.memory.nuspec",
  4966. "useSharedDesignerContext.txt",
  4967. "version.txt"
  4968. ]
  4969. },
  4970. "System.ObjectModel/4.3.0": {
  4971. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4972. "type": "package",
  4973. "path": "system.objectmodel/4.3.0",
  4974. "files": [
  4975. ".nupkg.metadata",
  4976. ".signature.p7s",
  4977. "ThirdPartyNotices.txt",
  4978. "dotnet_library_license.txt",
  4979. "lib/MonoAndroid10/_._",
  4980. "lib/MonoTouch10/_._",
  4981. "lib/net45/_._",
  4982. "lib/netcore50/System.ObjectModel.dll",
  4983. "lib/netstandard1.3/System.ObjectModel.dll",
  4984. "lib/portable-net45+win8+wp8+wpa81/_._",
  4985. "lib/win8/_._",
  4986. "lib/wp80/_._",
  4987. "lib/wpa81/_._",
  4988. "lib/xamarinios10/_._",
  4989. "lib/xamarinmac20/_._",
  4990. "lib/xamarintvos10/_._",
  4991. "lib/xamarinwatchos10/_._",
  4992. "ref/MonoAndroid10/_._",
  4993. "ref/MonoTouch10/_._",
  4994. "ref/net45/_._",
  4995. "ref/netcore50/System.ObjectModel.dll",
  4996. "ref/netcore50/System.ObjectModel.xml",
  4997. "ref/netcore50/de/System.ObjectModel.xml",
  4998. "ref/netcore50/es/System.ObjectModel.xml",
  4999. "ref/netcore50/fr/System.ObjectModel.xml",
  5000. "ref/netcore50/it/System.ObjectModel.xml",
  5001. "ref/netcore50/ja/System.ObjectModel.xml",
  5002. "ref/netcore50/ko/System.ObjectModel.xml",
  5003. "ref/netcore50/ru/System.ObjectModel.xml",
  5004. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5005. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5006. "ref/netstandard1.0/System.ObjectModel.dll",
  5007. "ref/netstandard1.0/System.ObjectModel.xml",
  5008. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5009. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5010. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5011. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5012. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5013. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5014. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5015. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5016. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5017. "ref/netstandard1.3/System.ObjectModel.dll",
  5018. "ref/netstandard1.3/System.ObjectModel.xml",
  5019. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5020. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5021. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5022. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5023. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5024. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5025. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5026. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5027. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5028. "ref/portable-net45+win8+wp8+wpa81/_._",
  5029. "ref/win8/_._",
  5030. "ref/wp80/_._",
  5031. "ref/wpa81/_._",
  5032. "ref/xamarinios10/_._",
  5033. "ref/xamarinmac20/_._",
  5034. "ref/xamarintvos10/_._",
  5035. "ref/xamarinwatchos10/_._",
  5036. "system.objectmodel.4.3.0.nupkg.sha512",
  5037. "system.objectmodel.nuspec"
  5038. ]
  5039. },
  5040. "System.Reflection/4.3.0": {
  5041. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5042. "type": "package",
  5043. "path": "system.reflection/4.3.0",
  5044. "files": [
  5045. ".nupkg.metadata",
  5046. ".signature.p7s",
  5047. "ThirdPartyNotices.txt",
  5048. "dotnet_library_license.txt",
  5049. "lib/MonoAndroid10/_._",
  5050. "lib/MonoTouch10/_._",
  5051. "lib/net45/_._",
  5052. "lib/net462/System.Reflection.dll",
  5053. "lib/portable-net45+win8+wp8+wpa81/_._",
  5054. "lib/win8/_._",
  5055. "lib/wp80/_._",
  5056. "lib/wpa81/_._",
  5057. "lib/xamarinios10/_._",
  5058. "lib/xamarinmac20/_._",
  5059. "lib/xamarintvos10/_._",
  5060. "lib/xamarinwatchos10/_._",
  5061. "ref/MonoAndroid10/_._",
  5062. "ref/MonoTouch10/_._",
  5063. "ref/net45/_._",
  5064. "ref/net462/System.Reflection.dll",
  5065. "ref/netcore50/System.Reflection.dll",
  5066. "ref/netcore50/System.Reflection.xml",
  5067. "ref/netcore50/de/System.Reflection.xml",
  5068. "ref/netcore50/es/System.Reflection.xml",
  5069. "ref/netcore50/fr/System.Reflection.xml",
  5070. "ref/netcore50/it/System.Reflection.xml",
  5071. "ref/netcore50/ja/System.Reflection.xml",
  5072. "ref/netcore50/ko/System.Reflection.xml",
  5073. "ref/netcore50/ru/System.Reflection.xml",
  5074. "ref/netcore50/zh-hans/System.Reflection.xml",
  5075. "ref/netcore50/zh-hant/System.Reflection.xml",
  5076. "ref/netstandard1.0/System.Reflection.dll",
  5077. "ref/netstandard1.0/System.Reflection.xml",
  5078. "ref/netstandard1.0/de/System.Reflection.xml",
  5079. "ref/netstandard1.0/es/System.Reflection.xml",
  5080. "ref/netstandard1.0/fr/System.Reflection.xml",
  5081. "ref/netstandard1.0/it/System.Reflection.xml",
  5082. "ref/netstandard1.0/ja/System.Reflection.xml",
  5083. "ref/netstandard1.0/ko/System.Reflection.xml",
  5084. "ref/netstandard1.0/ru/System.Reflection.xml",
  5085. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5086. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5087. "ref/netstandard1.3/System.Reflection.dll",
  5088. "ref/netstandard1.3/System.Reflection.xml",
  5089. "ref/netstandard1.3/de/System.Reflection.xml",
  5090. "ref/netstandard1.3/es/System.Reflection.xml",
  5091. "ref/netstandard1.3/fr/System.Reflection.xml",
  5092. "ref/netstandard1.3/it/System.Reflection.xml",
  5093. "ref/netstandard1.3/ja/System.Reflection.xml",
  5094. "ref/netstandard1.3/ko/System.Reflection.xml",
  5095. "ref/netstandard1.3/ru/System.Reflection.xml",
  5096. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5097. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5098. "ref/netstandard1.5/System.Reflection.dll",
  5099. "ref/netstandard1.5/System.Reflection.xml",
  5100. "ref/netstandard1.5/de/System.Reflection.xml",
  5101. "ref/netstandard1.5/es/System.Reflection.xml",
  5102. "ref/netstandard1.5/fr/System.Reflection.xml",
  5103. "ref/netstandard1.5/it/System.Reflection.xml",
  5104. "ref/netstandard1.5/ja/System.Reflection.xml",
  5105. "ref/netstandard1.5/ko/System.Reflection.xml",
  5106. "ref/netstandard1.5/ru/System.Reflection.xml",
  5107. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5108. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5109. "ref/portable-net45+win8+wp8+wpa81/_._",
  5110. "ref/win8/_._",
  5111. "ref/wp80/_._",
  5112. "ref/wpa81/_._",
  5113. "ref/xamarinios10/_._",
  5114. "ref/xamarinmac20/_._",
  5115. "ref/xamarintvos10/_._",
  5116. "ref/xamarinwatchos10/_._",
  5117. "system.reflection.4.3.0.nupkg.sha512",
  5118. "system.reflection.nuspec"
  5119. ]
  5120. },
  5121. "System.Reflection.Emit/4.3.0": {
  5122. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5123. "type": "package",
  5124. "path": "system.reflection.emit/4.3.0",
  5125. "files": [
  5126. ".nupkg.metadata",
  5127. ".signature.p7s",
  5128. "ThirdPartyNotices.txt",
  5129. "dotnet_library_license.txt",
  5130. "lib/MonoAndroid10/_._",
  5131. "lib/monotouch10/_._",
  5132. "lib/net45/_._",
  5133. "lib/netcore50/System.Reflection.Emit.dll",
  5134. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5135. "lib/xamarinios10/_._",
  5136. "lib/xamarinmac20/_._",
  5137. "lib/xamarintvos10/_._",
  5138. "lib/xamarinwatchos10/_._",
  5139. "ref/MonoAndroid10/_._",
  5140. "ref/net45/_._",
  5141. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5142. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5143. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5144. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5145. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5146. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5147. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5148. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5149. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5150. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5151. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5152. "ref/xamarinmac20/_._",
  5153. "system.reflection.emit.4.3.0.nupkg.sha512",
  5154. "system.reflection.emit.nuspec"
  5155. ]
  5156. },
  5157. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5158. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5159. "type": "package",
  5160. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. ".signature.p7s",
  5164. "ThirdPartyNotices.txt",
  5165. "dotnet_library_license.txt",
  5166. "lib/MonoAndroid10/_._",
  5167. "lib/MonoTouch10/_._",
  5168. "lib/net45/_._",
  5169. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5170. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5171. "lib/portable-net45+wp8/_._",
  5172. "lib/wp80/_._",
  5173. "lib/xamarinios10/_._",
  5174. "lib/xamarinmac20/_._",
  5175. "lib/xamarintvos10/_._",
  5176. "lib/xamarinwatchos10/_._",
  5177. "ref/MonoAndroid10/_._",
  5178. "ref/MonoTouch10/_._",
  5179. "ref/net45/_._",
  5180. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5181. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5182. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5183. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5184. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5185. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5186. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5187. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5188. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5189. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5190. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5191. "ref/portable-net45+wp8/_._",
  5192. "ref/wp80/_._",
  5193. "ref/xamarinios10/_._",
  5194. "ref/xamarinmac20/_._",
  5195. "ref/xamarintvos10/_._",
  5196. "ref/xamarinwatchos10/_._",
  5197. "runtimes/aot/lib/netcore50/_._",
  5198. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5199. "system.reflection.emit.ilgeneration.nuspec"
  5200. ]
  5201. },
  5202. "System.Reflection.Emit.Lightweight/4.3.0": {
  5203. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5204. "type": "package",
  5205. "path": "system.reflection.emit.lightweight/4.3.0",
  5206. "files": [
  5207. ".nupkg.metadata",
  5208. ".signature.p7s",
  5209. "ThirdPartyNotices.txt",
  5210. "dotnet_library_license.txt",
  5211. "lib/MonoAndroid10/_._",
  5212. "lib/MonoTouch10/_._",
  5213. "lib/net45/_._",
  5214. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5215. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5216. "lib/portable-net45+wp8/_._",
  5217. "lib/wp80/_._",
  5218. "lib/xamarinios10/_._",
  5219. "lib/xamarinmac20/_._",
  5220. "lib/xamarintvos10/_._",
  5221. "lib/xamarinwatchos10/_._",
  5222. "ref/MonoAndroid10/_._",
  5223. "ref/MonoTouch10/_._",
  5224. "ref/net45/_._",
  5225. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5226. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5227. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5228. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5229. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5230. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5231. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5232. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5233. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5234. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5235. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5236. "ref/portable-net45+wp8/_._",
  5237. "ref/wp80/_._",
  5238. "ref/xamarinios10/_._",
  5239. "ref/xamarinmac20/_._",
  5240. "ref/xamarintvos10/_._",
  5241. "ref/xamarinwatchos10/_._",
  5242. "runtimes/aot/lib/netcore50/_._",
  5243. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  5244. "system.reflection.emit.lightweight.nuspec"
  5245. ]
  5246. },
  5247. "System.Reflection.Extensions/4.3.0": {
  5248. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  5249. "type": "package",
  5250. "path": "system.reflection.extensions/4.3.0",
  5251. "files": [
  5252. ".nupkg.metadata",
  5253. ".signature.p7s",
  5254. "ThirdPartyNotices.txt",
  5255. "dotnet_library_license.txt",
  5256. "lib/MonoAndroid10/_._",
  5257. "lib/MonoTouch10/_._",
  5258. "lib/net45/_._",
  5259. "lib/portable-net45+win8+wp8+wpa81/_._",
  5260. "lib/win8/_._",
  5261. "lib/wp80/_._",
  5262. "lib/wpa81/_._",
  5263. "lib/xamarinios10/_._",
  5264. "lib/xamarinmac20/_._",
  5265. "lib/xamarintvos10/_._",
  5266. "lib/xamarinwatchos10/_._",
  5267. "ref/MonoAndroid10/_._",
  5268. "ref/MonoTouch10/_._",
  5269. "ref/net45/_._",
  5270. "ref/netcore50/System.Reflection.Extensions.dll",
  5271. "ref/netcore50/System.Reflection.Extensions.xml",
  5272. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5273. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5274. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5275. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5276. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5277. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5278. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5279. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5280. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5281. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5282. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5283. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5284. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5285. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5286. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5287. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5288. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5289. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5290. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5291. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5292. "ref/portable-net45+win8+wp8+wpa81/_._",
  5293. "ref/win8/_._",
  5294. "ref/wp80/_._",
  5295. "ref/wpa81/_._",
  5296. "ref/xamarinios10/_._",
  5297. "ref/xamarinmac20/_._",
  5298. "ref/xamarintvos10/_._",
  5299. "ref/xamarinwatchos10/_._",
  5300. "system.reflection.extensions.4.3.0.nupkg.sha512",
  5301. "system.reflection.extensions.nuspec"
  5302. ]
  5303. },
  5304. "System.Reflection.Metadata/6.0.1": {
  5305. "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
  5306. "type": "package",
  5307. "path": "system.reflection.metadata/6.0.1",
  5308. "files": [
  5309. ".nupkg.metadata",
  5310. ".signature.p7s",
  5311. "Icon.png",
  5312. "LICENSE.TXT",
  5313. "THIRD-PARTY-NOTICES.TXT",
  5314. "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
  5315. "buildTransitive/netcoreapp3.1/_._",
  5316. "lib/net461/System.Reflection.Metadata.dll",
  5317. "lib/net461/System.Reflection.Metadata.xml",
  5318. "lib/net6.0/System.Reflection.Metadata.dll",
  5319. "lib/net6.0/System.Reflection.Metadata.xml",
  5320. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  5321. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  5322. "system.reflection.metadata.6.0.1.nupkg.sha512",
  5323. "system.reflection.metadata.nuspec",
  5324. "useSharedDesignerContext.txt"
  5325. ]
  5326. },
  5327. "System.Reflection.Primitives/4.3.0": {
  5328. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5329. "type": "package",
  5330. "path": "system.reflection.primitives/4.3.0",
  5331. "files": [
  5332. ".nupkg.metadata",
  5333. ".signature.p7s",
  5334. "ThirdPartyNotices.txt",
  5335. "dotnet_library_license.txt",
  5336. "lib/MonoAndroid10/_._",
  5337. "lib/MonoTouch10/_._",
  5338. "lib/net45/_._",
  5339. "lib/portable-net45+win8+wp8+wpa81/_._",
  5340. "lib/win8/_._",
  5341. "lib/wp80/_._",
  5342. "lib/wpa81/_._",
  5343. "lib/xamarinios10/_._",
  5344. "lib/xamarinmac20/_._",
  5345. "lib/xamarintvos10/_._",
  5346. "lib/xamarinwatchos10/_._",
  5347. "ref/MonoAndroid10/_._",
  5348. "ref/MonoTouch10/_._",
  5349. "ref/net45/_._",
  5350. "ref/netcore50/System.Reflection.Primitives.dll",
  5351. "ref/netcore50/System.Reflection.Primitives.xml",
  5352. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5353. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5354. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5355. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5356. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5357. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5358. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5359. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5360. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5361. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5362. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5363. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5364. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5365. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5366. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5367. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5368. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5369. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5370. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5371. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5372. "ref/portable-net45+win8+wp8+wpa81/_._",
  5373. "ref/win8/_._",
  5374. "ref/wp80/_._",
  5375. "ref/wpa81/_._",
  5376. "ref/xamarinios10/_._",
  5377. "ref/xamarinmac20/_._",
  5378. "ref/xamarintvos10/_._",
  5379. "ref/xamarinwatchos10/_._",
  5380. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5381. "system.reflection.primitives.nuspec"
  5382. ]
  5383. },
  5384. "System.Reflection.TypeExtensions/4.3.0": {
  5385. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  5386. "type": "package",
  5387. "path": "system.reflection.typeextensions/4.3.0",
  5388. "files": [
  5389. ".nupkg.metadata",
  5390. ".signature.p7s",
  5391. "ThirdPartyNotices.txt",
  5392. "dotnet_library_license.txt",
  5393. "lib/MonoAndroid10/_._",
  5394. "lib/MonoTouch10/_._",
  5395. "lib/net46/System.Reflection.TypeExtensions.dll",
  5396. "lib/net462/System.Reflection.TypeExtensions.dll",
  5397. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5398. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5399. "lib/xamarinios10/_._",
  5400. "lib/xamarinmac20/_._",
  5401. "lib/xamarintvos10/_._",
  5402. "lib/xamarinwatchos10/_._",
  5403. "ref/MonoAndroid10/_._",
  5404. "ref/MonoTouch10/_._",
  5405. "ref/net46/System.Reflection.TypeExtensions.dll",
  5406. "ref/net462/System.Reflection.TypeExtensions.dll",
  5407. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5408. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5409. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5410. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5411. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5412. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5413. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5414. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5415. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5416. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5417. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5418. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5419. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5420. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5421. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5422. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5423. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5424. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5425. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5426. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5427. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5428. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5429. "ref/xamarinios10/_._",
  5430. "ref/xamarinmac20/_._",
  5431. "ref/xamarintvos10/_._",
  5432. "ref/xamarinwatchos10/_._",
  5433. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5434. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  5435. "system.reflection.typeextensions.nuspec"
  5436. ]
  5437. },
  5438. "System.Resources.ResourceManager/4.3.0": {
  5439. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  5440. "type": "package",
  5441. "path": "system.resources.resourcemanager/4.3.0",
  5442. "files": [
  5443. ".nupkg.metadata",
  5444. ".signature.p7s",
  5445. "ThirdPartyNotices.txt",
  5446. "dotnet_library_license.txt",
  5447. "lib/MonoAndroid10/_._",
  5448. "lib/MonoTouch10/_._",
  5449. "lib/net45/_._",
  5450. "lib/portable-net45+win8+wp8+wpa81/_._",
  5451. "lib/win8/_._",
  5452. "lib/wp80/_._",
  5453. "lib/wpa81/_._",
  5454. "lib/xamarinios10/_._",
  5455. "lib/xamarinmac20/_._",
  5456. "lib/xamarintvos10/_._",
  5457. "lib/xamarinwatchos10/_._",
  5458. "ref/MonoAndroid10/_._",
  5459. "ref/MonoTouch10/_._",
  5460. "ref/net45/_._",
  5461. "ref/netcore50/System.Resources.ResourceManager.dll",
  5462. "ref/netcore50/System.Resources.ResourceManager.xml",
  5463. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5464. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5465. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5466. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5467. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5468. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5469. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5470. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5471. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5472. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5473. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5474. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5475. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5476. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5477. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5478. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5479. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5480. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5481. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5482. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5483. "ref/portable-net45+win8+wp8+wpa81/_._",
  5484. "ref/win8/_._",
  5485. "ref/wp80/_._",
  5486. "ref/wpa81/_._",
  5487. "ref/xamarinios10/_._",
  5488. "ref/xamarinmac20/_._",
  5489. "ref/xamarintvos10/_._",
  5490. "ref/xamarinwatchos10/_._",
  5491. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  5492. "system.resources.resourcemanager.nuspec"
  5493. ]
  5494. },
  5495. "System.Runtime/4.3.0": {
  5496. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5497. "type": "package",
  5498. "path": "system.runtime/4.3.0",
  5499. "files": [
  5500. ".nupkg.metadata",
  5501. ".signature.p7s",
  5502. "ThirdPartyNotices.txt",
  5503. "dotnet_library_license.txt",
  5504. "lib/MonoAndroid10/_._",
  5505. "lib/MonoTouch10/_._",
  5506. "lib/net45/_._",
  5507. "lib/net462/System.Runtime.dll",
  5508. "lib/portable-net45+win8+wp80+wpa81/_._",
  5509. "lib/win8/_._",
  5510. "lib/wp80/_._",
  5511. "lib/wpa81/_._",
  5512. "lib/xamarinios10/_._",
  5513. "lib/xamarinmac20/_._",
  5514. "lib/xamarintvos10/_._",
  5515. "lib/xamarinwatchos10/_._",
  5516. "ref/MonoAndroid10/_._",
  5517. "ref/MonoTouch10/_._",
  5518. "ref/net45/_._",
  5519. "ref/net462/System.Runtime.dll",
  5520. "ref/netcore50/System.Runtime.dll",
  5521. "ref/netcore50/System.Runtime.xml",
  5522. "ref/netcore50/de/System.Runtime.xml",
  5523. "ref/netcore50/es/System.Runtime.xml",
  5524. "ref/netcore50/fr/System.Runtime.xml",
  5525. "ref/netcore50/it/System.Runtime.xml",
  5526. "ref/netcore50/ja/System.Runtime.xml",
  5527. "ref/netcore50/ko/System.Runtime.xml",
  5528. "ref/netcore50/ru/System.Runtime.xml",
  5529. "ref/netcore50/zh-hans/System.Runtime.xml",
  5530. "ref/netcore50/zh-hant/System.Runtime.xml",
  5531. "ref/netstandard1.0/System.Runtime.dll",
  5532. "ref/netstandard1.0/System.Runtime.xml",
  5533. "ref/netstandard1.0/de/System.Runtime.xml",
  5534. "ref/netstandard1.0/es/System.Runtime.xml",
  5535. "ref/netstandard1.0/fr/System.Runtime.xml",
  5536. "ref/netstandard1.0/it/System.Runtime.xml",
  5537. "ref/netstandard1.0/ja/System.Runtime.xml",
  5538. "ref/netstandard1.0/ko/System.Runtime.xml",
  5539. "ref/netstandard1.0/ru/System.Runtime.xml",
  5540. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5541. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5542. "ref/netstandard1.2/System.Runtime.dll",
  5543. "ref/netstandard1.2/System.Runtime.xml",
  5544. "ref/netstandard1.2/de/System.Runtime.xml",
  5545. "ref/netstandard1.2/es/System.Runtime.xml",
  5546. "ref/netstandard1.2/fr/System.Runtime.xml",
  5547. "ref/netstandard1.2/it/System.Runtime.xml",
  5548. "ref/netstandard1.2/ja/System.Runtime.xml",
  5549. "ref/netstandard1.2/ko/System.Runtime.xml",
  5550. "ref/netstandard1.2/ru/System.Runtime.xml",
  5551. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  5552. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  5553. "ref/netstandard1.3/System.Runtime.dll",
  5554. "ref/netstandard1.3/System.Runtime.xml",
  5555. "ref/netstandard1.3/de/System.Runtime.xml",
  5556. "ref/netstandard1.3/es/System.Runtime.xml",
  5557. "ref/netstandard1.3/fr/System.Runtime.xml",
  5558. "ref/netstandard1.3/it/System.Runtime.xml",
  5559. "ref/netstandard1.3/ja/System.Runtime.xml",
  5560. "ref/netstandard1.3/ko/System.Runtime.xml",
  5561. "ref/netstandard1.3/ru/System.Runtime.xml",
  5562. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  5563. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  5564. "ref/netstandard1.5/System.Runtime.dll",
  5565. "ref/netstandard1.5/System.Runtime.xml",
  5566. "ref/netstandard1.5/de/System.Runtime.xml",
  5567. "ref/netstandard1.5/es/System.Runtime.xml",
  5568. "ref/netstandard1.5/fr/System.Runtime.xml",
  5569. "ref/netstandard1.5/it/System.Runtime.xml",
  5570. "ref/netstandard1.5/ja/System.Runtime.xml",
  5571. "ref/netstandard1.5/ko/System.Runtime.xml",
  5572. "ref/netstandard1.5/ru/System.Runtime.xml",
  5573. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  5574. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  5575. "ref/portable-net45+win8+wp80+wpa81/_._",
  5576. "ref/win8/_._",
  5577. "ref/wp80/_._",
  5578. "ref/wpa81/_._",
  5579. "ref/xamarinios10/_._",
  5580. "ref/xamarinmac20/_._",
  5581. "ref/xamarintvos10/_._",
  5582. "ref/xamarinwatchos10/_._",
  5583. "system.runtime.4.3.0.nupkg.sha512",
  5584. "system.runtime.nuspec"
  5585. ]
  5586. },
  5587. "System.Runtime.Caching/4.7.0": {
  5588. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  5589. "type": "package",
  5590. "path": "system.runtime.caching/4.7.0",
  5591. "files": [
  5592. ".nupkg.metadata",
  5593. ".signature.p7s",
  5594. "LICENSE.TXT",
  5595. "THIRD-PARTY-NOTICES.TXT",
  5596. "lib/MonoAndroid10/_._",
  5597. "lib/MonoTouch10/_._",
  5598. "lib/net45/_._",
  5599. "lib/netstandard2.0/System.Runtime.Caching.dll",
  5600. "lib/netstandard2.0/System.Runtime.Caching.xml",
  5601. "lib/xamarinios10/_._",
  5602. "lib/xamarinmac20/_._",
  5603. "lib/xamarintvos10/_._",
  5604. "lib/xamarinwatchos10/_._",
  5605. "ref/MonoAndroid10/_._",
  5606. "ref/MonoTouch10/_._",
  5607. "ref/net45/_._",
  5608. "ref/netstandard2.0/System.Runtime.Caching.dll",
  5609. "ref/netstandard2.0/System.Runtime.Caching.xml",
  5610. "ref/xamarinios10/_._",
  5611. "ref/xamarinmac20/_._",
  5612. "ref/xamarintvos10/_._",
  5613. "ref/xamarinwatchos10/_._",
  5614. "runtimes/win/lib/net45/_._",
  5615. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  5616. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  5617. "system.runtime.caching.4.7.0.nupkg.sha512",
  5618. "system.runtime.caching.nuspec",
  5619. "useSharedDesignerContext.txt",
  5620. "version.txt"
  5621. ]
  5622. },
  5623. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5624. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  5625. "type": "package",
  5626. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  5627. "files": [
  5628. ".nupkg.metadata",
  5629. ".signature.p7s",
  5630. "Icon.png",
  5631. "LICENSE.TXT",
  5632. "THIRD-PARTY-NOTICES.TXT",
  5633. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  5634. "buildTransitive/netcoreapp3.1/_._",
  5635. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5636. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5637. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  5638. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  5639. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  5640. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  5641. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5642. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5643. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  5644. "system.runtime.compilerservices.unsafe.nuspec",
  5645. "useSharedDesignerContext.txt"
  5646. ]
  5647. },
  5648. "System.Runtime.Extensions/4.3.0": {
  5649. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  5650. "type": "package",
  5651. "path": "system.runtime.extensions/4.3.0",
  5652. "files": [
  5653. ".nupkg.metadata",
  5654. ".signature.p7s",
  5655. "ThirdPartyNotices.txt",
  5656. "dotnet_library_license.txt",
  5657. "lib/MonoAndroid10/_._",
  5658. "lib/MonoTouch10/_._",
  5659. "lib/net45/_._",
  5660. "lib/net462/System.Runtime.Extensions.dll",
  5661. "lib/portable-net45+win8+wp8+wpa81/_._",
  5662. "lib/win8/_._",
  5663. "lib/wp80/_._",
  5664. "lib/wpa81/_._",
  5665. "lib/xamarinios10/_._",
  5666. "lib/xamarinmac20/_._",
  5667. "lib/xamarintvos10/_._",
  5668. "lib/xamarinwatchos10/_._",
  5669. "ref/MonoAndroid10/_._",
  5670. "ref/MonoTouch10/_._",
  5671. "ref/net45/_._",
  5672. "ref/net462/System.Runtime.Extensions.dll",
  5673. "ref/netcore50/System.Runtime.Extensions.dll",
  5674. "ref/netcore50/System.Runtime.Extensions.xml",
  5675. "ref/netcore50/de/System.Runtime.Extensions.xml",
  5676. "ref/netcore50/es/System.Runtime.Extensions.xml",
  5677. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  5678. "ref/netcore50/it/System.Runtime.Extensions.xml",
  5679. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  5680. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  5681. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  5682. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  5683. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  5684. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  5685. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  5686. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  5687. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  5688. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  5689. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  5690. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  5691. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  5692. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  5693. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  5694. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  5695. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  5696. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  5697. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  5698. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  5699. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  5700. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  5701. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  5702. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  5703. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  5704. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  5705. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  5706. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  5707. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  5708. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  5709. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  5710. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  5711. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  5712. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  5713. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  5714. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  5715. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  5716. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  5717. "ref/portable-net45+win8+wp8+wpa81/_._",
  5718. "ref/win8/_._",
  5719. "ref/wp80/_._",
  5720. "ref/wpa81/_._",
  5721. "ref/xamarinios10/_._",
  5722. "ref/xamarinmac20/_._",
  5723. "ref/xamarintvos10/_._",
  5724. "ref/xamarinwatchos10/_._",
  5725. "system.runtime.extensions.4.3.0.nupkg.sha512",
  5726. "system.runtime.extensions.nuspec"
  5727. ]
  5728. },
  5729. "System.Runtime.Handles/4.3.0": {
  5730. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  5731. "type": "package",
  5732. "path": "system.runtime.handles/4.3.0",
  5733. "files": [
  5734. ".nupkg.metadata",
  5735. ".signature.p7s",
  5736. "ThirdPartyNotices.txt",
  5737. "dotnet_library_license.txt",
  5738. "lib/MonoAndroid10/_._",
  5739. "lib/MonoTouch10/_._",
  5740. "lib/net46/_._",
  5741. "lib/xamarinios10/_._",
  5742. "lib/xamarinmac20/_._",
  5743. "lib/xamarintvos10/_._",
  5744. "lib/xamarinwatchos10/_._",
  5745. "ref/MonoAndroid10/_._",
  5746. "ref/MonoTouch10/_._",
  5747. "ref/net46/_._",
  5748. "ref/netstandard1.3/System.Runtime.Handles.dll",
  5749. "ref/netstandard1.3/System.Runtime.Handles.xml",
  5750. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  5751. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  5752. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  5753. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  5754. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  5755. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  5756. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  5757. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  5758. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  5759. "ref/xamarinios10/_._",
  5760. "ref/xamarinmac20/_._",
  5761. "ref/xamarintvos10/_._",
  5762. "ref/xamarinwatchos10/_._",
  5763. "system.runtime.handles.4.3.0.nupkg.sha512",
  5764. "system.runtime.handles.nuspec"
  5765. ]
  5766. },
  5767. "System.Runtime.Serialization.Primitives/4.3.0": {
  5768. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  5769. "type": "package",
  5770. "path": "system.runtime.serialization.primitives/4.3.0",
  5771. "files": [
  5772. ".nupkg.metadata",
  5773. ".signature.p7s",
  5774. "ThirdPartyNotices.txt",
  5775. "dotnet_library_license.txt",
  5776. "lib/MonoAndroid10/_._",
  5777. "lib/MonoTouch10/_._",
  5778. "lib/net45/_._",
  5779. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  5780. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5781. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5782. "lib/portable-net45+win8+wp8+wpa81/_._",
  5783. "lib/win8/_._",
  5784. "lib/wp80/_._",
  5785. "lib/wpa81/_._",
  5786. "lib/xamarinios10/_._",
  5787. "lib/xamarinmac20/_._",
  5788. "lib/xamarintvos10/_._",
  5789. "lib/xamarinwatchos10/_._",
  5790. "ref/MonoAndroid10/_._",
  5791. "ref/MonoTouch10/_._",
  5792. "ref/net45/_._",
  5793. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  5794. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  5795. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  5796. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  5797. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  5798. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  5799. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  5800. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  5801. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  5802. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  5803. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5804. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5805. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  5806. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  5807. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  5808. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  5809. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  5810. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  5811. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  5812. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  5813. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  5814. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5815. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5816. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5817. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  5818. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  5819. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  5820. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  5821. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  5822. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  5823. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  5824. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  5825. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5826. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5827. "ref/portable-net45+win8+wp8+wpa81/_._",
  5828. "ref/win8/_._",
  5829. "ref/wp80/_._",
  5830. "ref/wpa81/_._",
  5831. "ref/xamarinios10/_._",
  5832. "ref/xamarinmac20/_._",
  5833. "ref/xamarintvos10/_._",
  5834. "ref/xamarinwatchos10/_._",
  5835. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5836. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  5837. "system.runtime.serialization.primitives.nuspec"
  5838. ]
  5839. },
  5840. "System.Security.AccessControl/4.7.0": {
  5841. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  5842. "type": "package",
  5843. "path": "system.security.accesscontrol/4.7.0",
  5844. "files": [
  5845. ".nupkg.metadata",
  5846. ".signature.p7s",
  5847. "LICENSE.TXT",
  5848. "THIRD-PARTY-NOTICES.TXT",
  5849. "lib/net46/System.Security.AccessControl.dll",
  5850. "lib/net461/System.Security.AccessControl.dll",
  5851. "lib/net461/System.Security.AccessControl.xml",
  5852. "lib/netstandard1.3/System.Security.AccessControl.dll",
  5853. "lib/netstandard2.0/System.Security.AccessControl.dll",
  5854. "lib/netstandard2.0/System.Security.AccessControl.xml",
  5855. "lib/uap10.0.16299/_._",
  5856. "ref/net46/System.Security.AccessControl.dll",
  5857. "ref/net461/System.Security.AccessControl.dll",
  5858. "ref/net461/System.Security.AccessControl.xml",
  5859. "ref/netstandard1.3/System.Security.AccessControl.dll",
  5860. "ref/netstandard1.3/System.Security.AccessControl.xml",
  5861. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  5862. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  5863. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  5864. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  5865. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  5866. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  5867. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  5868. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  5869. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  5870. "ref/netstandard2.0/System.Security.AccessControl.dll",
  5871. "ref/netstandard2.0/System.Security.AccessControl.xml",
  5872. "ref/uap10.0.16299/_._",
  5873. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  5874. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  5875. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  5876. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  5877. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  5878. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  5879. "runtimes/win/lib/uap10.0.16299/_._",
  5880. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  5881. "system.security.accesscontrol.nuspec",
  5882. "useSharedDesignerContext.txt",
  5883. "version.txt"
  5884. ]
  5885. },
  5886. "System.Security.Cryptography.Cng/4.5.0": {
  5887. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  5888. "type": "package",
  5889. "path": "system.security.cryptography.cng/4.5.0",
  5890. "files": [
  5891. ".nupkg.metadata",
  5892. ".signature.p7s",
  5893. "LICENSE.TXT",
  5894. "THIRD-PARTY-NOTICES.TXT",
  5895. "lib/MonoAndroid10/_._",
  5896. "lib/MonoTouch10/_._",
  5897. "lib/net46/System.Security.Cryptography.Cng.dll",
  5898. "lib/net461/System.Security.Cryptography.Cng.dll",
  5899. "lib/net462/System.Security.Cryptography.Cng.dll",
  5900. "lib/net47/System.Security.Cryptography.Cng.dll",
  5901. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5902. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5903. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5904. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5905. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5906. "lib/uap10.0.16299/_._",
  5907. "lib/xamarinios10/_._",
  5908. "lib/xamarinmac20/_._",
  5909. "lib/xamarintvos10/_._",
  5910. "lib/xamarinwatchos10/_._",
  5911. "ref/MonoAndroid10/_._",
  5912. "ref/MonoTouch10/_._",
  5913. "ref/net46/System.Security.Cryptography.Cng.dll",
  5914. "ref/net461/System.Security.Cryptography.Cng.dll",
  5915. "ref/net461/System.Security.Cryptography.Cng.xml",
  5916. "ref/net462/System.Security.Cryptography.Cng.dll",
  5917. "ref/net462/System.Security.Cryptography.Cng.xml",
  5918. "ref/net47/System.Security.Cryptography.Cng.dll",
  5919. "ref/net47/System.Security.Cryptography.Cng.xml",
  5920. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5921. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  5922. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5923. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  5924. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5925. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5926. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5927. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5928. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  5929. "ref/uap10.0.16299/_._",
  5930. "ref/xamarinios10/_._",
  5931. "ref/xamarinmac20/_._",
  5932. "ref/xamarintvos10/_._",
  5933. "ref/xamarinwatchos10/_._",
  5934. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5935. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5936. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  5937. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  5938. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5939. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5940. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5941. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5942. "runtimes/win/lib/uap10.0.16299/_._",
  5943. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  5944. "system.security.cryptography.cng.nuspec",
  5945. "useSharedDesignerContext.txt",
  5946. "version.txt"
  5947. ]
  5948. },
  5949. "System.Security.Cryptography.ProtectedData/4.7.0": {
  5950. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  5951. "type": "package",
  5952. "path": "system.security.cryptography.protecteddata/4.7.0",
  5953. "files": [
  5954. ".nupkg.metadata",
  5955. ".signature.p7s",
  5956. "LICENSE.TXT",
  5957. "THIRD-PARTY-NOTICES.TXT",
  5958. "lib/MonoAndroid10/_._",
  5959. "lib/MonoTouch10/_._",
  5960. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5961. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5962. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  5963. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5964. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5965. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5966. "lib/xamarinios10/_._",
  5967. "lib/xamarinmac20/_._",
  5968. "lib/xamarintvos10/_._",
  5969. "lib/xamarinwatchos10/_._",
  5970. "ref/MonoAndroid10/_._",
  5971. "ref/MonoTouch10/_._",
  5972. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  5973. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  5974. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  5975. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5976. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5977. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5978. "ref/xamarinios10/_._",
  5979. "ref/xamarinmac20/_._",
  5980. "ref/xamarintvos10/_._",
  5981. "ref/xamarinwatchos10/_._",
  5982. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5983. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5984. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  5985. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5986. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5987. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5988. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  5989. "system.security.cryptography.protecteddata.nuspec",
  5990. "useSharedDesignerContext.txt",
  5991. "version.txt"
  5992. ]
  5993. },
  5994. "System.Security.Permissions/4.7.0": {
  5995. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  5996. "type": "package",
  5997. "path": "system.security.permissions/4.7.0",
  5998. "files": [
  5999. ".nupkg.metadata",
  6000. ".signature.p7s",
  6001. "LICENSE.TXT",
  6002. "THIRD-PARTY-NOTICES.TXT",
  6003. "lib/net461/System.Security.Permissions.dll",
  6004. "lib/net461/System.Security.Permissions.xml",
  6005. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  6006. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  6007. "lib/netstandard2.0/System.Security.Permissions.dll",
  6008. "lib/netstandard2.0/System.Security.Permissions.xml",
  6009. "ref/net461/System.Security.Permissions.dll",
  6010. "ref/net461/System.Security.Permissions.xml",
  6011. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  6012. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  6013. "ref/netstandard2.0/System.Security.Permissions.dll",
  6014. "ref/netstandard2.0/System.Security.Permissions.xml",
  6015. "system.security.permissions.4.7.0.nupkg.sha512",
  6016. "system.security.permissions.nuspec",
  6017. "useSharedDesignerContext.txt",
  6018. "version.txt"
  6019. ]
  6020. },
  6021. "System.Security.Principal.Windows/4.7.0": {
  6022. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  6023. "type": "package",
  6024. "path": "system.security.principal.windows/4.7.0",
  6025. "files": [
  6026. ".nupkg.metadata",
  6027. ".signature.p7s",
  6028. "LICENSE.TXT",
  6029. "THIRD-PARTY-NOTICES.TXT",
  6030. "lib/net46/System.Security.Principal.Windows.dll",
  6031. "lib/net461/System.Security.Principal.Windows.dll",
  6032. "lib/net461/System.Security.Principal.Windows.xml",
  6033. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6034. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  6035. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  6036. "lib/uap10.0.16299/_._",
  6037. "ref/net46/System.Security.Principal.Windows.dll",
  6038. "ref/net461/System.Security.Principal.Windows.dll",
  6039. "ref/net461/System.Security.Principal.Windows.xml",
  6040. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  6041. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  6042. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  6043. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  6044. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  6045. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  6046. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  6047. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  6048. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  6049. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  6050. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  6051. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  6052. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  6053. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  6054. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  6055. "ref/uap10.0.16299/_._",
  6056. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6057. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6058. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6059. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6060. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  6061. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  6062. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  6063. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6064. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6065. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6066. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6067. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6068. "runtimes/win/lib/uap10.0.16299/_._",
  6069. "system.security.principal.windows.4.7.0.nupkg.sha512",
  6070. "system.security.principal.windows.nuspec",
  6071. "useSharedDesignerContext.txt",
  6072. "version.txt"
  6073. ]
  6074. },
  6075. "System.Text.Encoding/4.3.0": {
  6076. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  6077. "type": "package",
  6078. "path": "system.text.encoding/4.3.0",
  6079. "files": [
  6080. ".nupkg.metadata",
  6081. ".signature.p7s",
  6082. "ThirdPartyNotices.txt",
  6083. "dotnet_library_license.txt",
  6084. "lib/MonoAndroid10/_._",
  6085. "lib/MonoTouch10/_._",
  6086. "lib/net45/_._",
  6087. "lib/portable-net45+win8+wp8+wpa81/_._",
  6088. "lib/win8/_._",
  6089. "lib/wp80/_._",
  6090. "lib/wpa81/_._",
  6091. "lib/xamarinios10/_._",
  6092. "lib/xamarinmac20/_._",
  6093. "lib/xamarintvos10/_._",
  6094. "lib/xamarinwatchos10/_._",
  6095. "ref/MonoAndroid10/_._",
  6096. "ref/MonoTouch10/_._",
  6097. "ref/net45/_._",
  6098. "ref/netcore50/System.Text.Encoding.dll",
  6099. "ref/netcore50/System.Text.Encoding.xml",
  6100. "ref/netcore50/de/System.Text.Encoding.xml",
  6101. "ref/netcore50/es/System.Text.Encoding.xml",
  6102. "ref/netcore50/fr/System.Text.Encoding.xml",
  6103. "ref/netcore50/it/System.Text.Encoding.xml",
  6104. "ref/netcore50/ja/System.Text.Encoding.xml",
  6105. "ref/netcore50/ko/System.Text.Encoding.xml",
  6106. "ref/netcore50/ru/System.Text.Encoding.xml",
  6107. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  6108. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  6109. "ref/netstandard1.0/System.Text.Encoding.dll",
  6110. "ref/netstandard1.0/System.Text.Encoding.xml",
  6111. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  6112. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  6113. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  6114. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  6115. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  6116. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  6117. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  6118. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  6119. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  6120. "ref/netstandard1.3/System.Text.Encoding.dll",
  6121. "ref/netstandard1.3/System.Text.Encoding.xml",
  6122. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  6123. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  6124. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  6125. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  6126. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  6127. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  6128. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  6129. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  6130. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  6131. "ref/portable-net45+win8+wp8+wpa81/_._",
  6132. "ref/win8/_._",
  6133. "ref/wp80/_._",
  6134. "ref/wpa81/_._",
  6135. "ref/xamarinios10/_._",
  6136. "ref/xamarinmac20/_._",
  6137. "ref/xamarintvos10/_._",
  6138. "ref/xamarinwatchos10/_._",
  6139. "system.text.encoding.4.3.0.nupkg.sha512",
  6140. "system.text.encoding.nuspec"
  6141. ]
  6142. },
  6143. "System.Text.Encoding.CodePages/6.0.0": {
  6144. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  6145. "type": "package",
  6146. "path": "system.text.encoding.codepages/6.0.0",
  6147. "files": [
  6148. ".nupkg.metadata",
  6149. ".signature.p7s",
  6150. "Icon.png",
  6151. "LICENSE.TXT",
  6152. "THIRD-PARTY-NOTICES.TXT",
  6153. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  6154. "buildTransitive/netcoreapp3.1/_._",
  6155. "lib/MonoAndroid10/_._",
  6156. "lib/MonoTouch10/_._",
  6157. "lib/net461/System.Text.Encoding.CodePages.dll",
  6158. "lib/net461/System.Text.Encoding.CodePages.xml",
  6159. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  6160. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  6161. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  6162. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  6163. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6164. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6165. "lib/xamarinios10/_._",
  6166. "lib/xamarinmac20/_._",
  6167. "lib/xamarintvos10/_._",
  6168. "lib/xamarinwatchos10/_._",
  6169. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  6170. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  6171. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  6172. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  6173. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  6174. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  6175. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6176. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6177. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  6178. "system.text.encoding.codepages.nuspec",
  6179. "useSharedDesignerContext.txt"
  6180. ]
  6181. },
  6182. "System.Text.Encodings.Web/7.0.0": {
  6183. "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  6184. "type": "package",
  6185. "path": "system.text.encodings.web/7.0.0",
  6186. "files": [
  6187. ".nupkg.metadata",
  6188. ".signature.p7s",
  6189. "Icon.png",
  6190. "LICENSE.TXT",
  6191. "THIRD-PARTY-NOTICES.TXT",
  6192. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  6193. "buildTransitive/net462/_._",
  6194. "buildTransitive/net6.0/_._",
  6195. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  6196. "lib/net462/System.Text.Encodings.Web.dll",
  6197. "lib/net462/System.Text.Encodings.Web.xml",
  6198. "lib/net6.0/System.Text.Encodings.Web.dll",
  6199. "lib/net6.0/System.Text.Encodings.Web.xml",
  6200. "lib/net7.0/System.Text.Encodings.Web.dll",
  6201. "lib/net7.0/System.Text.Encodings.Web.xml",
  6202. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  6203. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  6204. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  6205. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  6206. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  6207. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  6208. "system.text.encodings.web.7.0.0.nupkg.sha512",
  6209. "system.text.encodings.web.nuspec",
  6210. "useSharedDesignerContext.txt"
  6211. ]
  6212. },
  6213. "System.Text.Json/7.0.2": {
  6214. "sha512": "/LZf/JrGyilojqwpaywb+sSz8Tew7ij4K/Sk+UW8AKfAK7KRhR6mKpKtTm06cYA7bCpGTWfYksIW+mVsdxPegQ==",
  6215. "type": "package",
  6216. "path": "system.text.json/7.0.2",
  6217. "files": [
  6218. ".nupkg.metadata",
  6219. ".signature.p7s",
  6220. "Icon.png",
  6221. "LICENSE.TXT",
  6222. "README.md",
  6223. "THIRD-PARTY-NOTICES.TXT",
  6224. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  6225. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  6226. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  6227. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  6228. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  6229. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  6230. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  6231. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  6232. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  6233. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  6234. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  6235. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  6236. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  6237. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  6238. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  6239. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  6240. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  6241. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  6242. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  6243. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  6244. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  6245. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  6246. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  6247. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  6248. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  6249. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  6250. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  6251. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  6252. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  6253. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  6254. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  6255. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  6256. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  6257. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  6258. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  6259. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  6260. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  6261. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  6262. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  6263. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  6264. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  6265. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  6266. "buildTransitive/net461/System.Text.Json.targets",
  6267. "buildTransitive/net462/System.Text.Json.targets",
  6268. "buildTransitive/net6.0/System.Text.Json.targets",
  6269. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  6270. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  6271. "lib/net462/System.Text.Json.dll",
  6272. "lib/net462/System.Text.Json.xml",
  6273. "lib/net6.0/System.Text.Json.dll",
  6274. "lib/net6.0/System.Text.Json.xml",
  6275. "lib/net7.0/System.Text.Json.dll",
  6276. "lib/net7.0/System.Text.Json.xml",
  6277. "lib/netstandard2.0/System.Text.Json.dll",
  6278. "lib/netstandard2.0/System.Text.Json.xml",
  6279. "system.text.json.7.0.2.nupkg.sha512",
  6280. "system.text.json.nuspec",
  6281. "useSharedDesignerContext.txt"
  6282. ]
  6283. },
  6284. "System.Text.RegularExpressions/4.3.0": {
  6285. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  6286. "type": "package",
  6287. "path": "system.text.regularexpressions/4.3.0",
  6288. "files": [
  6289. ".nupkg.metadata",
  6290. ".signature.p7s",
  6291. "ThirdPartyNotices.txt",
  6292. "dotnet_library_license.txt",
  6293. "lib/MonoAndroid10/_._",
  6294. "lib/MonoTouch10/_._",
  6295. "lib/net45/_._",
  6296. "lib/net463/System.Text.RegularExpressions.dll",
  6297. "lib/netcore50/System.Text.RegularExpressions.dll",
  6298. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  6299. "lib/portable-net45+win8+wp8+wpa81/_._",
  6300. "lib/win8/_._",
  6301. "lib/wp80/_._",
  6302. "lib/wpa81/_._",
  6303. "lib/xamarinios10/_._",
  6304. "lib/xamarinmac20/_._",
  6305. "lib/xamarintvos10/_._",
  6306. "lib/xamarinwatchos10/_._",
  6307. "ref/MonoAndroid10/_._",
  6308. "ref/MonoTouch10/_._",
  6309. "ref/net45/_._",
  6310. "ref/net463/System.Text.RegularExpressions.dll",
  6311. "ref/netcore50/System.Text.RegularExpressions.dll",
  6312. "ref/netcore50/System.Text.RegularExpressions.xml",
  6313. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  6314. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  6315. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  6316. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  6317. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  6318. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  6319. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  6320. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  6321. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  6322. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  6323. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  6324. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  6325. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  6326. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  6327. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  6328. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  6329. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  6330. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  6331. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  6332. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  6333. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  6334. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  6335. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  6336. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  6337. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  6338. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  6339. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  6340. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  6341. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  6342. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  6343. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  6344. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  6345. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  6346. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  6347. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  6348. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  6349. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  6350. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  6351. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  6352. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  6353. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  6354. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  6355. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  6356. "ref/portable-net45+win8+wp8+wpa81/_._",
  6357. "ref/win8/_._",
  6358. "ref/wp80/_._",
  6359. "ref/wpa81/_._",
  6360. "ref/xamarinios10/_._",
  6361. "ref/xamarinmac20/_._",
  6362. "ref/xamarintvos10/_._",
  6363. "ref/xamarinwatchos10/_._",
  6364. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  6365. "system.text.regularexpressions.nuspec"
  6366. ]
  6367. },
  6368. "System.Threading/4.3.0": {
  6369. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  6370. "type": "package",
  6371. "path": "system.threading/4.3.0",
  6372. "files": [
  6373. ".nupkg.metadata",
  6374. ".signature.p7s",
  6375. "ThirdPartyNotices.txt",
  6376. "dotnet_library_license.txt",
  6377. "lib/MonoAndroid10/_._",
  6378. "lib/MonoTouch10/_._",
  6379. "lib/net45/_._",
  6380. "lib/netcore50/System.Threading.dll",
  6381. "lib/netstandard1.3/System.Threading.dll",
  6382. "lib/portable-net45+win8+wp8+wpa81/_._",
  6383. "lib/win8/_._",
  6384. "lib/wp80/_._",
  6385. "lib/wpa81/_._",
  6386. "lib/xamarinios10/_._",
  6387. "lib/xamarinmac20/_._",
  6388. "lib/xamarintvos10/_._",
  6389. "lib/xamarinwatchos10/_._",
  6390. "ref/MonoAndroid10/_._",
  6391. "ref/MonoTouch10/_._",
  6392. "ref/net45/_._",
  6393. "ref/netcore50/System.Threading.dll",
  6394. "ref/netcore50/System.Threading.xml",
  6395. "ref/netcore50/de/System.Threading.xml",
  6396. "ref/netcore50/es/System.Threading.xml",
  6397. "ref/netcore50/fr/System.Threading.xml",
  6398. "ref/netcore50/it/System.Threading.xml",
  6399. "ref/netcore50/ja/System.Threading.xml",
  6400. "ref/netcore50/ko/System.Threading.xml",
  6401. "ref/netcore50/ru/System.Threading.xml",
  6402. "ref/netcore50/zh-hans/System.Threading.xml",
  6403. "ref/netcore50/zh-hant/System.Threading.xml",
  6404. "ref/netstandard1.0/System.Threading.dll",
  6405. "ref/netstandard1.0/System.Threading.xml",
  6406. "ref/netstandard1.0/de/System.Threading.xml",
  6407. "ref/netstandard1.0/es/System.Threading.xml",
  6408. "ref/netstandard1.0/fr/System.Threading.xml",
  6409. "ref/netstandard1.0/it/System.Threading.xml",
  6410. "ref/netstandard1.0/ja/System.Threading.xml",
  6411. "ref/netstandard1.0/ko/System.Threading.xml",
  6412. "ref/netstandard1.0/ru/System.Threading.xml",
  6413. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  6414. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  6415. "ref/netstandard1.3/System.Threading.dll",
  6416. "ref/netstandard1.3/System.Threading.xml",
  6417. "ref/netstandard1.3/de/System.Threading.xml",
  6418. "ref/netstandard1.3/es/System.Threading.xml",
  6419. "ref/netstandard1.3/fr/System.Threading.xml",
  6420. "ref/netstandard1.3/it/System.Threading.xml",
  6421. "ref/netstandard1.3/ja/System.Threading.xml",
  6422. "ref/netstandard1.3/ko/System.Threading.xml",
  6423. "ref/netstandard1.3/ru/System.Threading.xml",
  6424. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  6425. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  6426. "ref/portable-net45+win8+wp8+wpa81/_._",
  6427. "ref/win8/_._",
  6428. "ref/wp80/_._",
  6429. "ref/wpa81/_._",
  6430. "ref/xamarinios10/_._",
  6431. "ref/xamarinmac20/_._",
  6432. "ref/xamarintvos10/_._",
  6433. "ref/xamarinwatchos10/_._",
  6434. "runtimes/aot/lib/netcore50/System.Threading.dll",
  6435. "system.threading.4.3.0.nupkg.sha512",
  6436. "system.threading.nuspec"
  6437. ]
  6438. },
  6439. "System.Threading.Tasks/4.3.0": {
  6440. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  6441. "type": "package",
  6442. "path": "system.threading.tasks/4.3.0",
  6443. "files": [
  6444. ".nupkg.metadata",
  6445. ".signature.p7s",
  6446. "ThirdPartyNotices.txt",
  6447. "dotnet_library_license.txt",
  6448. "lib/MonoAndroid10/_._",
  6449. "lib/MonoTouch10/_._",
  6450. "lib/net45/_._",
  6451. "lib/portable-net45+win8+wp8+wpa81/_._",
  6452. "lib/win8/_._",
  6453. "lib/wp80/_._",
  6454. "lib/wpa81/_._",
  6455. "lib/xamarinios10/_._",
  6456. "lib/xamarinmac20/_._",
  6457. "lib/xamarintvos10/_._",
  6458. "lib/xamarinwatchos10/_._",
  6459. "ref/MonoAndroid10/_._",
  6460. "ref/MonoTouch10/_._",
  6461. "ref/net45/_._",
  6462. "ref/netcore50/System.Threading.Tasks.dll",
  6463. "ref/netcore50/System.Threading.Tasks.xml",
  6464. "ref/netcore50/de/System.Threading.Tasks.xml",
  6465. "ref/netcore50/es/System.Threading.Tasks.xml",
  6466. "ref/netcore50/fr/System.Threading.Tasks.xml",
  6467. "ref/netcore50/it/System.Threading.Tasks.xml",
  6468. "ref/netcore50/ja/System.Threading.Tasks.xml",
  6469. "ref/netcore50/ko/System.Threading.Tasks.xml",
  6470. "ref/netcore50/ru/System.Threading.Tasks.xml",
  6471. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  6472. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  6473. "ref/netstandard1.0/System.Threading.Tasks.dll",
  6474. "ref/netstandard1.0/System.Threading.Tasks.xml",
  6475. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  6476. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  6477. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  6478. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  6479. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  6480. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  6481. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  6482. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  6483. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  6484. "ref/netstandard1.3/System.Threading.Tasks.dll",
  6485. "ref/netstandard1.3/System.Threading.Tasks.xml",
  6486. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  6487. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  6488. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  6489. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  6490. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  6491. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  6492. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  6493. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  6494. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  6495. "ref/portable-net45+win8+wp8+wpa81/_._",
  6496. "ref/win8/_._",
  6497. "ref/wp80/_._",
  6498. "ref/wpa81/_._",
  6499. "ref/xamarinios10/_._",
  6500. "ref/xamarinmac20/_._",
  6501. "ref/xamarintvos10/_._",
  6502. "ref/xamarinwatchos10/_._",
  6503. "system.threading.tasks.4.3.0.nupkg.sha512",
  6504. "system.threading.tasks.nuspec"
  6505. ]
  6506. },
  6507. "System.Threading.Tasks.Parallel/4.3.0": {
  6508. "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
  6509. "type": "package",
  6510. "path": "system.threading.tasks.parallel/4.3.0",
  6511. "files": [
  6512. ".nupkg.metadata",
  6513. ".signature.p7s",
  6514. "ThirdPartyNotices.txt",
  6515. "dotnet_library_license.txt",
  6516. "lib/MonoAndroid10/_._",
  6517. "lib/MonoTouch10/_._",
  6518. "lib/net45/_._",
  6519. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  6520. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  6521. "lib/portable-net45+win8+wpa81/_._",
  6522. "lib/win8/_._",
  6523. "lib/wpa81/_._",
  6524. "lib/xamarinios10/_._",
  6525. "lib/xamarinmac20/_._",
  6526. "lib/xamarintvos10/_._",
  6527. "lib/xamarinwatchos10/_._",
  6528. "ref/MonoAndroid10/_._",
  6529. "ref/MonoTouch10/_._",
  6530. "ref/net45/_._",
  6531. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  6532. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  6533. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  6534. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  6535. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  6536. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  6537. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  6538. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  6539. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  6540. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  6541. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  6542. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  6543. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  6544. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  6545. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  6546. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  6547. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  6548. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  6549. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  6550. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  6551. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  6552. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  6553. "ref/portable-net45+win8+wpa81/_._",
  6554. "ref/win8/_._",
  6555. "ref/wpa81/_._",
  6556. "ref/xamarinios10/_._",
  6557. "ref/xamarinmac20/_._",
  6558. "ref/xamarintvos10/_._",
  6559. "ref/xamarinwatchos10/_._",
  6560. "system.threading.tasks.parallel.4.3.0.nupkg.sha512",
  6561. "system.threading.tasks.parallel.nuspec"
  6562. ]
  6563. },
  6564. "System.Windows.Extensions/4.7.0": {
  6565. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  6566. "type": "package",
  6567. "path": "system.windows.extensions/4.7.0",
  6568. "files": [
  6569. ".nupkg.metadata",
  6570. ".signature.p7s",
  6571. "LICENSE.TXT",
  6572. "THIRD-PARTY-NOTICES.TXT",
  6573. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6574. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6575. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  6576. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  6577. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6578. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6579. "system.windows.extensions.4.7.0.nupkg.sha512",
  6580. "system.windows.extensions.nuspec",
  6581. "useSharedDesignerContext.txt",
  6582. "version.txt"
  6583. ]
  6584. },
  6585. "gpt_api.Core/1.0.0": {
  6586. "type": "project",
  6587. "path": "../gpt_api.Core/gpt_api.Core.csproj",
  6588. "msbuildProject": "../gpt_api.Core/gpt_api.Core.csproj"
  6589. }
  6590. },
  6591. "projectFileDependencyGroups": {
  6592. "net7.0": [
  6593. "gpt_api.Core >= 1.0.0"
  6594. ]
  6595. },
  6596. "packageFolders": {
  6597. "/Users/cauto/.nuget/packages/": {}
  6598. },
  6599. "project": {
  6600. "version": "1.0.0",
  6601. "restore": {
  6602. "projectUniqueName": "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Entity/gpt_api.Entity.csproj",
  6603. "projectName": "gpt_api.Entity",
  6604. "projectPath": "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Entity/gpt_api.Entity.csproj",
  6605. "packagesPath": "/Users/cauto/.nuget/packages/",
  6606. "outputPath": "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Entity/obj/",
  6607. "projectStyle": "PackageReference",
  6608. "configFilePaths": [
  6609. "/Users/cauto/.nuget/NuGet/NuGet.Config"
  6610. ],
  6611. "originalTargetFrameworks": [
  6612. "net7.0"
  6613. ],
  6614. "sources": {
  6615. "/usr/local/share/dotnet/library-packs": {},
  6616. "https://api.nuget.org/v3/index.json": {}
  6617. },
  6618. "frameworks": {
  6619. "net7.0": {
  6620. "targetAlias": "net7.0",
  6621. "projectReferences": {
  6622. "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Core/gpt_api.Core.csproj": {
  6623. "projectPath": "/Users/cauto/Desktop/work/net_work/gpt_api/gpt_api.Core/gpt_api.Core.csproj"
  6624. }
  6625. }
  6626. }
  6627. },
  6628. "warningProperties": {
  6629. "warnAsError": [
  6630. "NU1605"
  6631. ]
  6632. }
  6633. },
  6634. "frameworks": {
  6635. "net7.0": {
  6636. "targetAlias": "net7.0",
  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. }