project.assets.json 268 KB

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