project.assets.json 276 KB

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