project.assets.json 408 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.0.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/netstandard2.1/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/netstandard2.1/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "AutoMapper/10.1.1": {
  52. "type": "package",
  53. "dependencies": {
  54. "Microsoft.CSharp": "4.7.0",
  55. "System.Reflection.Emit": "4.7.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.0/AutoMapper.dll": {
  59. "related": ".xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.0/AutoMapper.dll": {
  64. "related": ".xml"
  65. }
  66. }
  67. },
  68. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  69. "type": "package",
  70. "dependencies": {
  71. "AutoMapper": "[10.1.1, 11.0.0)",
  72. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  73. "Microsoft.Extensions.Options": "3.0.0"
  74. },
  75. "compile": {
  76. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  77. },
  78. "runtime": {
  79. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  80. }
  81. },
  82. "BouncyCastle.NetCore/1.8.5": {
  83. "type": "package",
  84. "compile": {
  85. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  86. "related": ".xml"
  87. }
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  91. "related": ".xml"
  92. }
  93. }
  94. },
  95. "Coravel/4.2.1": {
  96. "type": "package",
  97. "dependencies": {
  98. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  99. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  100. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  101. },
  102. "compile": {
  103. "lib/netstandard2.0/Coravel.dll": {
  104. "related": ".xml"
  105. }
  106. },
  107. "runtime": {
  108. "lib/netstandard2.0/Coravel.dll": {
  109. "related": ".xml"
  110. }
  111. }
  112. },
  113. "FBoxClientDriver/1.2.0": {
  114. "type": "package",
  115. "dependencies": {
  116. "FBoxClientDriver.Contract": "1.2.0",
  117. "IdentityModel": "4.3.1",
  118. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  119. "Microsoft.CSharp": "4.5.0",
  120. "Microsoft.Extensions.Logging": "3.1.5",
  121. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  122. "Newtonsoft.Json": "12.0.3",
  123. "Nito.AsyncEx.Coordination": "5.0.0",
  124. "NodaTime": "2.4.7",
  125. "System.ComponentModel.EventBasedAsync": "4.3.0",
  126. "System.IO.FileSystem": "4.3.0",
  127. "System.Net.Http": "4.3.2",
  128. "System.Reactive": "4.4.1",
  129. "System.Runtime.Serialization.Primitives": "4.3.0",
  130. "System.Threading.Thread": "4.3.0"
  131. },
  132. "compile": {
  133. "lib/netstandard2.0/FBoxClientDriver.dll": {
  134. "related": ".xml"
  135. }
  136. },
  137. "runtime": {
  138. "lib/netstandard2.0/FBoxClientDriver.dll": {
  139. "related": ".xml"
  140. }
  141. }
  142. },
  143. "FBoxClientDriver.Contract/1.2.0": {
  144. "type": "package",
  145. "dependencies": {
  146. "Newtonsoft.Json": "12.0.3",
  147. "System.ComponentModel.Primitives": "4.3.0"
  148. },
  149. "compile": {
  150. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  151. "related": ".xml"
  152. }
  153. },
  154. "runtime": {
  155. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  156. "related": ".xml"
  157. }
  158. }
  159. },
  160. "FluentEmail.Core/3.0.2": {
  161. "type": "package",
  162. "dependencies": {
  163. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  164. },
  165. "compile": {
  166. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  167. },
  168. "runtime": {
  169. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  170. }
  171. },
  172. "FluentEmail.Smtp/3.0.2": {
  173. "type": "package",
  174. "dependencies": {
  175. "FluentEmail.Core": "3.0.2"
  176. },
  177. "compile": {
  178. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  182. }
  183. },
  184. "Google.Protobuf/3.11.4": {
  185. "type": "package",
  186. "dependencies": {
  187. "System.Memory": "4.5.2"
  188. },
  189. "compile": {
  190. "lib/netstandard2.0/Google.Protobuf.dll": {
  191. "related": ".pdb;.xml"
  192. }
  193. },
  194. "runtime": {
  195. "lib/netstandard2.0/Google.Protobuf.dll": {
  196. "related": ".pdb;.xml"
  197. }
  198. }
  199. },
  200. "IdentityModel/4.3.1": {
  201. "type": "package",
  202. "dependencies": {
  203. "Newtonsoft.Json": "11.0.2",
  204. "System.Text.Encodings.Web": "4.7.0"
  205. },
  206. "compile": {
  207. "lib/netstandard2.0/IdentityModel.dll": {
  208. "related": ".pdb;.xml"
  209. }
  210. },
  211. "runtime": {
  212. "lib/netstandard2.0/IdentityModel.dll": {
  213. "related": ".pdb;.xml"
  214. }
  215. }
  216. },
  217. "InfluxData.Net/8.0.1": {
  218. "type": "package",
  219. "dependencies": {
  220. "Newtonsoft.Json": "10.0.3",
  221. "System.Net.Http": "4.3.2"
  222. },
  223. "compile": {
  224. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  225. "related": ".dll.config;.pdb"
  226. },
  227. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  228. "related": ".dll.config;.pdb"
  229. },
  230. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  231. "related": ".dll.config;.pdb"
  232. },
  233. "lib/netstandard2.0/InfluxData.Net.dll": {
  234. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  235. }
  236. },
  237. "runtime": {
  238. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  239. "related": ".dll.config;.pdb"
  240. },
  241. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  242. "related": ".dll.config;.pdb"
  243. },
  244. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  245. "related": ".dll.config;.pdb"
  246. },
  247. "lib/netstandard2.0/InfluxData.Net.dll": {
  248. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  249. }
  250. }
  251. },
  252. "InitQ/1.0.0.14": {
  253. "type": "package",
  254. "dependencies": {
  255. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  256. "Microsoft.Extensions.Hosting": "2.1.0",
  257. "Newtonsoft.Json": "13.0.1",
  258. "StackExchange.Redis": "1.2.4"
  259. },
  260. "compile": {
  261. "lib/netcoreapp2.1/InitQ.dll": {}
  262. },
  263. "runtime": {
  264. "lib/netcoreapp2.1/InitQ.dll": {}
  265. }
  266. },
  267. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  268. "type": "package",
  269. "dependencies": {
  270. "AdvancedStringBuilder": "0.1.0",
  271. "JavaScriptEngineSwitcher.Core": "3.21.0"
  272. },
  273. "compile": {
  274. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  275. "related": ".xml"
  276. }
  277. },
  278. "runtime": {
  279. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  280. "related": ".xml"
  281. }
  282. },
  283. "resource": {
  284. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  285. "locale": "ru-RU"
  286. }
  287. }
  288. },
  289. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  290. "type": "package",
  291. "runtimeTargets": {
  292. "runtimes/linux-x64/native/libChakraCore.so": {
  293. "assetType": "native",
  294. "rid": "linux-x64"
  295. }
  296. }
  297. },
  298. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  299. "type": "package",
  300. "build": {
  301. "build/_._": {}
  302. },
  303. "runtimeTargets": {
  304. "runtimes/win-x64/native/ChakraCore.dll": {
  305. "assetType": "native",
  306. "rid": "win-x64"
  307. }
  308. }
  309. },
  310. "JavaScriptEngineSwitcher.Core/3.21.0": {
  311. "type": "package",
  312. "dependencies": {
  313. "AdvancedStringBuilder": "0.1.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  322. "related": ".xml"
  323. }
  324. },
  325. "resource": {
  326. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  327. "locale": "ru-RU"
  328. }
  329. }
  330. },
  331. "K4os.Compression.LZ4/1.1.11": {
  332. "type": "package",
  333. "dependencies": {
  334. "System.Memory": "4.5.3"
  335. },
  336. "compile": {
  337. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  338. "related": ".xml"
  339. }
  340. },
  341. "runtime": {
  342. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  343. "related": ".xml"
  344. }
  345. }
  346. },
  347. "K4os.Compression.LZ4.Streams/1.1.11": {
  348. "type": "package",
  349. "dependencies": {
  350. "K4os.Compression.LZ4": "1.1.11",
  351. "K4os.Hash.xxHash": "1.0.6"
  352. },
  353. "compile": {
  354. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  355. "related": ".xml"
  356. }
  357. },
  358. "runtime": {
  359. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  360. "related": ".xml"
  361. }
  362. }
  363. },
  364. "K4os.Hash.xxHash/1.0.6": {
  365. "type": "package",
  366. "dependencies": {
  367. "System.Memory": "4.5.3"
  368. },
  369. "compile": {
  370. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  371. "related": ".xml"
  372. }
  373. },
  374. "runtime": {
  375. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  376. "related": ".xml"
  377. }
  378. }
  379. },
  380. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  381. "type": "package",
  382. "dependencies": {
  383. "Microsoft.EntityFrameworkCore": "5.0.0"
  384. },
  385. "compile": {
  386. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  387. "related": ".xml"
  388. }
  389. },
  390. "runtime": {
  391. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  392. "related": ".xml"
  393. }
  394. }
  395. },
  396. "log4net/2.0.17": {
  397. "type": "package",
  398. "dependencies": {
  399. "System.Configuration.ConfigurationManager": "4.5.0"
  400. },
  401. "compile": {
  402. "lib/netstandard2.0/log4net.dll": {
  403. "related": ".xml"
  404. }
  405. },
  406. "runtime": {
  407. "lib/netstandard2.0/log4net.dll": {
  408. "related": ".xml"
  409. }
  410. }
  411. },
  412. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  413. "type": "package",
  414. "dependencies": {
  415. "Newtonsoft.Json": "11.0.2"
  416. },
  417. "compile": {
  418. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  419. "related": ".pdb;.xml"
  420. }
  421. },
  422. "runtime": {
  423. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  424. "related": ".pdb;.xml"
  425. }
  426. }
  427. },
  428. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  429. "type": "package",
  430. "dependencies": {
  431. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  432. "System.Text.Encodings.Web": "4.5.0"
  433. },
  434. "compile": {
  435. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  436. "related": ".xml"
  437. }
  438. },
  439. "runtime": {
  440. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  441. "related": ".xml"
  442. }
  443. }
  444. },
  445. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  446. "type": "package",
  447. "dependencies": {
  448. "Microsoft.Extensions.Primitives": "5.0.0",
  449. "System.IO.Pipelines": "5.0.0"
  450. },
  451. "compile": {
  452. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  453. "related": ".xml"
  454. }
  455. },
  456. "runtime": {
  457. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  458. "related": ".xml"
  459. }
  460. }
  461. },
  462. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  463. "type": "package",
  464. "dependencies": {
  465. "Microsoft.Extensions.Logging.Console": "3.1.30",
  466. "Newtonsoft.Json": "13.0.1"
  467. },
  468. "compile": {
  469. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  473. },
  474. "frameworkReferences": [
  475. "Microsoft.AspNetCore.App"
  476. ]
  477. },
  478. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  479. "type": "package",
  480. "compile": {
  481. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  482. "related": ".xml"
  483. }
  484. },
  485. "runtime": {
  486. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  487. "related": ".xml"
  488. }
  489. }
  490. },
  491. "Microsoft.Bcl.Memory/9.0.0": {
  492. "type": "package",
  493. "dependencies": {
  494. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  495. },
  496. "compile": {
  497. "lib/netstandard2.1/Microsoft.Bcl.Memory.dll": {
  498. "related": ".xml"
  499. }
  500. },
  501. "runtime": {
  502. "lib/netstandard2.1/Microsoft.Bcl.Memory.dll": {
  503. "related": ".xml"
  504. }
  505. },
  506. "build": {
  507. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets": {}
  508. }
  509. },
  510. "Microsoft.Bcl.TimeProvider/8.0.1": {
  511. "type": "package",
  512. "dependencies": {
  513. "Microsoft.Bcl.AsyncInterfaces": "8.0.0"
  514. },
  515. "compile": {
  516. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll": {
  517. "related": ".xml"
  518. }
  519. },
  520. "runtime": {
  521. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll": {
  522. "related": ".xml"
  523. }
  524. },
  525. "build": {
  526. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets": {}
  527. }
  528. },
  529. "Microsoft.CSharp/4.7.0": {
  530. "type": "package",
  531. "compile": {
  532. "ref/netcoreapp2.0/_._": {}
  533. },
  534. "runtime": {
  535. "lib/netcoreapp2.0/_._": {}
  536. }
  537. },
  538. "Microsoft.EntityFrameworkCore/5.0.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  542. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  543. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  544. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  545. "Microsoft.Extensions.Logging": "5.0.0",
  546. "System.Collections.Immutable": "5.0.0",
  547. "System.ComponentModel.Annotations": "5.0.0",
  548. "System.Diagnostics.DiagnosticSource": "5.0.0"
  549. },
  550. "compile": {
  551. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  552. "related": ".xml"
  553. }
  554. },
  555. "runtime": {
  556. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  557. "related": ".xml"
  558. }
  559. }
  560. },
  561. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  562. "type": "package",
  563. "compile": {
  564. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  565. "related": ".xml"
  566. }
  567. },
  568. "runtime": {
  569. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  570. "related": ".xml"
  571. }
  572. }
  573. },
  574. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  575. "type": "package",
  576. "compile": {
  577. "lib/netstandard2.0/_._": {}
  578. },
  579. "runtime": {
  580. "lib/netstandard2.0/_._": {}
  581. }
  582. },
  583. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  584. "type": "package",
  585. "dependencies": {
  586. "Microsoft.EntityFrameworkCore": "5.0.0",
  587. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  588. },
  589. "compile": {
  590. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  591. "related": ".xml"
  592. }
  593. },
  594. "runtime": {
  595. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  596. "related": ".xml"
  597. }
  598. }
  599. },
  600. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  601. "type": "package",
  602. "build": {
  603. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  604. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  605. },
  606. "buildMultiTargeting": {
  607. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  608. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  609. }
  610. },
  611. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  612. "type": "package",
  613. "dependencies": {
  614. "Microsoft.Extensions.Primitives": "5.0.0"
  615. },
  616. "compile": {
  617. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  618. "related": ".xml"
  619. }
  620. },
  621. "runtime": {
  622. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  623. "related": ".xml"
  624. }
  625. }
  626. },
  627. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  628. "type": "package",
  629. "dependencies": {
  630. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  631. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  632. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  633. "Microsoft.Extensions.Options": "5.0.0",
  634. "Microsoft.Extensions.Primitives": "5.0.0"
  635. },
  636. "compile": {
  637. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  638. "related": ".xml"
  639. }
  640. },
  641. "runtime": {
  642. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  643. "related": ".xml"
  644. }
  645. }
  646. },
  647. "Microsoft.Extensions.Configuration/5.0.0": {
  648. "type": "package",
  649. "dependencies": {
  650. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  651. "Microsoft.Extensions.Primitives": "5.0.0"
  652. },
  653. "compile": {
  654. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  655. "related": ".xml"
  656. }
  657. },
  658. "runtime": {
  659. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  660. "related": ".xml"
  661. }
  662. }
  663. },
  664. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  665. "type": "package",
  666. "dependencies": {
  667. "Microsoft.Extensions.Primitives": "5.0.0"
  668. },
  669. "compile": {
  670. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  671. "related": ".xml"
  672. }
  673. },
  674. "runtime": {
  675. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  676. "related": ".xml"
  677. }
  678. }
  679. },
  680. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  681. "type": "package",
  682. "dependencies": {
  683. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  684. },
  685. "compile": {
  686. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  687. "related": ".xml"
  688. }
  689. },
  690. "runtime": {
  691. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  692. "related": ".xml"
  693. }
  694. }
  695. },
  696. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  697. "type": "package",
  698. "dependencies": {
  699. "Microsoft.Extensions.Configuration": "5.0.0",
  700. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  701. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  702. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  703. "Microsoft.Extensions.Primitives": "5.0.0"
  704. },
  705. "compile": {
  706. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  707. "related": ".xml"
  708. }
  709. },
  710. "runtime": {
  711. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  712. "related": ".xml"
  713. }
  714. }
  715. },
  716. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  717. "type": "package",
  718. "dependencies": {
  719. "Microsoft.Extensions.Configuration": "5.0.0",
  720. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  721. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  722. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  723. },
  724. "compile": {
  725. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  726. "related": ".xml"
  727. }
  728. },
  729. "runtime": {
  730. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  731. "related": ".xml"
  732. }
  733. }
  734. },
  735. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  739. },
  740. "compile": {
  741. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  742. "related": ".xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  747. "related": ".xml"
  748. }
  749. }
  750. },
  751. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  752. "type": "package",
  753. "compile": {
  754. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  755. "related": ".xml"
  756. }
  757. },
  758. "runtime": {
  759. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  760. "related": ".xml"
  761. }
  762. }
  763. },
  764. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  765. "type": "package",
  766. "dependencies": {
  767. "Microsoft.Extensions.Primitives": "5.0.0"
  768. },
  769. "compile": {
  770. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  771. "related": ".xml"
  772. }
  773. },
  774. "runtime": {
  775. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  776. "related": ".xml"
  777. }
  778. }
  779. },
  780. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  781. "type": "package",
  782. "dependencies": {
  783. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  784. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  785. "Microsoft.Extensions.Primitives": "5.0.0"
  786. },
  787. "compile": {
  788. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  789. "related": ".xml"
  790. }
  791. },
  792. "runtime": {
  793. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  794. "related": ".xml"
  795. }
  796. }
  797. },
  798. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  799. "type": "package",
  800. "compile": {
  801. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  802. "related": ".xml"
  803. }
  804. },
  805. "runtime": {
  806. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  807. "related": ".xml"
  808. }
  809. }
  810. },
  811. "Microsoft.Extensions.Hosting/2.1.0": {
  812. "type": "package",
  813. "dependencies": {
  814. "Microsoft.Extensions.Configuration": "2.1.0",
  815. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  816. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  817. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  818. "Microsoft.Extensions.Logging": "2.1.0"
  819. },
  820. "compile": {
  821. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  822. "related": ".xml"
  823. }
  824. },
  825. "runtime": {
  826. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  827. "related": ".xml"
  828. }
  829. }
  830. },
  831. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  832. "type": "package",
  833. "dependencies": {
  834. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  835. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  836. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  837. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  838. },
  839. "compile": {
  840. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  841. "related": ".xml"
  842. }
  843. },
  844. "runtime": {
  845. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  846. "related": ".xml"
  847. }
  848. }
  849. },
  850. "Microsoft.Extensions.Http/5.0.0": {
  851. "type": "package",
  852. "dependencies": {
  853. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  854. "Microsoft.Extensions.Logging": "5.0.0",
  855. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  856. "Microsoft.Extensions.Options": "5.0.0"
  857. },
  858. "compile": {
  859. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  860. "related": ".xml"
  861. }
  862. },
  863. "runtime": {
  864. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  865. "related": ".xml"
  866. }
  867. }
  868. },
  869. "Microsoft.Extensions.Logging/5.0.0": {
  870. "type": "package",
  871. "dependencies": {
  872. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  873. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  874. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  875. "Microsoft.Extensions.Options": "5.0.0"
  876. },
  877. "compile": {
  878. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  879. "related": ".xml"
  880. }
  881. },
  882. "runtime": {
  883. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  884. "related": ".xml"
  885. }
  886. }
  887. },
  888. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  889. "type": "package",
  890. "compile": {
  891. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  892. "related": ".xml"
  893. }
  894. },
  895. "runtime": {
  896. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  897. "related": ".xml"
  898. }
  899. }
  900. },
  901. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  902. "type": "package",
  903. "dependencies": {
  904. "Microsoft.Extensions.Logging": "3.1.30",
  905. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  906. },
  907. "compile": {
  908. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  909. "related": ".xml"
  910. }
  911. },
  912. "runtime": {
  913. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  914. "related": ".xml"
  915. }
  916. }
  917. },
  918. "Microsoft.Extensions.Logging.Console/3.1.30": {
  919. "type": "package",
  920. "dependencies": {
  921. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  922. "Microsoft.Extensions.Logging": "3.1.30",
  923. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  924. },
  925. "compile": {
  926. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  927. "related": ".xml"
  928. }
  929. },
  930. "runtime": {
  931. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  932. "related": ".xml"
  933. }
  934. }
  935. },
  936. "Microsoft.Extensions.Options/5.0.0": {
  937. "type": "package",
  938. "dependencies": {
  939. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  940. "Microsoft.Extensions.Primitives": "5.0.0"
  941. },
  942. "compile": {
  943. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  944. "related": ".xml"
  945. }
  946. },
  947. "runtime": {
  948. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  949. "related": ".xml"
  950. }
  951. }
  952. },
  953. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  954. "type": "package",
  955. "dependencies": {
  956. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  957. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  958. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  959. "Microsoft.Extensions.Options": "3.1.30"
  960. },
  961. "compile": {
  962. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  963. "related": ".xml"
  964. }
  965. },
  966. "runtime": {
  967. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  968. "related": ".xml"
  969. }
  970. }
  971. },
  972. "Microsoft.Extensions.Primitives/5.0.0": {
  973. "type": "package",
  974. "compile": {
  975. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  976. "related": ".xml"
  977. }
  978. },
  979. "runtime": {
  980. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  981. "related": ".xml"
  982. }
  983. }
  984. },
  985. "Microsoft.IdentityModel.Abstractions/8.6.0": {
  986. "type": "package",
  987. "compile": {
  988. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  989. "related": ".xml"
  990. }
  991. },
  992. "runtime": {
  993. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  994. "related": ".xml"
  995. }
  996. }
  997. },
  998. "Microsoft.IdentityModel.JsonWebTokens/8.6.0": {
  999. "type": "package",
  1000. "dependencies": {
  1001. "Microsoft.Bcl.TimeProvider": "8.0.1",
  1002. "Microsoft.IdentityModel.Tokens": "8.6.0"
  1003. },
  1004. "compile": {
  1005. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1006. "related": ".xml"
  1007. }
  1008. },
  1009. "runtime": {
  1010. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1011. "related": ".xml"
  1012. }
  1013. }
  1014. },
  1015. "Microsoft.IdentityModel.Logging/8.6.0": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Microsoft.IdentityModel.Abstractions": "8.6.0"
  1019. },
  1020. "compile": {
  1021. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1022. "related": ".xml"
  1023. }
  1024. },
  1025. "runtime": {
  1026. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1027. "related": ".xml"
  1028. }
  1029. }
  1030. },
  1031. "Microsoft.IdentityModel.Tokens/8.6.0": {
  1032. "type": "package",
  1033. "dependencies": {
  1034. "Microsoft.Bcl.Memory": "9.0.0",
  1035. "Microsoft.Bcl.TimeProvider": "8.0.1",
  1036. "Microsoft.CSharp": "4.5.0",
  1037. "Microsoft.Extensions.Logging.Abstractions": "2.1.0",
  1038. "Microsoft.IdentityModel.Logging": "8.6.0",
  1039. "System.Diagnostics.DiagnosticSource": "6.0.2",
  1040. "System.Security.Cryptography.Cng": "4.5.0",
  1041. "System.Text.Json": "8.0.5"
  1042. },
  1043. "compile": {
  1044. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1045. "related": ".xml"
  1046. }
  1047. },
  1048. "runtime": {
  1049. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1050. "related": ".xml"
  1051. }
  1052. }
  1053. },
  1054. "Microsoft.NETCore.Platforms/5.0.0": {
  1055. "type": "package",
  1056. "compile": {
  1057. "lib/netstandard1.0/_._": {}
  1058. },
  1059. "runtime": {
  1060. "lib/netstandard1.0/_._": {}
  1061. }
  1062. },
  1063. "Microsoft.NETCore.Targets/1.1.0": {
  1064. "type": "package",
  1065. "compile": {
  1066. "lib/netstandard1.0/_._": {}
  1067. },
  1068. "runtime": {
  1069. "lib/netstandard1.0/_._": {}
  1070. }
  1071. },
  1072. "Microsoft.OpenApi/1.2.3": {
  1073. "type": "package",
  1074. "compile": {
  1075. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1076. "related": ".pdb;.xml"
  1077. }
  1078. },
  1079. "runtime": {
  1080. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1081. "related": ".pdb;.xml"
  1082. }
  1083. }
  1084. },
  1085. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  1086. "type": "package",
  1087. "build": {
  1088. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1089. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1090. }
  1091. },
  1092. "Microsoft.Win32.Primitives/4.3.0": {
  1093. "type": "package",
  1094. "dependencies": {
  1095. "Microsoft.NETCore.Platforms": "1.1.0",
  1096. "Microsoft.NETCore.Targets": "1.1.0",
  1097. "System.Runtime": "4.3.0"
  1098. },
  1099. "compile": {
  1100. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1101. "related": ".xml"
  1102. }
  1103. }
  1104. },
  1105. "Microsoft.Win32.SystemEvents/5.0.0": {
  1106. "type": "package",
  1107. "dependencies": {
  1108. "Microsoft.NETCore.Platforms": "5.0.0"
  1109. },
  1110. "compile": {
  1111. "ref/netstandard2.0/_._": {
  1112. "related": ".xml"
  1113. }
  1114. },
  1115. "runtime": {
  1116. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1117. "related": ".xml"
  1118. }
  1119. },
  1120. "runtimeTargets": {
  1121. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1122. "assetType": "runtime",
  1123. "rid": "win"
  1124. }
  1125. }
  1126. },
  1127. "MySql.Data/8.0.23": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "BouncyCastle.NetCore": "1.8.5",
  1131. "Google.Protobuf": "3.11.4",
  1132. "K4os.Compression.LZ4": "1.1.11",
  1133. "K4os.Compression.LZ4.Streams": "1.1.11",
  1134. "K4os.Hash.xxHash": "1.0.6",
  1135. "SSH.NET": "2020.0.0-beta1",
  1136. "System.Buffers": "4.5.1",
  1137. "System.Configuration.ConfigurationManager": "4.4.1",
  1138. "System.Security.Permissions": "4.7.0",
  1139. "System.Text.Encoding.CodePages": "4.4.0"
  1140. },
  1141. "compile": {
  1142. "lib/net5.0/MySql.Data.dll": {
  1143. "related": ".xml"
  1144. },
  1145. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1146. "lib/net5.0/Zstandard.Net.dll": {}
  1147. },
  1148. "runtime": {
  1149. "lib/net5.0/MySql.Data.dll": {
  1150. "related": ".xml"
  1151. },
  1152. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1153. "lib/net5.0/Zstandard.Net.dll": {}
  1154. }
  1155. },
  1156. "MySqlConnector/1.1.0": {
  1157. "type": "package",
  1158. "compile": {
  1159. "lib/net5.0/MySqlConnector.dll": {
  1160. "related": ".xml"
  1161. }
  1162. },
  1163. "runtime": {
  1164. "lib/net5.0/MySqlConnector.dll": {
  1165. "related": ".xml"
  1166. }
  1167. }
  1168. },
  1169. "NETStandard.Library/1.6.1": {
  1170. "type": "package",
  1171. "dependencies": {
  1172. "Microsoft.NETCore.Platforms": "1.1.0",
  1173. "Microsoft.Win32.Primitives": "4.3.0",
  1174. "System.AppContext": "4.3.0",
  1175. "System.Collections": "4.3.0",
  1176. "System.Collections.Concurrent": "4.3.0",
  1177. "System.Console": "4.3.0",
  1178. "System.Diagnostics.Debug": "4.3.0",
  1179. "System.Diagnostics.Tools": "4.3.0",
  1180. "System.Diagnostics.Tracing": "4.3.0",
  1181. "System.Globalization": "4.3.0",
  1182. "System.Globalization.Calendars": "4.3.0",
  1183. "System.IO": "4.3.0",
  1184. "System.IO.Compression": "4.3.0",
  1185. "System.IO.Compression.ZipFile": "4.3.0",
  1186. "System.IO.FileSystem": "4.3.0",
  1187. "System.IO.FileSystem.Primitives": "4.3.0",
  1188. "System.Linq": "4.3.0",
  1189. "System.Linq.Expressions": "4.3.0",
  1190. "System.Net.Http": "4.3.0",
  1191. "System.Net.Primitives": "4.3.0",
  1192. "System.Net.Sockets": "4.3.0",
  1193. "System.ObjectModel": "4.3.0",
  1194. "System.Reflection": "4.3.0",
  1195. "System.Reflection.Extensions": "4.3.0",
  1196. "System.Reflection.Primitives": "4.3.0",
  1197. "System.Resources.ResourceManager": "4.3.0",
  1198. "System.Runtime": "4.3.0",
  1199. "System.Runtime.Extensions": "4.3.0",
  1200. "System.Runtime.Handles": "4.3.0",
  1201. "System.Runtime.InteropServices": "4.3.0",
  1202. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1203. "System.Runtime.Numerics": "4.3.0",
  1204. "System.Security.Cryptography.Algorithms": "4.3.0",
  1205. "System.Security.Cryptography.Encoding": "4.3.0",
  1206. "System.Security.Cryptography.Primitives": "4.3.0",
  1207. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1208. "System.Text.Encoding": "4.3.0",
  1209. "System.Text.Encoding.Extensions": "4.3.0",
  1210. "System.Text.RegularExpressions": "4.3.0",
  1211. "System.Threading": "4.3.0",
  1212. "System.Threading.Tasks": "4.3.0",
  1213. "System.Threading.Timer": "4.3.0",
  1214. "System.Xml.ReaderWriter": "4.3.0",
  1215. "System.Xml.XDocument": "4.3.0"
  1216. }
  1217. },
  1218. "Newtonsoft.Json/13.0.1": {
  1219. "type": "package",
  1220. "compile": {
  1221. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1222. "related": ".xml"
  1223. }
  1224. },
  1225. "runtime": {
  1226. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1227. "related": ".xml"
  1228. }
  1229. }
  1230. },
  1231. "Nito.AsyncEx.Coordination/5.0.0": {
  1232. "type": "package",
  1233. "dependencies": {
  1234. "Nito.AsyncEx.Tasks": "5.0.0",
  1235. "Nito.Collections.Deque": "1.0.4",
  1236. "Nito.Disposables": "2.0.0"
  1237. },
  1238. "compile": {
  1239. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1240. "related": ".xml"
  1241. }
  1242. },
  1243. "runtime": {
  1244. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1245. "related": ".xml"
  1246. }
  1247. }
  1248. },
  1249. "Nito.AsyncEx.Tasks/5.0.0": {
  1250. "type": "package",
  1251. "dependencies": {
  1252. "Nito.Disposables": "2.0.0"
  1253. },
  1254. "compile": {
  1255. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1256. "related": ".xml"
  1257. }
  1258. },
  1259. "runtime": {
  1260. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1261. "related": ".xml"
  1262. }
  1263. }
  1264. },
  1265. "Nito.Collections.Deque/1.0.4": {
  1266. "type": "package",
  1267. "compile": {
  1268. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1269. "related": ".xml"
  1270. }
  1271. },
  1272. "runtime": {
  1273. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1274. "related": ".xml"
  1275. }
  1276. }
  1277. },
  1278. "Nito.Disposables/2.0.0": {
  1279. "type": "package",
  1280. "dependencies": {
  1281. "System.Collections.Immutable": "1.4.0"
  1282. },
  1283. "compile": {
  1284. "lib/netstandard2.0/Nito.Disposables.dll": {
  1285. "related": ".pdb;.xml"
  1286. }
  1287. },
  1288. "runtime": {
  1289. "lib/netstandard2.0/Nito.Disposables.dll": {
  1290. "related": ".pdb;.xml"
  1291. }
  1292. }
  1293. },
  1294. "NodaTime/2.4.7": {
  1295. "type": "package",
  1296. "compile": {
  1297. "lib/netstandard2.0/NodaTime.dll": {
  1298. "related": ".pdb;.xml"
  1299. }
  1300. },
  1301. "runtime": {
  1302. "lib/netstandard2.0/NodaTime.dll": {
  1303. "related": ".pdb;.xml"
  1304. }
  1305. }
  1306. },
  1307. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1308. "type": "package",
  1309. "dependencies": {
  1310. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1311. "MySqlConnector": "1.1.0"
  1312. },
  1313. "compile": {
  1314. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1315. "related": ".xml"
  1316. }
  1317. },
  1318. "runtime": {
  1319. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1320. "related": ".xml"
  1321. }
  1322. }
  1323. },
  1324. "QRCoder/1.4.3": {
  1325. "type": "package",
  1326. "dependencies": {
  1327. "System.Drawing.Common": "5.0.3"
  1328. },
  1329. "compile": {
  1330. "lib/net5.0/QRCoder.dll": {}
  1331. },
  1332. "runtime": {
  1333. "lib/net5.0/QRCoder.dll": {}
  1334. }
  1335. },
  1336. "Quartz/3.3.3": {
  1337. "type": "package",
  1338. "dependencies": {
  1339. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1340. "System.Configuration.ConfigurationManager": "4.7.0",
  1341. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1342. },
  1343. "compile": {
  1344. "lib/netstandard2.0/Quartz.dll": {
  1345. "related": ".xml"
  1346. }
  1347. },
  1348. "runtime": {
  1349. "lib/netstandard2.0/Quartz.dll": {
  1350. "related": ".xml"
  1351. }
  1352. }
  1353. },
  1354. "RabbitMQ.Client/6.8.1": {
  1355. "type": "package",
  1356. "dependencies": {
  1357. "System.Memory": "4.5.5",
  1358. "System.Threading.Channels": "7.0.0"
  1359. },
  1360. "compile": {
  1361. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1362. "related": ".xml"
  1363. }
  1364. },
  1365. "runtime": {
  1366. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1367. "related": ".xml"
  1368. }
  1369. }
  1370. },
  1371. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1372. "type": "package",
  1373. "runtimeTargets": {
  1374. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1375. "assetType": "native",
  1376. "rid": "debian.8-x64"
  1377. }
  1378. }
  1379. },
  1380. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1381. "type": "package",
  1382. "runtimeTargets": {
  1383. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1384. "assetType": "native",
  1385. "rid": "fedora.23-x64"
  1386. }
  1387. }
  1388. },
  1389. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1390. "type": "package",
  1391. "runtimeTargets": {
  1392. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1393. "assetType": "native",
  1394. "rid": "fedora.24-x64"
  1395. }
  1396. }
  1397. },
  1398. "runtime.native.System/4.3.0": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "Microsoft.NETCore.Platforms": "1.1.0",
  1402. "Microsoft.NETCore.Targets": "1.1.0"
  1403. },
  1404. "compile": {
  1405. "lib/netstandard1.0/_._": {}
  1406. },
  1407. "runtime": {
  1408. "lib/netstandard1.0/_._": {}
  1409. }
  1410. },
  1411. "runtime.native.System.IO.Compression/4.3.0": {
  1412. "type": "package",
  1413. "dependencies": {
  1414. "Microsoft.NETCore.Platforms": "1.1.0",
  1415. "Microsoft.NETCore.Targets": "1.1.0"
  1416. },
  1417. "compile": {
  1418. "lib/netstandard1.0/_._": {}
  1419. },
  1420. "runtime": {
  1421. "lib/netstandard1.0/_._": {}
  1422. }
  1423. },
  1424. "runtime.native.System.Net.Http/4.3.0": {
  1425. "type": "package",
  1426. "dependencies": {
  1427. "Microsoft.NETCore.Platforms": "1.1.0",
  1428. "Microsoft.NETCore.Targets": "1.1.0"
  1429. },
  1430. "compile": {
  1431. "lib/netstandard1.0/_._": {}
  1432. },
  1433. "runtime": {
  1434. "lib/netstandard1.0/_._": {}
  1435. }
  1436. },
  1437. "runtime.native.System.Net.Security/4.3.0": {
  1438. "type": "package",
  1439. "dependencies": {
  1440. "Microsoft.NETCore.Platforms": "1.1.0",
  1441. "Microsoft.NETCore.Targets": "1.1.0"
  1442. },
  1443. "compile": {
  1444. "lib/netstandard1.0/_._": {}
  1445. },
  1446. "runtime": {
  1447. "lib/netstandard1.0/_._": {}
  1448. }
  1449. },
  1450. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1451. "type": "package",
  1452. "dependencies": {
  1453. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1454. },
  1455. "compile": {
  1456. "lib/netstandard1.0/_._": {}
  1457. },
  1458. "runtime": {
  1459. "lib/netstandard1.0/_._": {}
  1460. }
  1461. },
  1462. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1463. "type": "package",
  1464. "dependencies": {
  1465. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1466. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1467. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1468. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1469. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1470. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1471. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1472. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1473. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1474. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1475. },
  1476. "compile": {
  1477. "lib/netstandard1.0/_._": {}
  1478. },
  1479. "runtime": {
  1480. "lib/netstandard1.0/_._": {}
  1481. }
  1482. },
  1483. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1484. "type": "package",
  1485. "runtimeTargets": {
  1486. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1487. "assetType": "native",
  1488. "rid": "opensuse.13.2-x64"
  1489. }
  1490. }
  1491. },
  1492. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1493. "type": "package",
  1494. "runtimeTargets": {
  1495. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1496. "assetType": "native",
  1497. "rid": "opensuse.42.1-x64"
  1498. }
  1499. }
  1500. },
  1501. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1502. "type": "package",
  1503. "runtimeTargets": {
  1504. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1505. "assetType": "native",
  1506. "rid": "osx.10.10-x64"
  1507. }
  1508. }
  1509. },
  1510. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1511. "type": "package",
  1512. "runtimeTargets": {
  1513. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1514. "assetType": "native",
  1515. "rid": "osx.10.10-x64"
  1516. }
  1517. }
  1518. },
  1519. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1520. "type": "package",
  1521. "runtimeTargets": {
  1522. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1523. "assetType": "native",
  1524. "rid": "rhel.7-x64"
  1525. }
  1526. }
  1527. },
  1528. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1529. "type": "package",
  1530. "runtimeTargets": {
  1531. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1532. "assetType": "native",
  1533. "rid": "ubuntu.14.04-x64"
  1534. }
  1535. }
  1536. },
  1537. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1538. "type": "package",
  1539. "runtimeTargets": {
  1540. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1541. "assetType": "native",
  1542. "rid": "ubuntu.16.04-x64"
  1543. }
  1544. }
  1545. },
  1546. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1547. "type": "package",
  1548. "runtimeTargets": {
  1549. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1550. "assetType": "native",
  1551. "rid": "ubuntu.16.10-x64"
  1552. }
  1553. }
  1554. },
  1555. "SixLabors.ImageSharp/2.1.6": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1559. "System.Text.Encoding.CodePages": "5.0.0"
  1560. },
  1561. "compile": {
  1562. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1563. "related": ".xml"
  1564. }
  1565. },
  1566. "runtime": {
  1567. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1568. "related": ".xml"
  1569. }
  1570. }
  1571. },
  1572. "SSH.NET/2020.0.0-beta1": {
  1573. "type": "package",
  1574. "dependencies": {
  1575. "SshNet.Security.Cryptography": "[1.3.0]"
  1576. },
  1577. "compile": {
  1578. "lib/netstandard2.0/Renci.SshNet.dll": {
  1579. "related": ".xml"
  1580. }
  1581. },
  1582. "runtime": {
  1583. "lib/netstandard2.0/Renci.SshNet.dll": {
  1584. "related": ".xml"
  1585. }
  1586. }
  1587. },
  1588. "SshNet.Security.Cryptography/1.3.0": {
  1589. "type": "package",
  1590. "compile": {
  1591. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1592. "related": ".xml"
  1593. }
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1597. "related": ".xml"
  1598. }
  1599. }
  1600. },
  1601. "StackExchange.Redis/1.2.4": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "NETStandard.Library": "1.6.1",
  1605. "System.Collections": "4.3.0",
  1606. "System.Collections.Concurrent": "4.3.0",
  1607. "System.Collections.NonGeneric": "4.3.0",
  1608. "System.Diagnostics.Tools": "4.3.0",
  1609. "System.IO.Compression": "4.3.0",
  1610. "System.IO.FileSystem": "4.3.0",
  1611. "System.Linq": "4.3.0",
  1612. "System.Net.NameResolution": "4.3.0",
  1613. "System.Net.Security": "4.3.0",
  1614. "System.Net.Sockets": "4.3.0",
  1615. "System.Reflection.Emit": "4.3.0",
  1616. "System.Reflection.Emit.Lightweight": "4.3.0",
  1617. "System.Reflection.TypeExtensions": "4.3.0",
  1618. "System.Runtime.Extensions": "4.3.0",
  1619. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1620. "System.Security.Cryptography.Algorithms": "4.3.0",
  1621. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1622. "System.Text.RegularExpressions": "4.3.0",
  1623. "System.Threading": "4.3.0",
  1624. "System.Threading.Thread": "4.3.0",
  1625. "System.Threading.ThreadPool": "4.3.0",
  1626. "System.Threading.Timer": "4.3.0"
  1627. },
  1628. "compile": {
  1629. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1630. "related": ".xml"
  1631. }
  1632. },
  1633. "runtime": {
  1634. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1635. "related": ".xml"
  1636. }
  1637. }
  1638. },
  1639. "Swashbuckle.AspNetCore/5.6.3": {
  1640. "type": "package",
  1641. "dependencies": {
  1642. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1643. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1644. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1645. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1646. },
  1647. "build": {
  1648. "build/Swashbuckle.AspNetCore.props": {}
  1649. }
  1650. },
  1651. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1652. "type": "package",
  1653. "dependencies": {
  1654. "Microsoft.OpenApi": "1.2.3"
  1655. },
  1656. "compile": {
  1657. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1658. "related": ".pdb;.xml"
  1659. }
  1660. },
  1661. "runtime": {
  1662. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1663. "related": ".pdb;.xml"
  1664. }
  1665. },
  1666. "frameworkReferences": [
  1667. "Microsoft.AspNetCore.App"
  1668. ]
  1669. },
  1670. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1671. "type": "package",
  1672. "dependencies": {
  1673. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1674. },
  1675. "compile": {
  1676. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1677. "related": ".pdb;.xml"
  1678. }
  1679. },
  1680. "runtime": {
  1681. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1682. "related": ".pdb;.xml"
  1683. }
  1684. },
  1685. "frameworkReferences": [
  1686. "Microsoft.AspNetCore.App"
  1687. ]
  1688. },
  1689. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1690. "type": "package",
  1691. "compile": {
  1692. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1693. "related": ".pdb;.xml"
  1694. }
  1695. },
  1696. "runtime": {
  1697. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1698. "related": ".pdb;.xml"
  1699. }
  1700. },
  1701. "frameworkReferences": [
  1702. "Microsoft.AspNetCore.App"
  1703. ]
  1704. },
  1705. "System.AppContext/4.3.0": {
  1706. "type": "package",
  1707. "dependencies": {
  1708. "System.Runtime": "4.3.0"
  1709. },
  1710. "compile": {
  1711. "ref/netstandard1.6/System.AppContext.dll": {
  1712. "related": ".xml"
  1713. }
  1714. },
  1715. "runtime": {
  1716. "lib/netstandard1.6/System.AppContext.dll": {}
  1717. }
  1718. },
  1719. "System.Buffers/4.5.1": {
  1720. "type": "package",
  1721. "compile": {
  1722. "ref/netcoreapp2.0/_._": {}
  1723. },
  1724. "runtime": {
  1725. "lib/netcoreapp2.0/_._": {}
  1726. }
  1727. },
  1728. "System.Collections/4.3.0": {
  1729. "type": "package",
  1730. "dependencies": {
  1731. "Microsoft.NETCore.Platforms": "1.1.0",
  1732. "Microsoft.NETCore.Targets": "1.1.0",
  1733. "System.Runtime": "4.3.0"
  1734. },
  1735. "compile": {
  1736. "ref/netstandard1.3/System.Collections.dll": {
  1737. "related": ".xml"
  1738. }
  1739. }
  1740. },
  1741. "System.Collections.Concurrent/4.3.0": {
  1742. "type": "package",
  1743. "dependencies": {
  1744. "System.Collections": "4.3.0",
  1745. "System.Diagnostics.Debug": "4.3.0",
  1746. "System.Diagnostics.Tracing": "4.3.0",
  1747. "System.Globalization": "4.3.0",
  1748. "System.Reflection": "4.3.0",
  1749. "System.Resources.ResourceManager": "4.3.0",
  1750. "System.Runtime": "4.3.0",
  1751. "System.Runtime.Extensions": "4.3.0",
  1752. "System.Threading": "4.3.0",
  1753. "System.Threading.Tasks": "4.3.0"
  1754. },
  1755. "compile": {
  1756. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1757. "related": ".xml"
  1758. }
  1759. },
  1760. "runtime": {
  1761. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1762. }
  1763. },
  1764. "System.Collections.Immutable/5.0.0": {
  1765. "type": "package",
  1766. "compile": {
  1767. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1768. "related": ".xml"
  1769. }
  1770. },
  1771. "runtime": {
  1772. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1773. "related": ".xml"
  1774. }
  1775. }
  1776. },
  1777. "System.Collections.NonGeneric/4.3.0": {
  1778. "type": "package",
  1779. "dependencies": {
  1780. "System.Diagnostics.Debug": "4.3.0",
  1781. "System.Globalization": "4.3.0",
  1782. "System.Resources.ResourceManager": "4.3.0",
  1783. "System.Runtime": "4.3.0",
  1784. "System.Runtime.Extensions": "4.3.0",
  1785. "System.Threading": "4.3.0"
  1786. },
  1787. "compile": {
  1788. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1789. "related": ".xml"
  1790. }
  1791. },
  1792. "runtime": {
  1793. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1794. }
  1795. },
  1796. "System.ComponentModel/4.3.0": {
  1797. "type": "package",
  1798. "dependencies": {
  1799. "System.Runtime": "4.3.0"
  1800. },
  1801. "compile": {
  1802. "ref/netstandard1.0/System.ComponentModel.dll": {
  1803. "related": ".xml"
  1804. }
  1805. },
  1806. "runtime": {
  1807. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1808. }
  1809. },
  1810. "System.ComponentModel.Annotations/5.0.0": {
  1811. "type": "package",
  1812. "compile": {
  1813. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1814. "related": ".xml"
  1815. }
  1816. },
  1817. "runtime": {
  1818. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1819. "related": ".xml"
  1820. }
  1821. }
  1822. },
  1823. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1824. "type": "package",
  1825. "dependencies": {
  1826. "System.Resources.ResourceManager": "4.3.0",
  1827. "System.Runtime": "4.3.0",
  1828. "System.Threading": "4.3.0",
  1829. "System.Threading.Tasks": "4.3.0"
  1830. },
  1831. "compile": {
  1832. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1833. "related": ".xml"
  1834. }
  1835. },
  1836. "runtime": {
  1837. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1838. }
  1839. },
  1840. "System.ComponentModel.Primitives/4.3.0": {
  1841. "type": "package",
  1842. "dependencies": {
  1843. "System.ComponentModel": "4.3.0",
  1844. "System.Resources.ResourceManager": "4.3.0",
  1845. "System.Runtime": "4.3.0"
  1846. },
  1847. "compile": {
  1848. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1849. "related": ".xml"
  1850. }
  1851. },
  1852. "runtime": {
  1853. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1854. }
  1855. },
  1856. "System.Configuration.ConfigurationManager/4.7.0": {
  1857. "type": "package",
  1858. "dependencies": {
  1859. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1860. "System.Security.Permissions": "4.7.0"
  1861. },
  1862. "compile": {
  1863. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1864. "related": ".xml"
  1865. }
  1866. },
  1867. "runtime": {
  1868. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1869. "related": ".xml"
  1870. }
  1871. }
  1872. },
  1873. "System.Console/4.3.0": {
  1874. "type": "package",
  1875. "dependencies": {
  1876. "Microsoft.NETCore.Platforms": "1.1.0",
  1877. "Microsoft.NETCore.Targets": "1.1.0",
  1878. "System.IO": "4.3.0",
  1879. "System.Runtime": "4.3.0",
  1880. "System.Text.Encoding": "4.3.0"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.3/System.Console.dll": {
  1884. "related": ".xml"
  1885. }
  1886. }
  1887. },
  1888. "System.Diagnostics.Debug/4.3.0": {
  1889. "type": "package",
  1890. "dependencies": {
  1891. "Microsoft.NETCore.Platforms": "1.1.0",
  1892. "Microsoft.NETCore.Targets": "1.1.0",
  1893. "System.Runtime": "4.3.0"
  1894. },
  1895. "compile": {
  1896. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1897. "related": ".xml"
  1898. }
  1899. }
  1900. },
  1901. "System.Diagnostics.DiagnosticSource/6.0.2": {
  1902. "type": "package",
  1903. "dependencies": {
  1904. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1905. },
  1906. "compile": {
  1907. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1908. "related": ".xml"
  1909. }
  1910. },
  1911. "runtime": {
  1912. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1913. "related": ".xml"
  1914. }
  1915. },
  1916. "build": {
  1917. "buildTransitive/netcoreapp3.1/_._": {}
  1918. }
  1919. },
  1920. "System.Diagnostics.Tools/4.3.0": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "Microsoft.NETCore.Platforms": "1.1.0",
  1924. "Microsoft.NETCore.Targets": "1.1.0",
  1925. "System.Runtime": "4.3.0"
  1926. },
  1927. "compile": {
  1928. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1929. "related": ".xml"
  1930. }
  1931. }
  1932. },
  1933. "System.Diagnostics.Tracing/4.3.0": {
  1934. "type": "package",
  1935. "dependencies": {
  1936. "Microsoft.NETCore.Platforms": "1.1.0",
  1937. "Microsoft.NETCore.Targets": "1.1.0",
  1938. "System.Runtime": "4.3.0"
  1939. },
  1940. "compile": {
  1941. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1942. "related": ".xml"
  1943. }
  1944. }
  1945. },
  1946. "System.Drawing.Common/5.0.3": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "Microsoft.Win32.SystemEvents": "5.0.0"
  1950. },
  1951. "compile": {
  1952. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1953. "related": ".xml"
  1954. }
  1955. },
  1956. "runtime": {
  1957. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1958. "related": ".xml"
  1959. }
  1960. },
  1961. "runtimeTargets": {
  1962. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1963. "assetType": "runtime",
  1964. "rid": "unix"
  1965. },
  1966. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1967. "assetType": "runtime",
  1968. "rid": "win"
  1969. }
  1970. }
  1971. },
  1972. "System.Globalization/4.3.0": {
  1973. "type": "package",
  1974. "dependencies": {
  1975. "Microsoft.NETCore.Platforms": "1.1.0",
  1976. "Microsoft.NETCore.Targets": "1.1.0",
  1977. "System.Runtime": "4.3.0"
  1978. },
  1979. "compile": {
  1980. "ref/netstandard1.3/System.Globalization.dll": {
  1981. "related": ".xml"
  1982. }
  1983. }
  1984. },
  1985. "System.Globalization.Calendars/4.3.0": {
  1986. "type": "package",
  1987. "dependencies": {
  1988. "Microsoft.NETCore.Platforms": "1.1.0",
  1989. "Microsoft.NETCore.Targets": "1.1.0",
  1990. "System.Globalization": "4.3.0",
  1991. "System.Runtime": "4.3.0"
  1992. },
  1993. "compile": {
  1994. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1995. "related": ".xml"
  1996. }
  1997. }
  1998. },
  1999. "System.Globalization.Extensions/4.3.0": {
  2000. "type": "package",
  2001. "dependencies": {
  2002. "Microsoft.NETCore.Platforms": "1.1.0",
  2003. "System.Globalization": "4.3.0",
  2004. "System.Resources.ResourceManager": "4.3.0",
  2005. "System.Runtime": "4.3.0",
  2006. "System.Runtime.Extensions": "4.3.0",
  2007. "System.Runtime.InteropServices": "4.3.0"
  2008. },
  2009. "compile": {
  2010. "ref/netstandard1.3/_._": {
  2011. "related": ".xml"
  2012. }
  2013. },
  2014. "runtimeTargets": {
  2015. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2016. "assetType": "runtime",
  2017. "rid": "unix"
  2018. },
  2019. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2020. "assetType": "runtime",
  2021. "rid": "win"
  2022. }
  2023. }
  2024. },
  2025. "System.IdentityModel.Tokens.Jwt/8.6.0": {
  2026. "type": "package",
  2027. "dependencies": {
  2028. "Microsoft.IdentityModel.JsonWebTokens": "8.6.0",
  2029. "Microsoft.IdentityModel.Tokens": "8.6.0"
  2030. },
  2031. "compile": {
  2032. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2033. "related": ".xml"
  2034. }
  2035. },
  2036. "runtime": {
  2037. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2038. "related": ".xml"
  2039. }
  2040. }
  2041. },
  2042. "System.IO/4.3.0": {
  2043. "type": "package",
  2044. "dependencies": {
  2045. "Microsoft.NETCore.Platforms": "1.1.0",
  2046. "Microsoft.NETCore.Targets": "1.1.0",
  2047. "System.Runtime": "4.3.0",
  2048. "System.Text.Encoding": "4.3.0",
  2049. "System.Threading.Tasks": "4.3.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard1.5/System.IO.dll": {
  2053. "related": ".xml"
  2054. }
  2055. }
  2056. },
  2057. "System.IO.Compression/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "Microsoft.NETCore.Platforms": "1.1.0",
  2061. "System.Buffers": "4.3.0",
  2062. "System.Collections": "4.3.0",
  2063. "System.Diagnostics.Debug": "4.3.0",
  2064. "System.IO": "4.3.0",
  2065. "System.Resources.ResourceManager": "4.3.0",
  2066. "System.Runtime": "4.3.0",
  2067. "System.Runtime.Extensions": "4.3.0",
  2068. "System.Runtime.Handles": "4.3.0",
  2069. "System.Runtime.InteropServices": "4.3.0",
  2070. "System.Text.Encoding": "4.3.0",
  2071. "System.Threading": "4.3.0",
  2072. "System.Threading.Tasks": "4.3.0",
  2073. "runtime.native.System": "4.3.0",
  2074. "runtime.native.System.IO.Compression": "4.3.0"
  2075. },
  2076. "compile": {
  2077. "ref/netstandard1.3/System.IO.Compression.dll": {
  2078. "related": ".xml"
  2079. }
  2080. },
  2081. "runtimeTargets": {
  2082. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2083. "assetType": "runtime",
  2084. "rid": "unix"
  2085. },
  2086. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2087. "assetType": "runtime",
  2088. "rid": "win"
  2089. }
  2090. }
  2091. },
  2092. "System.IO.Compression.ZipFile/4.3.0": {
  2093. "type": "package",
  2094. "dependencies": {
  2095. "System.Buffers": "4.3.0",
  2096. "System.IO": "4.3.0",
  2097. "System.IO.Compression": "4.3.0",
  2098. "System.IO.FileSystem": "4.3.0",
  2099. "System.IO.FileSystem.Primitives": "4.3.0",
  2100. "System.Resources.ResourceManager": "4.3.0",
  2101. "System.Runtime": "4.3.0",
  2102. "System.Runtime.Extensions": "4.3.0",
  2103. "System.Text.Encoding": "4.3.0"
  2104. },
  2105. "compile": {
  2106. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2107. "related": ".xml"
  2108. }
  2109. },
  2110. "runtime": {
  2111. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2112. }
  2113. },
  2114. "System.IO.FileSystem/4.3.0": {
  2115. "type": "package",
  2116. "dependencies": {
  2117. "Microsoft.NETCore.Platforms": "1.1.0",
  2118. "Microsoft.NETCore.Targets": "1.1.0",
  2119. "System.IO": "4.3.0",
  2120. "System.IO.FileSystem.Primitives": "4.3.0",
  2121. "System.Runtime": "4.3.0",
  2122. "System.Runtime.Handles": "4.3.0",
  2123. "System.Text.Encoding": "4.3.0",
  2124. "System.Threading.Tasks": "4.3.0"
  2125. },
  2126. "compile": {
  2127. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2128. "related": ".xml"
  2129. }
  2130. }
  2131. },
  2132. "System.IO.FileSystem.Primitives/4.3.0": {
  2133. "type": "package",
  2134. "dependencies": {
  2135. "System.Runtime": "4.3.0"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2139. "related": ".xml"
  2140. }
  2141. },
  2142. "runtime": {
  2143. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2144. }
  2145. },
  2146. "System.IO.Pipelines/5.0.0": {
  2147. "type": "package",
  2148. "compile": {
  2149. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2150. "related": ".xml"
  2151. }
  2152. },
  2153. "runtime": {
  2154. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2155. "related": ".xml"
  2156. }
  2157. }
  2158. },
  2159. "System.Linq/4.3.0": {
  2160. "type": "package",
  2161. "dependencies": {
  2162. "System.Collections": "4.3.0",
  2163. "System.Diagnostics.Debug": "4.3.0",
  2164. "System.Resources.ResourceManager": "4.3.0",
  2165. "System.Runtime": "4.3.0",
  2166. "System.Runtime.Extensions": "4.3.0"
  2167. },
  2168. "compile": {
  2169. "ref/netstandard1.6/System.Linq.dll": {
  2170. "related": ".xml"
  2171. }
  2172. },
  2173. "runtime": {
  2174. "lib/netstandard1.6/System.Linq.dll": {}
  2175. }
  2176. },
  2177. "System.Linq.Expressions/4.3.0": {
  2178. "type": "package",
  2179. "dependencies": {
  2180. "System.Collections": "4.3.0",
  2181. "System.Diagnostics.Debug": "4.3.0",
  2182. "System.Globalization": "4.3.0",
  2183. "System.IO": "4.3.0",
  2184. "System.Linq": "4.3.0",
  2185. "System.ObjectModel": "4.3.0",
  2186. "System.Reflection": "4.3.0",
  2187. "System.Reflection.Emit": "4.3.0",
  2188. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2189. "System.Reflection.Emit.Lightweight": "4.3.0",
  2190. "System.Reflection.Extensions": "4.3.0",
  2191. "System.Reflection.Primitives": "4.3.0",
  2192. "System.Reflection.TypeExtensions": "4.3.0",
  2193. "System.Resources.ResourceManager": "4.3.0",
  2194. "System.Runtime": "4.3.0",
  2195. "System.Runtime.Extensions": "4.3.0",
  2196. "System.Threading": "4.3.0"
  2197. },
  2198. "compile": {
  2199. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2200. "related": ".xml"
  2201. }
  2202. },
  2203. "runtime": {
  2204. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2205. }
  2206. },
  2207. "System.Memory/4.5.5": {
  2208. "type": "package",
  2209. "compile": {
  2210. "ref/netcoreapp2.1/_._": {}
  2211. },
  2212. "runtime": {
  2213. "lib/netcoreapp2.1/_._": {}
  2214. }
  2215. },
  2216. "System.Net.Http/4.3.2": {
  2217. "type": "package",
  2218. "dependencies": {
  2219. "Microsoft.NETCore.Platforms": "1.1.0",
  2220. "System.Collections": "4.3.0",
  2221. "System.Diagnostics.Debug": "4.3.0",
  2222. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2223. "System.Diagnostics.Tracing": "4.3.0",
  2224. "System.Globalization": "4.3.0",
  2225. "System.Globalization.Extensions": "4.3.0",
  2226. "System.IO": "4.3.0",
  2227. "System.IO.FileSystem": "4.3.0",
  2228. "System.Net.Primitives": "4.3.0",
  2229. "System.Resources.ResourceManager": "4.3.0",
  2230. "System.Runtime": "4.3.0",
  2231. "System.Runtime.Extensions": "4.3.0",
  2232. "System.Runtime.Handles": "4.3.0",
  2233. "System.Runtime.InteropServices": "4.3.0",
  2234. "System.Security.Cryptography.Algorithms": "4.3.0",
  2235. "System.Security.Cryptography.Encoding": "4.3.0",
  2236. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2237. "System.Security.Cryptography.Primitives": "4.3.0",
  2238. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2239. "System.Text.Encoding": "4.3.0",
  2240. "System.Threading": "4.3.0",
  2241. "System.Threading.Tasks": "4.3.0",
  2242. "runtime.native.System": "4.3.0",
  2243. "runtime.native.System.Net.Http": "4.3.0",
  2244. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2245. },
  2246. "compile": {
  2247. "ref/netstandard1.3/System.Net.Http.dll": {}
  2248. },
  2249. "runtimeTargets": {
  2250. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2251. "assetType": "runtime",
  2252. "rid": "unix"
  2253. },
  2254. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2255. "assetType": "runtime",
  2256. "rid": "win"
  2257. }
  2258. }
  2259. },
  2260. "System.Net.NameResolution/4.3.0": {
  2261. "type": "package",
  2262. "dependencies": {
  2263. "Microsoft.NETCore.Platforms": "1.1.0",
  2264. "System.Collections": "4.3.0",
  2265. "System.Diagnostics.Tracing": "4.3.0",
  2266. "System.Globalization": "4.3.0",
  2267. "System.Net.Primitives": "4.3.0",
  2268. "System.Resources.ResourceManager": "4.3.0",
  2269. "System.Runtime": "4.3.0",
  2270. "System.Runtime.Extensions": "4.3.0",
  2271. "System.Runtime.Handles": "4.3.0",
  2272. "System.Runtime.InteropServices": "4.3.0",
  2273. "System.Security.Principal.Windows": "4.3.0",
  2274. "System.Threading": "4.3.0",
  2275. "System.Threading.Tasks": "4.3.0",
  2276. "runtime.native.System": "4.3.0"
  2277. },
  2278. "compile": {
  2279. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2280. "related": ".xml"
  2281. }
  2282. },
  2283. "runtimeTargets": {
  2284. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2285. "assetType": "runtime",
  2286. "rid": "unix"
  2287. },
  2288. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2289. "assetType": "runtime",
  2290. "rid": "win"
  2291. }
  2292. }
  2293. },
  2294. "System.Net.Primitives/4.3.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "Microsoft.NETCore.Platforms": "1.1.0",
  2298. "Microsoft.NETCore.Targets": "1.1.0",
  2299. "System.Runtime": "4.3.0",
  2300. "System.Runtime.Handles": "4.3.0"
  2301. },
  2302. "compile": {
  2303. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2304. "related": ".xml"
  2305. }
  2306. }
  2307. },
  2308. "System.Net.Security/4.3.0": {
  2309. "type": "package",
  2310. "dependencies": {
  2311. "Microsoft.NETCore.Platforms": "1.1.0",
  2312. "Microsoft.Win32.Primitives": "4.3.0",
  2313. "System.Collections": "4.3.0",
  2314. "System.Collections.Concurrent": "4.3.0",
  2315. "System.Diagnostics.Tracing": "4.3.0",
  2316. "System.Globalization": "4.3.0",
  2317. "System.Globalization.Extensions": "4.3.0",
  2318. "System.IO": "4.3.0",
  2319. "System.Net.Primitives": "4.3.0",
  2320. "System.Resources.ResourceManager": "4.3.0",
  2321. "System.Runtime": "4.3.0",
  2322. "System.Runtime.Extensions": "4.3.0",
  2323. "System.Runtime.Handles": "4.3.0",
  2324. "System.Runtime.InteropServices": "4.3.0",
  2325. "System.Security.Claims": "4.3.0",
  2326. "System.Security.Cryptography.Algorithms": "4.3.0",
  2327. "System.Security.Cryptography.Encoding": "4.3.0",
  2328. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2329. "System.Security.Cryptography.Primitives": "4.3.0",
  2330. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2331. "System.Security.Principal": "4.3.0",
  2332. "System.Text.Encoding": "4.3.0",
  2333. "System.Threading": "4.3.0",
  2334. "System.Threading.Tasks": "4.3.0",
  2335. "System.Threading.ThreadPool": "4.3.0",
  2336. "runtime.native.System": "4.3.0",
  2337. "runtime.native.System.Net.Security": "4.3.0",
  2338. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2339. },
  2340. "compile": {
  2341. "ref/netstandard1.3/System.Net.Security.dll": {
  2342. "related": ".xml"
  2343. }
  2344. },
  2345. "runtimeTargets": {
  2346. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2347. "assetType": "runtime",
  2348. "rid": "unix"
  2349. },
  2350. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "win"
  2353. }
  2354. }
  2355. },
  2356. "System.Net.Sockets/4.3.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "Microsoft.NETCore.Platforms": "1.1.0",
  2360. "Microsoft.NETCore.Targets": "1.1.0",
  2361. "System.IO": "4.3.0",
  2362. "System.Net.Primitives": "4.3.0",
  2363. "System.Runtime": "4.3.0",
  2364. "System.Threading.Tasks": "4.3.0"
  2365. },
  2366. "compile": {
  2367. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2368. "related": ".xml"
  2369. }
  2370. }
  2371. },
  2372. "System.ObjectModel/4.3.0": {
  2373. "type": "package",
  2374. "dependencies": {
  2375. "System.Collections": "4.3.0",
  2376. "System.Diagnostics.Debug": "4.3.0",
  2377. "System.Resources.ResourceManager": "4.3.0",
  2378. "System.Runtime": "4.3.0",
  2379. "System.Threading": "4.3.0"
  2380. },
  2381. "compile": {
  2382. "ref/netstandard1.3/System.ObjectModel.dll": {
  2383. "related": ".xml"
  2384. }
  2385. },
  2386. "runtime": {
  2387. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2388. }
  2389. },
  2390. "System.Reactive/4.4.1": {
  2391. "type": "package",
  2392. "compile": {
  2393. "lib/netcoreapp3.0/_._": {}
  2394. },
  2395. "runtime": {
  2396. "lib/netcoreapp3.0/_._": {}
  2397. },
  2398. "build": {
  2399. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2400. }
  2401. },
  2402. "System.Reflection/4.3.0": {
  2403. "type": "package",
  2404. "dependencies": {
  2405. "Microsoft.NETCore.Platforms": "1.1.0",
  2406. "Microsoft.NETCore.Targets": "1.1.0",
  2407. "System.IO": "4.3.0",
  2408. "System.Reflection.Primitives": "4.3.0",
  2409. "System.Runtime": "4.3.0"
  2410. },
  2411. "compile": {
  2412. "ref/netstandard1.5/System.Reflection.dll": {
  2413. "related": ".xml"
  2414. }
  2415. }
  2416. },
  2417. "System.Reflection.Emit/4.7.0": {
  2418. "type": "package",
  2419. "compile": {
  2420. "ref/netcoreapp2.0/_._": {}
  2421. },
  2422. "runtime": {
  2423. "lib/netcoreapp2.0/_._": {}
  2424. }
  2425. },
  2426. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2427. "type": "package",
  2428. "dependencies": {
  2429. "System.Reflection": "4.3.0",
  2430. "System.Reflection.Primitives": "4.3.0",
  2431. "System.Runtime": "4.3.0"
  2432. },
  2433. "compile": {
  2434. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2435. "related": ".xml"
  2436. }
  2437. },
  2438. "runtime": {
  2439. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2440. }
  2441. },
  2442. "System.Reflection.Emit.Lightweight/4.3.0": {
  2443. "type": "package",
  2444. "dependencies": {
  2445. "System.Reflection": "4.3.0",
  2446. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2447. "System.Reflection.Primitives": "4.3.0",
  2448. "System.Runtime": "4.3.0"
  2449. },
  2450. "compile": {
  2451. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2452. "related": ".xml"
  2453. }
  2454. },
  2455. "runtime": {
  2456. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2457. }
  2458. },
  2459. "System.Reflection.Extensions/4.3.0": {
  2460. "type": "package",
  2461. "dependencies": {
  2462. "Microsoft.NETCore.Platforms": "1.1.0",
  2463. "Microsoft.NETCore.Targets": "1.1.0",
  2464. "System.Reflection": "4.3.0",
  2465. "System.Runtime": "4.3.0"
  2466. },
  2467. "compile": {
  2468. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2469. "related": ".xml"
  2470. }
  2471. }
  2472. },
  2473. "System.Reflection.Primitives/4.3.0": {
  2474. "type": "package",
  2475. "dependencies": {
  2476. "Microsoft.NETCore.Platforms": "1.1.0",
  2477. "Microsoft.NETCore.Targets": "1.1.0",
  2478. "System.Runtime": "4.3.0"
  2479. },
  2480. "compile": {
  2481. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2482. "related": ".xml"
  2483. }
  2484. }
  2485. },
  2486. "System.Reflection.TypeExtensions/4.3.0": {
  2487. "type": "package",
  2488. "dependencies": {
  2489. "System.Reflection": "4.3.0",
  2490. "System.Runtime": "4.3.0"
  2491. },
  2492. "compile": {
  2493. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2494. "related": ".xml"
  2495. }
  2496. },
  2497. "runtime": {
  2498. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2499. }
  2500. },
  2501. "System.Resources.ResourceManager/4.3.0": {
  2502. "type": "package",
  2503. "dependencies": {
  2504. "Microsoft.NETCore.Platforms": "1.1.0",
  2505. "Microsoft.NETCore.Targets": "1.1.0",
  2506. "System.Globalization": "4.3.0",
  2507. "System.Reflection": "4.3.0",
  2508. "System.Runtime": "4.3.0"
  2509. },
  2510. "compile": {
  2511. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2512. "related": ".xml"
  2513. }
  2514. }
  2515. },
  2516. "System.Runtime/4.3.0": {
  2517. "type": "package",
  2518. "dependencies": {
  2519. "Microsoft.NETCore.Platforms": "1.1.0",
  2520. "Microsoft.NETCore.Targets": "1.1.0"
  2521. },
  2522. "compile": {
  2523. "ref/netstandard1.5/System.Runtime.dll": {
  2524. "related": ".xml"
  2525. }
  2526. }
  2527. },
  2528. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2529. "type": "package",
  2530. "compile": {
  2531. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2532. "related": ".xml"
  2533. }
  2534. },
  2535. "runtime": {
  2536. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2537. "related": ".xml"
  2538. }
  2539. },
  2540. "build": {
  2541. "buildTransitive/netcoreapp3.1/_._": {}
  2542. }
  2543. },
  2544. "System.Runtime.Extensions/4.3.0": {
  2545. "type": "package",
  2546. "dependencies": {
  2547. "Microsoft.NETCore.Platforms": "1.1.0",
  2548. "Microsoft.NETCore.Targets": "1.1.0",
  2549. "System.Runtime": "4.3.0"
  2550. },
  2551. "compile": {
  2552. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2553. "related": ".xml"
  2554. }
  2555. }
  2556. },
  2557. "System.Runtime.Handles/4.3.0": {
  2558. "type": "package",
  2559. "dependencies": {
  2560. "Microsoft.NETCore.Platforms": "1.1.0",
  2561. "Microsoft.NETCore.Targets": "1.1.0",
  2562. "System.Runtime": "4.3.0"
  2563. },
  2564. "compile": {
  2565. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2566. "related": ".xml"
  2567. }
  2568. }
  2569. },
  2570. "System.Runtime.InteropServices/4.3.0": {
  2571. "type": "package",
  2572. "dependencies": {
  2573. "Microsoft.NETCore.Platforms": "1.1.0",
  2574. "Microsoft.NETCore.Targets": "1.1.0",
  2575. "System.Reflection": "4.3.0",
  2576. "System.Reflection.Primitives": "4.3.0",
  2577. "System.Runtime": "4.3.0",
  2578. "System.Runtime.Handles": "4.3.0"
  2579. },
  2580. "compile": {
  2581. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2582. }
  2583. },
  2584. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2585. "type": "package",
  2586. "dependencies": {
  2587. "System.Reflection": "4.3.0",
  2588. "System.Reflection.Extensions": "4.3.0",
  2589. "System.Resources.ResourceManager": "4.3.0",
  2590. "System.Runtime": "4.3.0",
  2591. "System.Runtime.InteropServices": "4.3.0",
  2592. "System.Threading": "4.3.0",
  2593. "runtime.native.System": "4.3.0"
  2594. },
  2595. "compile": {
  2596. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2597. },
  2598. "runtime": {
  2599. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2600. },
  2601. "runtimeTargets": {
  2602. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2603. "assetType": "runtime",
  2604. "rid": "unix"
  2605. },
  2606. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2607. "assetType": "runtime",
  2608. "rid": "win"
  2609. }
  2610. }
  2611. },
  2612. "System.Runtime.Numerics/4.3.0": {
  2613. "type": "package",
  2614. "dependencies": {
  2615. "System.Globalization": "4.3.0",
  2616. "System.Resources.ResourceManager": "4.3.0",
  2617. "System.Runtime": "4.3.0",
  2618. "System.Runtime.Extensions": "4.3.0"
  2619. },
  2620. "compile": {
  2621. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2622. "related": ".xml"
  2623. }
  2624. },
  2625. "runtime": {
  2626. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2627. }
  2628. },
  2629. "System.Runtime.Serialization.Primitives/4.3.0": {
  2630. "type": "package",
  2631. "dependencies": {
  2632. "System.Resources.ResourceManager": "4.3.0",
  2633. "System.Runtime": "4.3.0"
  2634. },
  2635. "compile": {
  2636. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2637. "related": ".xml"
  2638. }
  2639. },
  2640. "runtime": {
  2641. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2642. }
  2643. },
  2644. "System.Security.AccessControl/4.7.0": {
  2645. "type": "package",
  2646. "dependencies": {
  2647. "Microsoft.NETCore.Platforms": "3.1.0",
  2648. "System.Security.Principal.Windows": "4.7.0"
  2649. },
  2650. "compile": {
  2651. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2652. "related": ".xml"
  2653. }
  2654. },
  2655. "runtime": {
  2656. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2657. "related": ".xml"
  2658. }
  2659. },
  2660. "runtimeTargets": {
  2661. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2662. "assetType": "runtime",
  2663. "rid": "win"
  2664. }
  2665. }
  2666. },
  2667. "System.Security.Claims/4.3.0": {
  2668. "type": "package",
  2669. "dependencies": {
  2670. "System.Collections": "4.3.0",
  2671. "System.Globalization": "4.3.0",
  2672. "System.IO": "4.3.0",
  2673. "System.Resources.ResourceManager": "4.3.0",
  2674. "System.Runtime": "4.3.0",
  2675. "System.Runtime.Extensions": "4.3.0",
  2676. "System.Security.Principal": "4.3.0"
  2677. },
  2678. "compile": {
  2679. "ref/netstandard1.3/_._": {
  2680. "related": ".xml"
  2681. }
  2682. },
  2683. "runtime": {
  2684. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2685. }
  2686. },
  2687. "System.Security.Cryptography.Algorithms/4.3.0": {
  2688. "type": "package",
  2689. "dependencies": {
  2690. "Microsoft.NETCore.Platforms": "1.1.0",
  2691. "System.Collections": "4.3.0",
  2692. "System.IO": "4.3.0",
  2693. "System.Resources.ResourceManager": "4.3.0",
  2694. "System.Runtime": "4.3.0",
  2695. "System.Runtime.Extensions": "4.3.0",
  2696. "System.Runtime.Handles": "4.3.0",
  2697. "System.Runtime.InteropServices": "4.3.0",
  2698. "System.Runtime.Numerics": "4.3.0",
  2699. "System.Security.Cryptography.Encoding": "4.3.0",
  2700. "System.Security.Cryptography.Primitives": "4.3.0",
  2701. "System.Text.Encoding": "4.3.0",
  2702. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2703. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2704. },
  2705. "compile": {
  2706. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2707. },
  2708. "runtimeTargets": {
  2709. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2710. "assetType": "runtime",
  2711. "rid": "osx"
  2712. },
  2713. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2714. "assetType": "runtime",
  2715. "rid": "unix"
  2716. },
  2717. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2718. "assetType": "runtime",
  2719. "rid": "win"
  2720. }
  2721. }
  2722. },
  2723. "System.Security.Cryptography.Cng/4.5.0": {
  2724. "type": "package",
  2725. "compile": {
  2726. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2727. "related": ".xml"
  2728. }
  2729. },
  2730. "runtime": {
  2731. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2732. },
  2733. "runtimeTargets": {
  2734. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2735. "assetType": "runtime",
  2736. "rid": "win"
  2737. }
  2738. }
  2739. },
  2740. "System.Security.Cryptography.Csp/4.3.0": {
  2741. "type": "package",
  2742. "dependencies": {
  2743. "Microsoft.NETCore.Platforms": "1.1.0",
  2744. "System.IO": "4.3.0",
  2745. "System.Reflection": "4.3.0",
  2746. "System.Resources.ResourceManager": "4.3.0",
  2747. "System.Runtime": "4.3.0",
  2748. "System.Runtime.Extensions": "4.3.0",
  2749. "System.Runtime.Handles": "4.3.0",
  2750. "System.Runtime.InteropServices": "4.3.0",
  2751. "System.Security.Cryptography.Algorithms": "4.3.0",
  2752. "System.Security.Cryptography.Encoding": "4.3.0",
  2753. "System.Security.Cryptography.Primitives": "4.3.0",
  2754. "System.Text.Encoding": "4.3.0",
  2755. "System.Threading": "4.3.0"
  2756. },
  2757. "compile": {
  2758. "ref/netstandard1.3/_._": {}
  2759. },
  2760. "runtimeTargets": {
  2761. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2762. "assetType": "runtime",
  2763. "rid": "unix"
  2764. },
  2765. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2766. "assetType": "runtime",
  2767. "rid": "win"
  2768. }
  2769. }
  2770. },
  2771. "System.Security.Cryptography.Encoding/4.3.0": {
  2772. "type": "package",
  2773. "dependencies": {
  2774. "Microsoft.NETCore.Platforms": "1.1.0",
  2775. "System.Collections": "4.3.0",
  2776. "System.Collections.Concurrent": "4.3.0",
  2777. "System.Linq": "4.3.0",
  2778. "System.Resources.ResourceManager": "4.3.0",
  2779. "System.Runtime": "4.3.0",
  2780. "System.Runtime.Extensions": "4.3.0",
  2781. "System.Runtime.Handles": "4.3.0",
  2782. "System.Runtime.InteropServices": "4.3.0",
  2783. "System.Security.Cryptography.Primitives": "4.3.0",
  2784. "System.Text.Encoding": "4.3.0",
  2785. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2786. },
  2787. "compile": {
  2788. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2789. "related": ".xml"
  2790. }
  2791. },
  2792. "runtimeTargets": {
  2793. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2794. "assetType": "runtime",
  2795. "rid": "unix"
  2796. },
  2797. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2798. "assetType": "runtime",
  2799. "rid": "win"
  2800. }
  2801. }
  2802. },
  2803. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2804. "type": "package",
  2805. "dependencies": {
  2806. "System.Collections": "4.3.0",
  2807. "System.IO": "4.3.0",
  2808. "System.Resources.ResourceManager": "4.3.0",
  2809. "System.Runtime": "4.3.0",
  2810. "System.Runtime.Extensions": "4.3.0",
  2811. "System.Runtime.Handles": "4.3.0",
  2812. "System.Runtime.InteropServices": "4.3.0",
  2813. "System.Runtime.Numerics": "4.3.0",
  2814. "System.Security.Cryptography.Algorithms": "4.3.0",
  2815. "System.Security.Cryptography.Encoding": "4.3.0",
  2816. "System.Security.Cryptography.Primitives": "4.3.0",
  2817. "System.Text.Encoding": "4.3.0",
  2818. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2819. },
  2820. "compile": {
  2821. "ref/netstandard1.6/_._": {}
  2822. },
  2823. "runtime": {
  2824. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2825. },
  2826. "runtimeTargets": {
  2827. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2828. "assetType": "runtime",
  2829. "rid": "unix"
  2830. }
  2831. }
  2832. },
  2833. "System.Security.Cryptography.Primitives/4.3.0": {
  2834. "type": "package",
  2835. "dependencies": {
  2836. "System.Diagnostics.Debug": "4.3.0",
  2837. "System.Globalization": "4.3.0",
  2838. "System.IO": "4.3.0",
  2839. "System.Resources.ResourceManager": "4.3.0",
  2840. "System.Runtime": "4.3.0",
  2841. "System.Threading": "4.3.0",
  2842. "System.Threading.Tasks": "4.3.0"
  2843. },
  2844. "compile": {
  2845. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2846. },
  2847. "runtime": {
  2848. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2849. }
  2850. },
  2851. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2852. "type": "package",
  2853. "compile": {
  2854. "ref/netstandard2.0/_._": {
  2855. "related": ".xml"
  2856. }
  2857. },
  2858. "runtime": {
  2859. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2860. "related": ".xml"
  2861. }
  2862. },
  2863. "runtimeTargets": {
  2864. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2865. "assetType": "runtime",
  2866. "rid": "win"
  2867. }
  2868. }
  2869. },
  2870. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2871. "type": "package",
  2872. "dependencies": {
  2873. "Microsoft.NETCore.Platforms": "1.1.0",
  2874. "System.Collections": "4.3.0",
  2875. "System.Diagnostics.Debug": "4.3.0",
  2876. "System.Globalization": "4.3.0",
  2877. "System.Globalization.Calendars": "4.3.0",
  2878. "System.IO": "4.3.0",
  2879. "System.IO.FileSystem": "4.3.0",
  2880. "System.IO.FileSystem.Primitives": "4.3.0",
  2881. "System.Resources.ResourceManager": "4.3.0",
  2882. "System.Runtime": "4.3.0",
  2883. "System.Runtime.Extensions": "4.3.0",
  2884. "System.Runtime.Handles": "4.3.0",
  2885. "System.Runtime.InteropServices": "4.3.0",
  2886. "System.Runtime.Numerics": "4.3.0",
  2887. "System.Security.Cryptography.Algorithms": "4.3.0",
  2888. "System.Security.Cryptography.Cng": "4.3.0",
  2889. "System.Security.Cryptography.Csp": "4.3.0",
  2890. "System.Security.Cryptography.Encoding": "4.3.0",
  2891. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2892. "System.Security.Cryptography.Primitives": "4.3.0",
  2893. "System.Text.Encoding": "4.3.0",
  2894. "System.Threading": "4.3.0",
  2895. "runtime.native.System": "4.3.0",
  2896. "runtime.native.System.Net.Http": "4.3.0",
  2897. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2898. },
  2899. "compile": {
  2900. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2901. "related": ".xml"
  2902. }
  2903. },
  2904. "runtimeTargets": {
  2905. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2906. "assetType": "runtime",
  2907. "rid": "unix"
  2908. },
  2909. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2910. "assetType": "runtime",
  2911. "rid": "win"
  2912. }
  2913. }
  2914. },
  2915. "System.Security.Permissions/4.7.0": {
  2916. "type": "package",
  2917. "dependencies": {
  2918. "System.Security.AccessControl": "4.7.0",
  2919. "System.Windows.Extensions": "4.7.0"
  2920. },
  2921. "compile": {
  2922. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2923. "related": ".xml"
  2924. }
  2925. },
  2926. "runtime": {
  2927. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2928. "related": ".xml"
  2929. }
  2930. }
  2931. },
  2932. "System.Security.Principal/4.3.0": {
  2933. "type": "package",
  2934. "dependencies": {
  2935. "System.Runtime": "4.3.0"
  2936. },
  2937. "compile": {
  2938. "ref/netstandard1.0/System.Security.Principal.dll": {
  2939. "related": ".xml"
  2940. }
  2941. },
  2942. "runtime": {
  2943. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2944. }
  2945. },
  2946. "System.Security.Principal.Windows/4.7.0": {
  2947. "type": "package",
  2948. "compile": {
  2949. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2950. "related": ".xml"
  2951. }
  2952. },
  2953. "runtime": {
  2954. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2955. "related": ".xml"
  2956. }
  2957. },
  2958. "runtimeTargets": {
  2959. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2960. "assetType": "runtime",
  2961. "rid": "unix"
  2962. },
  2963. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2964. "assetType": "runtime",
  2965. "rid": "win"
  2966. }
  2967. }
  2968. },
  2969. "System.Text.Encoding/4.3.0": {
  2970. "type": "package",
  2971. "dependencies": {
  2972. "Microsoft.NETCore.Platforms": "1.1.0",
  2973. "Microsoft.NETCore.Targets": "1.1.0",
  2974. "System.Runtime": "4.3.0"
  2975. },
  2976. "compile": {
  2977. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2978. "related": ".xml"
  2979. }
  2980. }
  2981. },
  2982. "System.Text.Encoding.CodePages/5.0.0": {
  2983. "type": "package",
  2984. "dependencies": {
  2985. "Microsoft.NETCore.Platforms": "5.0.0"
  2986. },
  2987. "compile": {
  2988. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2989. "related": ".xml"
  2990. }
  2991. },
  2992. "runtime": {
  2993. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2994. "related": ".xml"
  2995. }
  2996. },
  2997. "runtimeTargets": {
  2998. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2999. "assetType": "runtime",
  3000. "rid": "win"
  3001. }
  3002. }
  3003. },
  3004. "System.Text.Encoding.Extensions/4.3.0": {
  3005. "type": "package",
  3006. "dependencies": {
  3007. "Microsoft.NETCore.Platforms": "1.1.0",
  3008. "Microsoft.NETCore.Targets": "1.1.0",
  3009. "System.Runtime": "4.3.0",
  3010. "System.Text.Encoding": "4.3.0"
  3011. },
  3012. "compile": {
  3013. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3014. "related": ".xml"
  3015. }
  3016. }
  3017. },
  3018. "System.Text.Encodings.Web/8.0.0": {
  3019. "type": "package",
  3020. "dependencies": {
  3021. "System.Buffers": "4.5.1",
  3022. "System.Memory": "4.5.5",
  3023. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  3024. },
  3025. "compile": {
  3026. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3027. "related": ".xml"
  3028. }
  3029. },
  3030. "runtime": {
  3031. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3032. "related": ".xml"
  3033. }
  3034. },
  3035. "build": {
  3036. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  3037. }
  3038. },
  3039. "System.Text.Json/8.0.5": {
  3040. "type": "package",
  3041. "dependencies": {
  3042. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  3043. "System.Buffers": "4.5.1",
  3044. "System.Memory": "4.5.5",
  3045. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  3046. "System.Text.Encodings.Web": "8.0.0",
  3047. "System.Threading.Tasks.Extensions": "4.5.4"
  3048. },
  3049. "compile": {
  3050. "lib/netstandard2.0/System.Text.Json.dll": {
  3051. "related": ".xml"
  3052. }
  3053. },
  3054. "runtime": {
  3055. "lib/netstandard2.0/System.Text.Json.dll": {
  3056. "related": ".xml"
  3057. }
  3058. },
  3059. "build": {
  3060. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  3061. }
  3062. },
  3063. "System.Text.RegularExpressions/4.3.0": {
  3064. "type": "package",
  3065. "dependencies": {
  3066. "System.Runtime": "4.3.0"
  3067. },
  3068. "compile": {
  3069. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3070. },
  3071. "runtime": {
  3072. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3073. }
  3074. },
  3075. "System.Threading/4.3.0": {
  3076. "type": "package",
  3077. "dependencies": {
  3078. "System.Runtime": "4.3.0",
  3079. "System.Threading.Tasks": "4.3.0"
  3080. },
  3081. "compile": {
  3082. "ref/netstandard1.3/System.Threading.dll": {
  3083. "related": ".xml"
  3084. }
  3085. },
  3086. "runtime": {
  3087. "lib/netstandard1.3/System.Threading.dll": {}
  3088. }
  3089. },
  3090. "System.Threading.Channels/7.0.0": {
  3091. "type": "package",
  3092. "compile": {
  3093. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3094. "related": ".xml"
  3095. }
  3096. },
  3097. "runtime": {
  3098. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3099. "related": ".xml"
  3100. }
  3101. },
  3102. "build": {
  3103. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3104. }
  3105. },
  3106. "System.Threading.Tasks/4.3.0": {
  3107. "type": "package",
  3108. "dependencies": {
  3109. "Microsoft.NETCore.Platforms": "1.1.0",
  3110. "Microsoft.NETCore.Targets": "1.1.0",
  3111. "System.Runtime": "4.3.0"
  3112. },
  3113. "compile": {
  3114. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3115. "related": ".xml"
  3116. }
  3117. }
  3118. },
  3119. "System.Threading.Tasks.Extensions/4.5.4": {
  3120. "type": "package",
  3121. "compile": {
  3122. "ref/netcoreapp2.1/_._": {}
  3123. },
  3124. "runtime": {
  3125. "lib/netcoreapp2.1/_._": {}
  3126. }
  3127. },
  3128. "System.Threading.Thread/4.3.0": {
  3129. "type": "package",
  3130. "dependencies": {
  3131. "System.Runtime": "4.3.0"
  3132. },
  3133. "compile": {
  3134. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3135. "related": ".xml"
  3136. }
  3137. },
  3138. "runtime": {
  3139. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3140. }
  3141. },
  3142. "System.Threading.ThreadPool/4.3.0": {
  3143. "type": "package",
  3144. "dependencies": {
  3145. "System.Runtime": "4.3.0",
  3146. "System.Runtime.Handles": "4.3.0"
  3147. },
  3148. "compile": {
  3149. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3150. "related": ".xml"
  3151. }
  3152. },
  3153. "runtime": {
  3154. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3155. }
  3156. },
  3157. "System.Threading.Timer/4.3.0": {
  3158. "type": "package",
  3159. "dependencies": {
  3160. "Microsoft.NETCore.Platforms": "1.1.0",
  3161. "Microsoft.NETCore.Targets": "1.1.0",
  3162. "System.Runtime": "4.3.0"
  3163. },
  3164. "compile": {
  3165. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3166. "related": ".xml"
  3167. }
  3168. }
  3169. },
  3170. "System.Windows.Extensions/4.7.0": {
  3171. "type": "package",
  3172. "dependencies": {
  3173. "System.Drawing.Common": "4.7.0"
  3174. },
  3175. "compile": {
  3176. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3177. "related": ".xml"
  3178. }
  3179. },
  3180. "runtime": {
  3181. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3182. "related": ".xml"
  3183. }
  3184. },
  3185. "runtimeTargets": {
  3186. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3187. "assetType": "runtime",
  3188. "rid": "win"
  3189. }
  3190. }
  3191. },
  3192. "System.Xml.ReaderWriter/4.3.0": {
  3193. "type": "package",
  3194. "dependencies": {
  3195. "System.Collections": "4.3.0",
  3196. "System.Diagnostics.Debug": "4.3.0",
  3197. "System.Globalization": "4.3.0",
  3198. "System.IO": "4.3.0",
  3199. "System.IO.FileSystem": "4.3.0",
  3200. "System.IO.FileSystem.Primitives": "4.3.0",
  3201. "System.Resources.ResourceManager": "4.3.0",
  3202. "System.Runtime": "4.3.0",
  3203. "System.Runtime.Extensions": "4.3.0",
  3204. "System.Runtime.InteropServices": "4.3.0",
  3205. "System.Text.Encoding": "4.3.0",
  3206. "System.Text.Encoding.Extensions": "4.3.0",
  3207. "System.Text.RegularExpressions": "4.3.0",
  3208. "System.Threading.Tasks": "4.3.0",
  3209. "System.Threading.Tasks.Extensions": "4.3.0"
  3210. },
  3211. "compile": {
  3212. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3213. "related": ".xml"
  3214. }
  3215. },
  3216. "runtime": {
  3217. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3218. }
  3219. },
  3220. "System.Xml.XDocument/4.3.0": {
  3221. "type": "package",
  3222. "dependencies": {
  3223. "System.Collections": "4.3.0",
  3224. "System.Diagnostics.Debug": "4.3.0",
  3225. "System.Diagnostics.Tools": "4.3.0",
  3226. "System.Globalization": "4.3.0",
  3227. "System.IO": "4.3.0",
  3228. "System.Reflection": "4.3.0",
  3229. "System.Resources.ResourceManager": "4.3.0",
  3230. "System.Runtime": "4.3.0",
  3231. "System.Runtime.Extensions": "4.3.0",
  3232. "System.Text.Encoding": "4.3.0",
  3233. "System.Threading": "4.3.0",
  3234. "System.Xml.ReaderWriter": "4.3.0"
  3235. },
  3236. "compile": {
  3237. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3238. "related": ".xml"
  3239. }
  3240. },
  3241. "runtime": {
  3242. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3243. }
  3244. },
  3245. "ZXing.Net/0.16.9": {
  3246. "type": "package",
  3247. "compile": {
  3248. "lib/net5.0/zxing.dll": {
  3249. "related": ".XML"
  3250. }
  3251. },
  3252. "runtime": {
  3253. "lib/net5.0/zxing.dll": {
  3254. "related": ".XML"
  3255. }
  3256. }
  3257. },
  3258. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3259. "type": "package",
  3260. "dependencies": {
  3261. "SixLabors.ImageSharp": "2.1.3",
  3262. "ZXing.Net": "0.16.9"
  3263. },
  3264. "compile": {
  3265. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3266. "related": ".pdb;.xml"
  3267. }
  3268. },
  3269. "runtime": {
  3270. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3271. "related": ".pdb;.xml"
  3272. }
  3273. }
  3274. },
  3275. "Ropin.Core.Common/1.0.0": {
  3276. "type": "project",
  3277. "framework": ".NETCoreApp,Version=v5.0",
  3278. "dependencies": {
  3279. "Coravel": "4.2.1",
  3280. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3281. "Newtonsoft.Json": "13.0.1",
  3282. "QRCoder": "1.4.3",
  3283. "SixLabors.ImageSharp": "2.1.6",
  3284. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3285. },
  3286. "compile": {
  3287. "bin/placeholder/Ropin.Core.Common.dll": {}
  3288. },
  3289. "runtime": {
  3290. "bin/placeholder/Ropin.Core.Common.dll": {}
  3291. }
  3292. },
  3293. "Ropin.Core.Extensions/1.0.0": {
  3294. "type": "project",
  3295. "framework": ".NETCoreApp,Version=v5.0",
  3296. "dependencies": {
  3297. "Ropin.Core.Common": "1.0.0",
  3298. "Ropin.Inspection.Common": "1.0.0",
  3299. "Ropin.Inspection.Service": "1.0.0",
  3300. "Ropin.Inspection.Tasks": "1.0.0"
  3301. },
  3302. "compile": {
  3303. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3304. },
  3305. "runtime": {
  3306. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3307. }
  3308. },
  3309. "Ropin.Inspection.Common/1.0.0": {
  3310. "type": "project",
  3311. "framework": ".NETCoreApp,Version=v5.0",
  3312. "dependencies": {
  3313. "FluentEmail.Smtp": "3.0.2",
  3314. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3315. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3316. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3317. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3318. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3319. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3320. "Microsoft.Extensions.Configuration": "5.0.0",
  3321. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3322. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3323. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3324. "Microsoft.Extensions.Http": "5.0.0",
  3325. "Newtonsoft.Json": "13.0.1",
  3326. "RabbitMQ.Client": "6.8.1",
  3327. "log4net": "2.0.17"
  3328. },
  3329. "compile": {
  3330. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3331. },
  3332. "runtime": {
  3333. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3334. }
  3335. },
  3336. "Ropin.Inspection.Model/1.0.0": {
  3337. "type": "project",
  3338. "framework": ".NETCoreApp,Version=v5.0",
  3339. "dependencies": {
  3340. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3341. "Microsoft.EntityFrameworkCore": "5.0.0",
  3342. "MySql.Data": "8.0.23",
  3343. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3344. "Ropin.Inspection.Common": "1.0.0"
  3345. },
  3346. "compile": {
  3347. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3348. },
  3349. "runtime": {
  3350. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3351. }
  3352. },
  3353. "Ropin.Inspection.Repository/1.0.0": {
  3354. "type": "project",
  3355. "framework": ".NETCoreApp,Version=v5.0",
  3356. "dependencies": {
  3357. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3358. "Microsoft.EntityFrameworkCore": "5.0.0",
  3359. "Ropin.Inspection.Model": "1.0.0"
  3360. },
  3361. "compile": {
  3362. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3363. },
  3364. "runtime": {
  3365. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3366. }
  3367. },
  3368. "Ropin.Inspection.Service/1.0.0": {
  3369. "type": "project",
  3370. "framework": ".NETCoreApp,Version=v5.0",
  3371. "dependencies": {
  3372. "AutoMapper": "10.1.1",
  3373. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3374. "Newtonsoft.Json": "13.0.1",
  3375. "Ropin.Core.Common": "1.0.0",
  3376. "Ropin.Inspection.Common": "1.0.0",
  3377. "Ropin.Inspection.Model": "1.0.0",
  3378. "Ropin.Inspection.Repository": "1.0.0",
  3379. "log4net": "2.0.17"
  3380. },
  3381. "compile": {
  3382. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3383. },
  3384. "runtime": {
  3385. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3386. }
  3387. },
  3388. "Ropin.Inspection.Tasks/1.0.0": {
  3389. "type": "project",
  3390. "framework": ".NETCoreApp,Version=v5.0",
  3391. "dependencies": {
  3392. "Quartz": "3.3.3",
  3393. "Ropin.Inspection.Common": "1.0.0",
  3394. "Ropin.Inspection.Model": "1.0.0",
  3395. "Ropin.Inspection.Service": "1.0.0"
  3396. },
  3397. "compile": {
  3398. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3399. },
  3400. "runtime": {
  3401. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3402. }
  3403. }
  3404. }
  3405. },
  3406. "libraries": {
  3407. "AdvancedStringBuilder/0.1.0": {
  3408. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3409. "type": "package",
  3410. "path": "advancedstringbuilder/0.1.0",
  3411. "files": [
  3412. ".nupkg.metadata",
  3413. ".signature.p7s",
  3414. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3415. "advancedstringbuilder.nuspec",
  3416. "lib/net40-client/AdvancedStringBuilder.dll",
  3417. "lib/net40-client/AdvancedStringBuilder.xml",
  3418. "lib/net45/AdvancedStringBuilder.dll",
  3419. "lib/net45/AdvancedStringBuilder.xml",
  3420. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3421. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3422. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3423. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3424. ]
  3425. },
  3426. "Autofac/6.0.0": {
  3427. "sha512": "tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==",
  3428. "type": "package",
  3429. "path": "autofac/6.0.0",
  3430. "files": [
  3431. ".nupkg.metadata",
  3432. ".signature.p7s",
  3433. "autofac.6.0.0.nupkg.sha512",
  3434. "autofac.nuspec",
  3435. "icon.png",
  3436. "lib/netstandard2.0/Autofac.dll",
  3437. "lib/netstandard2.0/Autofac.pdb",
  3438. "lib/netstandard2.0/Autofac.xml",
  3439. "lib/netstandard2.1/Autofac.dll",
  3440. "lib/netstandard2.1/Autofac.pdb",
  3441. "lib/netstandard2.1/Autofac.xml"
  3442. ]
  3443. },
  3444. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3445. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3446. "type": "package",
  3447. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3448. "files": [
  3449. ".nupkg.metadata",
  3450. ".signature.p7s",
  3451. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3452. "autofac.extensions.dependencyinjection.nuspec",
  3453. "icon.png",
  3454. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3455. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3456. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3457. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3458. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3459. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3460. ]
  3461. },
  3462. "AutoMapper/10.1.1": {
  3463. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3464. "type": "package",
  3465. "path": "automapper/10.1.1",
  3466. "files": [
  3467. ".nupkg.metadata",
  3468. ".signature.p7s",
  3469. "automapper.10.1.1.nupkg.sha512",
  3470. "automapper.nuspec",
  3471. "icon.png",
  3472. "lib/net461/AutoMapper.dll",
  3473. "lib/net461/AutoMapper.xml",
  3474. "lib/netstandard2.0/AutoMapper.dll",
  3475. "lib/netstandard2.0/AutoMapper.xml"
  3476. ]
  3477. },
  3478. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  3479. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  3480. "type": "package",
  3481. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  3482. "files": [
  3483. ".nupkg.metadata",
  3484. ".signature.p7s",
  3485. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  3486. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  3487. "icon.png",
  3488. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  3489. ]
  3490. },
  3491. "BouncyCastle.NetCore/1.8.5": {
  3492. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3493. "type": "package",
  3494. "path": "bouncycastle.netcore/1.8.5",
  3495. "files": [
  3496. ".nupkg.metadata",
  3497. ".signature.p7s",
  3498. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3499. "bouncycastle.netcore.nuspec",
  3500. "lib/Mono/BouncyCastle.Crypto.dll",
  3501. "lib/Mono/BouncyCastle.Crypto.xml",
  3502. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3503. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3504. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3505. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3506. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3507. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3508. "lib/net20/BouncyCastle.Crypto.dll",
  3509. "lib/net20/BouncyCastle.Crypto.xml",
  3510. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3511. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3512. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3513. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3514. ]
  3515. },
  3516. "Coravel/4.2.1": {
  3517. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3518. "type": "package",
  3519. "path": "coravel/4.2.1",
  3520. "files": [
  3521. ".nupkg.metadata",
  3522. ".signature.p7s",
  3523. "coravel.4.2.1.nupkg.sha512",
  3524. "coravel.nuspec",
  3525. "lib/netstandard2.0/Coravel.dll",
  3526. "lib/netstandard2.0/Coravel.xml",
  3527. "logo.png",
  3528. "readme.md"
  3529. ]
  3530. },
  3531. "FBoxClientDriver/1.2.0": {
  3532. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3533. "type": "package",
  3534. "path": "fboxclientdriver/1.2.0",
  3535. "files": [
  3536. ".nupkg.metadata",
  3537. ".signature.p7s",
  3538. "fboxclientdriver.1.2.0.nupkg.sha512",
  3539. "fboxclientdriver.nuspec",
  3540. "lib/netstandard2.0/FBoxClientDriver.dll",
  3541. "lib/netstandard2.0/FBoxClientDriver.xml"
  3542. ]
  3543. },
  3544. "FBoxClientDriver.Contract/1.2.0": {
  3545. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3546. "type": "package",
  3547. "path": "fboxclientdriver.contract/1.2.0",
  3548. "files": [
  3549. ".nupkg.metadata",
  3550. ".signature.p7s",
  3551. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3552. "fboxclientdriver.contract.nuspec",
  3553. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3554. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3555. ]
  3556. },
  3557. "FluentEmail.Core/3.0.2": {
  3558. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3559. "type": "package",
  3560. "path": "fluentemail.core/3.0.2",
  3561. "files": [
  3562. ".nupkg.metadata",
  3563. ".signature.p7s",
  3564. "fluentemail.core.3.0.2.nupkg.sha512",
  3565. "fluentemail.core.nuspec",
  3566. "fluentemail_logo_64x64.png",
  3567. "lib/netstandard2.0/FluentEmail.Core.dll"
  3568. ]
  3569. },
  3570. "FluentEmail.Smtp/3.0.2": {
  3571. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3572. "type": "package",
  3573. "path": "fluentemail.smtp/3.0.2",
  3574. "files": [
  3575. ".nupkg.metadata",
  3576. ".signature.p7s",
  3577. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3578. "fluentemail.smtp.nuspec",
  3579. "fluentemail_logo_64x64.png",
  3580. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3581. ]
  3582. },
  3583. "Google.Protobuf/3.11.4": {
  3584. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3585. "type": "package",
  3586. "path": "google.protobuf/3.11.4",
  3587. "files": [
  3588. ".nupkg.metadata",
  3589. ".signature.p7s",
  3590. "google.protobuf.3.11.4.nupkg.sha512",
  3591. "google.protobuf.nuspec",
  3592. "lib/net45/Google.Protobuf.dll",
  3593. "lib/net45/Google.Protobuf.pdb",
  3594. "lib/net45/Google.Protobuf.xml",
  3595. "lib/netstandard1.0/Google.Protobuf.dll",
  3596. "lib/netstandard1.0/Google.Protobuf.pdb",
  3597. "lib/netstandard1.0/Google.Protobuf.xml",
  3598. "lib/netstandard2.0/Google.Protobuf.dll",
  3599. "lib/netstandard2.0/Google.Protobuf.pdb",
  3600. "lib/netstandard2.0/Google.Protobuf.xml"
  3601. ]
  3602. },
  3603. "IdentityModel/4.3.1": {
  3604. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3605. "type": "package",
  3606. "path": "identitymodel/4.3.1",
  3607. "files": [
  3608. ".nupkg.metadata",
  3609. ".signature.p7s",
  3610. "icon.jpg",
  3611. "identitymodel.4.3.1.nupkg.sha512",
  3612. "identitymodel.nuspec",
  3613. "lib/net461/IdentityModel.dll",
  3614. "lib/net461/IdentityModel.pdb",
  3615. "lib/net461/IdentityModel.xml",
  3616. "lib/net472/IdentityModel.dll",
  3617. "lib/net472/IdentityModel.pdb",
  3618. "lib/net472/IdentityModel.xml",
  3619. "lib/netstandard2.0/IdentityModel.dll",
  3620. "lib/netstandard2.0/IdentityModel.pdb",
  3621. "lib/netstandard2.0/IdentityModel.xml"
  3622. ]
  3623. },
  3624. "InfluxData.Net/8.0.1": {
  3625. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3626. "type": "package",
  3627. "path": "influxdata.net/8.0.1",
  3628. "files": [
  3629. ".nupkg.metadata",
  3630. ".signature.p7s",
  3631. "influxdata.net.8.0.1.nupkg.sha512",
  3632. "influxdata.net.nuspec",
  3633. "lib/net461/InfluxData.Net.Common.dll",
  3634. "lib/net461/InfluxData.Net.Common.dll.config",
  3635. "lib/net461/InfluxData.Net.Common.pdb",
  3636. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3637. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3638. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3639. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3640. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3641. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3642. "lib/net461/InfluxData.Net.dll",
  3643. "lib/net461/InfluxData.Net.dll.config",
  3644. "lib/net461/InfluxData.Net.pdb",
  3645. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3646. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3647. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3648. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3649. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3650. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3651. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3652. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3653. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3654. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3655. "lib/netstandard2.0/InfluxData.Net.dll",
  3656. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3657. "lib/netstandard2.0/InfluxData.Net.pdb"
  3658. ]
  3659. },
  3660. "InitQ/1.0.0.14": {
  3661. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3662. "type": "package",
  3663. "path": "initq/1.0.0.14",
  3664. "files": [
  3665. ".nupkg.metadata",
  3666. ".signature.p7s",
  3667. "initq.1.0.0.14.nupkg.sha512",
  3668. "initq.nuspec",
  3669. "lib/netcoreapp2.1/InitQ.dll"
  3670. ]
  3671. },
  3672. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3673. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3674. "type": "package",
  3675. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3676. "files": [
  3677. ".nupkg.metadata",
  3678. ".signature.p7s",
  3679. "LICENSE.txt",
  3680. "advanced-string-builder-license.txt",
  3681. "chakra-samples-license.txt",
  3682. "icon.png",
  3683. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3684. "javascriptengineswitcher.chakracore.nuspec",
  3685. "jsrt-dotnet-license.txt",
  3686. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3687. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3688. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3689. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3690. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3691. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3692. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3693. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3694. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3695. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3696. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3697. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3698. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3699. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3700. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3701. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3702. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3703. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3704. "polyfills-for-old-dot-net-license.txt",
  3705. "readme.txt"
  3706. ]
  3707. },
  3708. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3709. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3710. "type": "package",
  3711. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3712. "files": [
  3713. ".nupkg.metadata",
  3714. ".signature.p7s",
  3715. "LICENSE.txt",
  3716. "chakra-core-license.txt",
  3717. "icon.png",
  3718. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3719. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3720. "readme.txt",
  3721. "runtimes/linux-x64/native/libChakraCore.so"
  3722. ]
  3723. },
  3724. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3725. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3726. "type": "package",
  3727. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3728. "hasTools": true,
  3729. "files": [
  3730. ".nupkg.metadata",
  3731. ".signature.p7s",
  3732. "LICENSE.txt",
  3733. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3734. "chakra-core-license.txt",
  3735. "icon.png",
  3736. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3737. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3738. "readme.txt",
  3739. "runtimes/win-x64/native/ChakraCore.dll",
  3740. "tools/Install.ps1",
  3741. "tools/Uninstall.ps1"
  3742. ]
  3743. },
  3744. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3745. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3746. "type": "package",
  3747. "path": "javascriptengineswitcher.core/3.21.0",
  3748. "files": [
  3749. ".nupkg.metadata",
  3750. ".signature.p7s",
  3751. "LICENSE.txt",
  3752. "advanced-string-builder-license.txt",
  3753. "icon.png",
  3754. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3755. "javascriptengineswitcher.core.nuspec",
  3756. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3757. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3758. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3759. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3760. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3761. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3762. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3763. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3764. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3765. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3766. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3767. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3768. "readme.txt"
  3769. ]
  3770. },
  3771. "K4os.Compression.LZ4/1.1.11": {
  3772. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3773. "type": "package",
  3774. "path": "k4os.compression.lz4/1.1.11",
  3775. "files": [
  3776. ".nupkg.metadata",
  3777. ".signature.p7s",
  3778. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3779. "k4os.compression.lz4.nuspec",
  3780. "lib/net45/K4os.Compression.LZ4.dll",
  3781. "lib/net45/K4os.Compression.LZ4.xml",
  3782. "lib/net46/K4os.Compression.LZ4.dll",
  3783. "lib/net46/K4os.Compression.LZ4.xml",
  3784. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3785. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3786. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3787. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3788. ]
  3789. },
  3790. "K4os.Compression.LZ4.Streams/1.1.11": {
  3791. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3792. "type": "package",
  3793. "path": "k4os.compression.lz4.streams/1.1.11",
  3794. "files": [
  3795. ".nupkg.metadata",
  3796. ".signature.p7s",
  3797. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3798. "k4os.compression.lz4.streams.nuspec",
  3799. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3800. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3801. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3802. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3803. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3804. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3805. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3806. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3807. ]
  3808. },
  3809. "K4os.Hash.xxHash/1.0.6": {
  3810. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3811. "type": "package",
  3812. "path": "k4os.hash.xxhash/1.0.6",
  3813. "files": [
  3814. ".nupkg.metadata",
  3815. ".signature.p7s",
  3816. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3817. "k4os.hash.xxhash.nuspec",
  3818. "lib/net45/K4os.Hash.xxHash.dll",
  3819. "lib/net45/K4os.Hash.xxHash.xml",
  3820. "lib/net46/K4os.Hash.xxHash.dll",
  3821. "lib/net46/K4os.Hash.xxHash.xml",
  3822. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3823. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3824. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3825. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3826. ]
  3827. },
  3828. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3829. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3830. "type": "package",
  3831. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3832. "files": [
  3833. ".nupkg.metadata",
  3834. ".signature.p7s",
  3835. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3836. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3837. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3838. "linqkit.microsoft.entityframeworkcore.nuspec"
  3839. ]
  3840. },
  3841. "log4net/2.0.17": {
  3842. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3843. "type": "package",
  3844. "path": "log4net/2.0.17",
  3845. "files": [
  3846. ".nupkg.metadata",
  3847. ".signature.p7s",
  3848. "lib/net20/log4net.dll",
  3849. "lib/net20/log4net.xml",
  3850. "lib/net35/log4net.dll",
  3851. "lib/net35/log4net.xml",
  3852. "lib/net40-client/log4net.dll",
  3853. "lib/net40-client/log4net.xml",
  3854. "lib/net40/log4net.dll",
  3855. "lib/net40/log4net.xml",
  3856. "lib/net45/log4net.dll",
  3857. "lib/net45/log4net.xml",
  3858. "lib/netstandard1.3/log4net.dll",
  3859. "lib/netstandard1.3/log4net.xml",
  3860. "lib/netstandard2.0/log4net.dll",
  3861. "lib/netstandard2.0/log4net.xml",
  3862. "log4net.2.0.17.nupkg.sha512",
  3863. "log4net.nuspec",
  3864. "package-icon.png"
  3865. ]
  3866. },
  3867. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3868. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3869. "type": "package",
  3870. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3871. "files": [
  3872. ".nupkg.metadata",
  3873. ".signature.p7s",
  3874. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3875. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3876. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3877. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3878. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3879. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3880. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3881. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3882. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3883. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3884. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3885. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3886. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3887. "microsoft.aspnet.signalr.client.nuspec"
  3888. ]
  3889. },
  3890. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3891. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3892. "type": "package",
  3893. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3894. "files": [
  3895. ".nupkg.metadata",
  3896. ".signature.p7s",
  3897. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3898. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3899. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3900. "microsoft.aspnetcore.http.abstractions.nuspec"
  3901. ]
  3902. },
  3903. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3904. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3905. "type": "package",
  3906. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3907. "files": [
  3908. ".nupkg.metadata",
  3909. ".signature.p7s",
  3910. "Icon.png",
  3911. "THIRD-PARTY-NOTICES.TXT",
  3912. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3913. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3914. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3915. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3916. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3917. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3918. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3919. "microsoft.aspnetcore.http.features.nuspec"
  3920. ]
  3921. },
  3922. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3923. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3924. "type": "package",
  3925. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3926. "files": [
  3927. ".nupkg.metadata",
  3928. ".signature.p7s",
  3929. "Icon.png",
  3930. "THIRD-PARTY-NOTICES.TXT",
  3931. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3932. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3933. "microsoft.aspnetcore.nodeservices.nuspec"
  3934. ]
  3935. },
  3936. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  3937. "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
  3938. "type": "package",
  3939. "path": "microsoft.bcl.asyncinterfaces/8.0.0",
  3940. "files": [
  3941. ".nupkg.metadata",
  3942. ".signature.p7s",
  3943. "Icon.png",
  3944. "LICENSE.TXT",
  3945. "PACKAGE.md",
  3946. "THIRD-PARTY-NOTICES.TXT",
  3947. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  3948. "buildTransitive/net462/_._",
  3949. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  3950. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  3951. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3952. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3953. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3954. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3955. "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
  3956. "microsoft.bcl.asyncinterfaces.nuspec",
  3957. "useSharedDesignerContext.txt"
  3958. ]
  3959. },
  3960. "Microsoft.Bcl.Memory/9.0.0": {
  3961. "sha512": "bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==",
  3962. "type": "package",
  3963. "path": "microsoft.bcl.memory/9.0.0",
  3964. "files": [
  3965. ".nupkg.metadata",
  3966. ".signature.p7s",
  3967. "Icon.png",
  3968. "LICENSE.TXT",
  3969. "PACKAGE.md",
  3970. "THIRD-PARTY-NOTICES.TXT",
  3971. "buildTransitive/net461/Microsoft.Bcl.Memory.targets",
  3972. "buildTransitive/net462/_._",
  3973. "buildTransitive/net8.0/_._",
  3974. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets",
  3975. "lib/net462/Microsoft.Bcl.Memory.dll",
  3976. "lib/net462/Microsoft.Bcl.Memory.xml",
  3977. "lib/net8.0/Microsoft.Bcl.Memory.dll",
  3978. "lib/net8.0/Microsoft.Bcl.Memory.xml",
  3979. "lib/net9.0/Microsoft.Bcl.Memory.dll",
  3980. "lib/net9.0/Microsoft.Bcl.Memory.xml",
  3981. "lib/netstandard2.0/Microsoft.Bcl.Memory.dll",
  3982. "lib/netstandard2.0/Microsoft.Bcl.Memory.xml",
  3983. "lib/netstandard2.1/Microsoft.Bcl.Memory.dll",
  3984. "lib/netstandard2.1/Microsoft.Bcl.Memory.xml",
  3985. "microsoft.bcl.memory.9.0.0.nupkg.sha512",
  3986. "microsoft.bcl.memory.nuspec",
  3987. "useSharedDesignerContext.txt"
  3988. ]
  3989. },
  3990. "Microsoft.Bcl.TimeProvider/8.0.1": {
  3991. "sha512": "C7kWHJnMRY7EvJev2S8+yJHZ1y7A4ZlLbA4NE+O23BDIAN5mHeqND1m+SKv1ChRS5YlCDW7yAMUe7lttRsJaAA==",
  3992. "type": "package",
  3993. "path": "microsoft.bcl.timeprovider/8.0.1",
  3994. "files": [
  3995. ".nupkg.metadata",
  3996. ".signature.p7s",
  3997. "Icon.png",
  3998. "LICENSE.TXT",
  3999. "PACKAGE.md",
  4000. "THIRD-PARTY-NOTICES.TXT",
  4001. "buildTransitive/net461/Microsoft.Bcl.TimeProvider.targets",
  4002. "buildTransitive/net462/_._",
  4003. "buildTransitive/net6.0/_._",
  4004. "buildTransitive/netcoreapp2.0/Microsoft.Bcl.TimeProvider.targets",
  4005. "lib/net462/Microsoft.Bcl.TimeProvider.dll",
  4006. "lib/net462/Microsoft.Bcl.TimeProvider.xml",
  4007. "lib/net8.0/Microsoft.Bcl.TimeProvider.dll",
  4008. "lib/net8.0/Microsoft.Bcl.TimeProvider.xml",
  4009. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.dll",
  4010. "lib/netstandard2.0/Microsoft.Bcl.TimeProvider.xml",
  4011. "microsoft.bcl.timeprovider.8.0.1.nupkg.sha512",
  4012. "microsoft.bcl.timeprovider.nuspec",
  4013. "useSharedDesignerContext.txt"
  4014. ]
  4015. },
  4016. "Microsoft.CSharp/4.7.0": {
  4017. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4018. "type": "package",
  4019. "path": "microsoft.csharp/4.7.0",
  4020. "files": [
  4021. ".nupkg.metadata",
  4022. ".signature.p7s",
  4023. "LICENSE.TXT",
  4024. "THIRD-PARTY-NOTICES.TXT",
  4025. "lib/MonoAndroid10/_._",
  4026. "lib/MonoTouch10/_._",
  4027. "lib/net45/_._",
  4028. "lib/netcore50/Microsoft.CSharp.dll",
  4029. "lib/netcoreapp2.0/_._",
  4030. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4031. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4032. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4033. "lib/portable-net45+win8+wp8+wpa81/_._",
  4034. "lib/uap10.0.16299/_._",
  4035. "lib/win8/_._",
  4036. "lib/wp80/_._",
  4037. "lib/wpa81/_._",
  4038. "lib/xamarinios10/_._",
  4039. "lib/xamarinmac20/_._",
  4040. "lib/xamarintvos10/_._",
  4041. "lib/xamarinwatchos10/_._",
  4042. "microsoft.csharp.4.7.0.nupkg.sha512",
  4043. "microsoft.csharp.nuspec",
  4044. "ref/MonoAndroid10/_._",
  4045. "ref/MonoTouch10/_._",
  4046. "ref/net45/_._",
  4047. "ref/netcore50/Microsoft.CSharp.dll",
  4048. "ref/netcore50/Microsoft.CSharp.xml",
  4049. "ref/netcore50/de/Microsoft.CSharp.xml",
  4050. "ref/netcore50/es/Microsoft.CSharp.xml",
  4051. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4052. "ref/netcore50/it/Microsoft.CSharp.xml",
  4053. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4054. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4055. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4056. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4057. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4058. "ref/netcoreapp2.0/_._",
  4059. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4060. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4061. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4062. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4063. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4064. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4065. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4066. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4067. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4068. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4069. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4070. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4071. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4072. "ref/portable-net45+win8+wp8+wpa81/_._",
  4073. "ref/uap10.0.16299/_._",
  4074. "ref/win8/_._",
  4075. "ref/wp80/_._",
  4076. "ref/wpa81/_._",
  4077. "ref/xamarinios10/_._",
  4078. "ref/xamarinmac20/_._",
  4079. "ref/xamarintvos10/_._",
  4080. "ref/xamarinwatchos10/_._",
  4081. "useSharedDesignerContext.txt",
  4082. "version.txt"
  4083. ]
  4084. },
  4085. "Microsoft.EntityFrameworkCore/5.0.0": {
  4086. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4087. "type": "package",
  4088. "path": "microsoft.entityframeworkcore/5.0.0",
  4089. "files": [
  4090. ".nupkg.metadata",
  4091. ".signature.p7s",
  4092. "Icon.png",
  4093. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4094. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4095. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4096. "microsoft.entityframeworkcore.nuspec"
  4097. ]
  4098. },
  4099. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4100. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4101. "type": "package",
  4102. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4103. "files": [
  4104. ".nupkg.metadata",
  4105. ".signature.p7s",
  4106. "Icon.png",
  4107. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4108. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4109. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4110. "microsoft.entityframeworkcore.abstractions.nuspec"
  4111. ]
  4112. },
  4113. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4114. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4115. "type": "package",
  4116. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "Icon.png",
  4121. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4122. "lib/netstandard2.0/_._",
  4123. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4124. "microsoft.entityframeworkcore.analyzers.nuspec"
  4125. ]
  4126. },
  4127. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4128. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4129. "type": "package",
  4130. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4131. "files": [
  4132. ".nupkg.metadata",
  4133. ".signature.p7s",
  4134. "Icon.png",
  4135. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4136. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4137. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4138. "microsoft.entityframeworkcore.relational.nuspec"
  4139. ]
  4140. },
  4141. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4142. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4143. "type": "package",
  4144. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4145. "hasTools": true,
  4146. "files": [
  4147. ".nupkg.metadata",
  4148. ".signature.p7s",
  4149. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4150. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4151. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4152. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4153. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4154. "microsoft.extensions.apidescription.server.nuspec",
  4155. "tools/Newtonsoft.Json.dll",
  4156. "tools/dotnet-getdocument.deps.json",
  4157. "tools/dotnet-getdocument.dll",
  4158. "tools/dotnet-getdocument.runtimeconfig.json",
  4159. "tools/net461-x86/GetDocument.Insider.exe",
  4160. "tools/net461-x86/GetDocument.Insider.exe.config",
  4161. "tools/net461/GetDocument.Insider.exe",
  4162. "tools/net461/GetDocument.Insider.exe.config",
  4163. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4164. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4165. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4166. ]
  4167. },
  4168. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4169. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4170. "type": "package",
  4171. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4172. "files": [
  4173. ".nupkg.metadata",
  4174. ".signature.p7s",
  4175. "Icon.png",
  4176. "LICENSE.TXT",
  4177. "THIRD-PARTY-NOTICES.TXT",
  4178. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4179. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4180. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4181. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4182. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4183. "microsoft.extensions.caching.abstractions.nuspec",
  4184. "useSharedDesignerContext.txt",
  4185. "version.txt"
  4186. ]
  4187. },
  4188. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4189. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4190. "type": "package",
  4191. "path": "microsoft.extensions.caching.memory/5.0.0",
  4192. "files": [
  4193. ".nupkg.metadata",
  4194. ".signature.p7s",
  4195. "Icon.png",
  4196. "LICENSE.TXT",
  4197. "THIRD-PARTY-NOTICES.TXT",
  4198. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4199. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4200. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4201. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4202. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4203. "microsoft.extensions.caching.memory.nuspec",
  4204. "useSharedDesignerContext.txt",
  4205. "version.txt"
  4206. ]
  4207. },
  4208. "Microsoft.Extensions.Configuration/5.0.0": {
  4209. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4210. "type": "package",
  4211. "path": "microsoft.extensions.configuration/5.0.0",
  4212. "files": [
  4213. ".nupkg.metadata",
  4214. ".signature.p7s",
  4215. "Icon.png",
  4216. "LICENSE.TXT",
  4217. "THIRD-PARTY-NOTICES.TXT",
  4218. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4219. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4220. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4221. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4222. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4223. "microsoft.extensions.configuration.nuspec",
  4224. "useSharedDesignerContext.txt",
  4225. "version.txt"
  4226. ]
  4227. },
  4228. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4229. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4230. "type": "package",
  4231. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4232. "files": [
  4233. ".nupkg.metadata",
  4234. ".signature.p7s",
  4235. "Icon.png",
  4236. "LICENSE.TXT",
  4237. "THIRD-PARTY-NOTICES.TXT",
  4238. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4239. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4240. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4241. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4242. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4243. "microsoft.extensions.configuration.abstractions.nuspec",
  4244. "useSharedDesignerContext.txt",
  4245. "version.txt"
  4246. ]
  4247. },
  4248. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4249. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4250. "type": "package",
  4251. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4252. "files": [
  4253. ".nupkg.metadata",
  4254. ".signature.p7s",
  4255. "Icon.png",
  4256. "LICENSE.TXT",
  4257. "THIRD-PARTY-NOTICES.TXT",
  4258. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4259. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4260. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4261. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4262. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4263. "microsoft.extensions.configuration.binder.nuspec",
  4264. "useSharedDesignerContext.txt",
  4265. "version.txt"
  4266. ]
  4267. },
  4268. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4269. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4270. "type": "package",
  4271. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4272. "files": [
  4273. ".nupkg.metadata",
  4274. ".signature.p7s",
  4275. "Icon.png",
  4276. "LICENSE.TXT",
  4277. "THIRD-PARTY-NOTICES.TXT",
  4278. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4279. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4280. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4281. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4282. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4283. "microsoft.extensions.configuration.fileextensions.nuspec",
  4284. "useSharedDesignerContext.txt",
  4285. "version.txt"
  4286. ]
  4287. },
  4288. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4289. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4290. "type": "package",
  4291. "path": "microsoft.extensions.configuration.json/5.0.0",
  4292. "files": [
  4293. ".nupkg.metadata",
  4294. ".signature.p7s",
  4295. "Icon.png",
  4296. "LICENSE.TXT",
  4297. "THIRD-PARTY-NOTICES.TXT",
  4298. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4299. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4300. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4301. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4302. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4303. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4304. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4305. "microsoft.extensions.configuration.json.nuspec",
  4306. "useSharedDesignerContext.txt",
  4307. "version.txt"
  4308. ]
  4309. },
  4310. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4311. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4312. "type": "package",
  4313. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4314. "files": [
  4315. ".nupkg.metadata",
  4316. ".signature.p7s",
  4317. "Icon.png",
  4318. "LICENSE.TXT",
  4319. "THIRD-PARTY-NOTICES.TXT",
  4320. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4321. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4322. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4323. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4324. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4325. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4326. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4327. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4328. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  4329. "microsoft.extensions.dependencyinjection.nuspec",
  4330. "useSharedDesignerContext.txt",
  4331. "version.txt"
  4332. ]
  4333. },
  4334. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4335. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4336. "type": "package",
  4337. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4338. "files": [
  4339. ".nupkg.metadata",
  4340. ".signature.p7s",
  4341. "Icon.png",
  4342. "LICENSE.TXT",
  4343. "THIRD-PARTY-NOTICES.TXT",
  4344. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4345. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4346. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4347. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4348. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4349. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4350. "useSharedDesignerContext.txt",
  4351. "version.txt"
  4352. ]
  4353. },
  4354. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4355. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4356. "type": "package",
  4357. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4358. "files": [
  4359. ".nupkg.metadata",
  4360. ".signature.p7s",
  4361. "Icon.png",
  4362. "LICENSE.TXT",
  4363. "THIRD-PARTY-NOTICES.TXT",
  4364. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4365. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4366. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4367. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4368. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4369. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4370. "useSharedDesignerContext.txt",
  4371. "version.txt"
  4372. ]
  4373. },
  4374. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4375. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4376. "type": "package",
  4377. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4378. "files": [
  4379. ".nupkg.metadata",
  4380. ".signature.p7s",
  4381. "Icon.png",
  4382. "LICENSE.TXT",
  4383. "THIRD-PARTY-NOTICES.TXT",
  4384. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4385. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4386. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4387. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4388. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4389. "microsoft.extensions.fileproviders.physical.nuspec",
  4390. "useSharedDesignerContext.txt",
  4391. "version.txt"
  4392. ]
  4393. },
  4394. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4395. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4396. "type": "package",
  4397. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4398. "files": [
  4399. ".nupkg.metadata",
  4400. ".signature.p7s",
  4401. "Icon.png",
  4402. "LICENSE.TXT",
  4403. "THIRD-PARTY-NOTICES.TXT",
  4404. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4405. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4406. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4407. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4408. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4409. "microsoft.extensions.filesystemglobbing.nuspec",
  4410. "useSharedDesignerContext.txt",
  4411. "version.txt"
  4412. ]
  4413. },
  4414. "Microsoft.Extensions.Hosting/2.1.0": {
  4415. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4416. "type": "package",
  4417. "path": "microsoft.extensions.hosting/2.1.0",
  4418. "files": [
  4419. ".nupkg.metadata",
  4420. ".signature.p7s",
  4421. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4422. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4423. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4424. "microsoft.extensions.hosting.nuspec"
  4425. ]
  4426. },
  4427. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4428. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4429. "type": "package",
  4430. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4431. "files": [
  4432. ".nupkg.metadata",
  4433. ".signature.p7s",
  4434. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4435. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4436. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4437. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4438. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4439. "microsoft.extensions.hosting.abstractions.nuspec",
  4440. "packageIcon.png"
  4441. ]
  4442. },
  4443. "Microsoft.Extensions.Http/5.0.0": {
  4444. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4445. "type": "package",
  4446. "path": "microsoft.extensions.http/5.0.0",
  4447. "files": [
  4448. ".nupkg.metadata",
  4449. ".signature.p7s",
  4450. "Icon.png",
  4451. "LICENSE.TXT",
  4452. "THIRD-PARTY-NOTICES.TXT",
  4453. "lib/net461/Microsoft.Extensions.Http.dll",
  4454. "lib/net461/Microsoft.Extensions.Http.xml",
  4455. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4456. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4457. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4458. "microsoft.extensions.http.nuspec",
  4459. "useSharedDesignerContext.txt",
  4460. "version.txt"
  4461. ]
  4462. },
  4463. "Microsoft.Extensions.Logging/5.0.0": {
  4464. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4465. "type": "package",
  4466. "path": "microsoft.extensions.logging/5.0.0",
  4467. "files": [
  4468. ".nupkg.metadata",
  4469. ".signature.p7s",
  4470. "Icon.png",
  4471. "LICENSE.TXT",
  4472. "THIRD-PARTY-NOTICES.TXT",
  4473. "lib/net461/Microsoft.Extensions.Logging.dll",
  4474. "lib/net461/Microsoft.Extensions.Logging.xml",
  4475. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4476. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4477. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4478. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4479. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4480. "microsoft.extensions.logging.nuspec",
  4481. "useSharedDesignerContext.txt",
  4482. "version.txt"
  4483. ]
  4484. },
  4485. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4486. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4487. "type": "package",
  4488. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4489. "files": [
  4490. ".nupkg.metadata",
  4491. ".signature.p7s",
  4492. "Icon.png",
  4493. "LICENSE.TXT",
  4494. "THIRD-PARTY-NOTICES.TXT",
  4495. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4496. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4497. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4498. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4499. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4500. "microsoft.extensions.logging.abstractions.nuspec",
  4501. "useSharedDesignerContext.txt",
  4502. "version.txt"
  4503. ]
  4504. },
  4505. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4506. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4507. "type": "package",
  4508. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4509. "files": [
  4510. ".nupkg.metadata",
  4511. ".signature.p7s",
  4512. "Icon.png",
  4513. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4514. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4515. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4516. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4517. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4518. "microsoft.extensions.logging.configuration.nuspec"
  4519. ]
  4520. },
  4521. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4522. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4523. "type": "package",
  4524. "path": "microsoft.extensions.logging.console/3.1.30",
  4525. "files": [
  4526. ".nupkg.metadata",
  4527. ".signature.p7s",
  4528. "Icon.png",
  4529. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4530. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4531. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4532. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4533. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4534. "microsoft.extensions.logging.console.nuspec"
  4535. ]
  4536. },
  4537. "Microsoft.Extensions.Options/5.0.0": {
  4538. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4539. "type": "package",
  4540. "path": "microsoft.extensions.options/5.0.0",
  4541. "files": [
  4542. ".nupkg.metadata",
  4543. ".signature.p7s",
  4544. "Icon.png",
  4545. "LICENSE.TXT",
  4546. "THIRD-PARTY-NOTICES.TXT",
  4547. "lib/net461/Microsoft.Extensions.Options.dll",
  4548. "lib/net461/Microsoft.Extensions.Options.xml",
  4549. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4550. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4551. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4552. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4553. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4554. "microsoft.extensions.options.nuspec",
  4555. "useSharedDesignerContext.txt",
  4556. "version.txt"
  4557. ]
  4558. },
  4559. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4560. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4561. "type": "package",
  4562. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4563. "files": [
  4564. ".nupkg.metadata",
  4565. ".signature.p7s",
  4566. "Icon.png",
  4567. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4568. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4569. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4570. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4571. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4572. "microsoft.extensions.options.configurationextensions.nuspec"
  4573. ]
  4574. },
  4575. "Microsoft.Extensions.Primitives/5.0.0": {
  4576. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4577. "type": "package",
  4578. "path": "microsoft.extensions.primitives/5.0.0",
  4579. "files": [
  4580. ".nupkg.metadata",
  4581. ".signature.p7s",
  4582. "Icon.png",
  4583. "LICENSE.TXT",
  4584. "THIRD-PARTY-NOTICES.TXT",
  4585. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4586. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4587. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4588. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4589. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4590. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4591. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4592. "microsoft.extensions.primitives.nuspec",
  4593. "useSharedDesignerContext.txt",
  4594. "version.txt"
  4595. ]
  4596. },
  4597. "Microsoft.IdentityModel.Abstractions/8.6.0": {
  4598. "sha512": "ewgV0sc2B3tjes8+OCRGE08Uxsey3qFfOD8vNq2gTs9k0/zPZ0MejK7Cb/eAW2c2Oz+IQHqgZkTycrAKYBD5yw==",
  4599. "type": "package",
  4600. "path": "microsoft.identitymodel.abstractions/8.6.0",
  4601. "files": [
  4602. ".nupkg.metadata",
  4603. ".signature.p7s",
  4604. "README.md",
  4605. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  4606. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  4607. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  4608. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  4609. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  4610. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  4611. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  4612. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  4613. "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
  4614. "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
  4615. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  4616. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  4617. "microsoft.identitymodel.abstractions.8.6.0.nupkg.sha512",
  4618. "microsoft.identitymodel.abstractions.nuspec"
  4619. ]
  4620. },
  4621. "Microsoft.IdentityModel.JsonWebTokens/8.6.0": {
  4622. "sha512": "g/CFN/OzAhJb9a94ep6/xv4b9fOUL8heFkKDwC/HNb17tUDOIPN5iVawisfZ0p1xjJlmVyYWIggnECqIfX8Rfw==",
  4623. "type": "package",
  4624. "path": "microsoft.identitymodel.jsonwebtokens/8.6.0",
  4625. "files": [
  4626. ".nupkg.metadata",
  4627. ".signature.p7s",
  4628. "README.md",
  4629. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  4630. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  4631. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  4632. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  4633. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4634. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4635. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4636. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4637. "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4638. "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4639. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4640. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4641. "microsoft.identitymodel.jsonwebtokens.8.6.0.nupkg.sha512",
  4642. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4643. ]
  4644. },
  4645. "Microsoft.IdentityModel.Logging/8.6.0": {
  4646. "sha512": "PqkPSoENwbGQenGQT270hZIt5p36Ta4YwDla4QId6LdqCeUDus63OChHBv+3AgujFVeBJlRrvmkN7H+Lug+u0g==",
  4647. "type": "package",
  4648. "path": "microsoft.identitymodel.logging/8.6.0",
  4649. "files": [
  4650. ".nupkg.metadata",
  4651. ".signature.p7s",
  4652. "README.md",
  4653. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  4654. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  4655. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  4656. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  4657. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  4658. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  4659. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  4660. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  4661. "lib/net9.0/Microsoft.IdentityModel.Logging.dll",
  4662. "lib/net9.0/Microsoft.IdentityModel.Logging.xml",
  4663. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4664. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4665. "microsoft.identitymodel.logging.8.6.0.nupkg.sha512",
  4666. "microsoft.identitymodel.logging.nuspec"
  4667. ]
  4668. },
  4669. "Microsoft.IdentityModel.Tokens/8.6.0": {
  4670. "sha512": "ga4ASKm8EezJ+Oj4uvTNE0xjIWy27Ix5pOZz737CnLzxv7ClFnelX+YWbFuiO1Qj2zVoIpsPqKJRGHGlpFF6eQ==",
  4671. "type": "package",
  4672. "path": "microsoft.identitymodel.tokens/8.6.0",
  4673. "files": [
  4674. ".nupkg.metadata",
  4675. ".signature.p7s",
  4676. "README.md",
  4677. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  4678. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  4679. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  4680. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  4681. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  4682. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  4683. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  4684. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  4685. "lib/net9.0/Microsoft.IdentityModel.Tokens.dll",
  4686. "lib/net9.0/Microsoft.IdentityModel.Tokens.xml",
  4687. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  4688. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  4689. "microsoft.identitymodel.tokens.8.6.0.nupkg.sha512",
  4690. "microsoft.identitymodel.tokens.nuspec"
  4691. ]
  4692. },
  4693. "Microsoft.NETCore.Platforms/5.0.0": {
  4694. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4695. "type": "package",
  4696. "path": "microsoft.netcore.platforms/5.0.0",
  4697. "files": [
  4698. ".nupkg.metadata",
  4699. ".signature.p7s",
  4700. "Icon.png",
  4701. "LICENSE.TXT",
  4702. "THIRD-PARTY-NOTICES.TXT",
  4703. "lib/netstandard1.0/_._",
  4704. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4705. "microsoft.netcore.platforms.nuspec",
  4706. "runtime.json",
  4707. "useSharedDesignerContext.txt",
  4708. "version.txt"
  4709. ]
  4710. },
  4711. "Microsoft.NETCore.Targets/1.1.0": {
  4712. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4713. "type": "package",
  4714. "path": "microsoft.netcore.targets/1.1.0",
  4715. "files": [
  4716. ".nupkg.metadata",
  4717. ".signature.p7s",
  4718. "ThirdPartyNotices.txt",
  4719. "dotnet_library_license.txt",
  4720. "lib/netstandard1.0/_._",
  4721. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4722. "microsoft.netcore.targets.nuspec",
  4723. "runtime.json"
  4724. ]
  4725. },
  4726. "Microsoft.OpenApi/1.2.3": {
  4727. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4728. "type": "package",
  4729. "path": "microsoft.openapi/1.2.3",
  4730. "files": [
  4731. ".nupkg.metadata",
  4732. ".signature.p7s",
  4733. "lib/net46/Microsoft.OpenApi.dll",
  4734. "lib/net46/Microsoft.OpenApi.pdb",
  4735. "lib/net46/Microsoft.OpenApi.xml",
  4736. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4737. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4738. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4739. "microsoft.openapi.1.2.3.nupkg.sha512",
  4740. "microsoft.openapi.nuspec"
  4741. ]
  4742. },
  4743. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4744. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4745. "type": "package",
  4746. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4747. "hasTools": true,
  4748. "files": [
  4749. ".nupkg.metadata",
  4750. ".signature.p7s",
  4751. "CHANGELOG.md",
  4752. "EULA.md",
  4753. "ThirdPartyNotices.txt",
  4754. "build/Container.props",
  4755. "build/Container.targets",
  4756. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4757. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4758. "build/Rules/GeneralBrowseObject.xaml",
  4759. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4760. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4761. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4762. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4763. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4764. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4765. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4766. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4767. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4768. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4769. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4770. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4771. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4772. "build/ToolsTarget.props",
  4773. "build/ToolsTarget.targets",
  4774. "icon.png",
  4775. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4776. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4777. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4778. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4779. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4780. "tools/Newtonsoft.Json.dll",
  4781. "tools/System.Security.Principal.Windows.dll",
  4782. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4783. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4784. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4785. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4786. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4787. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4788. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4789. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4790. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4791. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4792. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4793. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4794. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4795. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4796. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4797. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4798. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4799. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4800. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4801. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4802. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4803. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4804. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4805. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4806. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4807. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4808. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4809. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4810. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4811. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4812. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4813. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4814. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4815. "tools/utils/KillProcess.exe",
  4816. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4817. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4818. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4819. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4820. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4821. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4822. ]
  4823. },
  4824. "Microsoft.Win32.Primitives/4.3.0": {
  4825. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4826. "type": "package",
  4827. "path": "microsoft.win32.primitives/4.3.0",
  4828. "files": [
  4829. ".nupkg.metadata",
  4830. ".signature.p7s",
  4831. "ThirdPartyNotices.txt",
  4832. "dotnet_library_license.txt",
  4833. "lib/MonoAndroid10/_._",
  4834. "lib/MonoTouch10/_._",
  4835. "lib/net46/Microsoft.Win32.Primitives.dll",
  4836. "lib/xamarinios10/_._",
  4837. "lib/xamarinmac20/_._",
  4838. "lib/xamarintvos10/_._",
  4839. "lib/xamarinwatchos10/_._",
  4840. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4841. "microsoft.win32.primitives.nuspec",
  4842. "ref/MonoAndroid10/_._",
  4843. "ref/MonoTouch10/_._",
  4844. "ref/net46/Microsoft.Win32.Primitives.dll",
  4845. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4846. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4847. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4848. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4849. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4850. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4851. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4852. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4853. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4854. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4855. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4856. "ref/xamarinios10/_._",
  4857. "ref/xamarinmac20/_._",
  4858. "ref/xamarintvos10/_._",
  4859. "ref/xamarinwatchos10/_._"
  4860. ]
  4861. },
  4862. "Microsoft.Win32.SystemEvents/5.0.0": {
  4863. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4864. "type": "package",
  4865. "path": "microsoft.win32.systemevents/5.0.0",
  4866. "files": [
  4867. ".nupkg.metadata",
  4868. ".signature.p7s",
  4869. "Icon.png",
  4870. "LICENSE.TXT",
  4871. "THIRD-PARTY-NOTICES.TXT",
  4872. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4873. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4874. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4875. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4876. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4877. "microsoft.win32.systemevents.nuspec",
  4878. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4879. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4880. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4881. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4882. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4883. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4884. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4885. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4886. "useSharedDesignerContext.txt",
  4887. "version.txt"
  4888. ]
  4889. },
  4890. "MySql.Data/8.0.23": {
  4891. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4892. "type": "package",
  4893. "path": "mysql.data/8.0.23",
  4894. "files": [
  4895. ".nupkg.metadata",
  4896. ".signature.p7s",
  4897. "lib/net452/MySql.Data.dll",
  4898. "lib/net452/MySql.Data.xml",
  4899. "lib/net452/Ubiety.Dns.Core.dll",
  4900. "lib/net452/Zstandard.Net.dll",
  4901. "lib/net48/MySql.Data.dll",
  4902. "lib/net48/MySql.Data.xml",
  4903. "lib/net48/Ubiety.Dns.Core.dll",
  4904. "lib/net48/Zstandard.Net.dll",
  4905. "lib/net5.0/MySql.Data.dll",
  4906. "lib/net5.0/MySql.Data.xml",
  4907. "lib/net5.0/Ubiety.Dns.Core.dll",
  4908. "lib/net5.0/Zstandard.Net.dll",
  4909. "lib/netstandard2.0/MySql.Data.dll",
  4910. "lib/netstandard2.0/MySql.Data.xml",
  4911. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4912. "lib/netstandard2.0/Zstandard.Net.dll",
  4913. "lib/netstandard2.1/MySql.Data.dll",
  4914. "lib/netstandard2.1/MySql.Data.xml",
  4915. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4916. "lib/netstandard2.1/Zstandard.Net.dll",
  4917. "mysql.data.8.0.23.nupkg.sha512",
  4918. "mysql.data.nuspec"
  4919. ]
  4920. },
  4921. "MySqlConnector/1.1.0": {
  4922. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4923. "type": "package",
  4924. "path": "mysqlconnector/1.1.0",
  4925. "files": [
  4926. ".nupkg.metadata",
  4927. ".signature.p7s",
  4928. "lib/net45/MySqlConnector.dll",
  4929. "lib/net45/MySqlConnector.xml",
  4930. "lib/net461/MySqlConnector.dll",
  4931. "lib/net461/MySqlConnector.xml",
  4932. "lib/net471/MySqlConnector.dll",
  4933. "lib/net471/MySqlConnector.xml",
  4934. "lib/net5.0/MySqlConnector.dll",
  4935. "lib/net5.0/MySqlConnector.xml",
  4936. "lib/netcoreapp2.1/MySqlConnector.dll",
  4937. "lib/netcoreapp2.1/MySqlConnector.xml",
  4938. "lib/netcoreapp3.1/MySqlConnector.dll",
  4939. "lib/netcoreapp3.1/MySqlConnector.xml",
  4940. "lib/netstandard1.3/MySqlConnector.dll",
  4941. "lib/netstandard1.3/MySqlConnector.xml",
  4942. "lib/netstandard2.0/MySqlConnector.dll",
  4943. "lib/netstandard2.0/MySqlConnector.xml",
  4944. "lib/netstandard2.1/MySqlConnector.dll",
  4945. "lib/netstandard2.1/MySqlConnector.xml",
  4946. "logo.png",
  4947. "mysqlconnector.1.1.0.nupkg.sha512",
  4948. "mysqlconnector.nuspec"
  4949. ]
  4950. },
  4951. "NETStandard.Library/1.6.1": {
  4952. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4953. "type": "package",
  4954. "path": "netstandard.library/1.6.1",
  4955. "files": [
  4956. ".nupkg.metadata",
  4957. ".signature.p7s",
  4958. "ThirdPartyNotices.txt",
  4959. "dotnet_library_license.txt",
  4960. "netstandard.library.1.6.1.nupkg.sha512",
  4961. "netstandard.library.nuspec"
  4962. ]
  4963. },
  4964. "Newtonsoft.Json/13.0.1": {
  4965. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4966. "type": "package",
  4967. "path": "newtonsoft.json/13.0.1",
  4968. "files": [
  4969. ".nupkg.metadata",
  4970. ".signature.p7s",
  4971. "LICENSE.md",
  4972. "lib/net20/Newtonsoft.Json.dll",
  4973. "lib/net20/Newtonsoft.Json.xml",
  4974. "lib/net35/Newtonsoft.Json.dll",
  4975. "lib/net35/Newtonsoft.Json.xml",
  4976. "lib/net40/Newtonsoft.Json.dll",
  4977. "lib/net40/Newtonsoft.Json.xml",
  4978. "lib/net45/Newtonsoft.Json.dll",
  4979. "lib/net45/Newtonsoft.Json.xml",
  4980. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4981. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4982. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4983. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4984. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4985. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4986. "newtonsoft.json.13.0.1.nupkg.sha512",
  4987. "newtonsoft.json.nuspec",
  4988. "packageIcon.png"
  4989. ]
  4990. },
  4991. "Nito.AsyncEx.Coordination/5.0.0": {
  4992. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4993. "type": "package",
  4994. "path": "nito.asyncex.coordination/5.0.0",
  4995. "files": [
  4996. ".nupkg.metadata",
  4997. ".signature.p7s",
  4998. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4999. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5000. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5001. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5002. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  5003. "nito.asyncex.coordination.nuspec"
  5004. ]
  5005. },
  5006. "Nito.AsyncEx.Tasks/5.0.0": {
  5007. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  5008. "type": "package",
  5009. "path": "nito.asyncex.tasks/5.0.0",
  5010. "files": [
  5011. ".nupkg.metadata",
  5012. ".signature.p7s",
  5013. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5014. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5015. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5016. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5017. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  5018. "nito.asyncex.tasks.nuspec"
  5019. ]
  5020. },
  5021. "Nito.Collections.Deque/1.0.4": {
  5022. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  5023. "type": "package",
  5024. "path": "nito.collections.deque/1.0.4",
  5025. "files": [
  5026. ".nupkg.metadata",
  5027. ".signature.p7s",
  5028. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5029. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5030. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5031. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5032. "nito.collections.deque.1.0.4.nupkg.sha512",
  5033. "nito.collections.deque.nuspec"
  5034. ]
  5035. },
  5036. "Nito.Disposables/2.0.0": {
  5037. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  5038. "type": "package",
  5039. "path": "nito.disposables/2.0.0",
  5040. "files": [
  5041. ".nupkg.metadata",
  5042. ".signature.p7s",
  5043. "lib/netstandard1.0/Nito.Disposables.dll",
  5044. "lib/netstandard1.0/Nito.Disposables.pdb",
  5045. "lib/netstandard1.0/Nito.Disposables.xml",
  5046. "lib/netstandard2.0/Nito.Disposables.dll",
  5047. "lib/netstandard2.0/Nito.Disposables.pdb",
  5048. "lib/netstandard2.0/Nito.Disposables.xml",
  5049. "nito.disposables.2.0.0.nupkg.sha512",
  5050. "nito.disposables.nuspec"
  5051. ]
  5052. },
  5053. "NodaTime/2.4.7": {
  5054. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  5055. "type": "package",
  5056. "path": "nodatime/2.4.7",
  5057. "files": [
  5058. ".nupkg.metadata",
  5059. ".signature.p7s",
  5060. "lib/net45/NodaTime.dll",
  5061. "lib/net45/NodaTime.pdb",
  5062. "lib/net45/NodaTime.xml",
  5063. "lib/netstandard1.3/NodaTime.dll",
  5064. "lib/netstandard1.3/NodaTime.pdb",
  5065. "lib/netstandard1.3/NodaTime.xml",
  5066. "lib/netstandard2.0/NodaTime.dll",
  5067. "lib/netstandard2.0/NodaTime.pdb",
  5068. "lib/netstandard2.0/NodaTime.xml",
  5069. "nodatime.2.4.7.nupkg.sha512",
  5070. "nodatime.nuspec"
  5071. ]
  5072. },
  5073. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5074. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5075. "type": "package",
  5076. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5077. "files": [
  5078. ".nupkg.metadata",
  5079. ".signature.p7s",
  5080. "icon.png",
  5081. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5082. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5083. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5084. "pomelo.entityframeworkcore.mysql.nuspec"
  5085. ]
  5086. },
  5087. "QRCoder/1.4.3": {
  5088. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5089. "type": "package",
  5090. "path": "qrcoder/1.4.3",
  5091. "files": [
  5092. ".nupkg.metadata",
  5093. ".signature.p7s",
  5094. "lib/net35/QRCoder.dll",
  5095. "lib/net40/QRCoder.dll",
  5096. "lib/net5.0-windows7.0/QRCoder.dll",
  5097. "lib/net5.0/QRCoder.dll",
  5098. "lib/net6.0-windows7.0/QRCoder.dll",
  5099. "lib/net6.0/QRCoder.dll",
  5100. "lib/netstandard1.3/QRCoder.dll",
  5101. "lib/netstandard2.0/QRCoder.dll",
  5102. "nuget-icon.png",
  5103. "nuget-readme.md",
  5104. "qrcoder.1.4.3.nupkg.sha512",
  5105. "qrcoder.nuspec"
  5106. ]
  5107. },
  5108. "Quartz/3.3.3": {
  5109. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5110. "type": "package",
  5111. "path": "quartz/3.3.3",
  5112. "files": [
  5113. ".nupkg.metadata",
  5114. ".signature.p7s",
  5115. "lib/net461/Quartz.dll",
  5116. "lib/net461/Quartz.xml",
  5117. "lib/net472/Quartz.dll",
  5118. "lib/net472/Quartz.xml",
  5119. "lib/netstandard2.0/Quartz.dll",
  5120. "lib/netstandard2.0/Quartz.xml",
  5121. "quartz-logo-small.png",
  5122. "quartz.3.3.3.nupkg.sha512",
  5123. "quartz.nuspec"
  5124. ]
  5125. },
  5126. "RabbitMQ.Client/6.8.1": {
  5127. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5128. "type": "package",
  5129. "path": "rabbitmq.client/6.8.1",
  5130. "files": [
  5131. ".nupkg.metadata",
  5132. ".signature.p7s",
  5133. "README.md",
  5134. "icon.png",
  5135. "lib/net462/RabbitMQ.Client.dll",
  5136. "lib/net462/RabbitMQ.Client.xml",
  5137. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5138. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5139. "rabbitmq.client.6.8.1.nupkg.sha512",
  5140. "rabbitmq.client.nuspec"
  5141. ]
  5142. },
  5143. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5144. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5145. "type": "package",
  5146. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5147. "files": [
  5148. ".nupkg.metadata",
  5149. ".signature.p7s",
  5150. "ThirdPartyNotices.txt",
  5151. "dotnet_library_license.txt",
  5152. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5153. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5154. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5155. ]
  5156. },
  5157. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5158. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5159. "type": "package",
  5160. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. ".signature.p7s",
  5164. "ThirdPartyNotices.txt",
  5165. "dotnet_library_license.txt",
  5166. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5167. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5168. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5169. ]
  5170. },
  5171. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5172. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5173. "type": "package",
  5174. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5175. "files": [
  5176. ".nupkg.metadata",
  5177. ".signature.p7s",
  5178. "ThirdPartyNotices.txt",
  5179. "dotnet_library_license.txt",
  5180. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5181. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5182. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5183. ]
  5184. },
  5185. "runtime.native.System/4.3.0": {
  5186. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5187. "type": "package",
  5188. "path": "runtime.native.system/4.3.0",
  5189. "files": [
  5190. ".nupkg.metadata",
  5191. ".signature.p7s",
  5192. "ThirdPartyNotices.txt",
  5193. "dotnet_library_license.txt",
  5194. "lib/netstandard1.0/_._",
  5195. "runtime.native.system.4.3.0.nupkg.sha512",
  5196. "runtime.native.system.nuspec"
  5197. ]
  5198. },
  5199. "runtime.native.System.IO.Compression/4.3.0": {
  5200. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5201. "type": "package",
  5202. "path": "runtime.native.system.io.compression/4.3.0",
  5203. "files": [
  5204. ".nupkg.metadata",
  5205. ".signature.p7s",
  5206. "ThirdPartyNotices.txt",
  5207. "dotnet_library_license.txt",
  5208. "lib/netstandard1.0/_._",
  5209. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5210. "runtime.native.system.io.compression.nuspec"
  5211. ]
  5212. },
  5213. "runtime.native.System.Net.Http/4.3.0": {
  5214. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5215. "type": "package",
  5216. "path": "runtime.native.system.net.http/4.3.0",
  5217. "files": [
  5218. ".nupkg.metadata",
  5219. ".signature.p7s",
  5220. "ThirdPartyNotices.txt",
  5221. "dotnet_library_license.txt",
  5222. "lib/netstandard1.0/_._",
  5223. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5224. "runtime.native.system.net.http.nuspec"
  5225. ]
  5226. },
  5227. "runtime.native.System.Net.Security/4.3.0": {
  5228. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5229. "type": "package",
  5230. "path": "runtime.native.system.net.security/4.3.0",
  5231. "files": [
  5232. ".nupkg.metadata",
  5233. ".signature.p7s",
  5234. "ThirdPartyNotices.txt",
  5235. "dotnet_library_license.txt",
  5236. "lib/netstandard1.0/_._",
  5237. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5238. "runtime.native.system.net.security.nuspec"
  5239. ]
  5240. },
  5241. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5242. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5243. "type": "package",
  5244. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5245. "files": [
  5246. ".nupkg.metadata",
  5247. ".signature.p7s",
  5248. "ThirdPartyNotices.txt",
  5249. "dotnet_library_license.txt",
  5250. "lib/netstandard1.0/_._",
  5251. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5252. "runtime.native.system.security.cryptography.apple.nuspec"
  5253. ]
  5254. },
  5255. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5256. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5257. "type": "package",
  5258. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5259. "files": [
  5260. ".nupkg.metadata",
  5261. ".signature.p7s",
  5262. "ThirdPartyNotices.txt",
  5263. "dotnet_library_license.txt",
  5264. "lib/netstandard1.0/_._",
  5265. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5266. "runtime.native.system.security.cryptography.openssl.nuspec"
  5267. ]
  5268. },
  5269. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5270. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5271. "type": "package",
  5272. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5273. "files": [
  5274. ".nupkg.metadata",
  5275. ".signature.p7s",
  5276. "ThirdPartyNotices.txt",
  5277. "dotnet_library_license.txt",
  5278. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5279. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5280. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5281. ]
  5282. },
  5283. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5284. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5285. "type": "package",
  5286. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5287. "files": [
  5288. ".nupkg.metadata",
  5289. ".signature.p7s",
  5290. "ThirdPartyNotices.txt",
  5291. "dotnet_library_license.txt",
  5292. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5293. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5294. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5295. ]
  5296. },
  5297. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5298. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5299. "type": "package",
  5300. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5301. "files": [
  5302. ".nupkg.metadata",
  5303. ".signature.p7s",
  5304. "ThirdPartyNotices.txt",
  5305. "dotnet_library_license.txt",
  5306. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5307. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5308. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5309. ]
  5310. },
  5311. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5312. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5313. "type": "package",
  5314. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5315. "files": [
  5316. ".nupkg.metadata",
  5317. ".signature.p7s",
  5318. "ThirdPartyNotices.txt",
  5319. "dotnet_library_license.txt",
  5320. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5321. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5322. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5323. ]
  5324. },
  5325. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5326. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5327. "type": "package",
  5328. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5329. "files": [
  5330. ".nupkg.metadata",
  5331. ".signature.p7s",
  5332. "ThirdPartyNotices.txt",
  5333. "dotnet_library_license.txt",
  5334. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5335. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5336. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5337. ]
  5338. },
  5339. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5340. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5341. "type": "package",
  5342. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5343. "files": [
  5344. ".nupkg.metadata",
  5345. ".signature.p7s",
  5346. "ThirdPartyNotices.txt",
  5347. "dotnet_library_license.txt",
  5348. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5349. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5350. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5351. ]
  5352. },
  5353. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5354. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5355. "type": "package",
  5356. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5357. "files": [
  5358. ".nupkg.metadata",
  5359. ".signature.p7s",
  5360. "ThirdPartyNotices.txt",
  5361. "dotnet_library_license.txt",
  5362. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5363. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5364. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5365. ]
  5366. },
  5367. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5368. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5369. "type": "package",
  5370. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5371. "files": [
  5372. ".nupkg.metadata",
  5373. ".signature.p7s",
  5374. "ThirdPartyNotices.txt",
  5375. "dotnet_library_license.txt",
  5376. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5377. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5378. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5379. ]
  5380. },
  5381. "SixLabors.ImageSharp/2.1.6": {
  5382. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  5383. "type": "package",
  5384. "path": "sixlabors.imagesharp/2.1.6",
  5385. "files": [
  5386. ".nupkg.metadata",
  5387. ".signature.p7s",
  5388. "lib/net472/SixLabors.ImageSharp.dll",
  5389. "lib/net472/SixLabors.ImageSharp.xml",
  5390. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  5391. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  5392. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  5393. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  5394. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  5395. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  5396. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  5397. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  5398. "sixlabors.imagesharp.128.png",
  5399. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  5400. "sixlabors.imagesharp.nuspec"
  5401. ]
  5402. },
  5403. "SSH.NET/2020.0.0-beta1": {
  5404. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  5405. "type": "package",
  5406. "path": "ssh.net/2020.0.0-beta1",
  5407. "files": [
  5408. ".nupkg.metadata",
  5409. ".signature.p7s",
  5410. "lib/net35/Renci.SshNet.dll",
  5411. "lib/net35/Renci.SshNet.xml",
  5412. "lib/net40/Renci.SshNet.dll",
  5413. "lib/net40/Renci.SshNet.xml",
  5414. "lib/netstandard1.3/Renci.SshNet.dll",
  5415. "lib/netstandard1.3/Renci.SshNet.xml",
  5416. "lib/netstandard2.0/Renci.SshNet.dll",
  5417. "lib/netstandard2.0/Renci.SshNet.xml",
  5418. "lib/sl4/Renci.SshNet.dll",
  5419. "lib/sl4/Renci.SshNet.xml",
  5420. "lib/sl5/Renci.SshNet.dll",
  5421. "lib/sl5/Renci.SshNet.xml",
  5422. "lib/uap10/Renci.SshNet.dll",
  5423. "lib/uap10/Renci.SshNet.xml",
  5424. "lib/wp71/Renci.SshNet.dll",
  5425. "lib/wp71/Renci.SshNet.xml",
  5426. "lib/wp8/Renci.SshNet.dll",
  5427. "lib/wp8/Renci.SshNet.xml",
  5428. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5429. "ssh.net.nuspec"
  5430. ]
  5431. },
  5432. "SshNet.Security.Cryptography/1.3.0": {
  5433. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5434. "type": "package",
  5435. "path": "sshnet.security.cryptography/1.3.0",
  5436. "files": [
  5437. ".nupkg.metadata",
  5438. ".signature.p7s",
  5439. "lib/net20/SshNet.Security.Cryptography.dll",
  5440. "lib/net20/SshNet.Security.Cryptography.xml",
  5441. "lib/net40/SshNet.Security.Cryptography.dll",
  5442. "lib/net40/SshNet.Security.Cryptography.xml",
  5443. "lib/net45/SshNet.Security.Cryptography.dll",
  5444. "lib/net45/SshNet.Security.Cryptography.xml",
  5445. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5446. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5447. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5448. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5449. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5450. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5451. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5452. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5453. "lib/sl4/SshNet.Security.Cryptography.dll",
  5454. "lib/sl4/SshNet.Security.Cryptography.xml",
  5455. "lib/sl5/SshNet.Security.Cryptography.dll",
  5456. "lib/sl5/SshNet.Security.Cryptography.xml",
  5457. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5458. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5459. "lib/wp71/SshNet.Security.Cryptography.dll",
  5460. "lib/wp71/SshNet.Security.Cryptography.xml",
  5461. "lib/wp8/SshNet.Security.Cryptography.dll",
  5462. "lib/wp8/SshNet.Security.Cryptography.xml",
  5463. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5464. "sshnet.security.cryptography.nuspec"
  5465. ]
  5466. },
  5467. "StackExchange.Redis/1.2.4": {
  5468. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5469. "type": "package",
  5470. "path": "stackexchange.redis/1.2.4",
  5471. "files": [
  5472. ".nupkg.metadata",
  5473. ".signature.p7s",
  5474. "lib/net45/StackExchange.Redis.dll",
  5475. "lib/net45/StackExchange.Redis.xml",
  5476. "lib/net46/StackExchange.Redis.dll",
  5477. "lib/net46/StackExchange.Redis.xml",
  5478. "lib/netstandard1.5/StackExchange.Redis.dll",
  5479. "lib/netstandard1.5/StackExchange.Redis.xml",
  5480. "stackexchange.redis.1.2.4.nupkg.sha512",
  5481. "stackexchange.redis.nuspec"
  5482. ]
  5483. },
  5484. "Swashbuckle.AspNetCore/5.6.3": {
  5485. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5486. "type": "package",
  5487. "path": "swashbuckle.aspnetcore/5.6.3",
  5488. "files": [
  5489. ".nupkg.metadata",
  5490. ".signature.p7s",
  5491. "build/Swashbuckle.AspNetCore.props",
  5492. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5493. "swashbuckle.aspnetcore.nuspec"
  5494. ]
  5495. },
  5496. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5497. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5498. "type": "package",
  5499. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5500. "files": [
  5501. ".nupkg.metadata",
  5502. ".signature.p7s",
  5503. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5504. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5505. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5506. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5507. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5508. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5509. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5510. "swashbuckle.aspnetcore.swagger.nuspec"
  5511. ]
  5512. },
  5513. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5514. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5515. "type": "package",
  5516. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5517. "files": [
  5518. ".nupkg.metadata",
  5519. ".signature.p7s",
  5520. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5521. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5522. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5523. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5524. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5525. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5526. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5527. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5528. ]
  5529. },
  5530. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5531. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5532. "type": "package",
  5533. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5534. "files": [
  5535. ".nupkg.metadata",
  5536. ".signature.p7s",
  5537. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5538. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5539. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5540. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5541. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5542. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5543. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5544. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5545. ]
  5546. },
  5547. "System.AppContext/4.3.0": {
  5548. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5549. "type": "package",
  5550. "path": "system.appcontext/4.3.0",
  5551. "files": [
  5552. ".nupkg.metadata",
  5553. ".signature.p7s",
  5554. "ThirdPartyNotices.txt",
  5555. "dotnet_library_license.txt",
  5556. "lib/MonoAndroid10/_._",
  5557. "lib/MonoTouch10/_._",
  5558. "lib/net46/System.AppContext.dll",
  5559. "lib/net463/System.AppContext.dll",
  5560. "lib/netcore50/System.AppContext.dll",
  5561. "lib/netstandard1.6/System.AppContext.dll",
  5562. "lib/xamarinios10/_._",
  5563. "lib/xamarinmac20/_._",
  5564. "lib/xamarintvos10/_._",
  5565. "lib/xamarinwatchos10/_._",
  5566. "ref/MonoAndroid10/_._",
  5567. "ref/MonoTouch10/_._",
  5568. "ref/net46/System.AppContext.dll",
  5569. "ref/net463/System.AppContext.dll",
  5570. "ref/netstandard/_._",
  5571. "ref/netstandard1.3/System.AppContext.dll",
  5572. "ref/netstandard1.3/System.AppContext.xml",
  5573. "ref/netstandard1.3/de/System.AppContext.xml",
  5574. "ref/netstandard1.3/es/System.AppContext.xml",
  5575. "ref/netstandard1.3/fr/System.AppContext.xml",
  5576. "ref/netstandard1.3/it/System.AppContext.xml",
  5577. "ref/netstandard1.3/ja/System.AppContext.xml",
  5578. "ref/netstandard1.3/ko/System.AppContext.xml",
  5579. "ref/netstandard1.3/ru/System.AppContext.xml",
  5580. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5581. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5582. "ref/netstandard1.6/System.AppContext.dll",
  5583. "ref/netstandard1.6/System.AppContext.xml",
  5584. "ref/netstandard1.6/de/System.AppContext.xml",
  5585. "ref/netstandard1.6/es/System.AppContext.xml",
  5586. "ref/netstandard1.6/fr/System.AppContext.xml",
  5587. "ref/netstandard1.6/it/System.AppContext.xml",
  5588. "ref/netstandard1.6/ja/System.AppContext.xml",
  5589. "ref/netstandard1.6/ko/System.AppContext.xml",
  5590. "ref/netstandard1.6/ru/System.AppContext.xml",
  5591. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5592. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5593. "ref/xamarinios10/_._",
  5594. "ref/xamarinmac20/_._",
  5595. "ref/xamarintvos10/_._",
  5596. "ref/xamarinwatchos10/_._",
  5597. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5598. "system.appcontext.4.3.0.nupkg.sha512",
  5599. "system.appcontext.nuspec"
  5600. ]
  5601. },
  5602. "System.Buffers/4.5.1": {
  5603. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5604. "type": "package",
  5605. "path": "system.buffers/4.5.1",
  5606. "files": [
  5607. ".nupkg.metadata",
  5608. ".signature.p7s",
  5609. "LICENSE.TXT",
  5610. "THIRD-PARTY-NOTICES.TXT",
  5611. "lib/net461/System.Buffers.dll",
  5612. "lib/net461/System.Buffers.xml",
  5613. "lib/netcoreapp2.0/_._",
  5614. "lib/netstandard1.1/System.Buffers.dll",
  5615. "lib/netstandard1.1/System.Buffers.xml",
  5616. "lib/netstandard2.0/System.Buffers.dll",
  5617. "lib/netstandard2.0/System.Buffers.xml",
  5618. "lib/uap10.0.16299/_._",
  5619. "ref/net45/System.Buffers.dll",
  5620. "ref/net45/System.Buffers.xml",
  5621. "ref/netcoreapp2.0/_._",
  5622. "ref/netstandard1.1/System.Buffers.dll",
  5623. "ref/netstandard1.1/System.Buffers.xml",
  5624. "ref/netstandard2.0/System.Buffers.dll",
  5625. "ref/netstandard2.0/System.Buffers.xml",
  5626. "ref/uap10.0.16299/_._",
  5627. "system.buffers.4.5.1.nupkg.sha512",
  5628. "system.buffers.nuspec",
  5629. "useSharedDesignerContext.txt",
  5630. "version.txt"
  5631. ]
  5632. },
  5633. "System.Collections/4.3.0": {
  5634. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5635. "type": "package",
  5636. "path": "system.collections/4.3.0",
  5637. "files": [
  5638. ".nupkg.metadata",
  5639. ".signature.p7s",
  5640. "ThirdPartyNotices.txt",
  5641. "dotnet_library_license.txt",
  5642. "lib/MonoAndroid10/_._",
  5643. "lib/MonoTouch10/_._",
  5644. "lib/net45/_._",
  5645. "lib/portable-net45+win8+wp8+wpa81/_._",
  5646. "lib/win8/_._",
  5647. "lib/wp80/_._",
  5648. "lib/wpa81/_._",
  5649. "lib/xamarinios10/_._",
  5650. "lib/xamarinmac20/_._",
  5651. "lib/xamarintvos10/_._",
  5652. "lib/xamarinwatchos10/_._",
  5653. "ref/MonoAndroid10/_._",
  5654. "ref/MonoTouch10/_._",
  5655. "ref/net45/_._",
  5656. "ref/netcore50/System.Collections.dll",
  5657. "ref/netcore50/System.Collections.xml",
  5658. "ref/netcore50/de/System.Collections.xml",
  5659. "ref/netcore50/es/System.Collections.xml",
  5660. "ref/netcore50/fr/System.Collections.xml",
  5661. "ref/netcore50/it/System.Collections.xml",
  5662. "ref/netcore50/ja/System.Collections.xml",
  5663. "ref/netcore50/ko/System.Collections.xml",
  5664. "ref/netcore50/ru/System.Collections.xml",
  5665. "ref/netcore50/zh-hans/System.Collections.xml",
  5666. "ref/netcore50/zh-hant/System.Collections.xml",
  5667. "ref/netstandard1.0/System.Collections.dll",
  5668. "ref/netstandard1.0/System.Collections.xml",
  5669. "ref/netstandard1.0/de/System.Collections.xml",
  5670. "ref/netstandard1.0/es/System.Collections.xml",
  5671. "ref/netstandard1.0/fr/System.Collections.xml",
  5672. "ref/netstandard1.0/it/System.Collections.xml",
  5673. "ref/netstandard1.0/ja/System.Collections.xml",
  5674. "ref/netstandard1.0/ko/System.Collections.xml",
  5675. "ref/netstandard1.0/ru/System.Collections.xml",
  5676. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5677. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5678. "ref/netstandard1.3/System.Collections.dll",
  5679. "ref/netstandard1.3/System.Collections.xml",
  5680. "ref/netstandard1.3/de/System.Collections.xml",
  5681. "ref/netstandard1.3/es/System.Collections.xml",
  5682. "ref/netstandard1.3/fr/System.Collections.xml",
  5683. "ref/netstandard1.3/it/System.Collections.xml",
  5684. "ref/netstandard1.3/ja/System.Collections.xml",
  5685. "ref/netstandard1.3/ko/System.Collections.xml",
  5686. "ref/netstandard1.3/ru/System.Collections.xml",
  5687. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5688. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5689. "ref/portable-net45+win8+wp8+wpa81/_._",
  5690. "ref/win8/_._",
  5691. "ref/wp80/_._",
  5692. "ref/wpa81/_._",
  5693. "ref/xamarinios10/_._",
  5694. "ref/xamarinmac20/_._",
  5695. "ref/xamarintvos10/_._",
  5696. "ref/xamarinwatchos10/_._",
  5697. "system.collections.4.3.0.nupkg.sha512",
  5698. "system.collections.nuspec"
  5699. ]
  5700. },
  5701. "System.Collections.Concurrent/4.3.0": {
  5702. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5703. "type": "package",
  5704. "path": "system.collections.concurrent/4.3.0",
  5705. "files": [
  5706. ".nupkg.metadata",
  5707. ".signature.p7s",
  5708. "ThirdPartyNotices.txt",
  5709. "dotnet_library_license.txt",
  5710. "lib/MonoAndroid10/_._",
  5711. "lib/MonoTouch10/_._",
  5712. "lib/net45/_._",
  5713. "lib/netcore50/System.Collections.Concurrent.dll",
  5714. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5715. "lib/portable-net45+win8+wpa81/_._",
  5716. "lib/win8/_._",
  5717. "lib/wpa81/_._",
  5718. "lib/xamarinios10/_._",
  5719. "lib/xamarinmac20/_._",
  5720. "lib/xamarintvos10/_._",
  5721. "lib/xamarinwatchos10/_._",
  5722. "ref/MonoAndroid10/_._",
  5723. "ref/MonoTouch10/_._",
  5724. "ref/net45/_._",
  5725. "ref/netcore50/System.Collections.Concurrent.dll",
  5726. "ref/netcore50/System.Collections.Concurrent.xml",
  5727. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5728. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5729. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5730. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5731. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5732. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5733. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5734. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5735. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5736. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5737. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5738. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5739. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5740. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5741. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5742. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5743. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5744. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5745. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5746. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5747. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5748. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5749. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5750. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5751. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5752. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5753. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5754. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5755. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5756. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5757. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5758. "ref/portable-net45+win8+wpa81/_._",
  5759. "ref/win8/_._",
  5760. "ref/wpa81/_._",
  5761. "ref/xamarinios10/_._",
  5762. "ref/xamarinmac20/_._",
  5763. "ref/xamarintvos10/_._",
  5764. "ref/xamarinwatchos10/_._",
  5765. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5766. "system.collections.concurrent.nuspec"
  5767. ]
  5768. },
  5769. "System.Collections.Immutable/5.0.0": {
  5770. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5771. "type": "package",
  5772. "path": "system.collections.immutable/5.0.0",
  5773. "files": [
  5774. ".nupkg.metadata",
  5775. ".signature.p7s",
  5776. "Icon.png",
  5777. "LICENSE.TXT",
  5778. "THIRD-PARTY-NOTICES.TXT",
  5779. "lib/net461/System.Collections.Immutable.dll",
  5780. "lib/net461/System.Collections.Immutable.xml",
  5781. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5782. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5783. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5784. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5785. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5786. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5787. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5788. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5789. "system.collections.immutable.5.0.0.nupkg.sha512",
  5790. "system.collections.immutable.nuspec",
  5791. "useSharedDesignerContext.txt",
  5792. "version.txt"
  5793. ]
  5794. },
  5795. "System.Collections.NonGeneric/4.3.0": {
  5796. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5797. "type": "package",
  5798. "path": "system.collections.nongeneric/4.3.0",
  5799. "files": [
  5800. ".nupkg.metadata",
  5801. ".signature.p7s",
  5802. "ThirdPartyNotices.txt",
  5803. "dotnet_library_license.txt",
  5804. "lib/MonoAndroid10/_._",
  5805. "lib/MonoTouch10/_._",
  5806. "lib/net46/System.Collections.NonGeneric.dll",
  5807. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5808. "lib/xamarinios10/_._",
  5809. "lib/xamarinmac20/_._",
  5810. "lib/xamarintvos10/_._",
  5811. "lib/xamarinwatchos10/_._",
  5812. "ref/MonoAndroid10/_._",
  5813. "ref/MonoTouch10/_._",
  5814. "ref/net46/System.Collections.NonGeneric.dll",
  5815. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5816. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5817. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5818. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5819. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5820. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5821. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5822. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5823. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5824. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5825. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5826. "ref/xamarinios10/_._",
  5827. "ref/xamarinmac20/_._",
  5828. "ref/xamarintvos10/_._",
  5829. "ref/xamarinwatchos10/_._",
  5830. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5831. "system.collections.nongeneric.nuspec"
  5832. ]
  5833. },
  5834. "System.ComponentModel/4.3.0": {
  5835. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5836. "type": "package",
  5837. "path": "system.componentmodel/4.3.0",
  5838. "files": [
  5839. ".nupkg.metadata",
  5840. ".signature.p7s",
  5841. "ThirdPartyNotices.txt",
  5842. "dotnet_library_license.txt",
  5843. "lib/MonoAndroid10/_._",
  5844. "lib/MonoTouch10/_._",
  5845. "lib/net45/_._",
  5846. "lib/netcore50/System.ComponentModel.dll",
  5847. "lib/netstandard1.3/System.ComponentModel.dll",
  5848. "lib/portable-net45+win8+wp8+wpa81/_._",
  5849. "lib/win8/_._",
  5850. "lib/wp80/_._",
  5851. "lib/wpa81/_._",
  5852. "lib/xamarinios10/_._",
  5853. "lib/xamarinmac20/_._",
  5854. "lib/xamarintvos10/_._",
  5855. "lib/xamarinwatchos10/_._",
  5856. "ref/MonoAndroid10/_._",
  5857. "ref/MonoTouch10/_._",
  5858. "ref/net45/_._",
  5859. "ref/netcore50/System.ComponentModel.dll",
  5860. "ref/netcore50/System.ComponentModel.xml",
  5861. "ref/netcore50/de/System.ComponentModel.xml",
  5862. "ref/netcore50/es/System.ComponentModel.xml",
  5863. "ref/netcore50/fr/System.ComponentModel.xml",
  5864. "ref/netcore50/it/System.ComponentModel.xml",
  5865. "ref/netcore50/ja/System.ComponentModel.xml",
  5866. "ref/netcore50/ko/System.ComponentModel.xml",
  5867. "ref/netcore50/ru/System.ComponentModel.xml",
  5868. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5869. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5870. "ref/netstandard1.0/System.ComponentModel.dll",
  5871. "ref/netstandard1.0/System.ComponentModel.xml",
  5872. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5873. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5874. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5875. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5876. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5877. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5878. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5879. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5880. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5881. "ref/portable-net45+win8+wp8+wpa81/_._",
  5882. "ref/win8/_._",
  5883. "ref/wp80/_._",
  5884. "ref/wpa81/_._",
  5885. "ref/xamarinios10/_._",
  5886. "ref/xamarinmac20/_._",
  5887. "ref/xamarintvos10/_._",
  5888. "ref/xamarinwatchos10/_._",
  5889. "system.componentmodel.4.3.0.nupkg.sha512",
  5890. "system.componentmodel.nuspec"
  5891. ]
  5892. },
  5893. "System.ComponentModel.Annotations/5.0.0": {
  5894. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5895. "type": "package",
  5896. "path": "system.componentmodel.annotations/5.0.0",
  5897. "files": [
  5898. ".nupkg.metadata",
  5899. ".signature.p7s",
  5900. "Icon.png",
  5901. "LICENSE.TXT",
  5902. "THIRD-PARTY-NOTICES.TXT",
  5903. "lib/MonoAndroid10/_._",
  5904. "lib/MonoTouch10/_._",
  5905. "lib/net45/_._",
  5906. "lib/net461/System.ComponentModel.Annotations.dll",
  5907. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5908. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5909. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5910. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5911. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5912. "lib/portable-net45+win8/_._",
  5913. "lib/win8/_._",
  5914. "lib/xamarinios10/_._",
  5915. "lib/xamarinmac20/_._",
  5916. "lib/xamarintvos10/_._",
  5917. "lib/xamarinwatchos10/_._",
  5918. "ref/MonoAndroid10/_._",
  5919. "ref/MonoTouch10/_._",
  5920. "ref/net45/_._",
  5921. "ref/net461/System.ComponentModel.Annotations.dll",
  5922. "ref/net461/System.ComponentModel.Annotations.xml",
  5923. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5924. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5925. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5926. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5927. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5928. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5929. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5930. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5931. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5932. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5933. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5934. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5935. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5936. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5937. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5938. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5939. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5940. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5941. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5942. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5943. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5944. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5945. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5946. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5947. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5948. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5949. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5950. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5951. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5952. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5953. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5954. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5955. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5956. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5957. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5958. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5959. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5960. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5961. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5962. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5963. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5964. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5965. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5966. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5967. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5968. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5969. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5970. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5971. "ref/portable-net45+win8/_._",
  5972. "ref/win8/_._",
  5973. "ref/xamarinios10/_._",
  5974. "ref/xamarinmac20/_._",
  5975. "ref/xamarintvos10/_._",
  5976. "ref/xamarinwatchos10/_._",
  5977. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5978. "system.componentmodel.annotations.nuspec",
  5979. "useSharedDesignerContext.txt",
  5980. "version.txt"
  5981. ]
  5982. },
  5983. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5984. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5985. "type": "package",
  5986. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5987. "files": [
  5988. ".nupkg.metadata",
  5989. ".signature.p7s",
  5990. "ThirdPartyNotices.txt",
  5991. "dotnet_library_license.txt",
  5992. "lib/MonoAndroid10/_._",
  5993. "lib/MonoTouch10/_._",
  5994. "lib/net45/_._",
  5995. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5996. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5997. "lib/portable-net45+win8+wp8+wpa81/_._",
  5998. "lib/win8/_._",
  5999. "lib/wp80/_._",
  6000. "lib/wpa81/_._",
  6001. "lib/xamarinios10/_._",
  6002. "lib/xamarinmac20/_._",
  6003. "lib/xamarintvos10/_._",
  6004. "lib/xamarinwatchos10/_._",
  6005. "ref/MonoAndroid10/_._",
  6006. "ref/MonoTouch10/_._",
  6007. "ref/net45/_._",
  6008. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6009. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  6010. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  6011. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  6012. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  6013. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  6014. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  6015. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  6016. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  6017. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6018. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6019. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  6020. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  6021. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  6022. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  6023. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  6024. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  6025. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  6026. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  6027. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  6028. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6029. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6030. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6031. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  6032. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  6033. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  6034. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  6035. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  6036. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  6037. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  6038. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  6039. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6040. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6041. "ref/portable-net45+win8+wp8+wpa81/_._",
  6042. "ref/win8/_._",
  6043. "ref/wp80/_._",
  6044. "ref/wpa81/_._",
  6045. "ref/xamarinios10/_._",
  6046. "ref/xamarinmac20/_._",
  6047. "ref/xamarintvos10/_._",
  6048. "ref/xamarinwatchos10/_._",
  6049. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  6050. "system.componentmodel.eventbasedasync.nuspec"
  6051. ]
  6052. },
  6053. "System.ComponentModel.Primitives/4.3.0": {
  6054. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6055. "type": "package",
  6056. "path": "system.componentmodel.primitives/4.3.0",
  6057. "files": [
  6058. ".nupkg.metadata",
  6059. ".signature.p7s",
  6060. "ThirdPartyNotices.txt",
  6061. "dotnet_library_license.txt",
  6062. "lib/MonoAndroid10/_._",
  6063. "lib/MonoTouch10/_._",
  6064. "lib/net45/System.ComponentModel.Primitives.dll",
  6065. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6066. "lib/xamarinios10/_._",
  6067. "lib/xamarinmac20/_._",
  6068. "lib/xamarintvos10/_._",
  6069. "lib/xamarinwatchos10/_._",
  6070. "ref/MonoAndroid10/_._",
  6071. "ref/MonoTouch10/_._",
  6072. "ref/net45/System.ComponentModel.Primitives.dll",
  6073. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6074. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6075. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6076. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6077. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6078. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6079. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6080. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6081. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6082. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6083. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6084. "ref/xamarinios10/_._",
  6085. "ref/xamarinmac20/_._",
  6086. "ref/xamarintvos10/_._",
  6087. "ref/xamarinwatchos10/_._",
  6088. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6089. "system.componentmodel.primitives.nuspec"
  6090. ]
  6091. },
  6092. "System.Configuration.ConfigurationManager/4.7.0": {
  6093. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6094. "type": "package",
  6095. "path": "system.configuration.configurationmanager/4.7.0",
  6096. "files": [
  6097. ".nupkg.metadata",
  6098. ".signature.p7s",
  6099. "LICENSE.TXT",
  6100. "THIRD-PARTY-NOTICES.TXT",
  6101. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6102. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6103. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6104. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6105. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6106. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6107. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6108. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6109. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6110. "system.configuration.configurationmanager.nuspec",
  6111. "useSharedDesignerContext.txt",
  6112. "version.txt"
  6113. ]
  6114. },
  6115. "System.Console/4.3.0": {
  6116. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6117. "type": "package",
  6118. "path": "system.console/4.3.0",
  6119. "files": [
  6120. ".nupkg.metadata",
  6121. ".signature.p7s",
  6122. "ThirdPartyNotices.txt",
  6123. "dotnet_library_license.txt",
  6124. "lib/MonoAndroid10/_._",
  6125. "lib/MonoTouch10/_._",
  6126. "lib/net46/System.Console.dll",
  6127. "lib/xamarinios10/_._",
  6128. "lib/xamarinmac20/_._",
  6129. "lib/xamarintvos10/_._",
  6130. "lib/xamarinwatchos10/_._",
  6131. "ref/MonoAndroid10/_._",
  6132. "ref/MonoTouch10/_._",
  6133. "ref/net46/System.Console.dll",
  6134. "ref/netstandard1.3/System.Console.dll",
  6135. "ref/netstandard1.3/System.Console.xml",
  6136. "ref/netstandard1.3/de/System.Console.xml",
  6137. "ref/netstandard1.3/es/System.Console.xml",
  6138. "ref/netstandard1.3/fr/System.Console.xml",
  6139. "ref/netstandard1.3/it/System.Console.xml",
  6140. "ref/netstandard1.3/ja/System.Console.xml",
  6141. "ref/netstandard1.3/ko/System.Console.xml",
  6142. "ref/netstandard1.3/ru/System.Console.xml",
  6143. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6144. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6145. "ref/xamarinios10/_._",
  6146. "ref/xamarinmac20/_._",
  6147. "ref/xamarintvos10/_._",
  6148. "ref/xamarinwatchos10/_._",
  6149. "system.console.4.3.0.nupkg.sha512",
  6150. "system.console.nuspec"
  6151. ]
  6152. },
  6153. "System.Diagnostics.Debug/4.3.0": {
  6154. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6155. "type": "package",
  6156. "path": "system.diagnostics.debug/4.3.0",
  6157. "files": [
  6158. ".nupkg.metadata",
  6159. ".signature.p7s",
  6160. "ThirdPartyNotices.txt",
  6161. "dotnet_library_license.txt",
  6162. "lib/MonoAndroid10/_._",
  6163. "lib/MonoTouch10/_._",
  6164. "lib/net45/_._",
  6165. "lib/portable-net45+win8+wp8+wpa81/_._",
  6166. "lib/win8/_._",
  6167. "lib/wp80/_._",
  6168. "lib/wpa81/_._",
  6169. "lib/xamarinios10/_._",
  6170. "lib/xamarinmac20/_._",
  6171. "lib/xamarintvos10/_._",
  6172. "lib/xamarinwatchos10/_._",
  6173. "ref/MonoAndroid10/_._",
  6174. "ref/MonoTouch10/_._",
  6175. "ref/net45/_._",
  6176. "ref/netcore50/System.Diagnostics.Debug.dll",
  6177. "ref/netcore50/System.Diagnostics.Debug.xml",
  6178. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6179. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6180. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6181. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6182. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6183. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6184. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6185. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6186. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6187. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6188. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6189. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6190. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6191. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6192. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6193. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6194. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6195. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6196. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6197. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6198. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6199. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6200. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6201. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6202. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6203. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6204. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6205. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6206. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6207. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6208. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6209. "ref/portable-net45+win8+wp8+wpa81/_._",
  6210. "ref/win8/_._",
  6211. "ref/wp80/_._",
  6212. "ref/wpa81/_._",
  6213. "ref/xamarinios10/_._",
  6214. "ref/xamarinmac20/_._",
  6215. "ref/xamarintvos10/_._",
  6216. "ref/xamarinwatchos10/_._",
  6217. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6218. "system.diagnostics.debug.nuspec"
  6219. ]
  6220. },
  6221. "System.Diagnostics.DiagnosticSource/6.0.2": {
  6222. "sha512": "6tQaIexFycaotdGn23lf3XJ/eI1GOjQKIvQDRFN9N4pwoNsKnHuXccQ3lnQO6GX8KAb1ic+6ZofJmPdbUVwZag==",
  6223. "type": "package",
  6224. "path": "system.diagnostics.diagnosticsource/6.0.2",
  6225. "files": [
  6226. ".nupkg.metadata",
  6227. ".signature.p7s",
  6228. "Icon.png",
  6229. "LICENSE.TXT",
  6230. "THIRD-PARTY-NOTICES.TXT",
  6231. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6232. "buildTransitive/netcoreapp3.1/_._",
  6233. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  6234. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  6235. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6236. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6237. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6238. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6239. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6240. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6241. "system.diagnostics.diagnosticsource.6.0.2.nupkg.sha512",
  6242. "system.diagnostics.diagnosticsource.nuspec",
  6243. "useSharedDesignerContext.txt"
  6244. ]
  6245. },
  6246. "System.Diagnostics.Tools/4.3.0": {
  6247. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6248. "type": "package",
  6249. "path": "system.diagnostics.tools/4.3.0",
  6250. "files": [
  6251. ".nupkg.metadata",
  6252. ".signature.p7s",
  6253. "ThirdPartyNotices.txt",
  6254. "dotnet_library_license.txt",
  6255. "lib/MonoAndroid10/_._",
  6256. "lib/MonoTouch10/_._",
  6257. "lib/net45/_._",
  6258. "lib/portable-net45+win8+wp8+wpa81/_._",
  6259. "lib/win8/_._",
  6260. "lib/wp80/_._",
  6261. "lib/wpa81/_._",
  6262. "lib/xamarinios10/_._",
  6263. "lib/xamarinmac20/_._",
  6264. "lib/xamarintvos10/_._",
  6265. "lib/xamarinwatchos10/_._",
  6266. "ref/MonoAndroid10/_._",
  6267. "ref/MonoTouch10/_._",
  6268. "ref/net45/_._",
  6269. "ref/netcore50/System.Diagnostics.Tools.dll",
  6270. "ref/netcore50/System.Diagnostics.Tools.xml",
  6271. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6272. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6273. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6274. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6275. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6276. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6277. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6278. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6279. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6280. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6281. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6282. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6283. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6284. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6285. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6286. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6287. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6288. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6289. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6290. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6291. "ref/portable-net45+win8+wp8+wpa81/_._",
  6292. "ref/win8/_._",
  6293. "ref/wp80/_._",
  6294. "ref/wpa81/_._",
  6295. "ref/xamarinios10/_._",
  6296. "ref/xamarinmac20/_._",
  6297. "ref/xamarintvos10/_._",
  6298. "ref/xamarinwatchos10/_._",
  6299. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6300. "system.diagnostics.tools.nuspec"
  6301. ]
  6302. },
  6303. "System.Diagnostics.Tracing/4.3.0": {
  6304. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6305. "type": "package",
  6306. "path": "system.diagnostics.tracing/4.3.0",
  6307. "files": [
  6308. ".nupkg.metadata",
  6309. ".signature.p7s",
  6310. "ThirdPartyNotices.txt",
  6311. "dotnet_library_license.txt",
  6312. "lib/MonoAndroid10/_._",
  6313. "lib/MonoTouch10/_._",
  6314. "lib/net45/_._",
  6315. "lib/net462/System.Diagnostics.Tracing.dll",
  6316. "lib/portable-net45+win8+wpa81/_._",
  6317. "lib/win8/_._",
  6318. "lib/wpa81/_._",
  6319. "lib/xamarinios10/_._",
  6320. "lib/xamarinmac20/_._",
  6321. "lib/xamarintvos10/_._",
  6322. "lib/xamarinwatchos10/_._",
  6323. "ref/MonoAndroid10/_._",
  6324. "ref/MonoTouch10/_._",
  6325. "ref/net45/_._",
  6326. "ref/net462/System.Diagnostics.Tracing.dll",
  6327. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6328. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6329. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6330. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6331. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6332. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6333. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6334. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6335. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6336. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6337. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6338. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6339. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6340. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6341. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6342. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6343. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6344. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6345. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6346. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6347. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6348. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6349. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6350. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6351. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6352. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6353. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6354. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6355. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6356. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6357. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6358. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6359. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6360. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6361. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6362. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6363. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6364. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6365. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6366. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6367. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6368. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6369. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6370. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6371. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6372. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6373. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6374. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6375. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6376. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6377. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6378. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6379. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6380. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6381. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6382. "ref/portable-net45+win8+wpa81/_._",
  6383. "ref/win8/_._",
  6384. "ref/wpa81/_._",
  6385. "ref/xamarinios10/_._",
  6386. "ref/xamarinmac20/_._",
  6387. "ref/xamarintvos10/_._",
  6388. "ref/xamarinwatchos10/_._",
  6389. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6390. "system.diagnostics.tracing.nuspec"
  6391. ]
  6392. },
  6393. "System.Drawing.Common/5.0.3": {
  6394. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  6395. "type": "package",
  6396. "path": "system.drawing.common/5.0.3",
  6397. "files": [
  6398. ".nupkg.metadata",
  6399. ".signature.p7s",
  6400. "Icon.png",
  6401. "LICENSE.TXT",
  6402. "THIRD-PARTY-NOTICES.TXT",
  6403. "lib/MonoAndroid10/_._",
  6404. "lib/MonoTouch10/_._",
  6405. "lib/net461/System.Drawing.Common.dll",
  6406. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  6407. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  6408. "lib/netstandard2.0/System.Drawing.Common.dll",
  6409. "lib/xamarinios10/_._",
  6410. "lib/xamarinmac20/_._",
  6411. "lib/xamarintvos10/_._",
  6412. "lib/xamarinwatchos10/_._",
  6413. "ref/MonoAndroid10/_._",
  6414. "ref/MonoTouch10/_._",
  6415. "ref/net461/System.Drawing.Common.dll",
  6416. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6417. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6418. "ref/netstandard2.0/System.Drawing.Common.dll",
  6419. "ref/xamarinios10/_._",
  6420. "ref/xamarinmac20/_._",
  6421. "ref/xamarintvos10/_._",
  6422. "ref/xamarinwatchos10/_._",
  6423. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6424. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6425. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6426. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6427. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6428. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6429. "system.drawing.common.5.0.3.nupkg.sha512",
  6430. "system.drawing.common.nuspec",
  6431. "useSharedDesignerContext.txt",
  6432. "version.txt"
  6433. ]
  6434. },
  6435. "System.Globalization/4.3.0": {
  6436. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6437. "type": "package",
  6438. "path": "system.globalization/4.3.0",
  6439. "files": [
  6440. ".nupkg.metadata",
  6441. ".signature.p7s",
  6442. "ThirdPartyNotices.txt",
  6443. "dotnet_library_license.txt",
  6444. "lib/MonoAndroid10/_._",
  6445. "lib/MonoTouch10/_._",
  6446. "lib/net45/_._",
  6447. "lib/portable-net45+win8+wp8+wpa81/_._",
  6448. "lib/win8/_._",
  6449. "lib/wp80/_._",
  6450. "lib/wpa81/_._",
  6451. "lib/xamarinios10/_._",
  6452. "lib/xamarinmac20/_._",
  6453. "lib/xamarintvos10/_._",
  6454. "lib/xamarinwatchos10/_._",
  6455. "ref/MonoAndroid10/_._",
  6456. "ref/MonoTouch10/_._",
  6457. "ref/net45/_._",
  6458. "ref/netcore50/System.Globalization.dll",
  6459. "ref/netcore50/System.Globalization.xml",
  6460. "ref/netcore50/de/System.Globalization.xml",
  6461. "ref/netcore50/es/System.Globalization.xml",
  6462. "ref/netcore50/fr/System.Globalization.xml",
  6463. "ref/netcore50/it/System.Globalization.xml",
  6464. "ref/netcore50/ja/System.Globalization.xml",
  6465. "ref/netcore50/ko/System.Globalization.xml",
  6466. "ref/netcore50/ru/System.Globalization.xml",
  6467. "ref/netcore50/zh-hans/System.Globalization.xml",
  6468. "ref/netcore50/zh-hant/System.Globalization.xml",
  6469. "ref/netstandard1.0/System.Globalization.dll",
  6470. "ref/netstandard1.0/System.Globalization.xml",
  6471. "ref/netstandard1.0/de/System.Globalization.xml",
  6472. "ref/netstandard1.0/es/System.Globalization.xml",
  6473. "ref/netstandard1.0/fr/System.Globalization.xml",
  6474. "ref/netstandard1.0/it/System.Globalization.xml",
  6475. "ref/netstandard1.0/ja/System.Globalization.xml",
  6476. "ref/netstandard1.0/ko/System.Globalization.xml",
  6477. "ref/netstandard1.0/ru/System.Globalization.xml",
  6478. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6479. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6480. "ref/netstandard1.3/System.Globalization.dll",
  6481. "ref/netstandard1.3/System.Globalization.xml",
  6482. "ref/netstandard1.3/de/System.Globalization.xml",
  6483. "ref/netstandard1.3/es/System.Globalization.xml",
  6484. "ref/netstandard1.3/fr/System.Globalization.xml",
  6485. "ref/netstandard1.3/it/System.Globalization.xml",
  6486. "ref/netstandard1.3/ja/System.Globalization.xml",
  6487. "ref/netstandard1.3/ko/System.Globalization.xml",
  6488. "ref/netstandard1.3/ru/System.Globalization.xml",
  6489. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6490. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6491. "ref/portable-net45+win8+wp8+wpa81/_._",
  6492. "ref/win8/_._",
  6493. "ref/wp80/_._",
  6494. "ref/wpa81/_._",
  6495. "ref/xamarinios10/_._",
  6496. "ref/xamarinmac20/_._",
  6497. "ref/xamarintvos10/_._",
  6498. "ref/xamarinwatchos10/_._",
  6499. "system.globalization.4.3.0.nupkg.sha512",
  6500. "system.globalization.nuspec"
  6501. ]
  6502. },
  6503. "System.Globalization.Calendars/4.3.0": {
  6504. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6505. "type": "package",
  6506. "path": "system.globalization.calendars/4.3.0",
  6507. "files": [
  6508. ".nupkg.metadata",
  6509. ".signature.p7s",
  6510. "ThirdPartyNotices.txt",
  6511. "dotnet_library_license.txt",
  6512. "lib/MonoAndroid10/_._",
  6513. "lib/MonoTouch10/_._",
  6514. "lib/net46/System.Globalization.Calendars.dll",
  6515. "lib/xamarinios10/_._",
  6516. "lib/xamarinmac20/_._",
  6517. "lib/xamarintvos10/_._",
  6518. "lib/xamarinwatchos10/_._",
  6519. "ref/MonoAndroid10/_._",
  6520. "ref/MonoTouch10/_._",
  6521. "ref/net46/System.Globalization.Calendars.dll",
  6522. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6523. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6524. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6525. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6526. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6527. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6528. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6529. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6530. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6531. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6532. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6533. "ref/xamarinios10/_._",
  6534. "ref/xamarinmac20/_._",
  6535. "ref/xamarintvos10/_._",
  6536. "ref/xamarinwatchos10/_._",
  6537. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6538. "system.globalization.calendars.nuspec"
  6539. ]
  6540. },
  6541. "System.Globalization.Extensions/4.3.0": {
  6542. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6543. "type": "package",
  6544. "path": "system.globalization.extensions/4.3.0",
  6545. "files": [
  6546. ".nupkg.metadata",
  6547. ".signature.p7s",
  6548. "ThirdPartyNotices.txt",
  6549. "dotnet_library_license.txt",
  6550. "lib/MonoAndroid10/_._",
  6551. "lib/MonoTouch10/_._",
  6552. "lib/net46/System.Globalization.Extensions.dll",
  6553. "lib/xamarinios10/_._",
  6554. "lib/xamarinmac20/_._",
  6555. "lib/xamarintvos10/_._",
  6556. "lib/xamarinwatchos10/_._",
  6557. "ref/MonoAndroid10/_._",
  6558. "ref/MonoTouch10/_._",
  6559. "ref/net46/System.Globalization.Extensions.dll",
  6560. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6561. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6562. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6563. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6564. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6565. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6566. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6567. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6568. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6569. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6570. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6571. "ref/xamarinios10/_._",
  6572. "ref/xamarinmac20/_._",
  6573. "ref/xamarintvos10/_._",
  6574. "ref/xamarinwatchos10/_._",
  6575. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6576. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6577. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6578. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6579. "system.globalization.extensions.nuspec"
  6580. ]
  6581. },
  6582. "System.IdentityModel.Tokens.Jwt/8.6.0": {
  6583. "sha512": "PbhxMaAejQ5pVStTsMPzja0Q2FOeEIOQy8isxw2tTxduqIjWRJ+P78bWGpaXH67Tkeb+2t91YBj2stXEw6vyZQ==",
  6584. "type": "package",
  6585. "path": "system.identitymodel.tokens.jwt/8.6.0",
  6586. "files": [
  6587. ".nupkg.metadata",
  6588. ".signature.p7s",
  6589. "README.md",
  6590. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  6591. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  6592. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  6593. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  6594. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  6595. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  6596. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  6597. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  6598. "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll",
  6599. "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml",
  6600. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6601. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6602. "system.identitymodel.tokens.jwt.8.6.0.nupkg.sha512",
  6603. "system.identitymodel.tokens.jwt.nuspec"
  6604. ]
  6605. },
  6606. "System.IO/4.3.0": {
  6607. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6608. "type": "package",
  6609. "path": "system.io/4.3.0",
  6610. "files": [
  6611. ".nupkg.metadata",
  6612. ".signature.p7s",
  6613. "ThirdPartyNotices.txt",
  6614. "dotnet_library_license.txt",
  6615. "lib/MonoAndroid10/_._",
  6616. "lib/MonoTouch10/_._",
  6617. "lib/net45/_._",
  6618. "lib/net462/System.IO.dll",
  6619. "lib/portable-net45+win8+wp8+wpa81/_._",
  6620. "lib/win8/_._",
  6621. "lib/wp80/_._",
  6622. "lib/wpa81/_._",
  6623. "lib/xamarinios10/_._",
  6624. "lib/xamarinmac20/_._",
  6625. "lib/xamarintvos10/_._",
  6626. "lib/xamarinwatchos10/_._",
  6627. "ref/MonoAndroid10/_._",
  6628. "ref/MonoTouch10/_._",
  6629. "ref/net45/_._",
  6630. "ref/net462/System.IO.dll",
  6631. "ref/netcore50/System.IO.dll",
  6632. "ref/netcore50/System.IO.xml",
  6633. "ref/netcore50/de/System.IO.xml",
  6634. "ref/netcore50/es/System.IO.xml",
  6635. "ref/netcore50/fr/System.IO.xml",
  6636. "ref/netcore50/it/System.IO.xml",
  6637. "ref/netcore50/ja/System.IO.xml",
  6638. "ref/netcore50/ko/System.IO.xml",
  6639. "ref/netcore50/ru/System.IO.xml",
  6640. "ref/netcore50/zh-hans/System.IO.xml",
  6641. "ref/netcore50/zh-hant/System.IO.xml",
  6642. "ref/netstandard1.0/System.IO.dll",
  6643. "ref/netstandard1.0/System.IO.xml",
  6644. "ref/netstandard1.0/de/System.IO.xml",
  6645. "ref/netstandard1.0/es/System.IO.xml",
  6646. "ref/netstandard1.0/fr/System.IO.xml",
  6647. "ref/netstandard1.0/it/System.IO.xml",
  6648. "ref/netstandard1.0/ja/System.IO.xml",
  6649. "ref/netstandard1.0/ko/System.IO.xml",
  6650. "ref/netstandard1.0/ru/System.IO.xml",
  6651. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6652. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6653. "ref/netstandard1.3/System.IO.dll",
  6654. "ref/netstandard1.3/System.IO.xml",
  6655. "ref/netstandard1.3/de/System.IO.xml",
  6656. "ref/netstandard1.3/es/System.IO.xml",
  6657. "ref/netstandard1.3/fr/System.IO.xml",
  6658. "ref/netstandard1.3/it/System.IO.xml",
  6659. "ref/netstandard1.3/ja/System.IO.xml",
  6660. "ref/netstandard1.3/ko/System.IO.xml",
  6661. "ref/netstandard1.3/ru/System.IO.xml",
  6662. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6663. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6664. "ref/netstandard1.5/System.IO.dll",
  6665. "ref/netstandard1.5/System.IO.xml",
  6666. "ref/netstandard1.5/de/System.IO.xml",
  6667. "ref/netstandard1.5/es/System.IO.xml",
  6668. "ref/netstandard1.5/fr/System.IO.xml",
  6669. "ref/netstandard1.5/it/System.IO.xml",
  6670. "ref/netstandard1.5/ja/System.IO.xml",
  6671. "ref/netstandard1.5/ko/System.IO.xml",
  6672. "ref/netstandard1.5/ru/System.IO.xml",
  6673. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6674. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6675. "ref/portable-net45+win8+wp8+wpa81/_._",
  6676. "ref/win8/_._",
  6677. "ref/wp80/_._",
  6678. "ref/wpa81/_._",
  6679. "ref/xamarinios10/_._",
  6680. "ref/xamarinmac20/_._",
  6681. "ref/xamarintvos10/_._",
  6682. "ref/xamarinwatchos10/_._",
  6683. "system.io.4.3.0.nupkg.sha512",
  6684. "system.io.nuspec"
  6685. ]
  6686. },
  6687. "System.IO.Compression/4.3.0": {
  6688. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6689. "type": "package",
  6690. "path": "system.io.compression/4.3.0",
  6691. "files": [
  6692. ".nupkg.metadata",
  6693. ".signature.p7s",
  6694. "ThirdPartyNotices.txt",
  6695. "dotnet_library_license.txt",
  6696. "lib/MonoAndroid10/_._",
  6697. "lib/MonoTouch10/_._",
  6698. "lib/net45/_._",
  6699. "lib/net46/System.IO.Compression.dll",
  6700. "lib/portable-net45+win8+wpa81/_._",
  6701. "lib/win8/_._",
  6702. "lib/wpa81/_._",
  6703. "lib/xamarinios10/_._",
  6704. "lib/xamarinmac20/_._",
  6705. "lib/xamarintvos10/_._",
  6706. "lib/xamarinwatchos10/_._",
  6707. "ref/MonoAndroid10/_._",
  6708. "ref/MonoTouch10/_._",
  6709. "ref/net45/_._",
  6710. "ref/net46/System.IO.Compression.dll",
  6711. "ref/netcore50/System.IO.Compression.dll",
  6712. "ref/netcore50/System.IO.Compression.xml",
  6713. "ref/netcore50/de/System.IO.Compression.xml",
  6714. "ref/netcore50/es/System.IO.Compression.xml",
  6715. "ref/netcore50/fr/System.IO.Compression.xml",
  6716. "ref/netcore50/it/System.IO.Compression.xml",
  6717. "ref/netcore50/ja/System.IO.Compression.xml",
  6718. "ref/netcore50/ko/System.IO.Compression.xml",
  6719. "ref/netcore50/ru/System.IO.Compression.xml",
  6720. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6721. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6722. "ref/netstandard1.1/System.IO.Compression.dll",
  6723. "ref/netstandard1.1/System.IO.Compression.xml",
  6724. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6725. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6726. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6727. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6728. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6729. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6730. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6731. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6732. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6733. "ref/netstandard1.3/System.IO.Compression.dll",
  6734. "ref/netstandard1.3/System.IO.Compression.xml",
  6735. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6736. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6737. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6738. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6739. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6740. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6741. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6742. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6743. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6744. "ref/portable-net45+win8+wpa81/_._",
  6745. "ref/win8/_._",
  6746. "ref/wpa81/_._",
  6747. "ref/xamarinios10/_._",
  6748. "ref/xamarinmac20/_._",
  6749. "ref/xamarintvos10/_._",
  6750. "ref/xamarinwatchos10/_._",
  6751. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6752. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6753. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6754. "system.io.compression.4.3.0.nupkg.sha512",
  6755. "system.io.compression.nuspec"
  6756. ]
  6757. },
  6758. "System.IO.Compression.ZipFile/4.3.0": {
  6759. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6760. "type": "package",
  6761. "path": "system.io.compression.zipfile/4.3.0",
  6762. "files": [
  6763. ".nupkg.metadata",
  6764. ".signature.p7s",
  6765. "ThirdPartyNotices.txt",
  6766. "dotnet_library_license.txt",
  6767. "lib/MonoAndroid10/_._",
  6768. "lib/MonoTouch10/_._",
  6769. "lib/net46/System.IO.Compression.ZipFile.dll",
  6770. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6771. "lib/xamarinios10/_._",
  6772. "lib/xamarinmac20/_._",
  6773. "lib/xamarintvos10/_._",
  6774. "lib/xamarinwatchos10/_._",
  6775. "ref/MonoAndroid10/_._",
  6776. "ref/MonoTouch10/_._",
  6777. "ref/net46/System.IO.Compression.ZipFile.dll",
  6778. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6779. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6780. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6781. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6782. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6783. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6784. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6785. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6786. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6787. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6788. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6789. "ref/xamarinios10/_._",
  6790. "ref/xamarinmac20/_._",
  6791. "ref/xamarintvos10/_._",
  6792. "ref/xamarinwatchos10/_._",
  6793. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6794. "system.io.compression.zipfile.nuspec"
  6795. ]
  6796. },
  6797. "System.IO.FileSystem/4.3.0": {
  6798. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6799. "type": "package",
  6800. "path": "system.io.filesystem/4.3.0",
  6801. "files": [
  6802. ".nupkg.metadata",
  6803. ".signature.p7s",
  6804. "ThirdPartyNotices.txt",
  6805. "dotnet_library_license.txt",
  6806. "lib/MonoAndroid10/_._",
  6807. "lib/MonoTouch10/_._",
  6808. "lib/net46/System.IO.FileSystem.dll",
  6809. "lib/xamarinios10/_._",
  6810. "lib/xamarinmac20/_._",
  6811. "lib/xamarintvos10/_._",
  6812. "lib/xamarinwatchos10/_._",
  6813. "ref/MonoAndroid10/_._",
  6814. "ref/MonoTouch10/_._",
  6815. "ref/net46/System.IO.FileSystem.dll",
  6816. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6817. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6818. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6819. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6820. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6821. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6822. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6823. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6824. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6825. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6826. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6827. "ref/xamarinios10/_._",
  6828. "ref/xamarinmac20/_._",
  6829. "ref/xamarintvos10/_._",
  6830. "ref/xamarinwatchos10/_._",
  6831. "system.io.filesystem.4.3.0.nupkg.sha512",
  6832. "system.io.filesystem.nuspec"
  6833. ]
  6834. },
  6835. "System.IO.FileSystem.Primitives/4.3.0": {
  6836. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6837. "type": "package",
  6838. "path": "system.io.filesystem.primitives/4.3.0",
  6839. "files": [
  6840. ".nupkg.metadata",
  6841. ".signature.p7s",
  6842. "ThirdPartyNotices.txt",
  6843. "dotnet_library_license.txt",
  6844. "lib/MonoAndroid10/_._",
  6845. "lib/MonoTouch10/_._",
  6846. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6847. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6848. "lib/xamarinios10/_._",
  6849. "lib/xamarinmac20/_._",
  6850. "lib/xamarintvos10/_._",
  6851. "lib/xamarinwatchos10/_._",
  6852. "ref/MonoAndroid10/_._",
  6853. "ref/MonoTouch10/_._",
  6854. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6855. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6856. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6857. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6858. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6859. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6860. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6861. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6862. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6863. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6864. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6865. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6866. "ref/xamarinios10/_._",
  6867. "ref/xamarinmac20/_._",
  6868. "ref/xamarintvos10/_._",
  6869. "ref/xamarinwatchos10/_._",
  6870. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6871. "system.io.filesystem.primitives.nuspec"
  6872. ]
  6873. },
  6874. "System.IO.Pipelines/5.0.0": {
  6875. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6876. "type": "package",
  6877. "path": "system.io.pipelines/5.0.0",
  6878. "files": [
  6879. ".nupkg.metadata",
  6880. ".signature.p7s",
  6881. "Icon.png",
  6882. "LICENSE.TXT",
  6883. "THIRD-PARTY-NOTICES.TXT",
  6884. "lib/net461/System.IO.Pipelines.dll",
  6885. "lib/net461/System.IO.Pipelines.xml",
  6886. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6887. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6888. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6889. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6890. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6891. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6892. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6893. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6894. "system.io.pipelines.5.0.0.nupkg.sha512",
  6895. "system.io.pipelines.nuspec",
  6896. "useSharedDesignerContext.txt",
  6897. "version.txt"
  6898. ]
  6899. },
  6900. "System.Linq/4.3.0": {
  6901. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6902. "type": "package",
  6903. "path": "system.linq/4.3.0",
  6904. "files": [
  6905. ".nupkg.metadata",
  6906. ".signature.p7s",
  6907. "ThirdPartyNotices.txt",
  6908. "dotnet_library_license.txt",
  6909. "lib/MonoAndroid10/_._",
  6910. "lib/MonoTouch10/_._",
  6911. "lib/net45/_._",
  6912. "lib/net463/System.Linq.dll",
  6913. "lib/netcore50/System.Linq.dll",
  6914. "lib/netstandard1.6/System.Linq.dll",
  6915. "lib/portable-net45+win8+wp8+wpa81/_._",
  6916. "lib/win8/_._",
  6917. "lib/wp80/_._",
  6918. "lib/wpa81/_._",
  6919. "lib/xamarinios10/_._",
  6920. "lib/xamarinmac20/_._",
  6921. "lib/xamarintvos10/_._",
  6922. "lib/xamarinwatchos10/_._",
  6923. "ref/MonoAndroid10/_._",
  6924. "ref/MonoTouch10/_._",
  6925. "ref/net45/_._",
  6926. "ref/net463/System.Linq.dll",
  6927. "ref/netcore50/System.Linq.dll",
  6928. "ref/netcore50/System.Linq.xml",
  6929. "ref/netcore50/de/System.Linq.xml",
  6930. "ref/netcore50/es/System.Linq.xml",
  6931. "ref/netcore50/fr/System.Linq.xml",
  6932. "ref/netcore50/it/System.Linq.xml",
  6933. "ref/netcore50/ja/System.Linq.xml",
  6934. "ref/netcore50/ko/System.Linq.xml",
  6935. "ref/netcore50/ru/System.Linq.xml",
  6936. "ref/netcore50/zh-hans/System.Linq.xml",
  6937. "ref/netcore50/zh-hant/System.Linq.xml",
  6938. "ref/netstandard1.0/System.Linq.dll",
  6939. "ref/netstandard1.0/System.Linq.xml",
  6940. "ref/netstandard1.0/de/System.Linq.xml",
  6941. "ref/netstandard1.0/es/System.Linq.xml",
  6942. "ref/netstandard1.0/fr/System.Linq.xml",
  6943. "ref/netstandard1.0/it/System.Linq.xml",
  6944. "ref/netstandard1.0/ja/System.Linq.xml",
  6945. "ref/netstandard1.0/ko/System.Linq.xml",
  6946. "ref/netstandard1.0/ru/System.Linq.xml",
  6947. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6948. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6949. "ref/netstandard1.6/System.Linq.dll",
  6950. "ref/netstandard1.6/System.Linq.xml",
  6951. "ref/netstandard1.6/de/System.Linq.xml",
  6952. "ref/netstandard1.6/es/System.Linq.xml",
  6953. "ref/netstandard1.6/fr/System.Linq.xml",
  6954. "ref/netstandard1.6/it/System.Linq.xml",
  6955. "ref/netstandard1.6/ja/System.Linq.xml",
  6956. "ref/netstandard1.6/ko/System.Linq.xml",
  6957. "ref/netstandard1.6/ru/System.Linq.xml",
  6958. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6959. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6960. "ref/portable-net45+win8+wp8+wpa81/_._",
  6961. "ref/win8/_._",
  6962. "ref/wp80/_._",
  6963. "ref/wpa81/_._",
  6964. "ref/xamarinios10/_._",
  6965. "ref/xamarinmac20/_._",
  6966. "ref/xamarintvos10/_._",
  6967. "ref/xamarinwatchos10/_._",
  6968. "system.linq.4.3.0.nupkg.sha512",
  6969. "system.linq.nuspec"
  6970. ]
  6971. },
  6972. "System.Linq.Expressions/4.3.0": {
  6973. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6974. "type": "package",
  6975. "path": "system.linq.expressions/4.3.0",
  6976. "files": [
  6977. ".nupkg.metadata",
  6978. ".signature.p7s",
  6979. "ThirdPartyNotices.txt",
  6980. "dotnet_library_license.txt",
  6981. "lib/MonoAndroid10/_._",
  6982. "lib/MonoTouch10/_._",
  6983. "lib/net45/_._",
  6984. "lib/net463/System.Linq.Expressions.dll",
  6985. "lib/netcore50/System.Linq.Expressions.dll",
  6986. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6987. "lib/portable-net45+win8+wp8+wpa81/_._",
  6988. "lib/win8/_._",
  6989. "lib/wp80/_._",
  6990. "lib/wpa81/_._",
  6991. "lib/xamarinios10/_._",
  6992. "lib/xamarinmac20/_._",
  6993. "lib/xamarintvos10/_._",
  6994. "lib/xamarinwatchos10/_._",
  6995. "ref/MonoAndroid10/_._",
  6996. "ref/MonoTouch10/_._",
  6997. "ref/net45/_._",
  6998. "ref/net463/System.Linq.Expressions.dll",
  6999. "ref/netcore50/System.Linq.Expressions.dll",
  7000. "ref/netcore50/System.Linq.Expressions.xml",
  7001. "ref/netcore50/de/System.Linq.Expressions.xml",
  7002. "ref/netcore50/es/System.Linq.Expressions.xml",
  7003. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7004. "ref/netcore50/it/System.Linq.Expressions.xml",
  7005. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7006. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7007. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7008. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7009. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7010. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7011. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7012. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7013. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7014. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7015. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7016. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7017. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7018. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7019. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7020. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7021. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7022. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7023. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7024. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7025. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7026. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7027. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7028. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7029. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7030. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7031. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7032. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7033. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7034. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7035. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7036. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7037. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7038. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7039. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7040. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7041. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7042. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7043. "ref/portable-net45+win8+wp8+wpa81/_._",
  7044. "ref/win8/_._",
  7045. "ref/wp80/_._",
  7046. "ref/wpa81/_._",
  7047. "ref/xamarinios10/_._",
  7048. "ref/xamarinmac20/_._",
  7049. "ref/xamarintvos10/_._",
  7050. "ref/xamarinwatchos10/_._",
  7051. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7052. "system.linq.expressions.4.3.0.nupkg.sha512",
  7053. "system.linq.expressions.nuspec"
  7054. ]
  7055. },
  7056. "System.Memory/4.5.5": {
  7057. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7058. "type": "package",
  7059. "path": "system.memory/4.5.5",
  7060. "files": [
  7061. ".nupkg.metadata",
  7062. ".signature.p7s",
  7063. "LICENSE.TXT",
  7064. "THIRD-PARTY-NOTICES.TXT",
  7065. "lib/net461/System.Memory.dll",
  7066. "lib/net461/System.Memory.xml",
  7067. "lib/netcoreapp2.1/_._",
  7068. "lib/netstandard1.1/System.Memory.dll",
  7069. "lib/netstandard1.1/System.Memory.xml",
  7070. "lib/netstandard2.0/System.Memory.dll",
  7071. "lib/netstandard2.0/System.Memory.xml",
  7072. "ref/netcoreapp2.1/_._",
  7073. "system.memory.4.5.5.nupkg.sha512",
  7074. "system.memory.nuspec",
  7075. "useSharedDesignerContext.txt",
  7076. "version.txt"
  7077. ]
  7078. },
  7079. "System.Net.Http/4.3.2": {
  7080. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7081. "type": "package",
  7082. "path": "system.net.http/4.3.2",
  7083. "files": [
  7084. ".nupkg.metadata",
  7085. ".signature.p7s",
  7086. "ThirdPartyNotices.txt",
  7087. "dotnet_library_license.txt",
  7088. "lib/Xamarinmac20/_._",
  7089. "lib/monoandroid10/_._",
  7090. "lib/monotouch10/_._",
  7091. "lib/net45/_._",
  7092. "lib/net46/System.Net.Http.dll",
  7093. "lib/portable-net45+win8+wpa81/_._",
  7094. "lib/win8/_._",
  7095. "lib/wpa81/_._",
  7096. "lib/xamarinios10/_._",
  7097. "lib/xamarintvos10/_._",
  7098. "lib/xamarinwatchos10/_._",
  7099. "ref/Xamarinmac20/_._",
  7100. "ref/monoandroid10/_._",
  7101. "ref/monotouch10/_._",
  7102. "ref/net45/_._",
  7103. "ref/net46/System.Net.Http.dll",
  7104. "ref/netcore50/System.Net.Http.dll",
  7105. "ref/netstandard1.1/System.Net.Http.dll",
  7106. "ref/netstandard1.3/System.Net.Http.dll",
  7107. "ref/portable-net45+win8+wpa81/_._",
  7108. "ref/win8/_._",
  7109. "ref/wpa81/_._",
  7110. "ref/xamarinios10/_._",
  7111. "ref/xamarintvos10/_._",
  7112. "ref/xamarinwatchos10/_._",
  7113. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7114. "runtimes/win/lib/net46/System.Net.Http.dll",
  7115. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7116. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7117. "system.net.http.4.3.2.nupkg.sha512",
  7118. "system.net.http.nuspec"
  7119. ]
  7120. },
  7121. "System.Net.NameResolution/4.3.0": {
  7122. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7123. "type": "package",
  7124. "path": "system.net.nameresolution/4.3.0",
  7125. "files": [
  7126. ".nupkg.metadata",
  7127. ".signature.p7s",
  7128. "ThirdPartyNotices.txt",
  7129. "dotnet_library_license.txt",
  7130. "lib/MonoAndroid10/_._",
  7131. "lib/MonoTouch10/_._",
  7132. "lib/net46/System.Net.NameResolution.dll",
  7133. "lib/xamarinios10/_._",
  7134. "lib/xamarinmac20/_._",
  7135. "lib/xamarintvos10/_._",
  7136. "lib/xamarinwatchos10/_._",
  7137. "ref/MonoAndroid10/_._",
  7138. "ref/MonoTouch10/_._",
  7139. "ref/net46/System.Net.NameResolution.dll",
  7140. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7141. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7142. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7143. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7144. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7145. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7146. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7147. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7148. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7149. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7150. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7151. "ref/xamarinios10/_._",
  7152. "ref/xamarinmac20/_._",
  7153. "ref/xamarintvos10/_._",
  7154. "ref/xamarinwatchos10/_._",
  7155. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7156. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7157. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7158. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7159. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7160. "system.net.nameresolution.nuspec"
  7161. ]
  7162. },
  7163. "System.Net.Primitives/4.3.0": {
  7164. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7165. "type": "package",
  7166. "path": "system.net.primitives/4.3.0",
  7167. "files": [
  7168. ".nupkg.metadata",
  7169. ".signature.p7s",
  7170. "ThirdPartyNotices.txt",
  7171. "dotnet_library_license.txt",
  7172. "lib/MonoAndroid10/_._",
  7173. "lib/MonoTouch10/_._",
  7174. "lib/net45/_._",
  7175. "lib/portable-net45+win8+wp8+wpa81/_._",
  7176. "lib/win8/_._",
  7177. "lib/wp80/_._",
  7178. "lib/wpa81/_._",
  7179. "lib/xamarinios10/_._",
  7180. "lib/xamarinmac20/_._",
  7181. "lib/xamarintvos10/_._",
  7182. "lib/xamarinwatchos10/_._",
  7183. "ref/MonoAndroid10/_._",
  7184. "ref/MonoTouch10/_._",
  7185. "ref/net45/_._",
  7186. "ref/netcore50/System.Net.Primitives.dll",
  7187. "ref/netcore50/System.Net.Primitives.xml",
  7188. "ref/netcore50/de/System.Net.Primitives.xml",
  7189. "ref/netcore50/es/System.Net.Primitives.xml",
  7190. "ref/netcore50/fr/System.Net.Primitives.xml",
  7191. "ref/netcore50/it/System.Net.Primitives.xml",
  7192. "ref/netcore50/ja/System.Net.Primitives.xml",
  7193. "ref/netcore50/ko/System.Net.Primitives.xml",
  7194. "ref/netcore50/ru/System.Net.Primitives.xml",
  7195. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7196. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7197. "ref/netstandard1.0/System.Net.Primitives.dll",
  7198. "ref/netstandard1.0/System.Net.Primitives.xml",
  7199. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7200. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7201. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7202. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7203. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7204. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7205. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7206. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7207. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7208. "ref/netstandard1.1/System.Net.Primitives.dll",
  7209. "ref/netstandard1.1/System.Net.Primitives.xml",
  7210. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7211. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7212. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7213. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7214. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7215. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7216. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7217. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7218. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7219. "ref/netstandard1.3/System.Net.Primitives.dll",
  7220. "ref/netstandard1.3/System.Net.Primitives.xml",
  7221. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7222. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7223. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7224. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7225. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7226. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7227. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7228. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7229. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7230. "ref/portable-net45+win8+wp8+wpa81/_._",
  7231. "ref/win8/_._",
  7232. "ref/wp80/_._",
  7233. "ref/wpa81/_._",
  7234. "ref/xamarinios10/_._",
  7235. "ref/xamarinmac20/_._",
  7236. "ref/xamarintvos10/_._",
  7237. "ref/xamarinwatchos10/_._",
  7238. "system.net.primitives.4.3.0.nupkg.sha512",
  7239. "system.net.primitives.nuspec"
  7240. ]
  7241. },
  7242. "System.Net.Security/4.3.0": {
  7243. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  7244. "type": "package",
  7245. "path": "system.net.security/4.3.0",
  7246. "files": [
  7247. ".nupkg.metadata",
  7248. ".signature.p7s",
  7249. "ThirdPartyNotices.txt",
  7250. "dotnet_library_license.txt",
  7251. "lib/MonoAndroid10/_._",
  7252. "lib/MonoTouch10/_._",
  7253. "lib/net46/System.Net.Security.dll",
  7254. "lib/xamarinios10/_._",
  7255. "lib/xamarinmac20/_._",
  7256. "lib/xamarintvos10/_._",
  7257. "lib/xamarinwatchos10/_._",
  7258. "ref/MonoAndroid10/_._",
  7259. "ref/MonoTouch10/_._",
  7260. "ref/net46/System.Net.Security.dll",
  7261. "ref/netstandard1.3/System.Net.Security.dll",
  7262. "ref/netstandard1.3/System.Net.Security.xml",
  7263. "ref/netstandard1.3/de/System.Net.Security.xml",
  7264. "ref/netstandard1.3/es/System.Net.Security.xml",
  7265. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7266. "ref/netstandard1.3/it/System.Net.Security.xml",
  7267. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7268. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7269. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7270. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7271. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7272. "ref/xamarinios10/_._",
  7273. "ref/xamarinmac20/_._",
  7274. "ref/xamarintvos10/_._",
  7275. "ref/xamarinwatchos10/_._",
  7276. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7277. "runtimes/win/lib/net46/System.Net.Security.dll",
  7278. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7279. "runtimes/win7/lib/netcore50/_._",
  7280. "system.net.security.4.3.0.nupkg.sha512",
  7281. "system.net.security.nuspec"
  7282. ]
  7283. },
  7284. "System.Net.Sockets/4.3.0": {
  7285. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7286. "type": "package",
  7287. "path": "system.net.sockets/4.3.0",
  7288. "files": [
  7289. ".nupkg.metadata",
  7290. ".signature.p7s",
  7291. "ThirdPartyNotices.txt",
  7292. "dotnet_library_license.txt",
  7293. "lib/MonoAndroid10/_._",
  7294. "lib/MonoTouch10/_._",
  7295. "lib/net46/System.Net.Sockets.dll",
  7296. "lib/xamarinios10/_._",
  7297. "lib/xamarinmac20/_._",
  7298. "lib/xamarintvos10/_._",
  7299. "lib/xamarinwatchos10/_._",
  7300. "ref/MonoAndroid10/_._",
  7301. "ref/MonoTouch10/_._",
  7302. "ref/net46/System.Net.Sockets.dll",
  7303. "ref/netstandard1.3/System.Net.Sockets.dll",
  7304. "ref/netstandard1.3/System.Net.Sockets.xml",
  7305. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7306. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7307. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7308. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7309. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7310. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7311. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7312. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7313. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7314. "ref/xamarinios10/_._",
  7315. "ref/xamarinmac20/_._",
  7316. "ref/xamarintvos10/_._",
  7317. "ref/xamarinwatchos10/_._",
  7318. "system.net.sockets.4.3.0.nupkg.sha512",
  7319. "system.net.sockets.nuspec"
  7320. ]
  7321. },
  7322. "System.ObjectModel/4.3.0": {
  7323. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7324. "type": "package",
  7325. "path": "system.objectmodel/4.3.0",
  7326. "files": [
  7327. ".nupkg.metadata",
  7328. ".signature.p7s",
  7329. "ThirdPartyNotices.txt",
  7330. "dotnet_library_license.txt",
  7331. "lib/MonoAndroid10/_._",
  7332. "lib/MonoTouch10/_._",
  7333. "lib/net45/_._",
  7334. "lib/netcore50/System.ObjectModel.dll",
  7335. "lib/netstandard1.3/System.ObjectModel.dll",
  7336. "lib/portable-net45+win8+wp8+wpa81/_._",
  7337. "lib/win8/_._",
  7338. "lib/wp80/_._",
  7339. "lib/wpa81/_._",
  7340. "lib/xamarinios10/_._",
  7341. "lib/xamarinmac20/_._",
  7342. "lib/xamarintvos10/_._",
  7343. "lib/xamarinwatchos10/_._",
  7344. "ref/MonoAndroid10/_._",
  7345. "ref/MonoTouch10/_._",
  7346. "ref/net45/_._",
  7347. "ref/netcore50/System.ObjectModel.dll",
  7348. "ref/netcore50/System.ObjectModel.xml",
  7349. "ref/netcore50/de/System.ObjectModel.xml",
  7350. "ref/netcore50/es/System.ObjectModel.xml",
  7351. "ref/netcore50/fr/System.ObjectModel.xml",
  7352. "ref/netcore50/it/System.ObjectModel.xml",
  7353. "ref/netcore50/ja/System.ObjectModel.xml",
  7354. "ref/netcore50/ko/System.ObjectModel.xml",
  7355. "ref/netcore50/ru/System.ObjectModel.xml",
  7356. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7357. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7358. "ref/netstandard1.0/System.ObjectModel.dll",
  7359. "ref/netstandard1.0/System.ObjectModel.xml",
  7360. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7361. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7362. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7363. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7364. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7365. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7366. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7367. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7368. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7369. "ref/netstandard1.3/System.ObjectModel.dll",
  7370. "ref/netstandard1.3/System.ObjectModel.xml",
  7371. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7372. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7373. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7374. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7375. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7376. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7377. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7378. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7379. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7380. "ref/portable-net45+win8+wp8+wpa81/_._",
  7381. "ref/win8/_._",
  7382. "ref/wp80/_._",
  7383. "ref/wpa81/_._",
  7384. "ref/xamarinios10/_._",
  7385. "ref/xamarinmac20/_._",
  7386. "ref/xamarintvos10/_._",
  7387. "ref/xamarinwatchos10/_._",
  7388. "system.objectmodel.4.3.0.nupkg.sha512",
  7389. "system.objectmodel.nuspec"
  7390. ]
  7391. },
  7392. "System.Reactive/4.4.1": {
  7393. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  7394. "type": "package",
  7395. "path": "system.reactive/4.4.1",
  7396. "files": [
  7397. ".nupkg.metadata",
  7398. ".signature.p7s",
  7399. "build/netcoreapp3.0/System.Reactive.dll",
  7400. "build/netcoreapp3.0/System.Reactive.targets",
  7401. "build/netcoreapp3.0/System.Reactive.xml",
  7402. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  7403. "lib/net46/System.Reactive.dll",
  7404. "lib/net46/System.Reactive.xml",
  7405. "lib/netcoreapp3.0/_._",
  7406. "lib/netstandard2.0/System.Reactive.dll",
  7407. "lib/netstandard2.0/System.Reactive.xml",
  7408. "lib/uap10.0.16299/System.Reactive.dll",
  7409. "lib/uap10.0.16299/System.Reactive.pri",
  7410. "lib/uap10.0.16299/System.Reactive.xml",
  7411. "lib/uap10.0/System.Reactive.dll",
  7412. "lib/uap10.0/System.Reactive.pri",
  7413. "lib/uap10.0/System.Reactive.xml",
  7414. "system.reactive.4.4.1.nupkg.sha512",
  7415. "system.reactive.nuspec"
  7416. ]
  7417. },
  7418. "System.Reflection/4.3.0": {
  7419. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7420. "type": "package",
  7421. "path": "system.reflection/4.3.0",
  7422. "files": [
  7423. ".nupkg.metadata",
  7424. ".signature.p7s",
  7425. "ThirdPartyNotices.txt",
  7426. "dotnet_library_license.txt",
  7427. "lib/MonoAndroid10/_._",
  7428. "lib/MonoTouch10/_._",
  7429. "lib/net45/_._",
  7430. "lib/net462/System.Reflection.dll",
  7431. "lib/portable-net45+win8+wp8+wpa81/_._",
  7432. "lib/win8/_._",
  7433. "lib/wp80/_._",
  7434. "lib/wpa81/_._",
  7435. "lib/xamarinios10/_._",
  7436. "lib/xamarinmac20/_._",
  7437. "lib/xamarintvos10/_._",
  7438. "lib/xamarinwatchos10/_._",
  7439. "ref/MonoAndroid10/_._",
  7440. "ref/MonoTouch10/_._",
  7441. "ref/net45/_._",
  7442. "ref/net462/System.Reflection.dll",
  7443. "ref/netcore50/System.Reflection.dll",
  7444. "ref/netcore50/System.Reflection.xml",
  7445. "ref/netcore50/de/System.Reflection.xml",
  7446. "ref/netcore50/es/System.Reflection.xml",
  7447. "ref/netcore50/fr/System.Reflection.xml",
  7448. "ref/netcore50/it/System.Reflection.xml",
  7449. "ref/netcore50/ja/System.Reflection.xml",
  7450. "ref/netcore50/ko/System.Reflection.xml",
  7451. "ref/netcore50/ru/System.Reflection.xml",
  7452. "ref/netcore50/zh-hans/System.Reflection.xml",
  7453. "ref/netcore50/zh-hant/System.Reflection.xml",
  7454. "ref/netstandard1.0/System.Reflection.dll",
  7455. "ref/netstandard1.0/System.Reflection.xml",
  7456. "ref/netstandard1.0/de/System.Reflection.xml",
  7457. "ref/netstandard1.0/es/System.Reflection.xml",
  7458. "ref/netstandard1.0/fr/System.Reflection.xml",
  7459. "ref/netstandard1.0/it/System.Reflection.xml",
  7460. "ref/netstandard1.0/ja/System.Reflection.xml",
  7461. "ref/netstandard1.0/ko/System.Reflection.xml",
  7462. "ref/netstandard1.0/ru/System.Reflection.xml",
  7463. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7464. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7465. "ref/netstandard1.3/System.Reflection.dll",
  7466. "ref/netstandard1.3/System.Reflection.xml",
  7467. "ref/netstandard1.3/de/System.Reflection.xml",
  7468. "ref/netstandard1.3/es/System.Reflection.xml",
  7469. "ref/netstandard1.3/fr/System.Reflection.xml",
  7470. "ref/netstandard1.3/it/System.Reflection.xml",
  7471. "ref/netstandard1.3/ja/System.Reflection.xml",
  7472. "ref/netstandard1.3/ko/System.Reflection.xml",
  7473. "ref/netstandard1.3/ru/System.Reflection.xml",
  7474. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7475. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7476. "ref/netstandard1.5/System.Reflection.dll",
  7477. "ref/netstandard1.5/System.Reflection.xml",
  7478. "ref/netstandard1.5/de/System.Reflection.xml",
  7479. "ref/netstandard1.5/es/System.Reflection.xml",
  7480. "ref/netstandard1.5/fr/System.Reflection.xml",
  7481. "ref/netstandard1.5/it/System.Reflection.xml",
  7482. "ref/netstandard1.5/ja/System.Reflection.xml",
  7483. "ref/netstandard1.5/ko/System.Reflection.xml",
  7484. "ref/netstandard1.5/ru/System.Reflection.xml",
  7485. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7486. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7487. "ref/portable-net45+win8+wp8+wpa81/_._",
  7488. "ref/win8/_._",
  7489. "ref/wp80/_._",
  7490. "ref/wpa81/_._",
  7491. "ref/xamarinios10/_._",
  7492. "ref/xamarinmac20/_._",
  7493. "ref/xamarintvos10/_._",
  7494. "ref/xamarinwatchos10/_._",
  7495. "system.reflection.4.3.0.nupkg.sha512",
  7496. "system.reflection.nuspec"
  7497. ]
  7498. },
  7499. "System.Reflection.Emit/4.7.0": {
  7500. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  7501. "type": "package",
  7502. "path": "system.reflection.emit/4.7.0",
  7503. "files": [
  7504. ".nupkg.metadata",
  7505. ".signature.p7s",
  7506. "LICENSE.TXT",
  7507. "THIRD-PARTY-NOTICES.TXT",
  7508. "lib/MonoAndroid10/_._",
  7509. "lib/MonoTouch10/_._",
  7510. "lib/net45/_._",
  7511. "lib/netcore50/System.Reflection.Emit.dll",
  7512. "lib/netcoreapp2.0/_._",
  7513. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7514. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7515. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7516. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7517. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7518. "lib/netstandard2.1/_._",
  7519. "lib/xamarinios10/_._",
  7520. "lib/xamarinmac20/_._",
  7521. "lib/xamarintvos10/_._",
  7522. "lib/xamarinwatchos10/_._",
  7523. "ref/MonoAndroid10/_._",
  7524. "ref/MonoTouch10/_._",
  7525. "ref/net45/_._",
  7526. "ref/netcoreapp2.0/_._",
  7527. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7528. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7529. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7530. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7531. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7532. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7533. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7534. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7535. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7536. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7537. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7538. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7539. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7540. "ref/netstandard2.1/_._",
  7541. "ref/xamarinios10/_._",
  7542. "ref/xamarinmac20/_._",
  7543. "ref/xamarintvos10/_._",
  7544. "ref/xamarinwatchos10/_._",
  7545. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7546. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7547. "system.reflection.emit.4.7.0.nupkg.sha512",
  7548. "system.reflection.emit.nuspec",
  7549. "useSharedDesignerContext.txt",
  7550. "version.txt"
  7551. ]
  7552. },
  7553. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7554. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7555. "type": "package",
  7556. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7557. "files": [
  7558. ".nupkg.metadata",
  7559. ".signature.p7s",
  7560. "ThirdPartyNotices.txt",
  7561. "dotnet_library_license.txt",
  7562. "lib/MonoAndroid10/_._",
  7563. "lib/MonoTouch10/_._",
  7564. "lib/net45/_._",
  7565. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7566. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7567. "lib/portable-net45+wp8/_._",
  7568. "lib/wp80/_._",
  7569. "lib/xamarinios10/_._",
  7570. "lib/xamarinmac20/_._",
  7571. "lib/xamarintvos10/_._",
  7572. "lib/xamarinwatchos10/_._",
  7573. "ref/MonoAndroid10/_._",
  7574. "ref/MonoTouch10/_._",
  7575. "ref/net45/_._",
  7576. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7577. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7578. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7579. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7580. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7581. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7582. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7583. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7584. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7585. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7586. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7587. "ref/portable-net45+wp8/_._",
  7588. "ref/wp80/_._",
  7589. "ref/xamarinios10/_._",
  7590. "ref/xamarinmac20/_._",
  7591. "ref/xamarintvos10/_._",
  7592. "ref/xamarinwatchos10/_._",
  7593. "runtimes/aot/lib/netcore50/_._",
  7594. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7595. "system.reflection.emit.ilgeneration.nuspec"
  7596. ]
  7597. },
  7598. "System.Reflection.Emit.Lightweight/4.3.0": {
  7599. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7600. "type": "package",
  7601. "path": "system.reflection.emit.lightweight/4.3.0",
  7602. "files": [
  7603. ".nupkg.metadata",
  7604. ".signature.p7s",
  7605. "ThirdPartyNotices.txt",
  7606. "dotnet_library_license.txt",
  7607. "lib/MonoAndroid10/_._",
  7608. "lib/MonoTouch10/_._",
  7609. "lib/net45/_._",
  7610. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7611. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7612. "lib/portable-net45+wp8/_._",
  7613. "lib/wp80/_._",
  7614. "lib/xamarinios10/_._",
  7615. "lib/xamarinmac20/_._",
  7616. "lib/xamarintvos10/_._",
  7617. "lib/xamarinwatchos10/_._",
  7618. "ref/MonoAndroid10/_._",
  7619. "ref/MonoTouch10/_._",
  7620. "ref/net45/_._",
  7621. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7622. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7623. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7624. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7625. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7626. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7627. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7628. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7629. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7630. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7631. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7632. "ref/portable-net45+wp8/_._",
  7633. "ref/wp80/_._",
  7634. "ref/xamarinios10/_._",
  7635. "ref/xamarinmac20/_._",
  7636. "ref/xamarintvos10/_._",
  7637. "ref/xamarinwatchos10/_._",
  7638. "runtimes/aot/lib/netcore50/_._",
  7639. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7640. "system.reflection.emit.lightweight.nuspec"
  7641. ]
  7642. },
  7643. "System.Reflection.Extensions/4.3.0": {
  7644. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7645. "type": "package",
  7646. "path": "system.reflection.extensions/4.3.0",
  7647. "files": [
  7648. ".nupkg.metadata",
  7649. ".signature.p7s",
  7650. "ThirdPartyNotices.txt",
  7651. "dotnet_library_license.txt",
  7652. "lib/MonoAndroid10/_._",
  7653. "lib/MonoTouch10/_._",
  7654. "lib/net45/_._",
  7655. "lib/portable-net45+win8+wp8+wpa81/_._",
  7656. "lib/win8/_._",
  7657. "lib/wp80/_._",
  7658. "lib/wpa81/_._",
  7659. "lib/xamarinios10/_._",
  7660. "lib/xamarinmac20/_._",
  7661. "lib/xamarintvos10/_._",
  7662. "lib/xamarinwatchos10/_._",
  7663. "ref/MonoAndroid10/_._",
  7664. "ref/MonoTouch10/_._",
  7665. "ref/net45/_._",
  7666. "ref/netcore50/System.Reflection.Extensions.dll",
  7667. "ref/netcore50/System.Reflection.Extensions.xml",
  7668. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7669. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7670. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7671. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7672. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7673. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7674. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7675. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7676. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7677. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7678. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7679. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7680. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7681. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7682. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7683. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7684. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7685. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7686. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7687. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7688. "ref/portable-net45+win8+wp8+wpa81/_._",
  7689. "ref/win8/_._",
  7690. "ref/wp80/_._",
  7691. "ref/wpa81/_._",
  7692. "ref/xamarinios10/_._",
  7693. "ref/xamarinmac20/_._",
  7694. "ref/xamarintvos10/_._",
  7695. "ref/xamarinwatchos10/_._",
  7696. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7697. "system.reflection.extensions.nuspec"
  7698. ]
  7699. },
  7700. "System.Reflection.Primitives/4.3.0": {
  7701. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7702. "type": "package",
  7703. "path": "system.reflection.primitives/4.3.0",
  7704. "files": [
  7705. ".nupkg.metadata",
  7706. ".signature.p7s",
  7707. "ThirdPartyNotices.txt",
  7708. "dotnet_library_license.txt",
  7709. "lib/MonoAndroid10/_._",
  7710. "lib/MonoTouch10/_._",
  7711. "lib/net45/_._",
  7712. "lib/portable-net45+win8+wp8+wpa81/_._",
  7713. "lib/win8/_._",
  7714. "lib/wp80/_._",
  7715. "lib/wpa81/_._",
  7716. "lib/xamarinios10/_._",
  7717. "lib/xamarinmac20/_._",
  7718. "lib/xamarintvos10/_._",
  7719. "lib/xamarinwatchos10/_._",
  7720. "ref/MonoAndroid10/_._",
  7721. "ref/MonoTouch10/_._",
  7722. "ref/net45/_._",
  7723. "ref/netcore50/System.Reflection.Primitives.dll",
  7724. "ref/netcore50/System.Reflection.Primitives.xml",
  7725. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7726. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7727. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7728. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7729. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7730. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7731. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7732. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7733. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7734. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7735. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7736. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7737. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7738. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7739. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7740. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7741. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7742. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7743. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7744. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7745. "ref/portable-net45+win8+wp8+wpa81/_._",
  7746. "ref/win8/_._",
  7747. "ref/wp80/_._",
  7748. "ref/wpa81/_._",
  7749. "ref/xamarinios10/_._",
  7750. "ref/xamarinmac20/_._",
  7751. "ref/xamarintvos10/_._",
  7752. "ref/xamarinwatchos10/_._",
  7753. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7754. "system.reflection.primitives.nuspec"
  7755. ]
  7756. },
  7757. "System.Reflection.TypeExtensions/4.3.0": {
  7758. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7759. "type": "package",
  7760. "path": "system.reflection.typeextensions/4.3.0",
  7761. "files": [
  7762. ".nupkg.metadata",
  7763. ".signature.p7s",
  7764. "ThirdPartyNotices.txt",
  7765. "dotnet_library_license.txt",
  7766. "lib/MonoAndroid10/_._",
  7767. "lib/MonoTouch10/_._",
  7768. "lib/net46/System.Reflection.TypeExtensions.dll",
  7769. "lib/net462/System.Reflection.TypeExtensions.dll",
  7770. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7771. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7772. "lib/xamarinios10/_._",
  7773. "lib/xamarinmac20/_._",
  7774. "lib/xamarintvos10/_._",
  7775. "lib/xamarinwatchos10/_._",
  7776. "ref/MonoAndroid10/_._",
  7777. "ref/MonoTouch10/_._",
  7778. "ref/net46/System.Reflection.TypeExtensions.dll",
  7779. "ref/net462/System.Reflection.TypeExtensions.dll",
  7780. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7781. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7782. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7783. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7784. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7785. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7786. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7787. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7788. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7789. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7790. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7791. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7792. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7793. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7794. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7795. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7796. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7797. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7798. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7799. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7800. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7801. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7802. "ref/xamarinios10/_._",
  7803. "ref/xamarinmac20/_._",
  7804. "ref/xamarintvos10/_._",
  7805. "ref/xamarinwatchos10/_._",
  7806. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7807. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7808. "system.reflection.typeextensions.nuspec"
  7809. ]
  7810. },
  7811. "System.Resources.ResourceManager/4.3.0": {
  7812. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7813. "type": "package",
  7814. "path": "system.resources.resourcemanager/4.3.0",
  7815. "files": [
  7816. ".nupkg.metadata",
  7817. ".signature.p7s",
  7818. "ThirdPartyNotices.txt",
  7819. "dotnet_library_license.txt",
  7820. "lib/MonoAndroid10/_._",
  7821. "lib/MonoTouch10/_._",
  7822. "lib/net45/_._",
  7823. "lib/portable-net45+win8+wp8+wpa81/_._",
  7824. "lib/win8/_._",
  7825. "lib/wp80/_._",
  7826. "lib/wpa81/_._",
  7827. "lib/xamarinios10/_._",
  7828. "lib/xamarinmac20/_._",
  7829. "lib/xamarintvos10/_._",
  7830. "lib/xamarinwatchos10/_._",
  7831. "ref/MonoAndroid10/_._",
  7832. "ref/MonoTouch10/_._",
  7833. "ref/net45/_._",
  7834. "ref/netcore50/System.Resources.ResourceManager.dll",
  7835. "ref/netcore50/System.Resources.ResourceManager.xml",
  7836. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7837. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7838. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7839. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7840. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7841. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7842. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7843. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7844. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7845. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7846. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7847. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7848. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7849. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7850. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7851. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7852. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7853. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7854. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7855. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7856. "ref/portable-net45+win8+wp8+wpa81/_._",
  7857. "ref/win8/_._",
  7858. "ref/wp80/_._",
  7859. "ref/wpa81/_._",
  7860. "ref/xamarinios10/_._",
  7861. "ref/xamarinmac20/_._",
  7862. "ref/xamarintvos10/_._",
  7863. "ref/xamarinwatchos10/_._",
  7864. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7865. "system.resources.resourcemanager.nuspec"
  7866. ]
  7867. },
  7868. "System.Runtime/4.3.0": {
  7869. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7870. "type": "package",
  7871. "path": "system.runtime/4.3.0",
  7872. "files": [
  7873. ".nupkg.metadata",
  7874. ".signature.p7s",
  7875. "ThirdPartyNotices.txt",
  7876. "dotnet_library_license.txt",
  7877. "lib/MonoAndroid10/_._",
  7878. "lib/MonoTouch10/_._",
  7879. "lib/net45/_._",
  7880. "lib/net462/System.Runtime.dll",
  7881. "lib/portable-net45+win8+wp80+wpa81/_._",
  7882. "lib/win8/_._",
  7883. "lib/wp80/_._",
  7884. "lib/wpa81/_._",
  7885. "lib/xamarinios10/_._",
  7886. "lib/xamarinmac20/_._",
  7887. "lib/xamarintvos10/_._",
  7888. "lib/xamarinwatchos10/_._",
  7889. "ref/MonoAndroid10/_._",
  7890. "ref/MonoTouch10/_._",
  7891. "ref/net45/_._",
  7892. "ref/net462/System.Runtime.dll",
  7893. "ref/netcore50/System.Runtime.dll",
  7894. "ref/netcore50/System.Runtime.xml",
  7895. "ref/netcore50/de/System.Runtime.xml",
  7896. "ref/netcore50/es/System.Runtime.xml",
  7897. "ref/netcore50/fr/System.Runtime.xml",
  7898. "ref/netcore50/it/System.Runtime.xml",
  7899. "ref/netcore50/ja/System.Runtime.xml",
  7900. "ref/netcore50/ko/System.Runtime.xml",
  7901. "ref/netcore50/ru/System.Runtime.xml",
  7902. "ref/netcore50/zh-hans/System.Runtime.xml",
  7903. "ref/netcore50/zh-hant/System.Runtime.xml",
  7904. "ref/netstandard1.0/System.Runtime.dll",
  7905. "ref/netstandard1.0/System.Runtime.xml",
  7906. "ref/netstandard1.0/de/System.Runtime.xml",
  7907. "ref/netstandard1.0/es/System.Runtime.xml",
  7908. "ref/netstandard1.0/fr/System.Runtime.xml",
  7909. "ref/netstandard1.0/it/System.Runtime.xml",
  7910. "ref/netstandard1.0/ja/System.Runtime.xml",
  7911. "ref/netstandard1.0/ko/System.Runtime.xml",
  7912. "ref/netstandard1.0/ru/System.Runtime.xml",
  7913. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7914. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7915. "ref/netstandard1.2/System.Runtime.dll",
  7916. "ref/netstandard1.2/System.Runtime.xml",
  7917. "ref/netstandard1.2/de/System.Runtime.xml",
  7918. "ref/netstandard1.2/es/System.Runtime.xml",
  7919. "ref/netstandard1.2/fr/System.Runtime.xml",
  7920. "ref/netstandard1.2/it/System.Runtime.xml",
  7921. "ref/netstandard1.2/ja/System.Runtime.xml",
  7922. "ref/netstandard1.2/ko/System.Runtime.xml",
  7923. "ref/netstandard1.2/ru/System.Runtime.xml",
  7924. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7925. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7926. "ref/netstandard1.3/System.Runtime.dll",
  7927. "ref/netstandard1.3/System.Runtime.xml",
  7928. "ref/netstandard1.3/de/System.Runtime.xml",
  7929. "ref/netstandard1.3/es/System.Runtime.xml",
  7930. "ref/netstandard1.3/fr/System.Runtime.xml",
  7931. "ref/netstandard1.3/it/System.Runtime.xml",
  7932. "ref/netstandard1.3/ja/System.Runtime.xml",
  7933. "ref/netstandard1.3/ko/System.Runtime.xml",
  7934. "ref/netstandard1.3/ru/System.Runtime.xml",
  7935. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7936. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7937. "ref/netstandard1.5/System.Runtime.dll",
  7938. "ref/netstandard1.5/System.Runtime.xml",
  7939. "ref/netstandard1.5/de/System.Runtime.xml",
  7940. "ref/netstandard1.5/es/System.Runtime.xml",
  7941. "ref/netstandard1.5/fr/System.Runtime.xml",
  7942. "ref/netstandard1.5/it/System.Runtime.xml",
  7943. "ref/netstandard1.5/ja/System.Runtime.xml",
  7944. "ref/netstandard1.5/ko/System.Runtime.xml",
  7945. "ref/netstandard1.5/ru/System.Runtime.xml",
  7946. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7947. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7948. "ref/portable-net45+win8+wp80+wpa81/_._",
  7949. "ref/win8/_._",
  7950. "ref/wp80/_._",
  7951. "ref/wpa81/_._",
  7952. "ref/xamarinios10/_._",
  7953. "ref/xamarinmac20/_._",
  7954. "ref/xamarintvos10/_._",
  7955. "ref/xamarinwatchos10/_._",
  7956. "system.runtime.4.3.0.nupkg.sha512",
  7957. "system.runtime.nuspec"
  7958. ]
  7959. },
  7960. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7961. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7962. "type": "package",
  7963. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7964. "files": [
  7965. ".nupkg.metadata",
  7966. ".signature.p7s",
  7967. "Icon.png",
  7968. "LICENSE.TXT",
  7969. "THIRD-PARTY-NOTICES.TXT",
  7970. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  7971. "buildTransitive/netcoreapp3.1/_._",
  7972. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7973. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7974. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  7975. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  7976. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  7977. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  7978. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7979. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7980. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  7981. "system.runtime.compilerservices.unsafe.nuspec",
  7982. "useSharedDesignerContext.txt"
  7983. ]
  7984. },
  7985. "System.Runtime.Extensions/4.3.0": {
  7986. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7987. "type": "package",
  7988. "path": "system.runtime.extensions/4.3.0",
  7989. "files": [
  7990. ".nupkg.metadata",
  7991. ".signature.p7s",
  7992. "ThirdPartyNotices.txt",
  7993. "dotnet_library_license.txt",
  7994. "lib/MonoAndroid10/_._",
  7995. "lib/MonoTouch10/_._",
  7996. "lib/net45/_._",
  7997. "lib/net462/System.Runtime.Extensions.dll",
  7998. "lib/portable-net45+win8+wp8+wpa81/_._",
  7999. "lib/win8/_._",
  8000. "lib/wp80/_._",
  8001. "lib/wpa81/_._",
  8002. "lib/xamarinios10/_._",
  8003. "lib/xamarinmac20/_._",
  8004. "lib/xamarintvos10/_._",
  8005. "lib/xamarinwatchos10/_._",
  8006. "ref/MonoAndroid10/_._",
  8007. "ref/MonoTouch10/_._",
  8008. "ref/net45/_._",
  8009. "ref/net462/System.Runtime.Extensions.dll",
  8010. "ref/netcore50/System.Runtime.Extensions.dll",
  8011. "ref/netcore50/System.Runtime.Extensions.xml",
  8012. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8013. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8014. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8015. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8016. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8017. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8018. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8019. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8020. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8021. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8022. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8023. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8024. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8025. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8026. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8027. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8028. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8029. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8030. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8031. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8032. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8033. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8034. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8035. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8036. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8037. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8038. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8039. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8040. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8041. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8042. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8043. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8044. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8045. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8046. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8047. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8048. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8049. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8050. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8051. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8052. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8053. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8054. "ref/portable-net45+win8+wp8+wpa81/_._",
  8055. "ref/win8/_._",
  8056. "ref/wp80/_._",
  8057. "ref/wpa81/_._",
  8058. "ref/xamarinios10/_._",
  8059. "ref/xamarinmac20/_._",
  8060. "ref/xamarintvos10/_._",
  8061. "ref/xamarinwatchos10/_._",
  8062. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8063. "system.runtime.extensions.nuspec"
  8064. ]
  8065. },
  8066. "System.Runtime.Handles/4.3.0": {
  8067. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8068. "type": "package",
  8069. "path": "system.runtime.handles/4.3.0",
  8070. "files": [
  8071. ".nupkg.metadata",
  8072. ".signature.p7s",
  8073. "ThirdPartyNotices.txt",
  8074. "dotnet_library_license.txt",
  8075. "lib/MonoAndroid10/_._",
  8076. "lib/MonoTouch10/_._",
  8077. "lib/net46/_._",
  8078. "lib/xamarinios10/_._",
  8079. "lib/xamarinmac20/_._",
  8080. "lib/xamarintvos10/_._",
  8081. "lib/xamarinwatchos10/_._",
  8082. "ref/MonoAndroid10/_._",
  8083. "ref/MonoTouch10/_._",
  8084. "ref/net46/_._",
  8085. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8086. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8087. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8088. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8089. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8090. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8091. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8092. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8093. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8094. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8095. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8096. "ref/xamarinios10/_._",
  8097. "ref/xamarinmac20/_._",
  8098. "ref/xamarintvos10/_._",
  8099. "ref/xamarinwatchos10/_._",
  8100. "system.runtime.handles.4.3.0.nupkg.sha512",
  8101. "system.runtime.handles.nuspec"
  8102. ]
  8103. },
  8104. "System.Runtime.InteropServices/4.3.0": {
  8105. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8106. "type": "package",
  8107. "path": "system.runtime.interopservices/4.3.0",
  8108. "files": [
  8109. ".nupkg.metadata",
  8110. ".signature.p7s",
  8111. "ThirdPartyNotices.txt",
  8112. "dotnet_library_license.txt",
  8113. "lib/MonoAndroid10/_._",
  8114. "lib/MonoTouch10/_._",
  8115. "lib/net45/_._",
  8116. "lib/net462/System.Runtime.InteropServices.dll",
  8117. "lib/net463/System.Runtime.InteropServices.dll",
  8118. "lib/portable-net45+win8+wpa81/_._",
  8119. "lib/win8/_._",
  8120. "lib/wpa81/_._",
  8121. "lib/xamarinios10/_._",
  8122. "lib/xamarinmac20/_._",
  8123. "lib/xamarintvos10/_._",
  8124. "lib/xamarinwatchos10/_._",
  8125. "ref/MonoAndroid10/_._",
  8126. "ref/MonoTouch10/_._",
  8127. "ref/net45/_._",
  8128. "ref/net462/System.Runtime.InteropServices.dll",
  8129. "ref/net463/System.Runtime.InteropServices.dll",
  8130. "ref/netcore50/System.Runtime.InteropServices.dll",
  8131. "ref/netcore50/System.Runtime.InteropServices.xml",
  8132. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8133. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8134. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8135. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8136. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8137. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8138. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8139. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8140. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8141. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8142. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8143. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8144. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8145. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8146. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8147. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8148. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8149. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8150. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8151. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8152. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8153. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8154. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8155. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8156. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8157. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8158. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8159. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8160. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8161. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8162. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8163. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8164. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8165. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8166. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8167. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8168. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8169. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8170. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8171. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8172. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8173. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8174. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8175. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8176. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8177. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8178. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8179. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8180. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8181. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8182. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8183. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8184. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8185. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8186. "ref/portable-net45+win8+wpa81/_._",
  8187. "ref/win8/_._",
  8188. "ref/wpa81/_._",
  8189. "ref/xamarinios10/_._",
  8190. "ref/xamarinmac20/_._",
  8191. "ref/xamarintvos10/_._",
  8192. "ref/xamarinwatchos10/_._",
  8193. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8194. "system.runtime.interopservices.nuspec"
  8195. ]
  8196. },
  8197. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8198. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8199. "type": "package",
  8200. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8201. "files": [
  8202. ".nupkg.metadata",
  8203. ".signature.p7s",
  8204. "ThirdPartyNotices.txt",
  8205. "dotnet_library_license.txt",
  8206. "lib/MonoAndroid10/_._",
  8207. "lib/MonoTouch10/_._",
  8208. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8209. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8210. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8211. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8212. "lib/xamarinios10/_._",
  8213. "lib/xamarinmac20/_._",
  8214. "lib/xamarintvos10/_._",
  8215. "lib/xamarinwatchos10/_._",
  8216. "ref/MonoAndroid10/_._",
  8217. "ref/MonoTouch10/_._",
  8218. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8219. "ref/xamarinios10/_._",
  8220. "ref/xamarinmac20/_._",
  8221. "ref/xamarintvos10/_._",
  8222. "ref/xamarinwatchos10/_._",
  8223. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8224. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8225. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8226. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8227. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8228. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8229. "system.runtime.interopservices.runtimeinformation.nuspec"
  8230. ]
  8231. },
  8232. "System.Runtime.Numerics/4.3.0": {
  8233. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8234. "type": "package",
  8235. "path": "system.runtime.numerics/4.3.0",
  8236. "files": [
  8237. ".nupkg.metadata",
  8238. ".signature.p7s",
  8239. "ThirdPartyNotices.txt",
  8240. "dotnet_library_license.txt",
  8241. "lib/MonoAndroid10/_._",
  8242. "lib/MonoTouch10/_._",
  8243. "lib/net45/_._",
  8244. "lib/netcore50/System.Runtime.Numerics.dll",
  8245. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8246. "lib/portable-net45+win8+wpa81/_._",
  8247. "lib/win8/_._",
  8248. "lib/wpa81/_._",
  8249. "lib/xamarinios10/_._",
  8250. "lib/xamarinmac20/_._",
  8251. "lib/xamarintvos10/_._",
  8252. "lib/xamarinwatchos10/_._",
  8253. "ref/MonoAndroid10/_._",
  8254. "ref/MonoTouch10/_._",
  8255. "ref/net45/_._",
  8256. "ref/netcore50/System.Runtime.Numerics.dll",
  8257. "ref/netcore50/System.Runtime.Numerics.xml",
  8258. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8259. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8260. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8261. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8262. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8263. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8264. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8265. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8266. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8267. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8268. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8269. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8270. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8271. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8272. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8273. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8274. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8275. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8276. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8277. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8278. "ref/portable-net45+win8+wpa81/_._",
  8279. "ref/win8/_._",
  8280. "ref/wpa81/_._",
  8281. "ref/xamarinios10/_._",
  8282. "ref/xamarinmac20/_._",
  8283. "ref/xamarintvos10/_._",
  8284. "ref/xamarinwatchos10/_._",
  8285. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8286. "system.runtime.numerics.nuspec"
  8287. ]
  8288. },
  8289. "System.Runtime.Serialization.Primitives/4.3.0": {
  8290. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8291. "type": "package",
  8292. "path": "system.runtime.serialization.primitives/4.3.0",
  8293. "files": [
  8294. ".nupkg.metadata",
  8295. ".signature.p7s",
  8296. "ThirdPartyNotices.txt",
  8297. "dotnet_library_license.txt",
  8298. "lib/MonoAndroid10/_._",
  8299. "lib/MonoTouch10/_._",
  8300. "lib/net45/_._",
  8301. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8302. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8303. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8304. "lib/portable-net45+win8+wp8+wpa81/_._",
  8305. "lib/win8/_._",
  8306. "lib/wp80/_._",
  8307. "lib/wpa81/_._",
  8308. "lib/xamarinios10/_._",
  8309. "lib/xamarinmac20/_._",
  8310. "lib/xamarintvos10/_._",
  8311. "lib/xamarinwatchos10/_._",
  8312. "ref/MonoAndroid10/_._",
  8313. "ref/MonoTouch10/_._",
  8314. "ref/net45/_._",
  8315. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8316. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8317. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8318. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8319. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8320. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8321. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8322. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8323. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8324. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8325. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8326. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8327. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8328. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8329. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8330. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8331. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8332. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8333. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8334. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8335. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8336. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8337. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8338. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8339. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8340. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8341. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8342. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8343. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8344. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8345. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8346. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8347. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8348. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8349. "ref/portable-net45+win8+wp8+wpa81/_._",
  8350. "ref/win8/_._",
  8351. "ref/wp80/_._",
  8352. "ref/wpa81/_._",
  8353. "ref/xamarinios10/_._",
  8354. "ref/xamarinmac20/_._",
  8355. "ref/xamarintvos10/_._",
  8356. "ref/xamarinwatchos10/_._",
  8357. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8358. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8359. "system.runtime.serialization.primitives.nuspec"
  8360. ]
  8361. },
  8362. "System.Security.AccessControl/4.7.0": {
  8363. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8364. "type": "package",
  8365. "path": "system.security.accesscontrol/4.7.0",
  8366. "files": [
  8367. ".nupkg.metadata",
  8368. ".signature.p7s",
  8369. "LICENSE.TXT",
  8370. "THIRD-PARTY-NOTICES.TXT",
  8371. "lib/net46/System.Security.AccessControl.dll",
  8372. "lib/net461/System.Security.AccessControl.dll",
  8373. "lib/net461/System.Security.AccessControl.xml",
  8374. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8375. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8376. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8377. "lib/uap10.0.16299/_._",
  8378. "ref/net46/System.Security.AccessControl.dll",
  8379. "ref/net461/System.Security.AccessControl.dll",
  8380. "ref/net461/System.Security.AccessControl.xml",
  8381. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8382. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8383. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8384. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8385. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8386. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8387. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8388. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8389. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8390. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8391. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8392. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8393. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8394. "ref/uap10.0.16299/_._",
  8395. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8396. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8397. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8398. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8399. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8400. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8401. "runtimes/win/lib/uap10.0.16299/_._",
  8402. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8403. "system.security.accesscontrol.nuspec",
  8404. "useSharedDesignerContext.txt",
  8405. "version.txt"
  8406. ]
  8407. },
  8408. "System.Security.Claims/4.3.0": {
  8409. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8410. "type": "package",
  8411. "path": "system.security.claims/4.3.0",
  8412. "files": [
  8413. ".nupkg.metadata",
  8414. ".signature.p7s",
  8415. "ThirdPartyNotices.txt",
  8416. "dotnet_library_license.txt",
  8417. "lib/MonoAndroid10/_._",
  8418. "lib/MonoTouch10/_._",
  8419. "lib/net46/System.Security.Claims.dll",
  8420. "lib/netstandard1.3/System.Security.Claims.dll",
  8421. "lib/xamarinios10/_._",
  8422. "lib/xamarinmac20/_._",
  8423. "lib/xamarintvos10/_._",
  8424. "lib/xamarinwatchos10/_._",
  8425. "ref/MonoAndroid10/_._",
  8426. "ref/MonoTouch10/_._",
  8427. "ref/net46/System.Security.Claims.dll",
  8428. "ref/netstandard1.3/System.Security.Claims.dll",
  8429. "ref/netstandard1.3/System.Security.Claims.xml",
  8430. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8431. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8432. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8433. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8434. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8435. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8436. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8437. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8438. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8439. "ref/xamarinios10/_._",
  8440. "ref/xamarinmac20/_._",
  8441. "ref/xamarintvos10/_._",
  8442. "ref/xamarinwatchos10/_._",
  8443. "system.security.claims.4.3.0.nupkg.sha512",
  8444. "system.security.claims.nuspec"
  8445. ]
  8446. },
  8447. "System.Security.Cryptography.Algorithms/4.3.0": {
  8448. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8449. "type": "package",
  8450. "path": "system.security.cryptography.algorithms/4.3.0",
  8451. "files": [
  8452. ".nupkg.metadata",
  8453. ".signature.p7s",
  8454. "ThirdPartyNotices.txt",
  8455. "dotnet_library_license.txt",
  8456. "lib/MonoAndroid10/_._",
  8457. "lib/MonoTouch10/_._",
  8458. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8459. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8460. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8461. "lib/xamarinios10/_._",
  8462. "lib/xamarinmac20/_._",
  8463. "lib/xamarintvos10/_._",
  8464. "lib/xamarinwatchos10/_._",
  8465. "ref/MonoAndroid10/_._",
  8466. "ref/MonoTouch10/_._",
  8467. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8468. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8469. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8470. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8471. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8472. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8473. "ref/xamarinios10/_._",
  8474. "ref/xamarinmac20/_._",
  8475. "ref/xamarintvos10/_._",
  8476. "ref/xamarinwatchos10/_._",
  8477. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8478. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8479. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8480. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8481. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8482. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8483. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8484. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8485. "system.security.cryptography.algorithms.nuspec"
  8486. ]
  8487. },
  8488. "System.Security.Cryptography.Cng/4.5.0": {
  8489. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8490. "type": "package",
  8491. "path": "system.security.cryptography.cng/4.5.0",
  8492. "files": [
  8493. ".nupkg.metadata",
  8494. ".signature.p7s",
  8495. "LICENSE.TXT",
  8496. "THIRD-PARTY-NOTICES.TXT",
  8497. "lib/MonoAndroid10/_._",
  8498. "lib/MonoTouch10/_._",
  8499. "lib/net46/System.Security.Cryptography.Cng.dll",
  8500. "lib/net461/System.Security.Cryptography.Cng.dll",
  8501. "lib/net462/System.Security.Cryptography.Cng.dll",
  8502. "lib/net47/System.Security.Cryptography.Cng.dll",
  8503. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8504. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8505. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8506. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8507. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8508. "lib/uap10.0.16299/_._",
  8509. "lib/xamarinios10/_._",
  8510. "lib/xamarinmac20/_._",
  8511. "lib/xamarintvos10/_._",
  8512. "lib/xamarinwatchos10/_._",
  8513. "ref/MonoAndroid10/_._",
  8514. "ref/MonoTouch10/_._",
  8515. "ref/net46/System.Security.Cryptography.Cng.dll",
  8516. "ref/net461/System.Security.Cryptography.Cng.dll",
  8517. "ref/net461/System.Security.Cryptography.Cng.xml",
  8518. "ref/net462/System.Security.Cryptography.Cng.dll",
  8519. "ref/net462/System.Security.Cryptography.Cng.xml",
  8520. "ref/net47/System.Security.Cryptography.Cng.dll",
  8521. "ref/net47/System.Security.Cryptography.Cng.xml",
  8522. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8523. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8524. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8525. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8526. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8527. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8528. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8529. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8530. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8531. "ref/uap10.0.16299/_._",
  8532. "ref/xamarinios10/_._",
  8533. "ref/xamarinmac20/_._",
  8534. "ref/xamarintvos10/_._",
  8535. "ref/xamarinwatchos10/_._",
  8536. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8537. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8538. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8539. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8540. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8541. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8542. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8543. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8544. "runtimes/win/lib/uap10.0.16299/_._",
  8545. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8546. "system.security.cryptography.cng.nuspec",
  8547. "useSharedDesignerContext.txt",
  8548. "version.txt"
  8549. ]
  8550. },
  8551. "System.Security.Cryptography.Csp/4.3.0": {
  8552. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8553. "type": "package",
  8554. "path": "system.security.cryptography.csp/4.3.0",
  8555. "files": [
  8556. ".nupkg.metadata",
  8557. ".signature.p7s",
  8558. "ThirdPartyNotices.txt",
  8559. "dotnet_library_license.txt",
  8560. "lib/MonoAndroid10/_._",
  8561. "lib/MonoTouch10/_._",
  8562. "lib/net46/System.Security.Cryptography.Csp.dll",
  8563. "lib/xamarinios10/_._",
  8564. "lib/xamarinmac20/_._",
  8565. "lib/xamarintvos10/_._",
  8566. "lib/xamarinwatchos10/_._",
  8567. "ref/MonoAndroid10/_._",
  8568. "ref/MonoTouch10/_._",
  8569. "ref/net46/System.Security.Cryptography.Csp.dll",
  8570. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8571. "ref/xamarinios10/_._",
  8572. "ref/xamarinmac20/_._",
  8573. "ref/xamarintvos10/_._",
  8574. "ref/xamarinwatchos10/_._",
  8575. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8576. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8577. "runtimes/win/lib/netcore50/_._",
  8578. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8579. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8580. "system.security.cryptography.csp.nuspec"
  8581. ]
  8582. },
  8583. "System.Security.Cryptography.Encoding/4.3.0": {
  8584. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8585. "type": "package",
  8586. "path": "system.security.cryptography.encoding/4.3.0",
  8587. "files": [
  8588. ".nupkg.metadata",
  8589. ".signature.p7s",
  8590. "ThirdPartyNotices.txt",
  8591. "dotnet_library_license.txt",
  8592. "lib/MonoAndroid10/_._",
  8593. "lib/MonoTouch10/_._",
  8594. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8595. "lib/xamarinios10/_._",
  8596. "lib/xamarinmac20/_._",
  8597. "lib/xamarintvos10/_._",
  8598. "lib/xamarinwatchos10/_._",
  8599. "ref/MonoAndroid10/_._",
  8600. "ref/MonoTouch10/_._",
  8601. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8602. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8603. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8604. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8605. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8606. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8607. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8608. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8609. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8610. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8611. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8612. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8613. "ref/xamarinios10/_._",
  8614. "ref/xamarinmac20/_._",
  8615. "ref/xamarintvos10/_._",
  8616. "ref/xamarinwatchos10/_._",
  8617. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8618. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8619. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8620. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8621. "system.security.cryptography.encoding.nuspec"
  8622. ]
  8623. },
  8624. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8625. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8626. "type": "package",
  8627. "path": "system.security.cryptography.openssl/4.3.0",
  8628. "files": [
  8629. ".nupkg.metadata",
  8630. ".signature.p7s",
  8631. "ThirdPartyNotices.txt",
  8632. "dotnet_library_license.txt",
  8633. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8634. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8635. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8636. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8637. "system.security.cryptography.openssl.nuspec"
  8638. ]
  8639. },
  8640. "System.Security.Cryptography.Primitives/4.3.0": {
  8641. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8642. "type": "package",
  8643. "path": "system.security.cryptography.primitives/4.3.0",
  8644. "files": [
  8645. ".nupkg.metadata",
  8646. ".signature.p7s",
  8647. "ThirdPartyNotices.txt",
  8648. "dotnet_library_license.txt",
  8649. "lib/MonoAndroid10/_._",
  8650. "lib/MonoTouch10/_._",
  8651. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8652. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8653. "lib/xamarinios10/_._",
  8654. "lib/xamarinmac20/_._",
  8655. "lib/xamarintvos10/_._",
  8656. "lib/xamarinwatchos10/_._",
  8657. "ref/MonoAndroid10/_._",
  8658. "ref/MonoTouch10/_._",
  8659. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8660. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8661. "ref/xamarinios10/_._",
  8662. "ref/xamarinmac20/_._",
  8663. "ref/xamarintvos10/_._",
  8664. "ref/xamarinwatchos10/_._",
  8665. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8666. "system.security.cryptography.primitives.nuspec"
  8667. ]
  8668. },
  8669. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8670. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8671. "type": "package",
  8672. "path": "system.security.cryptography.protecteddata/4.7.0",
  8673. "files": [
  8674. ".nupkg.metadata",
  8675. ".signature.p7s",
  8676. "LICENSE.TXT",
  8677. "THIRD-PARTY-NOTICES.TXT",
  8678. "lib/MonoAndroid10/_._",
  8679. "lib/MonoTouch10/_._",
  8680. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8681. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8682. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8683. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8684. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8685. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8686. "lib/xamarinios10/_._",
  8687. "lib/xamarinmac20/_._",
  8688. "lib/xamarintvos10/_._",
  8689. "lib/xamarinwatchos10/_._",
  8690. "ref/MonoAndroid10/_._",
  8691. "ref/MonoTouch10/_._",
  8692. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8693. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8694. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8695. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8696. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8697. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8698. "ref/xamarinios10/_._",
  8699. "ref/xamarinmac20/_._",
  8700. "ref/xamarintvos10/_._",
  8701. "ref/xamarinwatchos10/_._",
  8702. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8703. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8704. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8705. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8706. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8707. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8708. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8709. "system.security.cryptography.protecteddata.nuspec",
  8710. "useSharedDesignerContext.txt",
  8711. "version.txt"
  8712. ]
  8713. },
  8714. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8715. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8716. "type": "package",
  8717. "path": "system.security.cryptography.x509certificates/4.3.0",
  8718. "files": [
  8719. ".nupkg.metadata",
  8720. ".signature.p7s",
  8721. "ThirdPartyNotices.txt",
  8722. "dotnet_library_license.txt",
  8723. "lib/MonoAndroid10/_._",
  8724. "lib/MonoTouch10/_._",
  8725. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8726. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8727. "lib/xamarinios10/_._",
  8728. "lib/xamarinmac20/_._",
  8729. "lib/xamarintvos10/_._",
  8730. "lib/xamarinwatchos10/_._",
  8731. "ref/MonoAndroid10/_._",
  8732. "ref/MonoTouch10/_._",
  8733. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8734. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8735. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8736. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8737. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8738. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8739. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8740. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8741. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8742. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8743. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8744. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8745. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8746. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8747. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8748. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8749. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8750. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8751. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8752. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8753. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8754. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8755. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8756. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8757. "ref/xamarinios10/_._",
  8758. "ref/xamarinmac20/_._",
  8759. "ref/xamarintvos10/_._",
  8760. "ref/xamarinwatchos10/_._",
  8761. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8762. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8763. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8764. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8765. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8766. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8767. "system.security.cryptography.x509certificates.nuspec"
  8768. ]
  8769. },
  8770. "System.Security.Permissions/4.7.0": {
  8771. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8772. "type": "package",
  8773. "path": "system.security.permissions/4.7.0",
  8774. "files": [
  8775. ".nupkg.metadata",
  8776. ".signature.p7s",
  8777. "LICENSE.TXT",
  8778. "THIRD-PARTY-NOTICES.TXT",
  8779. "lib/net461/System.Security.Permissions.dll",
  8780. "lib/net461/System.Security.Permissions.xml",
  8781. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8782. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8783. "lib/netstandard2.0/System.Security.Permissions.dll",
  8784. "lib/netstandard2.0/System.Security.Permissions.xml",
  8785. "ref/net461/System.Security.Permissions.dll",
  8786. "ref/net461/System.Security.Permissions.xml",
  8787. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8788. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8789. "ref/netstandard2.0/System.Security.Permissions.dll",
  8790. "ref/netstandard2.0/System.Security.Permissions.xml",
  8791. "system.security.permissions.4.7.0.nupkg.sha512",
  8792. "system.security.permissions.nuspec",
  8793. "useSharedDesignerContext.txt",
  8794. "version.txt"
  8795. ]
  8796. },
  8797. "System.Security.Principal/4.3.0": {
  8798. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8799. "type": "package",
  8800. "path": "system.security.principal/4.3.0",
  8801. "files": [
  8802. ".nupkg.metadata",
  8803. ".signature.p7s",
  8804. "ThirdPartyNotices.txt",
  8805. "dotnet_library_license.txt",
  8806. "lib/MonoAndroid10/_._",
  8807. "lib/MonoTouch10/_._",
  8808. "lib/net45/_._",
  8809. "lib/netcore50/System.Security.Principal.dll",
  8810. "lib/netstandard1.0/System.Security.Principal.dll",
  8811. "lib/portable-net45+win8+wp8+wpa81/_._",
  8812. "lib/win8/_._",
  8813. "lib/wp80/_._",
  8814. "lib/wpa81/_._",
  8815. "lib/xamarinios10/_._",
  8816. "lib/xamarinmac20/_._",
  8817. "lib/xamarintvos10/_._",
  8818. "lib/xamarinwatchos10/_._",
  8819. "ref/MonoAndroid10/_._",
  8820. "ref/MonoTouch10/_._",
  8821. "ref/net45/_._",
  8822. "ref/netcore50/System.Security.Principal.dll",
  8823. "ref/netcore50/System.Security.Principal.xml",
  8824. "ref/netcore50/de/System.Security.Principal.xml",
  8825. "ref/netcore50/es/System.Security.Principal.xml",
  8826. "ref/netcore50/fr/System.Security.Principal.xml",
  8827. "ref/netcore50/it/System.Security.Principal.xml",
  8828. "ref/netcore50/ja/System.Security.Principal.xml",
  8829. "ref/netcore50/ko/System.Security.Principal.xml",
  8830. "ref/netcore50/ru/System.Security.Principal.xml",
  8831. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8832. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8833. "ref/netstandard1.0/System.Security.Principal.dll",
  8834. "ref/netstandard1.0/System.Security.Principal.xml",
  8835. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8836. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8837. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8838. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8839. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8840. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8841. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8842. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8843. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8844. "ref/portable-net45+win8+wp8+wpa81/_._",
  8845. "ref/win8/_._",
  8846. "ref/wp80/_._",
  8847. "ref/wpa81/_._",
  8848. "ref/xamarinios10/_._",
  8849. "ref/xamarinmac20/_._",
  8850. "ref/xamarintvos10/_._",
  8851. "ref/xamarinwatchos10/_._",
  8852. "system.security.principal.4.3.0.nupkg.sha512",
  8853. "system.security.principal.nuspec"
  8854. ]
  8855. },
  8856. "System.Security.Principal.Windows/4.7.0": {
  8857. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8858. "type": "package",
  8859. "path": "system.security.principal.windows/4.7.0",
  8860. "files": [
  8861. ".nupkg.metadata",
  8862. ".signature.p7s",
  8863. "LICENSE.TXT",
  8864. "THIRD-PARTY-NOTICES.TXT",
  8865. "lib/net46/System.Security.Principal.Windows.dll",
  8866. "lib/net461/System.Security.Principal.Windows.dll",
  8867. "lib/net461/System.Security.Principal.Windows.xml",
  8868. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8869. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8870. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8871. "lib/uap10.0.16299/_._",
  8872. "ref/net46/System.Security.Principal.Windows.dll",
  8873. "ref/net461/System.Security.Principal.Windows.dll",
  8874. "ref/net461/System.Security.Principal.Windows.xml",
  8875. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8876. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8877. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8878. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8879. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8880. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8881. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8882. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8883. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8884. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8885. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8886. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8887. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8888. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8889. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8890. "ref/uap10.0.16299/_._",
  8891. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8892. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8893. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8894. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8895. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8896. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8897. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8898. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8899. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8900. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8901. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8902. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8903. "runtimes/win/lib/uap10.0.16299/_._",
  8904. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8905. "system.security.principal.windows.nuspec",
  8906. "useSharedDesignerContext.txt",
  8907. "version.txt"
  8908. ]
  8909. },
  8910. "System.Text.Encoding/4.3.0": {
  8911. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8912. "type": "package",
  8913. "path": "system.text.encoding/4.3.0",
  8914. "files": [
  8915. ".nupkg.metadata",
  8916. ".signature.p7s",
  8917. "ThirdPartyNotices.txt",
  8918. "dotnet_library_license.txt",
  8919. "lib/MonoAndroid10/_._",
  8920. "lib/MonoTouch10/_._",
  8921. "lib/net45/_._",
  8922. "lib/portable-net45+win8+wp8+wpa81/_._",
  8923. "lib/win8/_._",
  8924. "lib/wp80/_._",
  8925. "lib/wpa81/_._",
  8926. "lib/xamarinios10/_._",
  8927. "lib/xamarinmac20/_._",
  8928. "lib/xamarintvos10/_._",
  8929. "lib/xamarinwatchos10/_._",
  8930. "ref/MonoAndroid10/_._",
  8931. "ref/MonoTouch10/_._",
  8932. "ref/net45/_._",
  8933. "ref/netcore50/System.Text.Encoding.dll",
  8934. "ref/netcore50/System.Text.Encoding.xml",
  8935. "ref/netcore50/de/System.Text.Encoding.xml",
  8936. "ref/netcore50/es/System.Text.Encoding.xml",
  8937. "ref/netcore50/fr/System.Text.Encoding.xml",
  8938. "ref/netcore50/it/System.Text.Encoding.xml",
  8939. "ref/netcore50/ja/System.Text.Encoding.xml",
  8940. "ref/netcore50/ko/System.Text.Encoding.xml",
  8941. "ref/netcore50/ru/System.Text.Encoding.xml",
  8942. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8943. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8944. "ref/netstandard1.0/System.Text.Encoding.dll",
  8945. "ref/netstandard1.0/System.Text.Encoding.xml",
  8946. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8947. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8948. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8949. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8950. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8951. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8952. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8953. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8954. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8955. "ref/netstandard1.3/System.Text.Encoding.dll",
  8956. "ref/netstandard1.3/System.Text.Encoding.xml",
  8957. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8958. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8959. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8960. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8961. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8962. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8963. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8964. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8965. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8966. "ref/portable-net45+win8+wp8+wpa81/_._",
  8967. "ref/win8/_._",
  8968. "ref/wp80/_._",
  8969. "ref/wpa81/_._",
  8970. "ref/xamarinios10/_._",
  8971. "ref/xamarinmac20/_._",
  8972. "ref/xamarintvos10/_._",
  8973. "ref/xamarinwatchos10/_._",
  8974. "system.text.encoding.4.3.0.nupkg.sha512",
  8975. "system.text.encoding.nuspec"
  8976. ]
  8977. },
  8978. "System.Text.Encoding.CodePages/5.0.0": {
  8979. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8980. "type": "package",
  8981. "path": "system.text.encoding.codepages/5.0.0",
  8982. "files": [
  8983. ".nupkg.metadata",
  8984. ".signature.p7s",
  8985. "Icon.png",
  8986. "LICENSE.TXT",
  8987. "THIRD-PARTY-NOTICES.TXT",
  8988. "lib/MonoAndroid10/_._",
  8989. "lib/MonoTouch10/_._",
  8990. "lib/net46/System.Text.Encoding.CodePages.dll",
  8991. "lib/net461/System.Text.Encoding.CodePages.dll",
  8992. "lib/net461/System.Text.Encoding.CodePages.xml",
  8993. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8994. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8995. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8996. "lib/xamarinios10/_._",
  8997. "lib/xamarinmac20/_._",
  8998. "lib/xamarintvos10/_._",
  8999. "lib/xamarinwatchos10/_._",
  9000. "ref/MonoAndroid10/_._",
  9001. "ref/MonoTouch10/_._",
  9002. "ref/xamarinios10/_._",
  9003. "ref/xamarinmac20/_._",
  9004. "ref/xamarintvos10/_._",
  9005. "ref/xamarinwatchos10/_._",
  9006. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9007. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9008. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9009. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9010. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9011. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9012. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9013. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9014. "system.text.encoding.codepages.nuspec",
  9015. "useSharedDesignerContext.txt",
  9016. "version.txt"
  9017. ]
  9018. },
  9019. "System.Text.Encoding.Extensions/4.3.0": {
  9020. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9021. "type": "package",
  9022. "path": "system.text.encoding.extensions/4.3.0",
  9023. "files": [
  9024. ".nupkg.metadata",
  9025. ".signature.p7s",
  9026. "ThirdPartyNotices.txt",
  9027. "dotnet_library_license.txt",
  9028. "lib/MonoAndroid10/_._",
  9029. "lib/MonoTouch10/_._",
  9030. "lib/net45/_._",
  9031. "lib/portable-net45+win8+wp8+wpa81/_._",
  9032. "lib/win8/_._",
  9033. "lib/wp80/_._",
  9034. "lib/wpa81/_._",
  9035. "lib/xamarinios10/_._",
  9036. "lib/xamarinmac20/_._",
  9037. "lib/xamarintvos10/_._",
  9038. "lib/xamarinwatchos10/_._",
  9039. "ref/MonoAndroid10/_._",
  9040. "ref/MonoTouch10/_._",
  9041. "ref/net45/_._",
  9042. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9043. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9044. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9045. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9046. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9047. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9048. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9049. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9050. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9051. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9052. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9053. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9054. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9055. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9056. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9057. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9058. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9059. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9060. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9061. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9062. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9063. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9064. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9065. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9066. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9067. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9068. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9069. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9070. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9071. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9072. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9073. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9074. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9075. "ref/portable-net45+win8+wp8+wpa81/_._",
  9076. "ref/win8/_._",
  9077. "ref/wp80/_._",
  9078. "ref/wpa81/_._",
  9079. "ref/xamarinios10/_._",
  9080. "ref/xamarinmac20/_._",
  9081. "ref/xamarintvos10/_._",
  9082. "ref/xamarinwatchos10/_._",
  9083. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9084. "system.text.encoding.extensions.nuspec"
  9085. ]
  9086. },
  9087. "System.Text.Encodings.Web/8.0.0": {
  9088. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  9089. "type": "package",
  9090. "path": "system.text.encodings.web/8.0.0",
  9091. "files": [
  9092. ".nupkg.metadata",
  9093. ".signature.p7s",
  9094. "Icon.png",
  9095. "LICENSE.TXT",
  9096. "THIRD-PARTY-NOTICES.TXT",
  9097. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  9098. "buildTransitive/net462/_._",
  9099. "buildTransitive/net6.0/_._",
  9100. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  9101. "lib/net462/System.Text.Encodings.Web.dll",
  9102. "lib/net462/System.Text.Encodings.Web.xml",
  9103. "lib/net6.0/System.Text.Encodings.Web.dll",
  9104. "lib/net6.0/System.Text.Encodings.Web.xml",
  9105. "lib/net7.0/System.Text.Encodings.Web.dll",
  9106. "lib/net7.0/System.Text.Encodings.Web.xml",
  9107. "lib/net8.0/System.Text.Encodings.Web.dll",
  9108. "lib/net8.0/System.Text.Encodings.Web.xml",
  9109. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9110. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9111. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  9112. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  9113. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  9114. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  9115. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  9116. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  9117. "system.text.encodings.web.8.0.0.nupkg.sha512",
  9118. "system.text.encodings.web.nuspec",
  9119. "useSharedDesignerContext.txt"
  9120. ]
  9121. },
  9122. "System.Text.Json/8.0.5": {
  9123. "sha512": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==",
  9124. "type": "package",
  9125. "path": "system.text.json/8.0.5",
  9126. "files": [
  9127. ".nupkg.metadata",
  9128. ".signature.p7s",
  9129. "Icon.png",
  9130. "LICENSE.TXT",
  9131. "PACKAGE.md",
  9132. "THIRD-PARTY-NOTICES.TXT",
  9133. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  9134. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9135. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9136. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9137. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9138. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9139. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9140. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9141. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9142. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9143. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9144. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9145. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9146. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9147. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  9148. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9149. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9150. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9151. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9152. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9153. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9154. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9155. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9156. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9157. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9158. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9159. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9160. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9161. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  9162. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9163. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9164. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9165. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9166. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9167. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9168. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9169. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9170. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9171. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9172. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9173. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9174. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9175. "buildTransitive/net461/System.Text.Json.targets",
  9176. "buildTransitive/net462/System.Text.Json.targets",
  9177. "buildTransitive/net6.0/System.Text.Json.targets",
  9178. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  9179. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  9180. "lib/net462/System.Text.Json.dll",
  9181. "lib/net462/System.Text.Json.xml",
  9182. "lib/net6.0/System.Text.Json.dll",
  9183. "lib/net6.0/System.Text.Json.xml",
  9184. "lib/net7.0/System.Text.Json.dll",
  9185. "lib/net7.0/System.Text.Json.xml",
  9186. "lib/net8.0/System.Text.Json.dll",
  9187. "lib/net8.0/System.Text.Json.xml",
  9188. "lib/netstandard2.0/System.Text.Json.dll",
  9189. "lib/netstandard2.0/System.Text.Json.xml",
  9190. "system.text.json.8.0.5.nupkg.sha512",
  9191. "system.text.json.nuspec",
  9192. "useSharedDesignerContext.txt"
  9193. ]
  9194. },
  9195. "System.Text.RegularExpressions/4.3.0": {
  9196. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9197. "type": "package",
  9198. "path": "system.text.regularexpressions/4.3.0",
  9199. "files": [
  9200. ".nupkg.metadata",
  9201. ".signature.p7s",
  9202. "ThirdPartyNotices.txt",
  9203. "dotnet_library_license.txt",
  9204. "lib/MonoAndroid10/_._",
  9205. "lib/MonoTouch10/_._",
  9206. "lib/net45/_._",
  9207. "lib/net463/System.Text.RegularExpressions.dll",
  9208. "lib/netcore50/System.Text.RegularExpressions.dll",
  9209. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9210. "lib/portable-net45+win8+wp8+wpa81/_._",
  9211. "lib/win8/_._",
  9212. "lib/wp80/_._",
  9213. "lib/wpa81/_._",
  9214. "lib/xamarinios10/_._",
  9215. "lib/xamarinmac20/_._",
  9216. "lib/xamarintvos10/_._",
  9217. "lib/xamarinwatchos10/_._",
  9218. "ref/MonoAndroid10/_._",
  9219. "ref/MonoTouch10/_._",
  9220. "ref/net45/_._",
  9221. "ref/net463/System.Text.RegularExpressions.dll",
  9222. "ref/netcore50/System.Text.RegularExpressions.dll",
  9223. "ref/netcore50/System.Text.RegularExpressions.xml",
  9224. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9225. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9226. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9227. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9228. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9229. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9230. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9231. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9232. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9233. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9234. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9235. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9236. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9237. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9238. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9239. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9240. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9241. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9242. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9243. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9244. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9245. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9246. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9247. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9248. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9249. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9250. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9251. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9252. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9253. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9254. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9255. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9256. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9257. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9258. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9259. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9260. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9261. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9262. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9263. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9264. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9265. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9266. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9267. "ref/portable-net45+win8+wp8+wpa81/_._",
  9268. "ref/win8/_._",
  9269. "ref/wp80/_._",
  9270. "ref/wpa81/_._",
  9271. "ref/xamarinios10/_._",
  9272. "ref/xamarinmac20/_._",
  9273. "ref/xamarintvos10/_._",
  9274. "ref/xamarinwatchos10/_._",
  9275. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9276. "system.text.regularexpressions.nuspec"
  9277. ]
  9278. },
  9279. "System.Threading/4.3.0": {
  9280. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9281. "type": "package",
  9282. "path": "system.threading/4.3.0",
  9283. "files": [
  9284. ".nupkg.metadata",
  9285. ".signature.p7s",
  9286. "ThirdPartyNotices.txt",
  9287. "dotnet_library_license.txt",
  9288. "lib/MonoAndroid10/_._",
  9289. "lib/MonoTouch10/_._",
  9290. "lib/net45/_._",
  9291. "lib/netcore50/System.Threading.dll",
  9292. "lib/netstandard1.3/System.Threading.dll",
  9293. "lib/portable-net45+win8+wp8+wpa81/_._",
  9294. "lib/win8/_._",
  9295. "lib/wp80/_._",
  9296. "lib/wpa81/_._",
  9297. "lib/xamarinios10/_._",
  9298. "lib/xamarinmac20/_._",
  9299. "lib/xamarintvos10/_._",
  9300. "lib/xamarinwatchos10/_._",
  9301. "ref/MonoAndroid10/_._",
  9302. "ref/MonoTouch10/_._",
  9303. "ref/net45/_._",
  9304. "ref/netcore50/System.Threading.dll",
  9305. "ref/netcore50/System.Threading.xml",
  9306. "ref/netcore50/de/System.Threading.xml",
  9307. "ref/netcore50/es/System.Threading.xml",
  9308. "ref/netcore50/fr/System.Threading.xml",
  9309. "ref/netcore50/it/System.Threading.xml",
  9310. "ref/netcore50/ja/System.Threading.xml",
  9311. "ref/netcore50/ko/System.Threading.xml",
  9312. "ref/netcore50/ru/System.Threading.xml",
  9313. "ref/netcore50/zh-hans/System.Threading.xml",
  9314. "ref/netcore50/zh-hant/System.Threading.xml",
  9315. "ref/netstandard1.0/System.Threading.dll",
  9316. "ref/netstandard1.0/System.Threading.xml",
  9317. "ref/netstandard1.0/de/System.Threading.xml",
  9318. "ref/netstandard1.0/es/System.Threading.xml",
  9319. "ref/netstandard1.0/fr/System.Threading.xml",
  9320. "ref/netstandard1.0/it/System.Threading.xml",
  9321. "ref/netstandard1.0/ja/System.Threading.xml",
  9322. "ref/netstandard1.0/ko/System.Threading.xml",
  9323. "ref/netstandard1.0/ru/System.Threading.xml",
  9324. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9325. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9326. "ref/netstandard1.3/System.Threading.dll",
  9327. "ref/netstandard1.3/System.Threading.xml",
  9328. "ref/netstandard1.3/de/System.Threading.xml",
  9329. "ref/netstandard1.3/es/System.Threading.xml",
  9330. "ref/netstandard1.3/fr/System.Threading.xml",
  9331. "ref/netstandard1.3/it/System.Threading.xml",
  9332. "ref/netstandard1.3/ja/System.Threading.xml",
  9333. "ref/netstandard1.3/ko/System.Threading.xml",
  9334. "ref/netstandard1.3/ru/System.Threading.xml",
  9335. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9336. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9337. "ref/portable-net45+win8+wp8+wpa81/_._",
  9338. "ref/win8/_._",
  9339. "ref/wp80/_._",
  9340. "ref/wpa81/_._",
  9341. "ref/xamarinios10/_._",
  9342. "ref/xamarinmac20/_._",
  9343. "ref/xamarintvos10/_._",
  9344. "ref/xamarinwatchos10/_._",
  9345. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9346. "system.threading.4.3.0.nupkg.sha512",
  9347. "system.threading.nuspec"
  9348. ]
  9349. },
  9350. "System.Threading.Channels/7.0.0": {
  9351. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  9352. "type": "package",
  9353. "path": "system.threading.channels/7.0.0",
  9354. "files": [
  9355. ".nupkg.metadata",
  9356. ".signature.p7s",
  9357. "Icon.png",
  9358. "LICENSE.TXT",
  9359. "THIRD-PARTY-NOTICES.TXT",
  9360. "buildTransitive/net461/System.Threading.Channels.targets",
  9361. "buildTransitive/net462/_._",
  9362. "buildTransitive/net6.0/_._",
  9363. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  9364. "lib/net462/System.Threading.Channels.dll",
  9365. "lib/net462/System.Threading.Channels.xml",
  9366. "lib/net6.0/System.Threading.Channels.dll",
  9367. "lib/net6.0/System.Threading.Channels.xml",
  9368. "lib/net7.0/System.Threading.Channels.dll",
  9369. "lib/net7.0/System.Threading.Channels.xml",
  9370. "lib/netstandard2.0/System.Threading.Channels.dll",
  9371. "lib/netstandard2.0/System.Threading.Channels.xml",
  9372. "lib/netstandard2.1/System.Threading.Channels.dll",
  9373. "lib/netstandard2.1/System.Threading.Channels.xml",
  9374. "system.threading.channels.7.0.0.nupkg.sha512",
  9375. "system.threading.channels.nuspec",
  9376. "useSharedDesignerContext.txt"
  9377. ]
  9378. },
  9379. "System.Threading.Tasks/4.3.0": {
  9380. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9381. "type": "package",
  9382. "path": "system.threading.tasks/4.3.0",
  9383. "files": [
  9384. ".nupkg.metadata",
  9385. ".signature.p7s",
  9386. "ThirdPartyNotices.txt",
  9387. "dotnet_library_license.txt",
  9388. "lib/MonoAndroid10/_._",
  9389. "lib/MonoTouch10/_._",
  9390. "lib/net45/_._",
  9391. "lib/portable-net45+win8+wp8+wpa81/_._",
  9392. "lib/win8/_._",
  9393. "lib/wp80/_._",
  9394. "lib/wpa81/_._",
  9395. "lib/xamarinios10/_._",
  9396. "lib/xamarinmac20/_._",
  9397. "lib/xamarintvos10/_._",
  9398. "lib/xamarinwatchos10/_._",
  9399. "ref/MonoAndroid10/_._",
  9400. "ref/MonoTouch10/_._",
  9401. "ref/net45/_._",
  9402. "ref/netcore50/System.Threading.Tasks.dll",
  9403. "ref/netcore50/System.Threading.Tasks.xml",
  9404. "ref/netcore50/de/System.Threading.Tasks.xml",
  9405. "ref/netcore50/es/System.Threading.Tasks.xml",
  9406. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9407. "ref/netcore50/it/System.Threading.Tasks.xml",
  9408. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9409. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9410. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9411. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9412. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9413. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9414. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9415. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9416. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9417. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9418. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9419. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9420. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9421. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9422. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9423. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9424. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9425. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9426. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9427. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9428. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9429. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9430. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9431. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9432. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9433. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9434. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9435. "ref/portable-net45+win8+wp8+wpa81/_._",
  9436. "ref/win8/_._",
  9437. "ref/wp80/_._",
  9438. "ref/wpa81/_._",
  9439. "ref/xamarinios10/_._",
  9440. "ref/xamarinmac20/_._",
  9441. "ref/xamarintvos10/_._",
  9442. "ref/xamarinwatchos10/_._",
  9443. "system.threading.tasks.4.3.0.nupkg.sha512",
  9444. "system.threading.tasks.nuspec"
  9445. ]
  9446. },
  9447. "System.Threading.Tasks.Extensions/4.5.4": {
  9448. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  9449. "type": "package",
  9450. "path": "system.threading.tasks.extensions/4.5.4",
  9451. "files": [
  9452. ".nupkg.metadata",
  9453. ".signature.p7s",
  9454. "LICENSE.TXT",
  9455. "THIRD-PARTY-NOTICES.TXT",
  9456. "lib/MonoAndroid10/_._",
  9457. "lib/MonoTouch10/_._",
  9458. "lib/net461/System.Threading.Tasks.Extensions.dll",
  9459. "lib/net461/System.Threading.Tasks.Extensions.xml",
  9460. "lib/netcoreapp2.1/_._",
  9461. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9462. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9463. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9464. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9465. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9466. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9467. "lib/xamarinios10/_._",
  9468. "lib/xamarinmac20/_._",
  9469. "lib/xamarintvos10/_._",
  9470. "lib/xamarinwatchos10/_._",
  9471. "ref/MonoAndroid10/_._",
  9472. "ref/MonoTouch10/_._",
  9473. "ref/netcoreapp2.1/_._",
  9474. "ref/xamarinios10/_._",
  9475. "ref/xamarinmac20/_._",
  9476. "ref/xamarintvos10/_._",
  9477. "ref/xamarinwatchos10/_._",
  9478. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  9479. "system.threading.tasks.extensions.nuspec",
  9480. "useSharedDesignerContext.txt",
  9481. "version.txt"
  9482. ]
  9483. },
  9484. "System.Threading.Thread/4.3.0": {
  9485. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9486. "type": "package",
  9487. "path": "system.threading.thread/4.3.0",
  9488. "files": [
  9489. ".nupkg.metadata",
  9490. ".signature.p7s",
  9491. "ThirdPartyNotices.txt",
  9492. "dotnet_library_license.txt",
  9493. "lib/MonoAndroid10/_._",
  9494. "lib/MonoTouch10/_._",
  9495. "lib/net46/System.Threading.Thread.dll",
  9496. "lib/netcore50/_._",
  9497. "lib/netstandard1.3/System.Threading.Thread.dll",
  9498. "lib/xamarinios10/_._",
  9499. "lib/xamarinmac20/_._",
  9500. "lib/xamarintvos10/_._",
  9501. "lib/xamarinwatchos10/_._",
  9502. "ref/MonoAndroid10/_._",
  9503. "ref/MonoTouch10/_._",
  9504. "ref/net46/System.Threading.Thread.dll",
  9505. "ref/netstandard1.3/System.Threading.Thread.dll",
  9506. "ref/netstandard1.3/System.Threading.Thread.xml",
  9507. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9508. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9509. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9510. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9511. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9512. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9513. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9514. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9515. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9516. "ref/xamarinios10/_._",
  9517. "ref/xamarinmac20/_._",
  9518. "ref/xamarintvos10/_._",
  9519. "ref/xamarinwatchos10/_._",
  9520. "system.threading.thread.4.3.0.nupkg.sha512",
  9521. "system.threading.thread.nuspec"
  9522. ]
  9523. },
  9524. "System.Threading.ThreadPool/4.3.0": {
  9525. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  9526. "type": "package",
  9527. "path": "system.threading.threadpool/4.3.0",
  9528. "files": [
  9529. ".nupkg.metadata",
  9530. ".signature.p7s",
  9531. "ThirdPartyNotices.txt",
  9532. "dotnet_library_license.txt",
  9533. "lib/MonoAndroid10/_._",
  9534. "lib/MonoTouch10/_._",
  9535. "lib/net46/System.Threading.ThreadPool.dll",
  9536. "lib/netcore50/_._",
  9537. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9538. "lib/xamarinios10/_._",
  9539. "lib/xamarinmac20/_._",
  9540. "lib/xamarintvos10/_._",
  9541. "lib/xamarinwatchos10/_._",
  9542. "ref/MonoAndroid10/_._",
  9543. "ref/MonoTouch10/_._",
  9544. "ref/net46/System.Threading.ThreadPool.dll",
  9545. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9546. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9547. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9548. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9549. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9550. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9551. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9552. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9553. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9554. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9555. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9556. "ref/xamarinios10/_._",
  9557. "ref/xamarinmac20/_._",
  9558. "ref/xamarintvos10/_._",
  9559. "ref/xamarinwatchos10/_._",
  9560. "system.threading.threadpool.4.3.0.nupkg.sha512",
  9561. "system.threading.threadpool.nuspec"
  9562. ]
  9563. },
  9564. "System.Threading.Timer/4.3.0": {
  9565. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9566. "type": "package",
  9567. "path": "system.threading.timer/4.3.0",
  9568. "files": [
  9569. ".nupkg.metadata",
  9570. ".signature.p7s",
  9571. "ThirdPartyNotices.txt",
  9572. "dotnet_library_license.txt",
  9573. "lib/MonoAndroid10/_._",
  9574. "lib/MonoTouch10/_._",
  9575. "lib/net451/_._",
  9576. "lib/portable-net451+win81+wpa81/_._",
  9577. "lib/win81/_._",
  9578. "lib/wpa81/_._",
  9579. "lib/xamarinios10/_._",
  9580. "lib/xamarinmac20/_._",
  9581. "lib/xamarintvos10/_._",
  9582. "lib/xamarinwatchos10/_._",
  9583. "ref/MonoAndroid10/_._",
  9584. "ref/MonoTouch10/_._",
  9585. "ref/net451/_._",
  9586. "ref/netcore50/System.Threading.Timer.dll",
  9587. "ref/netcore50/System.Threading.Timer.xml",
  9588. "ref/netcore50/de/System.Threading.Timer.xml",
  9589. "ref/netcore50/es/System.Threading.Timer.xml",
  9590. "ref/netcore50/fr/System.Threading.Timer.xml",
  9591. "ref/netcore50/it/System.Threading.Timer.xml",
  9592. "ref/netcore50/ja/System.Threading.Timer.xml",
  9593. "ref/netcore50/ko/System.Threading.Timer.xml",
  9594. "ref/netcore50/ru/System.Threading.Timer.xml",
  9595. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9596. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9597. "ref/netstandard1.2/System.Threading.Timer.dll",
  9598. "ref/netstandard1.2/System.Threading.Timer.xml",
  9599. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9600. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9601. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9602. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9603. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9604. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9605. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9606. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9607. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9608. "ref/portable-net451+win81+wpa81/_._",
  9609. "ref/win81/_._",
  9610. "ref/wpa81/_._",
  9611. "ref/xamarinios10/_._",
  9612. "ref/xamarinmac20/_._",
  9613. "ref/xamarintvos10/_._",
  9614. "ref/xamarinwatchos10/_._",
  9615. "system.threading.timer.4.3.0.nupkg.sha512",
  9616. "system.threading.timer.nuspec"
  9617. ]
  9618. },
  9619. "System.Windows.Extensions/4.7.0": {
  9620. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9621. "type": "package",
  9622. "path": "system.windows.extensions/4.7.0",
  9623. "files": [
  9624. ".nupkg.metadata",
  9625. ".signature.p7s",
  9626. "LICENSE.TXT",
  9627. "THIRD-PARTY-NOTICES.TXT",
  9628. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9629. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9630. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9631. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9632. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9633. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9634. "system.windows.extensions.4.7.0.nupkg.sha512",
  9635. "system.windows.extensions.nuspec",
  9636. "useSharedDesignerContext.txt",
  9637. "version.txt"
  9638. ]
  9639. },
  9640. "System.Xml.ReaderWriter/4.3.0": {
  9641. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9642. "type": "package",
  9643. "path": "system.xml.readerwriter/4.3.0",
  9644. "files": [
  9645. ".nupkg.metadata",
  9646. ".signature.p7s",
  9647. "ThirdPartyNotices.txt",
  9648. "dotnet_library_license.txt",
  9649. "lib/MonoAndroid10/_._",
  9650. "lib/MonoTouch10/_._",
  9651. "lib/net45/_._",
  9652. "lib/net46/System.Xml.ReaderWriter.dll",
  9653. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9654. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9655. "lib/portable-net45+win8+wp8+wpa81/_._",
  9656. "lib/win8/_._",
  9657. "lib/wp80/_._",
  9658. "lib/wpa81/_._",
  9659. "lib/xamarinios10/_._",
  9660. "lib/xamarinmac20/_._",
  9661. "lib/xamarintvos10/_._",
  9662. "lib/xamarinwatchos10/_._",
  9663. "ref/MonoAndroid10/_._",
  9664. "ref/MonoTouch10/_._",
  9665. "ref/net45/_._",
  9666. "ref/net46/System.Xml.ReaderWriter.dll",
  9667. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9668. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9669. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9670. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9671. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9672. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9673. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9674. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9675. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9676. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9677. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9678. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9679. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9680. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9681. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9682. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9683. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9684. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9685. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9686. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9687. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9688. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9689. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9690. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9691. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9692. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9693. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9694. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9695. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9696. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9697. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9698. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9699. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9700. "ref/portable-net45+win8+wp8+wpa81/_._",
  9701. "ref/win8/_._",
  9702. "ref/wp80/_._",
  9703. "ref/wpa81/_._",
  9704. "ref/xamarinios10/_._",
  9705. "ref/xamarinmac20/_._",
  9706. "ref/xamarintvos10/_._",
  9707. "ref/xamarinwatchos10/_._",
  9708. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9709. "system.xml.readerwriter.nuspec"
  9710. ]
  9711. },
  9712. "System.Xml.XDocument/4.3.0": {
  9713. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9714. "type": "package",
  9715. "path": "system.xml.xdocument/4.3.0",
  9716. "files": [
  9717. ".nupkg.metadata",
  9718. ".signature.p7s",
  9719. "ThirdPartyNotices.txt",
  9720. "dotnet_library_license.txt",
  9721. "lib/MonoAndroid10/_._",
  9722. "lib/MonoTouch10/_._",
  9723. "lib/net45/_._",
  9724. "lib/netcore50/System.Xml.XDocument.dll",
  9725. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9726. "lib/portable-net45+win8+wp8+wpa81/_._",
  9727. "lib/win8/_._",
  9728. "lib/wp80/_._",
  9729. "lib/wpa81/_._",
  9730. "lib/xamarinios10/_._",
  9731. "lib/xamarinmac20/_._",
  9732. "lib/xamarintvos10/_._",
  9733. "lib/xamarinwatchos10/_._",
  9734. "ref/MonoAndroid10/_._",
  9735. "ref/MonoTouch10/_._",
  9736. "ref/net45/_._",
  9737. "ref/netcore50/System.Xml.XDocument.dll",
  9738. "ref/netcore50/System.Xml.XDocument.xml",
  9739. "ref/netcore50/de/System.Xml.XDocument.xml",
  9740. "ref/netcore50/es/System.Xml.XDocument.xml",
  9741. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9742. "ref/netcore50/it/System.Xml.XDocument.xml",
  9743. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9744. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9745. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9746. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9747. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9748. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9749. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9750. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9751. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9752. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9753. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9754. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9755. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9756. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9757. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9758. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9759. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9760. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9761. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9762. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9763. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9764. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9765. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9766. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9767. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9768. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9769. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9770. "ref/portable-net45+win8+wp8+wpa81/_._",
  9771. "ref/win8/_._",
  9772. "ref/wp80/_._",
  9773. "ref/wpa81/_._",
  9774. "ref/xamarinios10/_._",
  9775. "ref/xamarinmac20/_._",
  9776. "ref/xamarintvos10/_._",
  9777. "ref/xamarinwatchos10/_._",
  9778. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9779. "system.xml.xdocument.nuspec"
  9780. ]
  9781. },
  9782. "ZXing.Net/0.16.9": {
  9783. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  9784. "type": "package",
  9785. "path": "zxing.net/0.16.9",
  9786. "files": [
  9787. ".nupkg.metadata",
  9788. ".signature.p7s",
  9789. "lib/native/zxing.XML",
  9790. "lib/native/zxing.pri",
  9791. "lib/native/zxing.winmd",
  9792. "lib/net20-cf/zxing.ce2.0.dll",
  9793. "lib/net20-cf/zxing.ce2.0.xml",
  9794. "lib/net20/zxing.XML",
  9795. "lib/net20/zxing.dll",
  9796. "lib/net35-cf/zxing.ce3.5.dll",
  9797. "lib/net35-cf/zxing.ce3.5.xml",
  9798. "lib/net35/zxing.XML",
  9799. "lib/net35/zxing.dll",
  9800. "lib/net40/zxing.XML",
  9801. "lib/net40/zxing.dll",
  9802. "lib/net40/zxing.presentation.XML",
  9803. "lib/net40/zxing.presentation.dll",
  9804. "lib/net45/zxing.XML",
  9805. "lib/net45/zxing.dll",
  9806. "lib/net45/zxing.presentation.XML",
  9807. "lib/net45/zxing.presentation.dll",
  9808. "lib/net461/zxing.XML",
  9809. "lib/net461/zxing.dll",
  9810. "lib/net461/zxing.presentation.XML",
  9811. "lib/net461/zxing.presentation.dll",
  9812. "lib/net47/zxing.XML",
  9813. "lib/net47/zxing.dll",
  9814. "lib/net47/zxing.presentation.XML",
  9815. "lib/net47/zxing.presentation.dll",
  9816. "lib/net48/zxing.XML",
  9817. "lib/net48/zxing.dll",
  9818. "lib/net48/zxing.presentation.XML",
  9819. "lib/net48/zxing.presentation.dll",
  9820. "lib/net5.0/zxing.XML",
  9821. "lib/net5.0/zxing.dll",
  9822. "lib/net6.0/zxing.XML",
  9823. "lib/net6.0/zxing.dll",
  9824. "lib/net7.0/zxing.XML",
  9825. "lib/net7.0/zxing.dll",
  9826. "lib/netcoreapp3.0/zxing.dll",
  9827. "lib/netcoreapp3.0/zxing.xml",
  9828. "lib/netcoreapp3.1/zxing.dll",
  9829. "lib/netcoreapp3.1/zxing.xml",
  9830. "lib/netstandard1.0/zxing.dll",
  9831. "lib/netstandard1.0/zxing.xml",
  9832. "lib/netstandard1.1/zxing.dll",
  9833. "lib/netstandard1.1/zxing.xml",
  9834. "lib/netstandard1.3/zxing.dll",
  9835. "lib/netstandard1.3/zxing.xml",
  9836. "lib/netstandard2.0/zxing.dll",
  9837. "lib/netstandard2.0/zxing.xml",
  9838. "lib/netstandard2.1/zxing.dll",
  9839. "lib/netstandard2.1/zxing.xml",
  9840. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9841. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9842. "lib/sl3-wp/zxing.wp7.0.XML",
  9843. "lib/sl3-wp/zxing.wp7.0.dll",
  9844. "lib/sl4-wp71/zxing.wp7.1.XML",
  9845. "lib/sl4-wp71/zxing.wp7.1.dll",
  9846. "lib/sl4/zxing.sl4.XML",
  9847. "lib/sl4/zxing.sl4.dll",
  9848. "lib/sl5/zxing.sl5.XML",
  9849. "lib/sl5/zxing.sl5.dll",
  9850. "lib/uap10/zxing.dll",
  9851. "lib/uap10/zxing.pri",
  9852. "lib/uap10/zxing.xml",
  9853. "lib/windows8-managed/zxing.winrt.XML",
  9854. "lib/windows8-managed/zxing.winrt.dll",
  9855. "lib/windows8/zxing.XML",
  9856. "lib/windows8/zxing.pri",
  9857. "lib/windows8/zxing.winmd",
  9858. "lib/wp8/zxing.wp8.0.XML",
  9859. "lib/wp8/zxing.wp8.0.dll",
  9860. "logo.jpg",
  9861. "zxing.net.0.16.9.nupkg.sha512",
  9862. "zxing.net.nuspec"
  9863. ]
  9864. },
  9865. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9866. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9867. "type": "package",
  9868. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9869. "files": [
  9870. ".nupkg.metadata",
  9871. ".signature.p7s",
  9872. "lib/net472/ZXing.ImageSharp.V2.dll",
  9873. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9874. "lib/net472/ZXing.ImageSharp.V2.xml",
  9875. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9876. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9877. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9878. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9879. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9880. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9881. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9882. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9883. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9884. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9885. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9886. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9887. "logo.jpg",
  9888. "readme.md",
  9889. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9890. "zxing.net.bindings.imagesharp.v2.nuspec"
  9891. ]
  9892. },
  9893. "Ropin.Core.Common/1.0.0": {
  9894. "type": "project",
  9895. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9896. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9897. },
  9898. "Ropin.Core.Extensions/1.0.0": {
  9899. "type": "project",
  9900. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  9901. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  9902. },
  9903. "Ropin.Inspection.Common/1.0.0": {
  9904. "type": "project",
  9905. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9906. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9907. },
  9908. "Ropin.Inspection.Model/1.0.0": {
  9909. "type": "project",
  9910. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9911. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9912. },
  9913. "Ropin.Inspection.Repository/1.0.0": {
  9914. "type": "project",
  9915. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9916. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9917. },
  9918. "Ropin.Inspection.Service/1.0.0": {
  9919. "type": "project",
  9920. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  9921. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  9922. },
  9923. "Ropin.Inspection.Tasks/1.0.0": {
  9924. "type": "project",
  9925. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  9926. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  9927. }
  9928. },
  9929. "projectFileDependencyGroups": {
  9930. "net5.0": [
  9931. "AutoMapper >= 10.1.1",
  9932. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  9933. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  9934. "FBoxClientDriver >= 1.2.0",
  9935. "FBoxClientDriver.Contract >= 1.2.0",
  9936. "InfluxData.Net >= 8.0.1",
  9937. "InitQ >= 1.0.0.14",
  9938. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9939. "RabbitMQ.Client >= 6.8.1",
  9940. "Ropin.Core.Common >= 1.0.0",
  9941. "Ropin.Core.Extensions >= 1.0.0",
  9942. "Ropin.Inspection.Common >= 1.0.0",
  9943. "Ropin.Inspection.Model >= 1.0.0",
  9944. "Ropin.Inspection.Service >= 1.0.0",
  9945. "Swashbuckle.AspNetCore >= 5.6.3",
  9946. "System.IdentityModel.Tokens.Jwt >= 8.6.0",
  9947. "log4net >= 2.0.17"
  9948. ]
  9949. },
  9950. "packageFolders": {
  9951. "D:\\.nuget\\packages": {},
  9952. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9953. },
  9954. "project": {
  9955. "version": "1.0.0",
  9956. "restore": {
  9957. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\Ropin.Environmentally.AlarmService.csproj",
  9958. "projectName": "Ropin.Environmentally.AlarmService",
  9959. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\Ropin.Environmentally.AlarmService.csproj",
  9960. "packagesPath": "D:\\.nuget\\packages",
  9961. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.AlarmService\\obj\\",
  9962. "projectStyle": "PackageReference",
  9963. "fallbackFolders": [
  9964. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9965. ],
  9966. "configFilePaths": [
  9967. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9968. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9969. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9970. ],
  9971. "originalTargetFrameworks": [
  9972. "net5.0"
  9973. ],
  9974. "sources": {
  9975. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9976. "C:\\Program Files\\dotnet\\library-packs": {},
  9977. "https://api.nuget.org/v3/index.json": {}
  9978. },
  9979. "frameworks": {
  9980. "net5.0": {
  9981. "targetAlias": "net5.0",
  9982. "projectReferences": {
  9983. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9984. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9985. },
  9986. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  9987. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  9988. },
  9989. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9990. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9991. },
  9992. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9993. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9994. },
  9995. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  9996. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  9997. }
  9998. }
  9999. }
  10000. },
  10001. "warningProperties": {
  10002. "warnAsError": [
  10003. "NU1605"
  10004. ]
  10005. }
  10006. },
  10007. "frameworks": {
  10008. "net5.0": {
  10009. "targetAlias": "net5.0",
  10010. "dependencies": {
  10011. "AutoMapper": {
  10012. "target": "Package",
  10013. "version": "[10.1.1, )"
  10014. },
  10015. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  10016. "target": "Package",
  10017. "version": "[8.1.1, )"
  10018. },
  10019. "Autofac.Extensions.DependencyInjection": {
  10020. "target": "Package",
  10021. "version": "[7.1.0, )"
  10022. },
  10023. "FBoxClientDriver": {
  10024. "target": "Package",
  10025. "version": "[1.2.0, )"
  10026. },
  10027. "FBoxClientDriver.Contract": {
  10028. "target": "Package",
  10029. "version": "[1.2.0, )"
  10030. },
  10031. "InfluxData.Net": {
  10032. "target": "Package",
  10033. "version": "[8.0.1, )"
  10034. },
  10035. "InitQ": {
  10036. "target": "Package",
  10037. "version": "[1.0.0.14, )"
  10038. },
  10039. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10040. "target": "Package",
  10041. "version": "[1.17.2, )"
  10042. },
  10043. "RabbitMQ.Client": {
  10044. "target": "Package",
  10045. "version": "[6.8.1, )"
  10046. },
  10047. "Swashbuckle.AspNetCore": {
  10048. "target": "Package",
  10049. "version": "[5.6.3, )"
  10050. },
  10051. "System.IdentityModel.Tokens.Jwt": {
  10052. "target": "Package",
  10053. "version": "[8.6.0, )"
  10054. },
  10055. "log4net": {
  10056. "target": "Package",
  10057. "version": "[2.0.17, )"
  10058. }
  10059. },
  10060. "imports": [
  10061. "net461",
  10062. "net462",
  10063. "net47",
  10064. "net471",
  10065. "net472",
  10066. "net48",
  10067. "net481"
  10068. ],
  10069. "assetTargetFallback": true,
  10070. "warn": true,
  10071. "frameworkReferences": {
  10072. "Microsoft.AspNetCore.App": {
  10073. "privateAssets": "none"
  10074. },
  10075. "Microsoft.NETCore.App": {
  10076. "privateAssets": "all"
  10077. }
  10078. },
  10079. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10080. }
  10081. }
  10082. }
  10083. }