project.assets.json 413 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314
  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. "BouncyCastle.NetCore/1.8.5": {
  69. "type": "package",
  70. "compile": {
  71. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  72. "related": ".xml"
  73. }
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  77. "related": ".xml"
  78. }
  79. }
  80. },
  81. "Coravel/4.2.1": {
  82. "type": "package",
  83. "dependencies": {
  84. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  85. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  86. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  87. },
  88. "compile": {
  89. "lib/netstandard2.0/Coravel.dll": {
  90. "related": ".xml"
  91. }
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/Coravel.dll": {
  95. "related": ".xml"
  96. }
  97. }
  98. },
  99. "FBoxClientDriver/1.2.0": {
  100. "type": "package",
  101. "dependencies": {
  102. "FBoxClientDriver.Contract": "1.2.0",
  103. "IdentityModel": "4.3.1",
  104. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  105. "Microsoft.CSharp": "4.5.0",
  106. "Microsoft.Extensions.Logging": "3.1.5",
  107. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  108. "Newtonsoft.Json": "12.0.3",
  109. "Nito.AsyncEx.Coordination": "5.0.0",
  110. "NodaTime": "2.4.7",
  111. "System.ComponentModel.EventBasedAsync": "4.3.0",
  112. "System.IO.FileSystem": "4.3.0",
  113. "System.Net.Http": "4.3.2",
  114. "System.Reactive": "4.4.1",
  115. "System.Runtime.Serialization.Primitives": "4.3.0",
  116. "System.Threading.Thread": "4.3.0"
  117. },
  118. "compile": {
  119. "lib/netstandard2.0/FBoxClientDriver.dll": {
  120. "related": ".xml"
  121. }
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/FBoxClientDriver.dll": {
  125. "related": ".xml"
  126. }
  127. }
  128. },
  129. "FBoxClientDriver.Contract/1.2.0": {
  130. "type": "package",
  131. "dependencies": {
  132. "Newtonsoft.Json": "12.0.3",
  133. "System.ComponentModel.Primitives": "4.3.0"
  134. },
  135. "compile": {
  136. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  137. "related": ".xml"
  138. }
  139. },
  140. "runtime": {
  141. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  142. "related": ".xml"
  143. }
  144. }
  145. },
  146. "FluentEmail.Core/3.0.2": {
  147. "type": "package",
  148. "dependencies": {
  149. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  150. },
  151. "compile": {
  152. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  153. },
  154. "runtime": {
  155. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  156. }
  157. },
  158. "FluentEmail.Smtp/3.0.2": {
  159. "type": "package",
  160. "dependencies": {
  161. "FluentEmail.Core": "3.0.2"
  162. },
  163. "compile": {
  164. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  165. },
  166. "runtime": {
  167. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  168. }
  169. },
  170. "Google.Protobuf/3.11.4": {
  171. "type": "package",
  172. "dependencies": {
  173. "System.Memory": "4.5.2"
  174. },
  175. "compile": {
  176. "lib/netstandard2.0/Google.Protobuf.dll": {
  177. "related": ".pdb;.xml"
  178. }
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/Google.Protobuf.dll": {
  182. "related": ".pdb;.xml"
  183. }
  184. }
  185. },
  186. "IdentityModel/4.3.1": {
  187. "type": "package",
  188. "dependencies": {
  189. "Newtonsoft.Json": "11.0.2",
  190. "System.Text.Encodings.Web": "4.7.0"
  191. },
  192. "compile": {
  193. "lib/netstandard2.0/IdentityModel.dll": {
  194. "related": ".pdb;.xml"
  195. }
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/IdentityModel.dll": {
  199. "related": ".pdb;.xml"
  200. }
  201. }
  202. },
  203. "InfluxData.Net/8.0.1": {
  204. "type": "package",
  205. "dependencies": {
  206. "Newtonsoft.Json": "10.0.3",
  207. "System.Net.Http": "4.3.2"
  208. },
  209. "compile": {
  210. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  211. "related": ".dll.config;.pdb"
  212. },
  213. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  214. "related": ".dll.config;.pdb"
  215. },
  216. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  217. "related": ".dll.config;.pdb"
  218. },
  219. "lib/netstandard2.0/InfluxData.Net.dll": {
  220. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  221. }
  222. },
  223. "runtime": {
  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. },
  238. "InitQ/1.0.0.14": {
  239. "type": "package",
  240. "dependencies": {
  241. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  242. "Microsoft.Extensions.Hosting": "2.1.0",
  243. "Newtonsoft.Json": "13.0.1",
  244. "StackExchange.Redis": "1.2.4"
  245. },
  246. "compile": {
  247. "lib/netcoreapp2.1/InitQ.dll": {}
  248. },
  249. "runtime": {
  250. "lib/netcoreapp2.1/InitQ.dll": {}
  251. }
  252. },
  253. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  254. "type": "package",
  255. "dependencies": {
  256. "AdvancedStringBuilder": "0.1.0",
  257. "JavaScriptEngineSwitcher.Core": "3.21.0"
  258. },
  259. "compile": {
  260. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  261. "related": ".xml"
  262. }
  263. },
  264. "runtime": {
  265. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  266. "related": ".xml"
  267. }
  268. },
  269. "resource": {
  270. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  271. "locale": "ru-RU"
  272. }
  273. }
  274. },
  275. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  276. "type": "package",
  277. "runtimeTargets": {
  278. "runtimes/linux-x64/native/libChakraCore.so": {
  279. "assetType": "native",
  280. "rid": "linux-x64"
  281. }
  282. }
  283. },
  284. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  285. "type": "package",
  286. "build": {
  287. "build/_._": {}
  288. },
  289. "runtimeTargets": {
  290. "runtimes/win-x64/native/ChakraCore.dll": {
  291. "assetType": "native",
  292. "rid": "win-x64"
  293. }
  294. }
  295. },
  296. "JavaScriptEngineSwitcher.Core/3.21.0": {
  297. "type": "package",
  298. "dependencies": {
  299. "AdvancedStringBuilder": "0.1.0"
  300. },
  301. "compile": {
  302. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  303. "related": ".xml"
  304. }
  305. },
  306. "runtime": {
  307. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  308. "related": ".xml"
  309. }
  310. },
  311. "resource": {
  312. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  313. "locale": "ru-RU"
  314. }
  315. }
  316. },
  317. "K4os.Compression.LZ4/1.1.11": {
  318. "type": "package",
  319. "dependencies": {
  320. "System.Memory": "4.5.3"
  321. },
  322. "compile": {
  323. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  324. "related": ".xml"
  325. }
  326. },
  327. "runtime": {
  328. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  329. "related": ".xml"
  330. }
  331. }
  332. },
  333. "K4os.Compression.LZ4.Streams/1.1.11": {
  334. "type": "package",
  335. "dependencies": {
  336. "K4os.Compression.LZ4": "1.1.11",
  337. "K4os.Hash.xxHash": "1.0.6"
  338. },
  339. "compile": {
  340. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  341. "related": ".xml"
  342. }
  343. },
  344. "runtime": {
  345. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  346. "related": ".xml"
  347. }
  348. }
  349. },
  350. "K4os.Hash.xxHash/1.0.6": {
  351. "type": "package",
  352. "dependencies": {
  353. "System.Memory": "4.5.3"
  354. },
  355. "compile": {
  356. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  357. "related": ".xml"
  358. }
  359. },
  360. "runtime": {
  361. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  362. "related": ".xml"
  363. }
  364. }
  365. },
  366. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  367. "type": "package",
  368. "dependencies": {
  369. "Microsoft.EntityFrameworkCore": "5.0.0"
  370. },
  371. "compile": {
  372. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  373. "related": ".xml"
  374. }
  375. },
  376. "runtime": {
  377. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  378. "related": ".xml"
  379. }
  380. }
  381. },
  382. "log4net/2.0.17": {
  383. "type": "package",
  384. "dependencies": {
  385. "System.Configuration.ConfigurationManager": "4.5.0"
  386. },
  387. "compile": {
  388. "lib/netstandard2.0/log4net.dll": {
  389. "related": ".xml"
  390. }
  391. },
  392. "runtime": {
  393. "lib/netstandard2.0/log4net.dll": {
  394. "related": ".xml"
  395. }
  396. }
  397. },
  398. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  399. "type": "package",
  400. "dependencies": {
  401. "Newtonsoft.Json": "11.0.2"
  402. },
  403. "compile": {
  404. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  405. "related": ".pdb;.xml"
  406. }
  407. },
  408. "runtime": {
  409. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  410. "related": ".pdb;.xml"
  411. }
  412. }
  413. },
  414. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  415. "type": "package",
  416. "dependencies": {
  417. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  418. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  419. "Microsoft.Extensions.Options": "2.2.0"
  420. },
  421. "compile": {
  422. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  423. "related": ".xml"
  424. }
  425. },
  426. "runtime": {
  427. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  428. "related": ".xml"
  429. }
  430. }
  431. },
  432. "Microsoft.AspNetCore.Authorization/2.2.0": {
  433. "type": "package",
  434. "dependencies": {
  435. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  436. "Microsoft.Extensions.Options": "2.2.0"
  437. },
  438. "compile": {
  439. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  440. "related": ".xml"
  441. }
  442. },
  443. "runtime": {
  444. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  445. "related": ".xml"
  446. }
  447. }
  448. },
  449. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  450. "type": "package",
  451. "dependencies": {
  452. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  453. "Microsoft.AspNetCore.Authorization": "2.2.0"
  454. },
  455. "compile": {
  456. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  457. "related": ".xml"
  458. }
  459. },
  460. "runtime": {
  461. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  462. "related": ".xml"
  463. }
  464. }
  465. },
  466. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  467. "type": "package",
  468. "dependencies": {
  469. "Microsoft.AspNetCore.Http.Features": "3.1.20",
  470. "System.IO.Pipelines": "4.7.4"
  471. },
  472. "compile": {
  473. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  487. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  488. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  489. },
  490. "compile": {
  491. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  492. "related": ".xml"
  493. }
  494. },
  495. "runtime": {
  496. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  497. "related": ".xml"
  498. }
  499. }
  500. },
  501. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  502. "type": "package",
  503. "dependencies": {
  504. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  505. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  506. },
  507. "compile": {
  508. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  509. "related": ".xml"
  510. }
  511. },
  512. "runtime": {
  513. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  514. "related": ".xml"
  515. }
  516. }
  517. },
  518. "Microsoft.AspNetCore.Http/2.2.0": {
  519. "type": "package",
  520. "dependencies": {
  521. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  522. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  523. "Microsoft.Extensions.ObjectPool": "2.2.0",
  524. "Microsoft.Extensions.Options": "2.2.0",
  525. "Microsoft.Net.Http.Headers": "2.2.0"
  526. },
  527. "compile": {
  528. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  529. "related": ".xml"
  530. }
  531. },
  532. "runtime": {
  533. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  534. "related": ".xml"
  535. }
  536. }
  537. },
  538. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  542. "System.Text.Encodings.Web": "4.5.0"
  543. },
  544. "compile": {
  545. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  546. "related": ".xml"
  547. }
  548. },
  549. "runtime": {
  550. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  551. "related": ".xml"
  552. }
  553. }
  554. },
  555. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  556. "type": "package",
  557. "dependencies": {
  558. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  559. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  560. "Microsoft.AspNetCore.Http": "2.2.0",
  561. "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0",
  562. "Microsoft.AspNetCore.Routing": "2.2.0",
  563. "Microsoft.AspNetCore.WebSockets": "2.2.0",
  564. "Newtonsoft.Json": "11.0.2",
  565. "System.Security.Principal.Windows": "4.5.0"
  566. },
  567. "compile": {
  568. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  569. "related": ".xml"
  570. }
  571. },
  572. "runtime": {
  573. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {
  574. "related": ".xml"
  575. }
  576. }
  577. },
  578. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  579. "type": "package",
  580. "dependencies": {
  581. "Microsoft.AspNetCore.Http.Connections.Common": "3.1.20",
  582. "Microsoft.Extensions.Logging.Abstractions": "3.1.20",
  583. "Microsoft.Extensions.Options": "3.1.20"
  584. },
  585. "compile": {
  586. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  587. "related": ".xml"
  588. }
  589. },
  590. "runtime": {
  591. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll": {
  592. "related": ".xml"
  593. }
  594. }
  595. },
  596. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  597. "type": "package",
  598. "dependencies": {
  599. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20"
  600. },
  601. "compile": {
  602. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  603. "related": ".xml"
  604. }
  605. },
  606. "runtime": {
  607. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll": {
  608. "related": ".xml"
  609. }
  610. }
  611. },
  612. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  613. "type": "package",
  614. "dependencies": {
  615. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  616. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  617. "Microsoft.Net.Http.Headers": "2.2.0",
  618. "System.Buffers": "4.5.0"
  619. },
  620. "compile": {
  621. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  622. "related": ".xml"
  623. }
  624. },
  625. "runtime": {
  626. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  627. "related": ".xml"
  628. }
  629. }
  630. },
  631. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  632. "type": "package",
  633. "dependencies": {
  634. "Microsoft.Extensions.Primitives": "5.0.0",
  635. "System.IO.Pipelines": "5.0.0"
  636. },
  637. "compile": {
  638. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  639. "related": ".xml"
  640. }
  641. },
  642. "runtime": {
  643. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  644. "related": ".xml"
  645. }
  646. }
  647. },
  648. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  649. "type": "package",
  650. "dependencies": {
  651. "Microsoft.Extensions.Logging.Console": "3.1.30",
  652. "Newtonsoft.Json": "13.0.1"
  653. },
  654. "compile": {
  655. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  656. },
  657. "runtime": {
  658. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  659. },
  660. "frameworkReferences": [
  661. "Microsoft.AspNetCore.App"
  662. ]
  663. },
  664. "Microsoft.AspNetCore.Routing/2.2.0": {
  665. "type": "package",
  666. "dependencies": {
  667. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  668. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  669. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  670. "Microsoft.Extensions.ObjectPool": "2.2.0",
  671. "Microsoft.Extensions.Options": "2.2.0"
  672. },
  673. "compile": {
  674. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  675. "related": ".xml"
  676. }
  677. },
  678. "runtime": {
  679. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  680. "related": ".xml"
  681. }
  682. }
  683. },
  684. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  685. "type": "package",
  686. "dependencies": {
  687. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  688. },
  689. "compile": {
  690. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  691. "related": ".xml"
  692. }
  693. },
  694. "runtime": {
  695. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  696. "related": ".xml"
  697. }
  698. }
  699. },
  700. "Microsoft.AspNetCore.SignalR/1.1.0": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.AspNetCore.Http.Connections": "1.1.0",
  704. "Microsoft.AspNetCore.SignalR.Core": "1.1.0"
  705. },
  706. "compile": {
  707. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  708. "related": ".xml"
  709. }
  710. },
  711. "runtime": {
  712. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {
  713. "related": ".xml"
  714. }
  715. }
  716. },
  717. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  718. "type": "package",
  719. "dependencies": {
  720. "Microsoft.AspNetCore.Http.Connections.Client": "3.1.20",
  721. "Microsoft.AspNetCore.SignalR.Client.Core": "3.1.20"
  722. },
  723. "compile": {
  724. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  725. "related": ".xml"
  726. }
  727. },
  728. "runtime": {
  729. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll": {
  730. "related": ".xml"
  731. }
  732. }
  733. },
  734. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.AspNetCore.SignalR.Common": "3.1.20",
  738. "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.20",
  739. "Microsoft.Extensions.DependencyInjection": "3.1.20",
  740. "Microsoft.Extensions.Logging": "3.1.20",
  741. "System.Threading.Channels": "4.7.1"
  742. },
  743. "compile": {
  744. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  745. "related": ".xml"
  746. }
  747. },
  748. "runtime": {
  749. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll": {
  750. "related": ".xml"
  751. }
  752. }
  753. },
  754. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  755. "type": "package",
  756. "dependencies": {
  757. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.20",
  758. "Microsoft.Extensions.Options": "3.1.20"
  759. },
  760. "compile": {
  761. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  762. "related": ".xml"
  763. }
  764. },
  765. "runtime": {
  766. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll": {
  767. "related": ".xml"
  768. }
  769. }
  770. },
  771. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  772. "type": "package",
  773. "dependencies": {
  774. "Microsoft.AspNetCore.Authorization": "2.2.0",
  775. "Microsoft.AspNetCore.SignalR.Common": "1.1.0",
  776. "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0",
  777. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  778. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  779. "System.Reflection.Emit": "4.3.0",
  780. "System.Threading.Channels": "4.5.0"
  781. },
  782. "compile": {
  783. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  784. "related": ".xml"
  785. }
  786. },
  787. "runtime": {
  788. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {
  789. "related": ".xml"
  790. }
  791. }
  792. },
  793. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  794. "type": "package",
  795. "dependencies": {
  796. "Microsoft.AspNetCore.SignalR.Common": "3.1.20"
  797. },
  798. "compile": {
  799. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  800. "related": ".xml"
  801. }
  802. },
  803. "runtime": {
  804. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  805. "related": ".xml"
  806. }
  807. }
  808. },
  809. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  810. "type": "package",
  811. "dependencies": {
  812. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  813. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  814. "Microsoft.Extensions.Options": "2.2.0",
  815. "System.Net.WebSockets.WebSocketProtocol": "4.5.1"
  816. },
  817. "compile": {
  818. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  819. "related": ".xml"
  820. }
  821. },
  822. "runtime": {
  823. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
  824. "related": ".xml"
  825. }
  826. }
  827. },
  828. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  829. "type": "package",
  830. "dependencies": {
  831. "Microsoft.Net.Http.Headers": "2.2.0",
  832. "System.Text.Encodings.Web": "4.5.0"
  833. },
  834. "compile": {
  835. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  836. "related": ".xml"
  837. }
  838. },
  839. "runtime": {
  840. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  841. "related": ".xml"
  842. }
  843. }
  844. },
  845. "Microsoft.CSharp/4.7.0": {
  846. "type": "package",
  847. "compile": {
  848. "ref/netcoreapp2.0/_._": {}
  849. },
  850. "runtime": {
  851. "lib/netcoreapp2.0/_._": {}
  852. }
  853. },
  854. "Microsoft.EntityFrameworkCore/5.0.0": {
  855. "type": "package",
  856. "dependencies": {
  857. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  858. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  859. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  860. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  861. "Microsoft.Extensions.Logging": "5.0.0",
  862. "System.Collections.Immutable": "5.0.0",
  863. "System.ComponentModel.Annotations": "5.0.0",
  864. "System.Diagnostics.DiagnosticSource": "5.0.0"
  865. },
  866. "compile": {
  867. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  868. "related": ".xml"
  869. }
  870. },
  871. "runtime": {
  872. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  873. "related": ".xml"
  874. }
  875. }
  876. },
  877. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  878. "type": "package",
  879. "compile": {
  880. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtime": {
  885. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  886. "related": ".xml"
  887. }
  888. }
  889. },
  890. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  891. "type": "package",
  892. "compile": {
  893. "lib/netstandard2.0/_._": {}
  894. },
  895. "runtime": {
  896. "lib/netstandard2.0/_._": {}
  897. }
  898. },
  899. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  900. "type": "package",
  901. "dependencies": {
  902. "Microsoft.EntityFrameworkCore": "5.0.0",
  903. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  904. },
  905. "compile": {
  906. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  907. "related": ".xml"
  908. }
  909. },
  910. "runtime": {
  911. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  912. "related": ".xml"
  913. }
  914. }
  915. },
  916. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  917. "type": "package",
  918. "dependencies": {
  919. "Microsoft.Extensions.Primitives": "5.0.0"
  920. },
  921. "compile": {
  922. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  923. "related": ".xml"
  924. }
  925. },
  926. "runtime": {
  927. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  928. "related": ".xml"
  929. }
  930. }
  931. },
  932. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  933. "type": "package",
  934. "dependencies": {
  935. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  936. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  937. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  938. "Microsoft.Extensions.Options": "5.0.0",
  939. "Microsoft.Extensions.Primitives": "5.0.0"
  940. },
  941. "compile": {
  942. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  943. "related": ".xml"
  944. }
  945. },
  946. "runtime": {
  947. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  948. "related": ".xml"
  949. }
  950. }
  951. },
  952. "Microsoft.Extensions.Configuration/5.0.0": {
  953. "type": "package",
  954. "dependencies": {
  955. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  956. "Microsoft.Extensions.Primitives": "5.0.0"
  957. },
  958. "compile": {
  959. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  960. "related": ".xml"
  961. }
  962. },
  963. "runtime": {
  964. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  965. "related": ".xml"
  966. }
  967. }
  968. },
  969. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  970. "type": "package",
  971. "dependencies": {
  972. "Microsoft.Extensions.Primitives": "5.0.0"
  973. },
  974. "compile": {
  975. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  976. "related": ".xml"
  977. }
  978. },
  979. "runtime": {
  980. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  981. "related": ".xml"
  982. }
  983. }
  984. },
  985. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  986. "type": "package",
  987. "dependencies": {
  988. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  989. },
  990. "compile": {
  991. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  992. "related": ".xml"
  993. }
  994. },
  995. "runtime": {
  996. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  997. "related": ".xml"
  998. }
  999. }
  1000. },
  1001. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  1002. "type": "package",
  1003. "dependencies": {
  1004. "Microsoft.Extensions.Configuration": "5.0.0",
  1005. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1006. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1007. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  1008. "Microsoft.Extensions.Primitives": "5.0.0"
  1009. },
  1010. "compile": {
  1011. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1012. "related": ".xml"
  1013. }
  1014. },
  1015. "runtime": {
  1016. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1017. "related": ".xml"
  1018. }
  1019. }
  1020. },
  1021. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  1022. "type": "package",
  1023. "dependencies": {
  1024. "Microsoft.Extensions.Configuration": "5.0.0",
  1025. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1026. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  1027. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  1028. },
  1029. "compile": {
  1030. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1031. "related": ".xml"
  1032. }
  1033. },
  1034. "runtime": {
  1035. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1036. "related": ".xml"
  1037. }
  1038. }
  1039. },
  1040. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  1041. "type": "package",
  1042. "dependencies": {
  1043. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  1044. },
  1045. "compile": {
  1046. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1047. "related": ".xml"
  1048. }
  1049. },
  1050. "runtime": {
  1051. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1052. "related": ".xml"
  1053. }
  1054. }
  1055. },
  1056. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1057. "type": "package",
  1058. "compile": {
  1059. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1060. "related": ".xml"
  1061. }
  1062. },
  1063. "runtime": {
  1064. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1065. "related": ".xml"
  1066. }
  1067. }
  1068. },
  1069. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  1070. "type": "package",
  1071. "dependencies": {
  1072. "Microsoft.Extensions.Primitives": "5.0.0"
  1073. },
  1074. "compile": {
  1075. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1076. "related": ".xml"
  1077. }
  1078. },
  1079. "runtime": {
  1080. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1081. "related": ".xml"
  1082. }
  1083. }
  1084. },
  1085. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  1086. "type": "package",
  1087. "dependencies": {
  1088. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1089. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  1090. "Microsoft.Extensions.Primitives": "5.0.0"
  1091. },
  1092. "compile": {
  1093. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1094. "related": ".xml"
  1095. }
  1096. },
  1097. "runtime": {
  1098. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1099. "related": ".xml"
  1100. }
  1101. }
  1102. },
  1103. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  1104. "type": "package",
  1105. "compile": {
  1106. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1107. "related": ".xml"
  1108. }
  1109. },
  1110. "runtime": {
  1111. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1112. "related": ".xml"
  1113. }
  1114. }
  1115. },
  1116. "Microsoft.Extensions.Hosting/2.1.0": {
  1117. "type": "package",
  1118. "dependencies": {
  1119. "Microsoft.Extensions.Configuration": "2.1.0",
  1120. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1121. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  1122. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  1123. "Microsoft.Extensions.Logging": "2.1.0"
  1124. },
  1125. "compile": {
  1126. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1127. "related": ".xml"
  1128. }
  1129. },
  1130. "runtime": {
  1131. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  1132. "related": ".xml"
  1133. }
  1134. }
  1135. },
  1136. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  1137. "type": "package",
  1138. "dependencies": {
  1139. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  1140. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  1141. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  1142. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  1143. },
  1144. "compile": {
  1145. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1146. "related": ".xml"
  1147. }
  1148. },
  1149. "runtime": {
  1150. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1151. "related": ".xml"
  1152. }
  1153. }
  1154. },
  1155. "Microsoft.Extensions.Http/5.0.0": {
  1156. "type": "package",
  1157. "dependencies": {
  1158. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1159. "Microsoft.Extensions.Logging": "5.0.0",
  1160. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1161. "Microsoft.Extensions.Options": "5.0.0"
  1162. },
  1163. "compile": {
  1164. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1165. "related": ".xml"
  1166. }
  1167. },
  1168. "runtime": {
  1169. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  1170. "related": ".xml"
  1171. }
  1172. }
  1173. },
  1174. "Microsoft.Extensions.Logging/5.0.0": {
  1175. "type": "package",
  1176. "dependencies": {
  1177. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1178. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1179. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1180. "Microsoft.Extensions.Options": "5.0.0"
  1181. },
  1182. "compile": {
  1183. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1184. "related": ".xml"
  1185. }
  1186. },
  1187. "runtime": {
  1188. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1189. "related": ".xml"
  1190. }
  1191. }
  1192. },
  1193. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1194. "type": "package",
  1195. "compile": {
  1196. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1197. "related": ".xml"
  1198. }
  1199. },
  1200. "runtime": {
  1201. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1202. "related": ".xml"
  1203. }
  1204. }
  1205. },
  1206. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  1207. "type": "package",
  1208. "dependencies": {
  1209. "Microsoft.Extensions.Logging": "3.1.30",
  1210. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  1211. },
  1212. "compile": {
  1213. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1214. "related": ".xml"
  1215. }
  1216. },
  1217. "runtime": {
  1218. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  1219. "related": ".xml"
  1220. }
  1221. }
  1222. },
  1223. "Microsoft.Extensions.Logging.Console/3.1.30": {
  1224. "type": "package",
  1225. "dependencies": {
  1226. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1227. "Microsoft.Extensions.Logging": "3.1.30",
  1228. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  1229. },
  1230. "compile": {
  1231. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1232. "related": ".xml"
  1233. }
  1234. },
  1235. "runtime": {
  1236. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  1237. "related": ".xml"
  1238. }
  1239. }
  1240. },
  1241. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1242. "type": "package",
  1243. "compile": {
  1244. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1245. "related": ".xml"
  1246. }
  1247. },
  1248. "runtime": {
  1249. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1250. "related": ".xml"
  1251. }
  1252. }
  1253. },
  1254. "Microsoft.Extensions.Options/5.0.0": {
  1255. "type": "package",
  1256. "dependencies": {
  1257. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1258. "Microsoft.Extensions.Primitives": "5.0.0"
  1259. },
  1260. "compile": {
  1261. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1262. "related": ".xml"
  1263. }
  1264. },
  1265. "runtime": {
  1266. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1267. "related": ".xml"
  1268. }
  1269. }
  1270. },
  1271. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1272. "type": "package",
  1273. "dependencies": {
  1274. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1275. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1276. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1277. "Microsoft.Extensions.Options": "3.1.30"
  1278. },
  1279. "compile": {
  1280. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1281. "related": ".xml"
  1282. }
  1283. },
  1284. "runtime": {
  1285. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1286. "related": ".xml"
  1287. }
  1288. }
  1289. },
  1290. "Microsoft.Extensions.Primitives/5.0.0": {
  1291. "type": "package",
  1292. "compile": {
  1293. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1294. "related": ".xml"
  1295. }
  1296. },
  1297. "runtime": {
  1298. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1299. "related": ".xml"
  1300. }
  1301. }
  1302. },
  1303. "Microsoft.Net.Http.Headers/2.2.0": {
  1304. "type": "package",
  1305. "dependencies": {
  1306. "Microsoft.Extensions.Primitives": "2.2.0",
  1307. "System.Buffers": "4.5.0"
  1308. },
  1309. "compile": {
  1310. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1311. "related": ".xml"
  1312. }
  1313. },
  1314. "runtime": {
  1315. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1316. "related": ".xml"
  1317. }
  1318. }
  1319. },
  1320. "Microsoft.NETCore.Platforms/5.0.0": {
  1321. "type": "package",
  1322. "compile": {
  1323. "lib/netstandard1.0/_._": {}
  1324. },
  1325. "runtime": {
  1326. "lib/netstandard1.0/_._": {}
  1327. }
  1328. },
  1329. "Microsoft.NETCore.Targets/1.1.0": {
  1330. "type": "package",
  1331. "compile": {
  1332. "lib/netstandard1.0/_._": {}
  1333. },
  1334. "runtime": {
  1335. "lib/netstandard1.0/_._": {}
  1336. }
  1337. },
  1338. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  1339. "type": "package",
  1340. "build": {
  1341. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1342. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1343. }
  1344. },
  1345. "Microsoft.Win32.Primitives/4.3.0": {
  1346. "type": "package",
  1347. "dependencies": {
  1348. "Microsoft.NETCore.Platforms": "1.1.0",
  1349. "Microsoft.NETCore.Targets": "1.1.0",
  1350. "System.Runtime": "4.3.0"
  1351. },
  1352. "compile": {
  1353. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1354. "related": ".xml"
  1355. }
  1356. }
  1357. },
  1358. "Microsoft.Win32.SystemEvents/5.0.0": {
  1359. "type": "package",
  1360. "dependencies": {
  1361. "Microsoft.NETCore.Platforms": "5.0.0"
  1362. },
  1363. "compile": {
  1364. "ref/netstandard2.0/_._": {
  1365. "related": ".xml"
  1366. }
  1367. },
  1368. "runtime": {
  1369. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1370. "related": ".xml"
  1371. }
  1372. },
  1373. "runtimeTargets": {
  1374. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1375. "assetType": "runtime",
  1376. "rid": "win"
  1377. }
  1378. }
  1379. },
  1380. "MySql.Data/8.0.23": {
  1381. "type": "package",
  1382. "dependencies": {
  1383. "BouncyCastle.NetCore": "1.8.5",
  1384. "Google.Protobuf": "3.11.4",
  1385. "K4os.Compression.LZ4": "1.1.11",
  1386. "K4os.Compression.LZ4.Streams": "1.1.11",
  1387. "K4os.Hash.xxHash": "1.0.6",
  1388. "SSH.NET": "2020.0.0-beta1",
  1389. "System.Buffers": "4.5.1",
  1390. "System.Configuration.ConfigurationManager": "4.4.1",
  1391. "System.Security.Permissions": "4.7.0",
  1392. "System.Text.Encoding.CodePages": "4.4.0"
  1393. },
  1394. "compile": {
  1395. "lib/net5.0/MySql.Data.dll": {
  1396. "related": ".xml"
  1397. },
  1398. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1399. "lib/net5.0/Zstandard.Net.dll": {}
  1400. },
  1401. "runtime": {
  1402. "lib/net5.0/MySql.Data.dll": {
  1403. "related": ".xml"
  1404. },
  1405. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1406. "lib/net5.0/Zstandard.Net.dll": {}
  1407. }
  1408. },
  1409. "MySqlConnector/1.1.0": {
  1410. "type": "package",
  1411. "compile": {
  1412. "lib/net5.0/MySqlConnector.dll": {
  1413. "related": ".xml"
  1414. }
  1415. },
  1416. "runtime": {
  1417. "lib/net5.0/MySqlConnector.dll": {
  1418. "related": ".xml"
  1419. }
  1420. }
  1421. },
  1422. "NETStandard.Library/1.6.1": {
  1423. "type": "package",
  1424. "dependencies": {
  1425. "Microsoft.NETCore.Platforms": "1.1.0",
  1426. "Microsoft.Win32.Primitives": "4.3.0",
  1427. "System.AppContext": "4.3.0",
  1428. "System.Collections": "4.3.0",
  1429. "System.Collections.Concurrent": "4.3.0",
  1430. "System.Console": "4.3.0",
  1431. "System.Diagnostics.Debug": "4.3.0",
  1432. "System.Diagnostics.Tools": "4.3.0",
  1433. "System.Diagnostics.Tracing": "4.3.0",
  1434. "System.Globalization": "4.3.0",
  1435. "System.Globalization.Calendars": "4.3.0",
  1436. "System.IO": "4.3.0",
  1437. "System.IO.Compression": "4.3.0",
  1438. "System.IO.Compression.ZipFile": "4.3.0",
  1439. "System.IO.FileSystem": "4.3.0",
  1440. "System.IO.FileSystem.Primitives": "4.3.0",
  1441. "System.Linq": "4.3.0",
  1442. "System.Linq.Expressions": "4.3.0",
  1443. "System.Net.Http": "4.3.0",
  1444. "System.Net.Primitives": "4.3.0",
  1445. "System.Net.Sockets": "4.3.0",
  1446. "System.ObjectModel": "4.3.0",
  1447. "System.Reflection": "4.3.0",
  1448. "System.Reflection.Extensions": "4.3.0",
  1449. "System.Reflection.Primitives": "4.3.0",
  1450. "System.Resources.ResourceManager": "4.3.0",
  1451. "System.Runtime": "4.3.0",
  1452. "System.Runtime.Extensions": "4.3.0",
  1453. "System.Runtime.Handles": "4.3.0",
  1454. "System.Runtime.InteropServices": "4.3.0",
  1455. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1456. "System.Runtime.Numerics": "4.3.0",
  1457. "System.Security.Cryptography.Algorithms": "4.3.0",
  1458. "System.Security.Cryptography.Encoding": "4.3.0",
  1459. "System.Security.Cryptography.Primitives": "4.3.0",
  1460. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1461. "System.Text.Encoding": "4.3.0",
  1462. "System.Text.Encoding.Extensions": "4.3.0",
  1463. "System.Text.RegularExpressions": "4.3.0",
  1464. "System.Threading": "4.3.0",
  1465. "System.Threading.Tasks": "4.3.0",
  1466. "System.Threading.Timer": "4.3.0",
  1467. "System.Xml.ReaderWriter": "4.3.0",
  1468. "System.Xml.XDocument": "4.3.0"
  1469. }
  1470. },
  1471. "Newtonsoft.Json/13.0.1": {
  1472. "type": "package",
  1473. "compile": {
  1474. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1475. "related": ".xml"
  1476. }
  1477. },
  1478. "runtime": {
  1479. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1480. "related": ".xml"
  1481. }
  1482. }
  1483. },
  1484. "Nito.AsyncEx.Coordination/5.0.0": {
  1485. "type": "package",
  1486. "dependencies": {
  1487. "Nito.AsyncEx.Tasks": "5.0.0",
  1488. "Nito.Collections.Deque": "1.0.4",
  1489. "Nito.Disposables": "2.0.0"
  1490. },
  1491. "compile": {
  1492. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1493. "related": ".xml"
  1494. }
  1495. },
  1496. "runtime": {
  1497. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1498. "related": ".xml"
  1499. }
  1500. }
  1501. },
  1502. "Nito.AsyncEx.Tasks/5.0.0": {
  1503. "type": "package",
  1504. "dependencies": {
  1505. "Nito.Disposables": "2.0.0"
  1506. },
  1507. "compile": {
  1508. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1509. "related": ".xml"
  1510. }
  1511. },
  1512. "runtime": {
  1513. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1514. "related": ".xml"
  1515. }
  1516. }
  1517. },
  1518. "Nito.Collections.Deque/1.0.4": {
  1519. "type": "package",
  1520. "compile": {
  1521. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1522. "related": ".xml"
  1523. }
  1524. },
  1525. "runtime": {
  1526. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1527. "related": ".xml"
  1528. }
  1529. }
  1530. },
  1531. "Nito.Disposables/2.0.0": {
  1532. "type": "package",
  1533. "dependencies": {
  1534. "System.Collections.Immutable": "1.4.0"
  1535. },
  1536. "compile": {
  1537. "lib/netstandard2.0/Nito.Disposables.dll": {
  1538. "related": ".pdb;.xml"
  1539. }
  1540. },
  1541. "runtime": {
  1542. "lib/netstandard2.0/Nito.Disposables.dll": {
  1543. "related": ".pdb;.xml"
  1544. }
  1545. }
  1546. },
  1547. "NLog/4.7.7": {
  1548. "type": "package",
  1549. "compile": {
  1550. "lib/netstandard2.0/NLog.dll": {
  1551. "related": ".xml"
  1552. }
  1553. },
  1554. "runtime": {
  1555. "lib/netstandard2.0/NLog.dll": {
  1556. "related": ".xml"
  1557. }
  1558. }
  1559. },
  1560. "NodaTime/2.4.7": {
  1561. "type": "package",
  1562. "compile": {
  1563. "lib/netstandard2.0/NodaTime.dll": {
  1564. "related": ".pdb;.xml"
  1565. }
  1566. },
  1567. "runtime": {
  1568. "lib/netstandard2.0/NodaTime.dll": {
  1569. "related": ".pdb;.xml"
  1570. }
  1571. }
  1572. },
  1573. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1574. "type": "package",
  1575. "dependencies": {
  1576. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1577. "MySqlConnector": "1.1.0"
  1578. },
  1579. "compile": {
  1580. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1581. "related": ".xml"
  1582. }
  1583. },
  1584. "runtime": {
  1585. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1586. "related": ".xml"
  1587. }
  1588. }
  1589. },
  1590. "QRCoder/1.4.3": {
  1591. "type": "package",
  1592. "dependencies": {
  1593. "System.Drawing.Common": "5.0.3"
  1594. },
  1595. "compile": {
  1596. "lib/net5.0/QRCoder.dll": {}
  1597. },
  1598. "runtime": {
  1599. "lib/net5.0/QRCoder.dll": {}
  1600. }
  1601. },
  1602. "Quartz/3.3.3": {
  1603. "type": "package",
  1604. "dependencies": {
  1605. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1606. "System.Configuration.ConfigurationManager": "4.7.0",
  1607. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1608. },
  1609. "compile": {
  1610. "lib/netstandard2.0/Quartz.dll": {
  1611. "related": ".xml"
  1612. }
  1613. },
  1614. "runtime": {
  1615. "lib/netstandard2.0/Quartz.dll": {
  1616. "related": ".xml"
  1617. }
  1618. }
  1619. },
  1620. "RabbitMQ.Client/6.8.1": {
  1621. "type": "package",
  1622. "dependencies": {
  1623. "System.Memory": "4.5.5",
  1624. "System.Threading.Channels": "7.0.0"
  1625. },
  1626. "compile": {
  1627. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1628. "related": ".xml"
  1629. }
  1630. },
  1631. "runtime": {
  1632. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1633. "related": ".xml"
  1634. }
  1635. }
  1636. },
  1637. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1638. "type": "package",
  1639. "runtimeTargets": {
  1640. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1641. "assetType": "native",
  1642. "rid": "debian.8-x64"
  1643. }
  1644. }
  1645. },
  1646. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1647. "type": "package",
  1648. "runtimeTargets": {
  1649. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1650. "assetType": "native",
  1651. "rid": "fedora.23-x64"
  1652. }
  1653. }
  1654. },
  1655. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1656. "type": "package",
  1657. "runtimeTargets": {
  1658. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1659. "assetType": "native",
  1660. "rid": "fedora.24-x64"
  1661. }
  1662. }
  1663. },
  1664. "runtime.native.System/4.3.0": {
  1665. "type": "package",
  1666. "dependencies": {
  1667. "Microsoft.NETCore.Platforms": "1.1.0",
  1668. "Microsoft.NETCore.Targets": "1.1.0"
  1669. },
  1670. "compile": {
  1671. "lib/netstandard1.0/_._": {}
  1672. },
  1673. "runtime": {
  1674. "lib/netstandard1.0/_._": {}
  1675. }
  1676. },
  1677. "runtime.native.System.IO.Compression/4.3.0": {
  1678. "type": "package",
  1679. "dependencies": {
  1680. "Microsoft.NETCore.Platforms": "1.1.0",
  1681. "Microsoft.NETCore.Targets": "1.1.0"
  1682. },
  1683. "compile": {
  1684. "lib/netstandard1.0/_._": {}
  1685. },
  1686. "runtime": {
  1687. "lib/netstandard1.0/_._": {}
  1688. }
  1689. },
  1690. "runtime.native.System.Net.Http/4.3.0": {
  1691. "type": "package",
  1692. "dependencies": {
  1693. "Microsoft.NETCore.Platforms": "1.1.0",
  1694. "Microsoft.NETCore.Targets": "1.1.0"
  1695. },
  1696. "compile": {
  1697. "lib/netstandard1.0/_._": {}
  1698. },
  1699. "runtime": {
  1700. "lib/netstandard1.0/_._": {}
  1701. }
  1702. },
  1703. "runtime.native.System.Net.Security/4.3.0": {
  1704. "type": "package",
  1705. "dependencies": {
  1706. "Microsoft.NETCore.Platforms": "1.1.0",
  1707. "Microsoft.NETCore.Targets": "1.1.0"
  1708. },
  1709. "compile": {
  1710. "lib/netstandard1.0/_._": {}
  1711. },
  1712. "runtime": {
  1713. "lib/netstandard1.0/_._": {}
  1714. }
  1715. },
  1716. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1720. },
  1721. "compile": {
  1722. "lib/netstandard1.0/_._": {}
  1723. },
  1724. "runtime": {
  1725. "lib/netstandard1.0/_._": {}
  1726. }
  1727. },
  1728. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1729. "type": "package",
  1730. "dependencies": {
  1731. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1732. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1733. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1734. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1735. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1736. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1737. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1738. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1739. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1740. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1741. },
  1742. "compile": {
  1743. "lib/netstandard1.0/_._": {}
  1744. },
  1745. "runtime": {
  1746. "lib/netstandard1.0/_._": {}
  1747. }
  1748. },
  1749. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1750. "type": "package",
  1751. "runtimeTargets": {
  1752. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1753. "assetType": "native",
  1754. "rid": "opensuse.13.2-x64"
  1755. }
  1756. }
  1757. },
  1758. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1759. "type": "package",
  1760. "runtimeTargets": {
  1761. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1762. "assetType": "native",
  1763. "rid": "opensuse.42.1-x64"
  1764. }
  1765. }
  1766. },
  1767. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1768. "type": "package",
  1769. "runtimeTargets": {
  1770. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1771. "assetType": "native",
  1772. "rid": "osx.10.10-x64"
  1773. }
  1774. }
  1775. },
  1776. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1777. "type": "package",
  1778. "runtimeTargets": {
  1779. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1780. "assetType": "native",
  1781. "rid": "osx.10.10-x64"
  1782. }
  1783. }
  1784. },
  1785. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1786. "type": "package",
  1787. "runtimeTargets": {
  1788. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1789. "assetType": "native",
  1790. "rid": "rhel.7-x64"
  1791. }
  1792. }
  1793. },
  1794. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1795. "type": "package",
  1796. "runtimeTargets": {
  1797. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1798. "assetType": "native",
  1799. "rid": "ubuntu.14.04-x64"
  1800. }
  1801. }
  1802. },
  1803. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1804. "type": "package",
  1805. "runtimeTargets": {
  1806. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1807. "assetType": "native",
  1808. "rid": "ubuntu.16.04-x64"
  1809. }
  1810. }
  1811. },
  1812. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1813. "type": "package",
  1814. "runtimeTargets": {
  1815. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1816. "assetType": "native",
  1817. "rid": "ubuntu.16.10-x64"
  1818. }
  1819. }
  1820. },
  1821. "Serilog/2.11.0": {
  1822. "type": "package",
  1823. "compile": {
  1824. "lib/net5.0/Serilog.dll": {
  1825. "related": ".xml"
  1826. }
  1827. },
  1828. "runtime": {
  1829. "lib/net5.0/Serilog.dll": {
  1830. "related": ".xml"
  1831. }
  1832. }
  1833. },
  1834. "Serilog.Sinks.Console/4.0.1": {
  1835. "type": "package",
  1836. "dependencies": {
  1837. "Serilog": "2.10.0"
  1838. },
  1839. "compile": {
  1840. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1841. "related": ".xml"
  1842. }
  1843. },
  1844. "runtime": {
  1845. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1846. "related": ".xml"
  1847. }
  1848. }
  1849. },
  1850. "Serilog.Sinks.File/5.0.0": {
  1851. "type": "package",
  1852. "dependencies": {
  1853. "Serilog": "2.10.0"
  1854. },
  1855. "compile": {
  1856. "lib/net5.0/Serilog.Sinks.File.dll": {
  1857. "related": ".pdb;.xml"
  1858. }
  1859. },
  1860. "runtime": {
  1861. "lib/net5.0/Serilog.Sinks.File.dll": {
  1862. "related": ".pdb;.xml"
  1863. }
  1864. }
  1865. },
  1866. "SixLabors.ImageSharp/2.1.6": {
  1867. "type": "package",
  1868. "dependencies": {
  1869. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1870. "System.Text.Encoding.CodePages": "5.0.0"
  1871. },
  1872. "compile": {
  1873. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1874. "related": ".xml"
  1875. }
  1876. },
  1877. "runtime": {
  1878. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1879. "related": ".xml"
  1880. }
  1881. }
  1882. },
  1883. "SSH.NET/2020.0.0-beta1": {
  1884. "type": "package",
  1885. "dependencies": {
  1886. "SshNet.Security.Cryptography": "[1.3.0]"
  1887. },
  1888. "compile": {
  1889. "lib/netstandard2.0/Renci.SshNet.dll": {
  1890. "related": ".xml"
  1891. }
  1892. },
  1893. "runtime": {
  1894. "lib/netstandard2.0/Renci.SshNet.dll": {
  1895. "related": ".xml"
  1896. }
  1897. }
  1898. },
  1899. "SshNet.Security.Cryptography/1.3.0": {
  1900. "type": "package",
  1901. "compile": {
  1902. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1903. "related": ".xml"
  1904. }
  1905. },
  1906. "runtime": {
  1907. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1908. "related": ".xml"
  1909. }
  1910. }
  1911. },
  1912. "StackExchange.Redis/1.2.4": {
  1913. "type": "package",
  1914. "dependencies": {
  1915. "NETStandard.Library": "1.6.1",
  1916. "System.Collections": "4.3.0",
  1917. "System.Collections.Concurrent": "4.3.0",
  1918. "System.Collections.NonGeneric": "4.3.0",
  1919. "System.Diagnostics.Tools": "4.3.0",
  1920. "System.IO.Compression": "4.3.0",
  1921. "System.IO.FileSystem": "4.3.0",
  1922. "System.Linq": "4.3.0",
  1923. "System.Net.NameResolution": "4.3.0",
  1924. "System.Net.Security": "4.3.0",
  1925. "System.Net.Sockets": "4.3.0",
  1926. "System.Reflection.Emit": "4.3.0",
  1927. "System.Reflection.Emit.Lightweight": "4.3.0",
  1928. "System.Reflection.TypeExtensions": "4.3.0",
  1929. "System.Runtime.Extensions": "4.3.0",
  1930. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1931. "System.Security.Cryptography.Algorithms": "4.3.0",
  1932. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1933. "System.Text.RegularExpressions": "4.3.0",
  1934. "System.Threading": "4.3.0",
  1935. "System.Threading.Thread": "4.3.0",
  1936. "System.Threading.ThreadPool": "4.3.0",
  1937. "System.Threading.Timer": "4.3.0"
  1938. },
  1939. "compile": {
  1940. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1941. "related": ".xml"
  1942. }
  1943. },
  1944. "runtime": {
  1945. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1946. "related": ".xml"
  1947. }
  1948. }
  1949. },
  1950. "System.AppContext/4.3.0": {
  1951. "type": "package",
  1952. "dependencies": {
  1953. "System.Runtime": "4.3.0"
  1954. },
  1955. "compile": {
  1956. "ref/netstandard1.6/System.AppContext.dll": {
  1957. "related": ".xml"
  1958. }
  1959. },
  1960. "runtime": {
  1961. "lib/netstandard1.6/System.AppContext.dll": {}
  1962. }
  1963. },
  1964. "System.Buffers/4.5.1": {
  1965. "type": "package",
  1966. "compile": {
  1967. "ref/netcoreapp2.0/_._": {}
  1968. },
  1969. "runtime": {
  1970. "lib/netcoreapp2.0/_._": {}
  1971. }
  1972. },
  1973. "System.Collections/4.3.0": {
  1974. "type": "package",
  1975. "dependencies": {
  1976. "Microsoft.NETCore.Platforms": "1.1.0",
  1977. "Microsoft.NETCore.Targets": "1.1.0",
  1978. "System.Runtime": "4.3.0"
  1979. },
  1980. "compile": {
  1981. "ref/netstandard1.3/System.Collections.dll": {
  1982. "related": ".xml"
  1983. }
  1984. }
  1985. },
  1986. "System.Collections.Concurrent/4.3.0": {
  1987. "type": "package",
  1988. "dependencies": {
  1989. "System.Collections": "4.3.0",
  1990. "System.Diagnostics.Debug": "4.3.0",
  1991. "System.Diagnostics.Tracing": "4.3.0",
  1992. "System.Globalization": "4.3.0",
  1993. "System.Reflection": "4.3.0",
  1994. "System.Resources.ResourceManager": "4.3.0",
  1995. "System.Runtime": "4.3.0",
  1996. "System.Runtime.Extensions": "4.3.0",
  1997. "System.Threading": "4.3.0",
  1998. "System.Threading.Tasks": "4.3.0"
  1999. },
  2000. "compile": {
  2001. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  2002. "related": ".xml"
  2003. }
  2004. },
  2005. "runtime": {
  2006. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2007. }
  2008. },
  2009. "System.Collections.Immutable/5.0.0": {
  2010. "type": "package",
  2011. "compile": {
  2012. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2013. "related": ".xml"
  2014. }
  2015. },
  2016. "runtime": {
  2017. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2018. "related": ".xml"
  2019. }
  2020. }
  2021. },
  2022. "System.Collections.NonGeneric/4.3.0": {
  2023. "type": "package",
  2024. "dependencies": {
  2025. "System.Diagnostics.Debug": "4.3.0",
  2026. "System.Globalization": "4.3.0",
  2027. "System.Resources.ResourceManager": "4.3.0",
  2028. "System.Runtime": "4.3.0",
  2029. "System.Runtime.Extensions": "4.3.0",
  2030. "System.Threading": "4.3.0"
  2031. },
  2032. "compile": {
  2033. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  2034. "related": ".xml"
  2035. }
  2036. },
  2037. "runtime": {
  2038. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2039. }
  2040. },
  2041. "System.ComponentModel/4.3.0": {
  2042. "type": "package",
  2043. "dependencies": {
  2044. "System.Runtime": "4.3.0"
  2045. },
  2046. "compile": {
  2047. "ref/netstandard1.0/System.ComponentModel.dll": {
  2048. "related": ".xml"
  2049. }
  2050. },
  2051. "runtime": {
  2052. "lib/netstandard1.3/System.ComponentModel.dll": {}
  2053. }
  2054. },
  2055. "System.ComponentModel.Annotations/5.0.0": {
  2056. "type": "package",
  2057. "compile": {
  2058. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2059. "related": ".xml"
  2060. }
  2061. },
  2062. "runtime": {
  2063. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2064. "related": ".xml"
  2065. }
  2066. }
  2067. },
  2068. "System.ComponentModel.EventBasedAsync/4.3.0": {
  2069. "type": "package",
  2070. "dependencies": {
  2071. "System.Resources.ResourceManager": "4.3.0",
  2072. "System.Runtime": "4.3.0",
  2073. "System.Threading": "4.3.0",
  2074. "System.Threading.Tasks": "4.3.0"
  2075. },
  2076. "compile": {
  2077. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  2078. "related": ".xml"
  2079. }
  2080. },
  2081. "runtime": {
  2082. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  2083. }
  2084. },
  2085. "System.ComponentModel.Primitives/4.3.0": {
  2086. "type": "package",
  2087. "dependencies": {
  2088. "System.ComponentModel": "4.3.0",
  2089. "System.Resources.ResourceManager": "4.3.0",
  2090. "System.Runtime": "4.3.0"
  2091. },
  2092. "compile": {
  2093. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  2094. "related": ".xml"
  2095. }
  2096. },
  2097. "runtime": {
  2098. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2099. }
  2100. },
  2101. "System.Configuration.ConfigurationManager/4.7.0": {
  2102. "type": "package",
  2103. "dependencies": {
  2104. "System.Security.Cryptography.ProtectedData": "4.7.0",
  2105. "System.Security.Permissions": "4.7.0"
  2106. },
  2107. "compile": {
  2108. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2109. "related": ".xml"
  2110. }
  2111. },
  2112. "runtime": {
  2113. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2114. "related": ".xml"
  2115. }
  2116. }
  2117. },
  2118. "System.Console/4.3.0": {
  2119. "type": "package",
  2120. "dependencies": {
  2121. "Microsoft.NETCore.Platforms": "1.1.0",
  2122. "Microsoft.NETCore.Targets": "1.1.0",
  2123. "System.IO": "4.3.0",
  2124. "System.Runtime": "4.3.0",
  2125. "System.Text.Encoding": "4.3.0"
  2126. },
  2127. "compile": {
  2128. "ref/netstandard1.3/System.Console.dll": {
  2129. "related": ".xml"
  2130. }
  2131. }
  2132. },
  2133. "System.Diagnostics.Debug/4.3.0": {
  2134. "type": "package",
  2135. "dependencies": {
  2136. "Microsoft.NETCore.Platforms": "1.1.0",
  2137. "Microsoft.NETCore.Targets": "1.1.0",
  2138. "System.Runtime": "4.3.0"
  2139. },
  2140. "compile": {
  2141. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2142. "related": ".xml"
  2143. }
  2144. }
  2145. },
  2146. "System.Diagnostics.DiagnosticSource/5.0.0": {
  2147. "type": "package",
  2148. "compile": {
  2149. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2150. "related": ".xml"
  2151. }
  2152. },
  2153. "runtime": {
  2154. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2155. "related": ".xml"
  2156. }
  2157. }
  2158. },
  2159. "System.Diagnostics.Tools/4.3.0": {
  2160. "type": "package",
  2161. "dependencies": {
  2162. "Microsoft.NETCore.Platforms": "1.1.0",
  2163. "Microsoft.NETCore.Targets": "1.1.0",
  2164. "System.Runtime": "4.3.0"
  2165. },
  2166. "compile": {
  2167. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2168. "related": ".xml"
  2169. }
  2170. }
  2171. },
  2172. "System.Diagnostics.Tracing/4.3.0": {
  2173. "type": "package",
  2174. "dependencies": {
  2175. "Microsoft.NETCore.Platforms": "1.1.0",
  2176. "Microsoft.NETCore.Targets": "1.1.0",
  2177. "System.Runtime": "4.3.0"
  2178. },
  2179. "compile": {
  2180. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2181. "related": ".xml"
  2182. }
  2183. }
  2184. },
  2185. "System.Drawing.Common/5.0.3": {
  2186. "type": "package",
  2187. "dependencies": {
  2188. "Microsoft.Win32.SystemEvents": "5.0.0"
  2189. },
  2190. "compile": {
  2191. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  2192. "related": ".xml"
  2193. }
  2194. },
  2195. "runtime": {
  2196. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2197. "related": ".xml"
  2198. }
  2199. },
  2200. "runtimeTargets": {
  2201. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2202. "assetType": "runtime",
  2203. "rid": "unix"
  2204. },
  2205. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2206. "assetType": "runtime",
  2207. "rid": "win"
  2208. }
  2209. }
  2210. },
  2211. "System.Globalization/4.3.0": {
  2212. "type": "package",
  2213. "dependencies": {
  2214. "Microsoft.NETCore.Platforms": "1.1.0",
  2215. "Microsoft.NETCore.Targets": "1.1.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.3/System.Globalization.dll": {
  2220. "related": ".xml"
  2221. }
  2222. }
  2223. },
  2224. "System.Globalization.Calendars/4.3.0": {
  2225. "type": "package",
  2226. "dependencies": {
  2227. "Microsoft.NETCore.Platforms": "1.1.0",
  2228. "Microsoft.NETCore.Targets": "1.1.0",
  2229. "System.Globalization": "4.3.0",
  2230. "System.Runtime": "4.3.0"
  2231. },
  2232. "compile": {
  2233. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2234. "related": ".xml"
  2235. }
  2236. }
  2237. },
  2238. "System.Globalization.Extensions/4.3.0": {
  2239. "type": "package",
  2240. "dependencies": {
  2241. "Microsoft.NETCore.Platforms": "1.1.0",
  2242. "System.Globalization": "4.3.0",
  2243. "System.Resources.ResourceManager": "4.3.0",
  2244. "System.Runtime": "4.3.0",
  2245. "System.Runtime.Extensions": "4.3.0",
  2246. "System.Runtime.InteropServices": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.3/_._": {
  2250. "related": ".xml"
  2251. }
  2252. },
  2253. "runtimeTargets": {
  2254. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2255. "assetType": "runtime",
  2256. "rid": "unix"
  2257. },
  2258. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2259. "assetType": "runtime",
  2260. "rid": "win"
  2261. }
  2262. }
  2263. },
  2264. "System.IO/4.3.0": {
  2265. "type": "package",
  2266. "dependencies": {
  2267. "Microsoft.NETCore.Platforms": "1.1.0",
  2268. "Microsoft.NETCore.Targets": "1.1.0",
  2269. "System.Runtime": "4.3.0",
  2270. "System.Text.Encoding": "4.3.0",
  2271. "System.Threading.Tasks": "4.3.0"
  2272. },
  2273. "compile": {
  2274. "ref/netstandard1.5/System.IO.dll": {
  2275. "related": ".xml"
  2276. }
  2277. }
  2278. },
  2279. "System.IO.Compression/4.3.0": {
  2280. "type": "package",
  2281. "dependencies": {
  2282. "Microsoft.NETCore.Platforms": "1.1.0",
  2283. "System.Buffers": "4.3.0",
  2284. "System.Collections": "4.3.0",
  2285. "System.Diagnostics.Debug": "4.3.0",
  2286. "System.IO": "4.3.0",
  2287. "System.Resources.ResourceManager": "4.3.0",
  2288. "System.Runtime": "4.3.0",
  2289. "System.Runtime.Extensions": "4.3.0",
  2290. "System.Runtime.Handles": "4.3.0",
  2291. "System.Runtime.InteropServices": "4.3.0",
  2292. "System.Text.Encoding": "4.3.0",
  2293. "System.Threading": "4.3.0",
  2294. "System.Threading.Tasks": "4.3.0",
  2295. "runtime.native.System": "4.3.0",
  2296. "runtime.native.System.IO.Compression": "4.3.0"
  2297. },
  2298. "compile": {
  2299. "ref/netstandard1.3/System.IO.Compression.dll": {
  2300. "related": ".xml"
  2301. }
  2302. },
  2303. "runtimeTargets": {
  2304. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2305. "assetType": "runtime",
  2306. "rid": "unix"
  2307. },
  2308. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2309. "assetType": "runtime",
  2310. "rid": "win"
  2311. }
  2312. }
  2313. },
  2314. "System.IO.Compression.ZipFile/4.3.0": {
  2315. "type": "package",
  2316. "dependencies": {
  2317. "System.Buffers": "4.3.0",
  2318. "System.IO": "4.3.0",
  2319. "System.IO.Compression": "4.3.0",
  2320. "System.IO.FileSystem": "4.3.0",
  2321. "System.IO.FileSystem.Primitives": "4.3.0",
  2322. "System.Resources.ResourceManager": "4.3.0",
  2323. "System.Runtime": "4.3.0",
  2324. "System.Runtime.Extensions": "4.3.0",
  2325. "System.Text.Encoding": "4.3.0"
  2326. },
  2327. "compile": {
  2328. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2329. "related": ".xml"
  2330. }
  2331. },
  2332. "runtime": {
  2333. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2334. }
  2335. },
  2336. "System.IO.FileSystem/4.3.0": {
  2337. "type": "package",
  2338. "dependencies": {
  2339. "Microsoft.NETCore.Platforms": "1.1.0",
  2340. "Microsoft.NETCore.Targets": "1.1.0",
  2341. "System.IO": "4.3.0",
  2342. "System.IO.FileSystem.Primitives": "4.3.0",
  2343. "System.Runtime": "4.3.0",
  2344. "System.Runtime.Handles": "4.3.0",
  2345. "System.Text.Encoding": "4.3.0",
  2346. "System.Threading.Tasks": "4.3.0"
  2347. },
  2348. "compile": {
  2349. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2350. "related": ".xml"
  2351. }
  2352. }
  2353. },
  2354. "System.IO.FileSystem.Primitives/4.3.0": {
  2355. "type": "package",
  2356. "dependencies": {
  2357. "System.Runtime": "4.3.0"
  2358. },
  2359. "compile": {
  2360. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2361. "related": ".xml"
  2362. }
  2363. },
  2364. "runtime": {
  2365. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2366. }
  2367. },
  2368. "System.IO.Pipelines/5.0.0": {
  2369. "type": "package",
  2370. "compile": {
  2371. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2372. "related": ".xml"
  2373. }
  2374. },
  2375. "runtime": {
  2376. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2377. "related": ".xml"
  2378. }
  2379. }
  2380. },
  2381. "System.Linq/4.3.0": {
  2382. "type": "package",
  2383. "dependencies": {
  2384. "System.Collections": "4.3.0",
  2385. "System.Diagnostics.Debug": "4.3.0",
  2386. "System.Resources.ResourceManager": "4.3.0",
  2387. "System.Runtime": "4.3.0",
  2388. "System.Runtime.Extensions": "4.3.0"
  2389. },
  2390. "compile": {
  2391. "ref/netstandard1.6/System.Linq.dll": {
  2392. "related": ".xml"
  2393. }
  2394. },
  2395. "runtime": {
  2396. "lib/netstandard1.6/System.Linq.dll": {}
  2397. }
  2398. },
  2399. "System.Linq.Expressions/4.3.0": {
  2400. "type": "package",
  2401. "dependencies": {
  2402. "System.Collections": "4.3.0",
  2403. "System.Diagnostics.Debug": "4.3.0",
  2404. "System.Globalization": "4.3.0",
  2405. "System.IO": "4.3.0",
  2406. "System.Linq": "4.3.0",
  2407. "System.ObjectModel": "4.3.0",
  2408. "System.Reflection": "4.3.0",
  2409. "System.Reflection.Emit": "4.3.0",
  2410. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2411. "System.Reflection.Emit.Lightweight": "4.3.0",
  2412. "System.Reflection.Extensions": "4.3.0",
  2413. "System.Reflection.Primitives": "4.3.0",
  2414. "System.Reflection.TypeExtensions": "4.3.0",
  2415. "System.Resources.ResourceManager": "4.3.0",
  2416. "System.Runtime": "4.3.0",
  2417. "System.Runtime.Extensions": "4.3.0",
  2418. "System.Threading": "4.3.0"
  2419. },
  2420. "compile": {
  2421. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2422. "related": ".xml"
  2423. }
  2424. },
  2425. "runtime": {
  2426. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2427. }
  2428. },
  2429. "System.Memory/4.5.5": {
  2430. "type": "package",
  2431. "compile": {
  2432. "ref/netcoreapp2.1/_._": {}
  2433. },
  2434. "runtime": {
  2435. "lib/netcoreapp2.1/_._": {}
  2436. }
  2437. },
  2438. "System.Net.Http/4.3.2": {
  2439. "type": "package",
  2440. "dependencies": {
  2441. "Microsoft.NETCore.Platforms": "1.1.0",
  2442. "System.Collections": "4.3.0",
  2443. "System.Diagnostics.Debug": "4.3.0",
  2444. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2445. "System.Diagnostics.Tracing": "4.3.0",
  2446. "System.Globalization": "4.3.0",
  2447. "System.Globalization.Extensions": "4.3.0",
  2448. "System.IO": "4.3.0",
  2449. "System.IO.FileSystem": "4.3.0",
  2450. "System.Net.Primitives": "4.3.0",
  2451. "System.Resources.ResourceManager": "4.3.0",
  2452. "System.Runtime": "4.3.0",
  2453. "System.Runtime.Extensions": "4.3.0",
  2454. "System.Runtime.Handles": "4.3.0",
  2455. "System.Runtime.InteropServices": "4.3.0",
  2456. "System.Security.Cryptography.Algorithms": "4.3.0",
  2457. "System.Security.Cryptography.Encoding": "4.3.0",
  2458. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2459. "System.Security.Cryptography.Primitives": "4.3.0",
  2460. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2461. "System.Text.Encoding": "4.3.0",
  2462. "System.Threading": "4.3.0",
  2463. "System.Threading.Tasks": "4.3.0",
  2464. "runtime.native.System": "4.3.0",
  2465. "runtime.native.System.Net.Http": "4.3.0",
  2466. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2467. },
  2468. "compile": {
  2469. "ref/netstandard1.3/System.Net.Http.dll": {}
  2470. },
  2471. "runtimeTargets": {
  2472. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2473. "assetType": "runtime",
  2474. "rid": "unix"
  2475. },
  2476. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2477. "assetType": "runtime",
  2478. "rid": "win"
  2479. }
  2480. }
  2481. },
  2482. "System.Net.NameResolution/4.3.0": {
  2483. "type": "package",
  2484. "dependencies": {
  2485. "Microsoft.NETCore.Platforms": "1.1.0",
  2486. "System.Collections": "4.3.0",
  2487. "System.Diagnostics.Tracing": "4.3.0",
  2488. "System.Globalization": "4.3.0",
  2489. "System.Net.Primitives": "4.3.0",
  2490. "System.Resources.ResourceManager": "4.3.0",
  2491. "System.Runtime": "4.3.0",
  2492. "System.Runtime.Extensions": "4.3.0",
  2493. "System.Runtime.Handles": "4.3.0",
  2494. "System.Runtime.InteropServices": "4.3.0",
  2495. "System.Security.Principal.Windows": "4.3.0",
  2496. "System.Threading": "4.3.0",
  2497. "System.Threading.Tasks": "4.3.0",
  2498. "runtime.native.System": "4.3.0"
  2499. },
  2500. "compile": {
  2501. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2502. "related": ".xml"
  2503. }
  2504. },
  2505. "runtimeTargets": {
  2506. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2507. "assetType": "runtime",
  2508. "rid": "unix"
  2509. },
  2510. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2511. "assetType": "runtime",
  2512. "rid": "win"
  2513. }
  2514. }
  2515. },
  2516. "System.Net.Primitives/4.3.0": {
  2517. "type": "package",
  2518. "dependencies": {
  2519. "Microsoft.NETCore.Platforms": "1.1.0",
  2520. "Microsoft.NETCore.Targets": "1.1.0",
  2521. "System.Runtime": "4.3.0",
  2522. "System.Runtime.Handles": "4.3.0"
  2523. },
  2524. "compile": {
  2525. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2526. "related": ".xml"
  2527. }
  2528. }
  2529. },
  2530. "System.Net.Security/4.3.0": {
  2531. "type": "package",
  2532. "dependencies": {
  2533. "Microsoft.NETCore.Platforms": "1.1.0",
  2534. "Microsoft.Win32.Primitives": "4.3.0",
  2535. "System.Collections": "4.3.0",
  2536. "System.Collections.Concurrent": "4.3.0",
  2537. "System.Diagnostics.Tracing": "4.3.0",
  2538. "System.Globalization": "4.3.0",
  2539. "System.Globalization.Extensions": "4.3.0",
  2540. "System.IO": "4.3.0",
  2541. "System.Net.Primitives": "4.3.0",
  2542. "System.Resources.ResourceManager": "4.3.0",
  2543. "System.Runtime": "4.3.0",
  2544. "System.Runtime.Extensions": "4.3.0",
  2545. "System.Runtime.Handles": "4.3.0",
  2546. "System.Runtime.InteropServices": "4.3.0",
  2547. "System.Security.Claims": "4.3.0",
  2548. "System.Security.Cryptography.Algorithms": "4.3.0",
  2549. "System.Security.Cryptography.Encoding": "4.3.0",
  2550. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2551. "System.Security.Cryptography.Primitives": "4.3.0",
  2552. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2553. "System.Security.Principal": "4.3.0",
  2554. "System.Text.Encoding": "4.3.0",
  2555. "System.Threading": "4.3.0",
  2556. "System.Threading.Tasks": "4.3.0",
  2557. "System.Threading.ThreadPool": "4.3.0",
  2558. "runtime.native.System": "4.3.0",
  2559. "runtime.native.System.Net.Security": "4.3.0",
  2560. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2561. },
  2562. "compile": {
  2563. "ref/netstandard1.3/System.Net.Security.dll": {
  2564. "related": ".xml"
  2565. }
  2566. },
  2567. "runtimeTargets": {
  2568. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2569. "assetType": "runtime",
  2570. "rid": "unix"
  2571. },
  2572. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2573. "assetType": "runtime",
  2574. "rid": "win"
  2575. }
  2576. }
  2577. },
  2578. "System.Net.Sockets/4.3.0": {
  2579. "type": "package",
  2580. "dependencies": {
  2581. "Microsoft.NETCore.Platforms": "1.1.0",
  2582. "Microsoft.NETCore.Targets": "1.1.0",
  2583. "System.IO": "4.3.0",
  2584. "System.Net.Primitives": "4.3.0",
  2585. "System.Runtime": "4.3.0",
  2586. "System.Threading.Tasks": "4.3.0"
  2587. },
  2588. "compile": {
  2589. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2590. "related": ".xml"
  2591. }
  2592. }
  2593. },
  2594. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  2595. "type": "package",
  2596. "compile": {
  2597. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2598. },
  2599. "runtime": {
  2600. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2601. }
  2602. },
  2603. "System.ObjectModel/4.3.0": {
  2604. "type": "package",
  2605. "dependencies": {
  2606. "System.Collections": "4.3.0",
  2607. "System.Diagnostics.Debug": "4.3.0",
  2608. "System.Resources.ResourceManager": "4.3.0",
  2609. "System.Runtime": "4.3.0",
  2610. "System.Threading": "4.3.0"
  2611. },
  2612. "compile": {
  2613. "ref/netstandard1.3/System.ObjectModel.dll": {
  2614. "related": ".xml"
  2615. }
  2616. },
  2617. "runtime": {
  2618. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2619. }
  2620. },
  2621. "System.Reactive/4.4.1": {
  2622. "type": "package",
  2623. "compile": {
  2624. "lib/netcoreapp3.0/_._": {}
  2625. },
  2626. "runtime": {
  2627. "lib/netcoreapp3.0/_._": {}
  2628. },
  2629. "build": {
  2630. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2631. }
  2632. },
  2633. "System.Reflection/4.3.0": {
  2634. "type": "package",
  2635. "dependencies": {
  2636. "Microsoft.NETCore.Platforms": "1.1.0",
  2637. "Microsoft.NETCore.Targets": "1.1.0",
  2638. "System.IO": "4.3.0",
  2639. "System.Reflection.Primitives": "4.3.0",
  2640. "System.Runtime": "4.3.0"
  2641. },
  2642. "compile": {
  2643. "ref/netstandard1.5/System.Reflection.dll": {
  2644. "related": ".xml"
  2645. }
  2646. }
  2647. },
  2648. "System.Reflection.Emit/4.7.0": {
  2649. "type": "package",
  2650. "compile": {
  2651. "ref/netcoreapp2.0/_._": {}
  2652. },
  2653. "runtime": {
  2654. "lib/netcoreapp2.0/_._": {}
  2655. }
  2656. },
  2657. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2658. "type": "package",
  2659. "dependencies": {
  2660. "System.Reflection": "4.3.0",
  2661. "System.Reflection.Primitives": "4.3.0",
  2662. "System.Runtime": "4.3.0"
  2663. },
  2664. "compile": {
  2665. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2666. "related": ".xml"
  2667. }
  2668. },
  2669. "runtime": {
  2670. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2671. }
  2672. },
  2673. "System.Reflection.Emit.Lightweight/4.3.0": {
  2674. "type": "package",
  2675. "dependencies": {
  2676. "System.Reflection": "4.3.0",
  2677. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2678. "System.Reflection.Primitives": "4.3.0",
  2679. "System.Runtime": "4.3.0"
  2680. },
  2681. "compile": {
  2682. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2683. "related": ".xml"
  2684. }
  2685. },
  2686. "runtime": {
  2687. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2688. }
  2689. },
  2690. "System.Reflection.Extensions/4.3.0": {
  2691. "type": "package",
  2692. "dependencies": {
  2693. "Microsoft.NETCore.Platforms": "1.1.0",
  2694. "Microsoft.NETCore.Targets": "1.1.0",
  2695. "System.Reflection": "4.3.0",
  2696. "System.Runtime": "4.3.0"
  2697. },
  2698. "compile": {
  2699. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2700. "related": ".xml"
  2701. }
  2702. }
  2703. },
  2704. "System.Reflection.Primitives/4.3.0": {
  2705. "type": "package",
  2706. "dependencies": {
  2707. "Microsoft.NETCore.Platforms": "1.1.0",
  2708. "Microsoft.NETCore.Targets": "1.1.0",
  2709. "System.Runtime": "4.3.0"
  2710. },
  2711. "compile": {
  2712. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2713. "related": ".xml"
  2714. }
  2715. }
  2716. },
  2717. "System.Reflection.TypeExtensions/4.3.0": {
  2718. "type": "package",
  2719. "dependencies": {
  2720. "System.Reflection": "4.3.0",
  2721. "System.Runtime": "4.3.0"
  2722. },
  2723. "compile": {
  2724. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2725. "related": ".xml"
  2726. }
  2727. },
  2728. "runtime": {
  2729. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2730. }
  2731. },
  2732. "System.Resources.ResourceManager/4.3.0": {
  2733. "type": "package",
  2734. "dependencies": {
  2735. "Microsoft.NETCore.Platforms": "1.1.0",
  2736. "Microsoft.NETCore.Targets": "1.1.0",
  2737. "System.Globalization": "4.3.0",
  2738. "System.Reflection": "4.3.0",
  2739. "System.Runtime": "4.3.0"
  2740. },
  2741. "compile": {
  2742. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2743. "related": ".xml"
  2744. }
  2745. }
  2746. },
  2747. "System.Runtime/4.3.0": {
  2748. "type": "package",
  2749. "dependencies": {
  2750. "Microsoft.NETCore.Platforms": "1.1.0",
  2751. "Microsoft.NETCore.Targets": "1.1.0"
  2752. },
  2753. "compile": {
  2754. "ref/netstandard1.5/System.Runtime.dll": {
  2755. "related": ".xml"
  2756. }
  2757. }
  2758. },
  2759. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2760. "type": "package",
  2761. "compile": {
  2762. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2763. "related": ".xml"
  2764. }
  2765. },
  2766. "runtime": {
  2767. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2768. "related": ".xml"
  2769. }
  2770. }
  2771. },
  2772. "System.Runtime.Extensions/4.3.0": {
  2773. "type": "package",
  2774. "dependencies": {
  2775. "Microsoft.NETCore.Platforms": "1.1.0",
  2776. "Microsoft.NETCore.Targets": "1.1.0",
  2777. "System.Runtime": "4.3.0"
  2778. },
  2779. "compile": {
  2780. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2781. "related": ".xml"
  2782. }
  2783. }
  2784. },
  2785. "System.Runtime.Handles/4.3.0": {
  2786. "type": "package",
  2787. "dependencies": {
  2788. "Microsoft.NETCore.Platforms": "1.1.0",
  2789. "Microsoft.NETCore.Targets": "1.1.0",
  2790. "System.Runtime": "4.3.0"
  2791. },
  2792. "compile": {
  2793. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2794. "related": ".xml"
  2795. }
  2796. }
  2797. },
  2798. "System.Runtime.InteropServices/4.3.0": {
  2799. "type": "package",
  2800. "dependencies": {
  2801. "Microsoft.NETCore.Platforms": "1.1.0",
  2802. "Microsoft.NETCore.Targets": "1.1.0",
  2803. "System.Reflection": "4.3.0",
  2804. "System.Reflection.Primitives": "4.3.0",
  2805. "System.Runtime": "4.3.0",
  2806. "System.Runtime.Handles": "4.3.0"
  2807. },
  2808. "compile": {
  2809. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2810. }
  2811. },
  2812. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2813. "type": "package",
  2814. "dependencies": {
  2815. "System.Reflection": "4.3.0",
  2816. "System.Reflection.Extensions": "4.3.0",
  2817. "System.Resources.ResourceManager": "4.3.0",
  2818. "System.Runtime": "4.3.0",
  2819. "System.Runtime.InteropServices": "4.3.0",
  2820. "System.Threading": "4.3.0",
  2821. "runtime.native.System": "4.3.0"
  2822. },
  2823. "compile": {
  2824. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2825. },
  2826. "runtime": {
  2827. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2828. },
  2829. "runtimeTargets": {
  2830. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2831. "assetType": "runtime",
  2832. "rid": "unix"
  2833. },
  2834. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2835. "assetType": "runtime",
  2836. "rid": "win"
  2837. }
  2838. }
  2839. },
  2840. "System.Runtime.Numerics/4.3.0": {
  2841. "type": "package",
  2842. "dependencies": {
  2843. "System.Globalization": "4.3.0",
  2844. "System.Resources.ResourceManager": "4.3.0",
  2845. "System.Runtime": "4.3.0",
  2846. "System.Runtime.Extensions": "4.3.0"
  2847. },
  2848. "compile": {
  2849. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2850. "related": ".xml"
  2851. }
  2852. },
  2853. "runtime": {
  2854. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2855. }
  2856. },
  2857. "System.Runtime.Serialization.Primitives/4.3.0": {
  2858. "type": "package",
  2859. "dependencies": {
  2860. "System.Resources.ResourceManager": "4.3.0",
  2861. "System.Runtime": "4.3.0"
  2862. },
  2863. "compile": {
  2864. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2865. "related": ".xml"
  2866. }
  2867. },
  2868. "runtime": {
  2869. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2870. }
  2871. },
  2872. "System.Security.AccessControl/4.7.0": {
  2873. "type": "package",
  2874. "dependencies": {
  2875. "Microsoft.NETCore.Platforms": "3.1.0",
  2876. "System.Security.Principal.Windows": "4.7.0"
  2877. },
  2878. "compile": {
  2879. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2880. "related": ".xml"
  2881. }
  2882. },
  2883. "runtime": {
  2884. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2885. "related": ".xml"
  2886. }
  2887. },
  2888. "runtimeTargets": {
  2889. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2890. "assetType": "runtime",
  2891. "rid": "win"
  2892. }
  2893. }
  2894. },
  2895. "System.Security.Claims/4.3.0": {
  2896. "type": "package",
  2897. "dependencies": {
  2898. "System.Collections": "4.3.0",
  2899. "System.Globalization": "4.3.0",
  2900. "System.IO": "4.3.0",
  2901. "System.Resources.ResourceManager": "4.3.0",
  2902. "System.Runtime": "4.3.0",
  2903. "System.Runtime.Extensions": "4.3.0",
  2904. "System.Security.Principal": "4.3.0"
  2905. },
  2906. "compile": {
  2907. "ref/netstandard1.3/_._": {
  2908. "related": ".xml"
  2909. }
  2910. },
  2911. "runtime": {
  2912. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2913. }
  2914. },
  2915. "System.Security.Cryptography.Algorithms/4.3.0": {
  2916. "type": "package",
  2917. "dependencies": {
  2918. "Microsoft.NETCore.Platforms": "1.1.0",
  2919. "System.Collections": "4.3.0",
  2920. "System.IO": "4.3.0",
  2921. "System.Resources.ResourceManager": "4.3.0",
  2922. "System.Runtime": "4.3.0",
  2923. "System.Runtime.Extensions": "4.3.0",
  2924. "System.Runtime.Handles": "4.3.0",
  2925. "System.Runtime.InteropServices": "4.3.0",
  2926. "System.Runtime.Numerics": "4.3.0",
  2927. "System.Security.Cryptography.Encoding": "4.3.0",
  2928. "System.Security.Cryptography.Primitives": "4.3.0",
  2929. "System.Text.Encoding": "4.3.0",
  2930. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2931. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2932. },
  2933. "compile": {
  2934. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2935. },
  2936. "runtimeTargets": {
  2937. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2938. "assetType": "runtime",
  2939. "rid": "osx"
  2940. },
  2941. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2942. "assetType": "runtime",
  2943. "rid": "unix"
  2944. },
  2945. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2946. "assetType": "runtime",
  2947. "rid": "win"
  2948. }
  2949. }
  2950. },
  2951. "System.Security.Cryptography.Cng/4.3.0": {
  2952. "type": "package",
  2953. "dependencies": {
  2954. "Microsoft.NETCore.Platforms": "1.1.0",
  2955. "System.IO": "4.3.0",
  2956. "System.Resources.ResourceManager": "4.3.0",
  2957. "System.Runtime": "4.3.0",
  2958. "System.Runtime.Extensions": "4.3.0",
  2959. "System.Runtime.Handles": "4.3.0",
  2960. "System.Runtime.InteropServices": "4.3.0",
  2961. "System.Security.Cryptography.Algorithms": "4.3.0",
  2962. "System.Security.Cryptography.Encoding": "4.3.0",
  2963. "System.Security.Cryptography.Primitives": "4.3.0",
  2964. "System.Text.Encoding": "4.3.0"
  2965. },
  2966. "compile": {
  2967. "ref/netstandard1.6/_._": {}
  2968. },
  2969. "runtimeTargets": {
  2970. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2971. "assetType": "runtime",
  2972. "rid": "unix"
  2973. },
  2974. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2975. "assetType": "runtime",
  2976. "rid": "win"
  2977. }
  2978. }
  2979. },
  2980. "System.Security.Cryptography.Csp/4.3.0": {
  2981. "type": "package",
  2982. "dependencies": {
  2983. "Microsoft.NETCore.Platforms": "1.1.0",
  2984. "System.IO": "4.3.0",
  2985. "System.Reflection": "4.3.0",
  2986. "System.Resources.ResourceManager": "4.3.0",
  2987. "System.Runtime": "4.3.0",
  2988. "System.Runtime.Extensions": "4.3.0",
  2989. "System.Runtime.Handles": "4.3.0",
  2990. "System.Runtime.InteropServices": "4.3.0",
  2991. "System.Security.Cryptography.Algorithms": "4.3.0",
  2992. "System.Security.Cryptography.Encoding": "4.3.0",
  2993. "System.Security.Cryptography.Primitives": "4.3.0",
  2994. "System.Text.Encoding": "4.3.0",
  2995. "System.Threading": "4.3.0"
  2996. },
  2997. "compile": {
  2998. "ref/netstandard1.3/_._": {}
  2999. },
  3000. "runtimeTargets": {
  3001. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3002. "assetType": "runtime",
  3003. "rid": "unix"
  3004. },
  3005. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3006. "assetType": "runtime",
  3007. "rid": "win"
  3008. }
  3009. }
  3010. },
  3011. "System.Security.Cryptography.Encoding/4.3.0": {
  3012. "type": "package",
  3013. "dependencies": {
  3014. "Microsoft.NETCore.Platforms": "1.1.0",
  3015. "System.Collections": "4.3.0",
  3016. "System.Collections.Concurrent": "4.3.0",
  3017. "System.Linq": "4.3.0",
  3018. "System.Resources.ResourceManager": "4.3.0",
  3019. "System.Runtime": "4.3.0",
  3020. "System.Runtime.Extensions": "4.3.0",
  3021. "System.Runtime.Handles": "4.3.0",
  3022. "System.Runtime.InteropServices": "4.3.0",
  3023. "System.Security.Cryptography.Primitives": "4.3.0",
  3024. "System.Text.Encoding": "4.3.0",
  3025. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3026. },
  3027. "compile": {
  3028. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3029. "related": ".xml"
  3030. }
  3031. },
  3032. "runtimeTargets": {
  3033. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3034. "assetType": "runtime",
  3035. "rid": "unix"
  3036. },
  3037. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3038. "assetType": "runtime",
  3039. "rid": "win"
  3040. }
  3041. }
  3042. },
  3043. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3044. "type": "package",
  3045. "dependencies": {
  3046. "System.Collections": "4.3.0",
  3047. "System.IO": "4.3.0",
  3048. "System.Resources.ResourceManager": "4.3.0",
  3049. "System.Runtime": "4.3.0",
  3050. "System.Runtime.Extensions": "4.3.0",
  3051. "System.Runtime.Handles": "4.3.0",
  3052. "System.Runtime.InteropServices": "4.3.0",
  3053. "System.Runtime.Numerics": "4.3.0",
  3054. "System.Security.Cryptography.Algorithms": "4.3.0",
  3055. "System.Security.Cryptography.Encoding": "4.3.0",
  3056. "System.Security.Cryptography.Primitives": "4.3.0",
  3057. "System.Text.Encoding": "4.3.0",
  3058. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3059. },
  3060. "compile": {
  3061. "ref/netstandard1.6/_._": {}
  3062. },
  3063. "runtime": {
  3064. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3065. },
  3066. "runtimeTargets": {
  3067. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3068. "assetType": "runtime",
  3069. "rid": "unix"
  3070. }
  3071. }
  3072. },
  3073. "System.Security.Cryptography.Primitives/4.3.0": {
  3074. "type": "package",
  3075. "dependencies": {
  3076. "System.Diagnostics.Debug": "4.3.0",
  3077. "System.Globalization": "4.3.0",
  3078. "System.IO": "4.3.0",
  3079. "System.Resources.ResourceManager": "4.3.0",
  3080. "System.Runtime": "4.3.0",
  3081. "System.Threading": "4.3.0",
  3082. "System.Threading.Tasks": "4.3.0"
  3083. },
  3084. "compile": {
  3085. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3086. },
  3087. "runtime": {
  3088. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3089. }
  3090. },
  3091. "System.Security.Cryptography.ProtectedData/4.7.0": {
  3092. "type": "package",
  3093. "compile": {
  3094. "ref/netstandard2.0/_._": {
  3095. "related": ".xml"
  3096. }
  3097. },
  3098. "runtime": {
  3099. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3100. "related": ".xml"
  3101. }
  3102. },
  3103. "runtimeTargets": {
  3104. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3105. "assetType": "runtime",
  3106. "rid": "win"
  3107. }
  3108. }
  3109. },
  3110. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3111. "type": "package",
  3112. "dependencies": {
  3113. "Microsoft.NETCore.Platforms": "1.1.0",
  3114. "System.Collections": "4.3.0",
  3115. "System.Diagnostics.Debug": "4.3.0",
  3116. "System.Globalization": "4.3.0",
  3117. "System.Globalization.Calendars": "4.3.0",
  3118. "System.IO": "4.3.0",
  3119. "System.IO.FileSystem": "4.3.0",
  3120. "System.IO.FileSystem.Primitives": "4.3.0",
  3121. "System.Resources.ResourceManager": "4.3.0",
  3122. "System.Runtime": "4.3.0",
  3123. "System.Runtime.Extensions": "4.3.0",
  3124. "System.Runtime.Handles": "4.3.0",
  3125. "System.Runtime.InteropServices": "4.3.0",
  3126. "System.Runtime.Numerics": "4.3.0",
  3127. "System.Security.Cryptography.Algorithms": "4.3.0",
  3128. "System.Security.Cryptography.Cng": "4.3.0",
  3129. "System.Security.Cryptography.Csp": "4.3.0",
  3130. "System.Security.Cryptography.Encoding": "4.3.0",
  3131. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3132. "System.Security.Cryptography.Primitives": "4.3.0",
  3133. "System.Text.Encoding": "4.3.0",
  3134. "System.Threading": "4.3.0",
  3135. "runtime.native.System": "4.3.0",
  3136. "runtime.native.System.Net.Http": "4.3.0",
  3137. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3138. },
  3139. "compile": {
  3140. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3141. "related": ".xml"
  3142. }
  3143. },
  3144. "runtimeTargets": {
  3145. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3146. "assetType": "runtime",
  3147. "rid": "unix"
  3148. },
  3149. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3150. "assetType": "runtime",
  3151. "rid": "win"
  3152. }
  3153. }
  3154. },
  3155. "System.Security.Permissions/4.7.0": {
  3156. "type": "package",
  3157. "dependencies": {
  3158. "System.Security.AccessControl": "4.7.0",
  3159. "System.Windows.Extensions": "4.7.0"
  3160. },
  3161. "compile": {
  3162. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  3163. "related": ".xml"
  3164. }
  3165. },
  3166. "runtime": {
  3167. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3168. "related": ".xml"
  3169. }
  3170. }
  3171. },
  3172. "System.Security.Principal/4.3.0": {
  3173. "type": "package",
  3174. "dependencies": {
  3175. "System.Runtime": "4.3.0"
  3176. },
  3177. "compile": {
  3178. "ref/netstandard1.0/System.Security.Principal.dll": {
  3179. "related": ".xml"
  3180. }
  3181. },
  3182. "runtime": {
  3183. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3184. }
  3185. },
  3186. "System.Security.Principal.Windows/4.7.0": {
  3187. "type": "package",
  3188. "compile": {
  3189. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3190. "related": ".xml"
  3191. }
  3192. },
  3193. "runtime": {
  3194. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3195. "related": ".xml"
  3196. }
  3197. },
  3198. "runtimeTargets": {
  3199. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3200. "assetType": "runtime",
  3201. "rid": "unix"
  3202. },
  3203. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3204. "assetType": "runtime",
  3205. "rid": "win"
  3206. }
  3207. }
  3208. },
  3209. "System.Text.Encoding/4.3.0": {
  3210. "type": "package",
  3211. "dependencies": {
  3212. "Microsoft.NETCore.Platforms": "1.1.0",
  3213. "Microsoft.NETCore.Targets": "1.1.0",
  3214. "System.Runtime": "4.3.0"
  3215. },
  3216. "compile": {
  3217. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3218. "related": ".xml"
  3219. }
  3220. }
  3221. },
  3222. "System.Text.Encoding.CodePages/5.0.0": {
  3223. "type": "package",
  3224. "dependencies": {
  3225. "Microsoft.NETCore.Platforms": "5.0.0"
  3226. },
  3227. "compile": {
  3228. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3229. "related": ".xml"
  3230. }
  3231. },
  3232. "runtime": {
  3233. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3234. "related": ".xml"
  3235. }
  3236. },
  3237. "runtimeTargets": {
  3238. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3239. "assetType": "runtime",
  3240. "rid": "win"
  3241. }
  3242. }
  3243. },
  3244. "System.Text.Encoding.Extensions/4.3.0": {
  3245. "type": "package",
  3246. "dependencies": {
  3247. "Microsoft.NETCore.Platforms": "1.1.0",
  3248. "Microsoft.NETCore.Targets": "1.1.0",
  3249. "System.Runtime": "4.3.0",
  3250. "System.Text.Encoding": "4.3.0"
  3251. },
  3252. "compile": {
  3253. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3254. "related": ".xml"
  3255. }
  3256. }
  3257. },
  3258. "System.Text.Encodings.Web/4.7.0": {
  3259. "type": "package",
  3260. "compile": {
  3261. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3262. "related": ".xml"
  3263. }
  3264. },
  3265. "runtime": {
  3266. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  3267. "related": ".xml"
  3268. }
  3269. }
  3270. },
  3271. "System.Text.RegularExpressions/4.3.0": {
  3272. "type": "package",
  3273. "dependencies": {
  3274. "System.Runtime": "4.3.0"
  3275. },
  3276. "compile": {
  3277. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3278. },
  3279. "runtime": {
  3280. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3281. }
  3282. },
  3283. "System.Threading/4.3.0": {
  3284. "type": "package",
  3285. "dependencies": {
  3286. "System.Runtime": "4.3.0",
  3287. "System.Threading.Tasks": "4.3.0"
  3288. },
  3289. "compile": {
  3290. "ref/netstandard1.3/System.Threading.dll": {
  3291. "related": ".xml"
  3292. }
  3293. },
  3294. "runtime": {
  3295. "lib/netstandard1.3/System.Threading.dll": {}
  3296. }
  3297. },
  3298. "System.Threading.Channels/7.0.0": {
  3299. "type": "package",
  3300. "compile": {
  3301. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3302. "related": ".xml"
  3303. }
  3304. },
  3305. "runtime": {
  3306. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3307. "related": ".xml"
  3308. }
  3309. },
  3310. "build": {
  3311. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3312. }
  3313. },
  3314. "System.Threading.Tasks/4.3.0": {
  3315. "type": "package",
  3316. "dependencies": {
  3317. "Microsoft.NETCore.Platforms": "1.1.0",
  3318. "Microsoft.NETCore.Targets": "1.1.0",
  3319. "System.Runtime": "4.3.0"
  3320. },
  3321. "compile": {
  3322. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3323. "related": ".xml"
  3324. }
  3325. }
  3326. },
  3327. "System.Threading.Tasks.Extensions/4.3.0": {
  3328. "type": "package",
  3329. "dependencies": {
  3330. "System.Collections": "4.3.0",
  3331. "System.Runtime": "4.3.0",
  3332. "System.Threading.Tasks": "4.3.0"
  3333. },
  3334. "compile": {
  3335. "lib/netstandard1.0/_._": {
  3336. "related": ".xml"
  3337. }
  3338. },
  3339. "runtime": {
  3340. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  3341. "related": ".xml"
  3342. }
  3343. }
  3344. },
  3345. "System.Threading.Thread/4.3.0": {
  3346. "type": "package",
  3347. "dependencies": {
  3348. "System.Runtime": "4.3.0"
  3349. },
  3350. "compile": {
  3351. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3352. "related": ".xml"
  3353. }
  3354. },
  3355. "runtime": {
  3356. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3357. }
  3358. },
  3359. "System.Threading.ThreadPool/4.3.0": {
  3360. "type": "package",
  3361. "dependencies": {
  3362. "System.Runtime": "4.3.0",
  3363. "System.Runtime.Handles": "4.3.0"
  3364. },
  3365. "compile": {
  3366. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3367. "related": ".xml"
  3368. }
  3369. },
  3370. "runtime": {
  3371. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3372. }
  3373. },
  3374. "System.Threading.Timer/4.3.0": {
  3375. "type": "package",
  3376. "dependencies": {
  3377. "Microsoft.NETCore.Platforms": "1.1.0",
  3378. "Microsoft.NETCore.Targets": "1.1.0",
  3379. "System.Runtime": "4.3.0"
  3380. },
  3381. "compile": {
  3382. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3383. "related": ".xml"
  3384. }
  3385. }
  3386. },
  3387. "System.Windows.Extensions/4.7.0": {
  3388. "type": "package",
  3389. "dependencies": {
  3390. "System.Drawing.Common": "4.7.0"
  3391. },
  3392. "compile": {
  3393. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  3394. "related": ".xml"
  3395. }
  3396. },
  3397. "runtime": {
  3398. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3399. "related": ".xml"
  3400. }
  3401. },
  3402. "runtimeTargets": {
  3403. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3404. "assetType": "runtime",
  3405. "rid": "win"
  3406. }
  3407. }
  3408. },
  3409. "System.Xml.ReaderWriter/4.3.0": {
  3410. "type": "package",
  3411. "dependencies": {
  3412. "System.Collections": "4.3.0",
  3413. "System.Diagnostics.Debug": "4.3.0",
  3414. "System.Globalization": "4.3.0",
  3415. "System.IO": "4.3.0",
  3416. "System.IO.FileSystem": "4.3.0",
  3417. "System.IO.FileSystem.Primitives": "4.3.0",
  3418. "System.Resources.ResourceManager": "4.3.0",
  3419. "System.Runtime": "4.3.0",
  3420. "System.Runtime.Extensions": "4.3.0",
  3421. "System.Runtime.InteropServices": "4.3.0",
  3422. "System.Text.Encoding": "4.3.0",
  3423. "System.Text.Encoding.Extensions": "4.3.0",
  3424. "System.Text.RegularExpressions": "4.3.0",
  3425. "System.Threading.Tasks": "4.3.0",
  3426. "System.Threading.Tasks.Extensions": "4.3.0"
  3427. },
  3428. "compile": {
  3429. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3430. "related": ".xml"
  3431. }
  3432. },
  3433. "runtime": {
  3434. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3435. }
  3436. },
  3437. "System.Xml.XDocument/4.3.0": {
  3438. "type": "package",
  3439. "dependencies": {
  3440. "System.Collections": "4.3.0",
  3441. "System.Diagnostics.Debug": "4.3.0",
  3442. "System.Diagnostics.Tools": "4.3.0",
  3443. "System.Globalization": "4.3.0",
  3444. "System.IO": "4.3.0",
  3445. "System.Reflection": "4.3.0",
  3446. "System.Resources.ResourceManager": "4.3.0",
  3447. "System.Runtime": "4.3.0",
  3448. "System.Runtime.Extensions": "4.3.0",
  3449. "System.Text.Encoding": "4.3.0",
  3450. "System.Threading": "4.3.0",
  3451. "System.Xml.ReaderWriter": "4.3.0"
  3452. },
  3453. "compile": {
  3454. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3455. "related": ".xml"
  3456. }
  3457. },
  3458. "runtime": {
  3459. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3460. }
  3461. },
  3462. "ZXing.Net/0.16.9": {
  3463. "type": "package",
  3464. "compile": {
  3465. "lib/net5.0/zxing.dll": {
  3466. "related": ".XML"
  3467. }
  3468. },
  3469. "runtime": {
  3470. "lib/net5.0/zxing.dll": {
  3471. "related": ".XML"
  3472. }
  3473. }
  3474. },
  3475. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3476. "type": "package",
  3477. "dependencies": {
  3478. "SixLabors.ImageSharp": "2.1.3",
  3479. "ZXing.Net": "0.16.9"
  3480. },
  3481. "compile": {
  3482. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3483. "related": ".pdb;.xml"
  3484. }
  3485. },
  3486. "runtime": {
  3487. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3488. "related": ".pdb;.xml"
  3489. }
  3490. }
  3491. },
  3492. "Ropin.Core.Common/1.0.0": {
  3493. "type": "project",
  3494. "framework": ".NETCoreApp,Version=v5.0",
  3495. "dependencies": {
  3496. "Coravel": "4.2.1",
  3497. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3498. "Newtonsoft.Json": "13.0.1",
  3499. "QRCoder": "1.4.3",
  3500. "SixLabors.ImageSharp": "2.1.6",
  3501. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3502. },
  3503. "compile": {
  3504. "bin/placeholder/Ropin.Core.Common.dll": {}
  3505. },
  3506. "runtime": {
  3507. "bin/placeholder/Ropin.Core.Common.dll": {}
  3508. }
  3509. },
  3510. "Ropin.Core.Extensions/1.0.0": {
  3511. "type": "project",
  3512. "framework": ".NETCoreApp,Version=v5.0",
  3513. "dependencies": {
  3514. "Ropin.Core.Common": "1.0.0",
  3515. "Ropin.Inspection.Common": "1.0.0",
  3516. "Ropin.Inspection.Service": "1.0.0",
  3517. "Ropin.Inspection.Tasks": "1.0.0"
  3518. },
  3519. "compile": {
  3520. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3521. },
  3522. "runtime": {
  3523. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3524. }
  3525. },
  3526. "Ropin.Inspection.Common/1.0.0": {
  3527. "type": "project",
  3528. "framework": ".NETCoreApp,Version=v5.0",
  3529. "dependencies": {
  3530. "FluentEmail.Smtp": "3.0.2",
  3531. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3532. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3533. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3534. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3535. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3536. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3537. "Microsoft.Extensions.Configuration": "5.0.0",
  3538. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3539. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3540. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3541. "Microsoft.Extensions.Http": "5.0.0",
  3542. "Newtonsoft.Json": "13.0.1",
  3543. "RabbitMQ.Client": "6.8.1",
  3544. "log4net": "2.0.17"
  3545. },
  3546. "compile": {
  3547. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3548. },
  3549. "runtime": {
  3550. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3551. }
  3552. },
  3553. "Ropin.Inspection.Model/1.0.0": {
  3554. "type": "project",
  3555. "framework": ".NETCoreApp,Version=v5.0",
  3556. "dependencies": {
  3557. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3558. "Microsoft.EntityFrameworkCore": "5.0.0",
  3559. "MySql.Data": "8.0.23",
  3560. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3561. "Ropin.Inspection.Common": "1.0.0"
  3562. },
  3563. "compile": {
  3564. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3565. },
  3566. "runtime": {
  3567. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3568. }
  3569. },
  3570. "Ropin.Inspection.Repository/1.0.0": {
  3571. "type": "project",
  3572. "framework": ".NETCoreApp,Version=v5.0",
  3573. "dependencies": {
  3574. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3575. "Microsoft.EntityFrameworkCore": "5.0.0",
  3576. "Ropin.Inspection.Model": "1.0.0"
  3577. },
  3578. "compile": {
  3579. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3580. },
  3581. "runtime": {
  3582. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3583. }
  3584. },
  3585. "Ropin.Inspection.Service/1.0.0": {
  3586. "type": "project",
  3587. "framework": ".NETCoreApp,Version=v5.0",
  3588. "dependencies": {
  3589. "AutoMapper": "10.1.1",
  3590. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3591. "Newtonsoft.Json": "13.0.1",
  3592. "Ropin.Core.Common": "1.0.0",
  3593. "Ropin.Inspection.Common": "1.0.0",
  3594. "Ropin.Inspection.Model": "1.0.0",
  3595. "Ropin.Inspection.Repository": "1.0.0",
  3596. "log4net": "2.0.17"
  3597. },
  3598. "compile": {
  3599. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3600. },
  3601. "runtime": {
  3602. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3603. }
  3604. },
  3605. "Ropin.Inspection.Tasks/1.0.0": {
  3606. "type": "project",
  3607. "framework": ".NETCoreApp,Version=v5.0",
  3608. "dependencies": {
  3609. "Quartz": "3.3.3",
  3610. "Ropin.Inspection.Common": "1.0.0",
  3611. "Ropin.Inspection.Model": "1.0.0",
  3612. "Ropin.Inspection.Service": "1.0.0"
  3613. },
  3614. "compile": {
  3615. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3616. },
  3617. "runtime": {
  3618. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3619. }
  3620. }
  3621. }
  3622. },
  3623. "libraries": {
  3624. "AdvancedStringBuilder/0.1.0": {
  3625. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3626. "type": "package",
  3627. "path": "advancedstringbuilder/0.1.0",
  3628. "files": [
  3629. ".nupkg.metadata",
  3630. ".signature.p7s",
  3631. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3632. "advancedstringbuilder.nuspec",
  3633. "lib/net40-client/AdvancedStringBuilder.dll",
  3634. "lib/net40-client/AdvancedStringBuilder.xml",
  3635. "lib/net45/AdvancedStringBuilder.dll",
  3636. "lib/net45/AdvancedStringBuilder.xml",
  3637. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3638. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3639. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3640. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3641. ]
  3642. },
  3643. "Autofac/6.0.0": {
  3644. "sha512": "tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==",
  3645. "type": "package",
  3646. "path": "autofac/6.0.0",
  3647. "files": [
  3648. ".nupkg.metadata",
  3649. ".signature.p7s",
  3650. "autofac.6.0.0.nupkg.sha512",
  3651. "autofac.nuspec",
  3652. "icon.png",
  3653. "lib/netstandard2.0/Autofac.dll",
  3654. "lib/netstandard2.0/Autofac.pdb",
  3655. "lib/netstandard2.0/Autofac.xml",
  3656. "lib/netstandard2.1/Autofac.dll",
  3657. "lib/netstandard2.1/Autofac.pdb",
  3658. "lib/netstandard2.1/Autofac.xml"
  3659. ]
  3660. },
  3661. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3662. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3663. "type": "package",
  3664. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3665. "files": [
  3666. ".nupkg.metadata",
  3667. ".signature.p7s",
  3668. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3669. "autofac.extensions.dependencyinjection.nuspec",
  3670. "icon.png",
  3671. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3672. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3673. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3674. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3675. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3676. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3677. ]
  3678. },
  3679. "AutoMapper/10.1.1": {
  3680. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3681. "type": "package",
  3682. "path": "automapper/10.1.1",
  3683. "files": [
  3684. ".nupkg.metadata",
  3685. ".signature.p7s",
  3686. "automapper.10.1.1.nupkg.sha512",
  3687. "automapper.nuspec",
  3688. "icon.png",
  3689. "lib/net461/AutoMapper.dll",
  3690. "lib/net461/AutoMapper.xml",
  3691. "lib/netstandard2.0/AutoMapper.dll",
  3692. "lib/netstandard2.0/AutoMapper.xml"
  3693. ]
  3694. },
  3695. "BouncyCastle.NetCore/1.8.5": {
  3696. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3697. "type": "package",
  3698. "path": "bouncycastle.netcore/1.8.5",
  3699. "files": [
  3700. ".nupkg.metadata",
  3701. ".signature.p7s",
  3702. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3703. "bouncycastle.netcore.nuspec",
  3704. "lib/Mono/BouncyCastle.Crypto.dll",
  3705. "lib/Mono/BouncyCastle.Crypto.xml",
  3706. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3707. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3708. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3709. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3710. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3711. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3712. "lib/net20/BouncyCastle.Crypto.dll",
  3713. "lib/net20/BouncyCastle.Crypto.xml",
  3714. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3715. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3716. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3717. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3718. ]
  3719. },
  3720. "Coravel/4.2.1": {
  3721. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3722. "type": "package",
  3723. "path": "coravel/4.2.1",
  3724. "files": [
  3725. ".nupkg.metadata",
  3726. ".signature.p7s",
  3727. "coravel.4.2.1.nupkg.sha512",
  3728. "coravel.nuspec",
  3729. "lib/netstandard2.0/Coravel.dll",
  3730. "lib/netstandard2.0/Coravel.xml",
  3731. "logo.png",
  3732. "readme.md"
  3733. ]
  3734. },
  3735. "FBoxClientDriver/1.2.0": {
  3736. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3737. "type": "package",
  3738. "path": "fboxclientdriver/1.2.0",
  3739. "files": [
  3740. ".nupkg.metadata",
  3741. ".signature.p7s",
  3742. "fboxclientdriver.1.2.0.nupkg.sha512",
  3743. "fboxclientdriver.nuspec",
  3744. "lib/netstandard2.0/FBoxClientDriver.dll",
  3745. "lib/netstandard2.0/FBoxClientDriver.xml"
  3746. ]
  3747. },
  3748. "FBoxClientDriver.Contract/1.2.0": {
  3749. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3750. "type": "package",
  3751. "path": "fboxclientdriver.contract/1.2.0",
  3752. "files": [
  3753. ".nupkg.metadata",
  3754. ".signature.p7s",
  3755. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3756. "fboxclientdriver.contract.nuspec",
  3757. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3758. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3759. ]
  3760. },
  3761. "FluentEmail.Core/3.0.2": {
  3762. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3763. "type": "package",
  3764. "path": "fluentemail.core/3.0.2",
  3765. "files": [
  3766. ".nupkg.metadata",
  3767. ".signature.p7s",
  3768. "fluentemail.core.3.0.2.nupkg.sha512",
  3769. "fluentemail.core.nuspec",
  3770. "fluentemail_logo_64x64.png",
  3771. "lib/netstandard2.0/FluentEmail.Core.dll"
  3772. ]
  3773. },
  3774. "FluentEmail.Smtp/3.0.2": {
  3775. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3776. "type": "package",
  3777. "path": "fluentemail.smtp/3.0.2",
  3778. "files": [
  3779. ".nupkg.metadata",
  3780. ".signature.p7s",
  3781. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3782. "fluentemail.smtp.nuspec",
  3783. "fluentemail_logo_64x64.png",
  3784. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3785. ]
  3786. },
  3787. "Google.Protobuf/3.11.4": {
  3788. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3789. "type": "package",
  3790. "path": "google.protobuf/3.11.4",
  3791. "files": [
  3792. ".nupkg.metadata",
  3793. ".signature.p7s",
  3794. "google.protobuf.3.11.4.nupkg.sha512",
  3795. "google.protobuf.nuspec",
  3796. "lib/net45/Google.Protobuf.dll",
  3797. "lib/net45/Google.Protobuf.pdb",
  3798. "lib/net45/Google.Protobuf.xml",
  3799. "lib/netstandard1.0/Google.Protobuf.dll",
  3800. "lib/netstandard1.0/Google.Protobuf.pdb",
  3801. "lib/netstandard1.0/Google.Protobuf.xml",
  3802. "lib/netstandard2.0/Google.Protobuf.dll",
  3803. "lib/netstandard2.0/Google.Protobuf.pdb",
  3804. "lib/netstandard2.0/Google.Protobuf.xml"
  3805. ]
  3806. },
  3807. "IdentityModel/4.3.1": {
  3808. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3809. "type": "package",
  3810. "path": "identitymodel/4.3.1",
  3811. "files": [
  3812. ".nupkg.metadata",
  3813. ".signature.p7s",
  3814. "icon.jpg",
  3815. "identitymodel.4.3.1.nupkg.sha512",
  3816. "identitymodel.nuspec",
  3817. "lib/net461/IdentityModel.dll",
  3818. "lib/net461/IdentityModel.pdb",
  3819. "lib/net461/IdentityModel.xml",
  3820. "lib/net472/IdentityModel.dll",
  3821. "lib/net472/IdentityModel.pdb",
  3822. "lib/net472/IdentityModel.xml",
  3823. "lib/netstandard2.0/IdentityModel.dll",
  3824. "lib/netstandard2.0/IdentityModel.pdb",
  3825. "lib/netstandard2.0/IdentityModel.xml"
  3826. ]
  3827. },
  3828. "InfluxData.Net/8.0.1": {
  3829. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3830. "type": "package",
  3831. "path": "influxdata.net/8.0.1",
  3832. "files": [
  3833. ".nupkg.metadata",
  3834. ".signature.p7s",
  3835. "influxdata.net.8.0.1.nupkg.sha512",
  3836. "influxdata.net.nuspec",
  3837. "lib/net461/InfluxData.Net.Common.dll",
  3838. "lib/net461/InfluxData.Net.Common.dll.config",
  3839. "lib/net461/InfluxData.Net.Common.pdb",
  3840. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3841. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3842. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3843. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3844. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3845. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3846. "lib/net461/InfluxData.Net.dll",
  3847. "lib/net461/InfluxData.Net.dll.config",
  3848. "lib/net461/InfluxData.Net.pdb",
  3849. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3850. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3851. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3852. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3853. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3854. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3855. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3856. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3857. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3858. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3859. "lib/netstandard2.0/InfluxData.Net.dll",
  3860. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3861. "lib/netstandard2.0/InfluxData.Net.pdb"
  3862. ]
  3863. },
  3864. "InitQ/1.0.0.14": {
  3865. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3866. "type": "package",
  3867. "path": "initq/1.0.0.14",
  3868. "files": [
  3869. ".nupkg.metadata",
  3870. ".signature.p7s",
  3871. "initq.1.0.0.14.nupkg.sha512",
  3872. "initq.nuspec",
  3873. "lib/netcoreapp2.1/InitQ.dll"
  3874. ]
  3875. },
  3876. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3877. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3878. "type": "package",
  3879. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3880. "files": [
  3881. ".nupkg.metadata",
  3882. ".signature.p7s",
  3883. "LICENSE.txt",
  3884. "advanced-string-builder-license.txt",
  3885. "chakra-samples-license.txt",
  3886. "icon.png",
  3887. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3888. "javascriptengineswitcher.chakracore.nuspec",
  3889. "jsrt-dotnet-license.txt",
  3890. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3891. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3892. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3893. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3894. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3895. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3896. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3897. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3898. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3899. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3900. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3901. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3902. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3903. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3904. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3905. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3906. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3907. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3908. "polyfills-for-old-dot-net-license.txt",
  3909. "readme.txt"
  3910. ]
  3911. },
  3912. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3913. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3914. "type": "package",
  3915. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3916. "files": [
  3917. ".nupkg.metadata",
  3918. ".signature.p7s",
  3919. "LICENSE.txt",
  3920. "chakra-core-license.txt",
  3921. "icon.png",
  3922. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3923. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3924. "readme.txt",
  3925. "runtimes/linux-x64/native/libChakraCore.so"
  3926. ]
  3927. },
  3928. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3929. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3930. "type": "package",
  3931. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3932. "hasTools": true,
  3933. "files": [
  3934. ".nupkg.metadata",
  3935. ".signature.p7s",
  3936. "LICENSE.txt",
  3937. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3938. "chakra-core-license.txt",
  3939. "icon.png",
  3940. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3941. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3942. "readme.txt",
  3943. "runtimes/win-x64/native/ChakraCore.dll",
  3944. "tools/Install.ps1",
  3945. "tools/Uninstall.ps1"
  3946. ]
  3947. },
  3948. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3949. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3950. "type": "package",
  3951. "path": "javascriptengineswitcher.core/3.21.0",
  3952. "files": [
  3953. ".nupkg.metadata",
  3954. ".signature.p7s",
  3955. "LICENSE.txt",
  3956. "advanced-string-builder-license.txt",
  3957. "icon.png",
  3958. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3959. "javascriptengineswitcher.core.nuspec",
  3960. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3961. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3962. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3963. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3964. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3965. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3966. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3967. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3968. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3969. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3970. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3971. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3972. "readme.txt"
  3973. ]
  3974. },
  3975. "K4os.Compression.LZ4/1.1.11": {
  3976. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3977. "type": "package",
  3978. "path": "k4os.compression.lz4/1.1.11",
  3979. "files": [
  3980. ".nupkg.metadata",
  3981. ".signature.p7s",
  3982. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3983. "k4os.compression.lz4.nuspec",
  3984. "lib/net45/K4os.Compression.LZ4.dll",
  3985. "lib/net45/K4os.Compression.LZ4.xml",
  3986. "lib/net46/K4os.Compression.LZ4.dll",
  3987. "lib/net46/K4os.Compression.LZ4.xml",
  3988. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3989. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3990. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3991. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3992. ]
  3993. },
  3994. "K4os.Compression.LZ4.Streams/1.1.11": {
  3995. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3996. "type": "package",
  3997. "path": "k4os.compression.lz4.streams/1.1.11",
  3998. "files": [
  3999. ".nupkg.metadata",
  4000. ".signature.p7s",
  4001. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4002. "k4os.compression.lz4.streams.nuspec",
  4003. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4004. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4005. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4006. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4007. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4008. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4009. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4010. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4011. ]
  4012. },
  4013. "K4os.Hash.xxHash/1.0.6": {
  4014. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4015. "type": "package",
  4016. "path": "k4os.hash.xxhash/1.0.6",
  4017. "files": [
  4018. ".nupkg.metadata",
  4019. ".signature.p7s",
  4020. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4021. "k4os.hash.xxhash.nuspec",
  4022. "lib/net45/K4os.Hash.xxHash.dll",
  4023. "lib/net45/K4os.Hash.xxHash.xml",
  4024. "lib/net46/K4os.Hash.xxHash.dll",
  4025. "lib/net46/K4os.Hash.xxHash.xml",
  4026. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4027. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4028. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4029. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4030. ]
  4031. },
  4032. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4033. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4034. "type": "package",
  4035. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4036. "files": [
  4037. ".nupkg.metadata",
  4038. ".signature.p7s",
  4039. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4040. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4041. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4042. "linqkit.microsoft.entityframeworkcore.nuspec"
  4043. ]
  4044. },
  4045. "log4net/2.0.17": {
  4046. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4047. "type": "package",
  4048. "path": "log4net/2.0.17",
  4049. "files": [
  4050. ".nupkg.metadata",
  4051. ".signature.p7s",
  4052. "lib/net20/log4net.dll",
  4053. "lib/net20/log4net.xml",
  4054. "lib/net35/log4net.dll",
  4055. "lib/net35/log4net.xml",
  4056. "lib/net40-client/log4net.dll",
  4057. "lib/net40-client/log4net.xml",
  4058. "lib/net40/log4net.dll",
  4059. "lib/net40/log4net.xml",
  4060. "lib/net45/log4net.dll",
  4061. "lib/net45/log4net.xml",
  4062. "lib/netstandard1.3/log4net.dll",
  4063. "lib/netstandard1.3/log4net.xml",
  4064. "lib/netstandard2.0/log4net.dll",
  4065. "lib/netstandard2.0/log4net.xml",
  4066. "log4net.2.0.17.nupkg.sha512",
  4067. "log4net.nuspec",
  4068. "package-icon.png"
  4069. ]
  4070. },
  4071. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  4072. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  4073. "type": "package",
  4074. "path": "microsoft.aspnet.signalr.client/2.4.1",
  4075. "files": [
  4076. ".nupkg.metadata",
  4077. ".signature.p7s",
  4078. "Microsoft.AspNet.SignalR.Client.2.4.1.nupkg.sha512",
  4079. "Microsoft.AspNet.SignalR.Client.nuspec",
  4080. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  4081. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  4082. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  4083. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  4084. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  4085. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  4086. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  4087. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  4088. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  4089. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  4090. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  4091. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml"
  4092. ]
  4093. },
  4094. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  4095. "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  4096. "type": "package",
  4097. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  4098. "files": [
  4099. ".nupkg.metadata",
  4100. ".signature.p7s",
  4101. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  4102. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  4103. "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
  4104. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  4105. ]
  4106. },
  4107. "Microsoft.AspNetCore.Authorization/2.2.0": {
  4108. "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
  4109. "type": "package",
  4110. "path": "microsoft.aspnetcore.authorization/2.2.0",
  4111. "files": [
  4112. ".nupkg.metadata",
  4113. ".signature.p7s",
  4114. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  4115. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  4116. "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
  4117. "microsoft.aspnetcore.authorization.nuspec"
  4118. ]
  4119. },
  4120. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  4121. "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
  4122. "type": "package",
  4123. "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
  4124. "files": [
  4125. ".nupkg.metadata",
  4126. ".signature.p7s",
  4127. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  4128. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  4129. "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
  4130. "microsoft.aspnetcore.authorization.policy.nuspec"
  4131. ]
  4132. },
  4133. "Microsoft.AspNetCore.Connections.Abstractions/3.1.20": {
  4134. "sha512": "9bpgnQRo2/dKhUUnKjULeTTXPAsQ/OMGar5HV+MDU8ukArEXmu/cvNo2aWReyf2CHTbUOEE496v8cVgUoDXu6Q==",
  4135. "type": "package",
  4136. "path": "microsoft.aspnetcore.connections.abstractions/3.1.20",
  4137. "files": [
  4138. ".nupkg.metadata",
  4139. ".signature.p7s",
  4140. "Icon.png",
  4141. "THIRD-PARTY-NOTICES.TXT",
  4142. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4143. "lib/netcoreapp3.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4144. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4145. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4146. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4147. "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4148. "microsoft.aspnetcore.connections.abstractions.3.1.20.nupkg.sha512",
  4149. "microsoft.aspnetcore.connections.abstractions.nuspec"
  4150. ]
  4151. },
  4152. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  4153. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  4154. "type": "package",
  4155. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  4156. "files": [
  4157. ".nupkg.metadata",
  4158. ".signature.p7s",
  4159. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4160. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4161. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  4162. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  4163. ]
  4164. },
  4165. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  4166. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  4167. "type": "package",
  4168. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  4169. "files": [
  4170. ".nupkg.metadata",
  4171. ".signature.p7s",
  4172. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4173. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4174. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  4175. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  4176. ]
  4177. },
  4178. "Microsoft.AspNetCore.Http/2.2.0": {
  4179. "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  4180. "type": "package",
  4181. "path": "microsoft.aspnetcore.http/2.2.0",
  4182. "files": [
  4183. ".nupkg.metadata",
  4184. ".signature.p7s",
  4185. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  4186. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  4187. "microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
  4188. "microsoft.aspnetcore.http.nuspec"
  4189. ]
  4190. },
  4191. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4192. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4193. "type": "package",
  4194. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4195. "files": [
  4196. ".nupkg.metadata",
  4197. ".signature.p7s",
  4198. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4199. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4200. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4201. "microsoft.aspnetcore.http.abstractions.nuspec"
  4202. ]
  4203. },
  4204. "Microsoft.AspNetCore.Http.Connections/1.1.0": {
  4205. "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==",
  4206. "type": "package",
  4207. "path": "microsoft.aspnetcore.http.connections/1.1.0",
  4208. "files": [
  4209. ".nupkg.metadata",
  4210. ".signature.p7s",
  4211. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll",
  4212. "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml",
  4213. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll",
  4214. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml",
  4215. "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512",
  4216. "microsoft.aspnetcore.http.connections.nuspec"
  4217. ]
  4218. },
  4219. "Microsoft.AspNetCore.Http.Connections.Client/3.1.20": {
  4220. "sha512": "MLAS2LJeid3Bck1Q5AUfjD5tstqXV6KuVNDD+rJXAz/PYqD4TvYJ1PvUIwMEjQo8OMdoxNQl0xpXcSfz4Fod5A==",
  4221. "type": "package",
  4222. "path": "microsoft.aspnetcore.http.connections.client/3.1.20",
  4223. "files": [
  4224. ".nupkg.metadata",
  4225. ".signature.p7s",
  4226. "Icon.png",
  4227. "THIRD-PARTY-NOTICES.TXT",
  4228. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4229. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4230. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.dll",
  4231. "lib/netstandard2.1/Microsoft.AspNetCore.Http.Connections.Client.xml",
  4232. "microsoft.aspnetcore.http.connections.client.3.1.20.nupkg.sha512",
  4233. "microsoft.aspnetcore.http.connections.client.nuspec"
  4234. ]
  4235. },
  4236. "Microsoft.AspNetCore.Http.Connections.Common/3.1.20": {
  4237. "sha512": "HEScvniD1E2Uv1t9Sfpu36u+FYnAQQPc/2obAARWolrOsdUPlSHPT6sXajrAic9JSnpWM9AVIMB22Nb+k/NuEg==",
  4238. "type": "package",
  4239. "path": "microsoft.aspnetcore.http.connections.common/3.1.20",
  4240. "files": [
  4241. ".nupkg.metadata",
  4242. ".signature.p7s",
  4243. "Icon.png",
  4244. "THIRD-PARTY-NOTICES.TXT",
  4245. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4246. "lib/netcoreapp3.1/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4247. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4248. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4249. "microsoft.aspnetcore.http.connections.common.3.1.20.nupkg.sha512",
  4250. "microsoft.aspnetcore.http.connections.common.nuspec"
  4251. ]
  4252. },
  4253. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  4254. "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  4255. "type": "package",
  4256. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  4257. "files": [
  4258. ".nupkg.metadata",
  4259. ".signature.p7s",
  4260. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  4261. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  4262. "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
  4263. "microsoft.aspnetcore.http.extensions.nuspec"
  4264. ]
  4265. },
  4266. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4267. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4268. "type": "package",
  4269. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4270. "files": [
  4271. ".nupkg.metadata",
  4272. ".signature.p7s",
  4273. "Icon.png",
  4274. "THIRD-PARTY-NOTICES.TXT",
  4275. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4276. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4277. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4278. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4279. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4280. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4281. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4282. "microsoft.aspnetcore.http.features.nuspec"
  4283. ]
  4284. },
  4285. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4286. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4287. "type": "package",
  4288. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4289. "files": [
  4290. ".nupkg.metadata",
  4291. ".signature.p7s",
  4292. "Icon.png",
  4293. "THIRD-PARTY-NOTICES.TXT",
  4294. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4295. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4296. "microsoft.aspnetcore.nodeservices.nuspec"
  4297. ]
  4298. },
  4299. "Microsoft.AspNetCore.Routing/2.2.0": {
  4300. "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  4301. "type": "package",
  4302. "path": "microsoft.aspnetcore.routing/2.2.0",
  4303. "files": [
  4304. ".nupkg.metadata",
  4305. ".signature.p7s",
  4306. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
  4307. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
  4308. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  4309. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  4310. "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
  4311. "microsoft.aspnetcore.routing.nuspec"
  4312. ]
  4313. },
  4314. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4315. "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  4316. "type": "package",
  4317. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  4318. "files": [
  4319. ".nupkg.metadata",
  4320. ".signature.p7s",
  4321. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4322. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4323. "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
  4324. "microsoft.aspnetcore.routing.abstractions.nuspec"
  4325. ]
  4326. },
  4327. "Microsoft.AspNetCore.SignalR/1.1.0": {
  4328. "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==",
  4329. "type": "package",
  4330. "path": "microsoft.aspnetcore.signalr/1.1.0",
  4331. "files": [
  4332. ".nupkg.metadata",
  4333. ".signature.p7s",
  4334. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll",
  4335. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml",
  4336. "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512",
  4337. "microsoft.aspnetcore.signalr.nuspec"
  4338. ]
  4339. },
  4340. "Microsoft.AspNetCore.SignalR.Client/3.1.20": {
  4341. "sha512": "Sq8a6+hIAvaYQOPDDfIiEkeZmDYROfecRu/qvRE8e3tWVMFhBTxp2I21ywNNNUj95TSRGX93/X5BbFgnPVDMGQ==",
  4342. "type": "package",
  4343. "path": "microsoft.aspnetcore.signalr.client/3.1.20",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "Icon.png",
  4348. "THIRD-PARTY-NOTICES.TXT",
  4349. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.dll",
  4350. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.xml",
  4351. "microsoft.aspnetcore.signalr.client.3.1.20.nupkg.sha512",
  4352. "microsoft.aspnetcore.signalr.client.nuspec"
  4353. ]
  4354. },
  4355. "Microsoft.AspNetCore.SignalR.Client.Core/3.1.20": {
  4356. "sha512": "ZB2tpDtuLUbYJaG+R/lOpZ3QeQc1J5zCz57sgNtzhxnNQ8iZQmHRdfTsRyFNANTvwbthN0U7YDEGIfXzyh7s7g==",
  4357. "type": "package",
  4358. "path": "microsoft.aspnetcore.signalr.client.core/3.1.20",
  4359. "files": [
  4360. ".nupkg.metadata",
  4361. ".signature.p7s",
  4362. "Icon.png",
  4363. "THIRD-PARTY-NOTICES.TXT",
  4364. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4365. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4366. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.dll",
  4367. "lib/netstandard2.1/Microsoft.AspNetCore.SignalR.Client.Core.xml",
  4368. "microsoft.aspnetcore.signalr.client.core.3.1.20.nupkg.sha512",
  4369. "microsoft.aspnetcore.signalr.client.core.nuspec"
  4370. ]
  4371. },
  4372. "Microsoft.AspNetCore.SignalR.Common/3.1.20": {
  4373. "sha512": "20KE+/GPxmgcKEvHpqg589Tye56WTvhMkh9zLg5JDnvueiXTfsLSr8izc9AceUGhfjBloug2pzwU2glOnhn8Pw==",
  4374. "type": "package",
  4375. "path": "microsoft.aspnetcore.signalr.common/3.1.20",
  4376. "files": [
  4377. ".nupkg.metadata",
  4378. ".signature.p7s",
  4379. "Icon.png",
  4380. "THIRD-PARTY-NOTICES.TXT",
  4381. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.dll",
  4382. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Common.xml",
  4383. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll",
  4384. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml",
  4385. "microsoft.aspnetcore.signalr.common.3.1.20.nupkg.sha512",
  4386. "microsoft.aspnetcore.signalr.common.nuspec"
  4387. ]
  4388. },
  4389. "Microsoft.AspNetCore.SignalR.Core/1.1.0": {
  4390. "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==",
  4391. "type": "package",
  4392. "path": "microsoft.aspnetcore.signalr.core/1.1.0",
  4393. "files": [
  4394. ".nupkg.metadata",
  4395. ".signature.p7s",
  4396. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll",
  4397. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml",
  4398. "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512",
  4399. "microsoft.aspnetcore.signalr.core.nuspec"
  4400. ]
  4401. },
  4402. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.20": {
  4403. "sha512": "PlEyHZBxyO9OK+v0fHNFvI330EYtz3NQNp3Y7BtKWnZEotNrNtP/iB0GDkgUTRxfy5/P5lXDmd0wgFgefSzcwA==",
  4404. "type": "package",
  4405. "path": "microsoft.aspnetcore.signalr.protocols.json/3.1.20",
  4406. "files": [
  4407. ".nupkg.metadata",
  4408. ".signature.p7s",
  4409. "Icon.png",
  4410. "THIRD-PARTY-NOTICES.TXT",
  4411. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4412. "lib/netcoreapp3.1/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4413. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  4414. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  4415. "microsoft.aspnetcore.signalr.protocols.json.3.1.20.nupkg.sha512",
  4416. "microsoft.aspnetcore.signalr.protocols.json.nuspec"
  4417. ]
  4418. },
  4419. "Microsoft.AspNetCore.WebSockets/2.2.0": {
  4420. "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==",
  4421. "type": "package",
  4422. "path": "microsoft.aspnetcore.websockets/2.2.0",
  4423. "files": [
  4424. ".nupkg.metadata",
  4425. ".signature.p7s",
  4426. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll",
  4427. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml",
  4428. "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512",
  4429. "microsoft.aspnetcore.websockets.nuspec"
  4430. ]
  4431. },
  4432. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  4433. "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  4434. "type": "package",
  4435. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  4436. "files": [
  4437. ".nupkg.metadata",
  4438. ".signature.p7s",
  4439. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  4440. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  4441. "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
  4442. "microsoft.aspnetcore.webutilities.nuspec"
  4443. ]
  4444. },
  4445. "Microsoft.CSharp/4.7.0": {
  4446. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4447. "type": "package",
  4448. "path": "microsoft.csharp/4.7.0",
  4449. "files": [
  4450. ".nupkg.metadata",
  4451. ".signature.p7s",
  4452. "LICENSE.TXT",
  4453. "THIRD-PARTY-NOTICES.TXT",
  4454. "lib/MonoAndroid10/_._",
  4455. "lib/MonoTouch10/_._",
  4456. "lib/net45/_._",
  4457. "lib/netcore50/Microsoft.CSharp.dll",
  4458. "lib/netcoreapp2.0/_._",
  4459. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4460. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4461. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4462. "lib/portable-net45+win8+wp8+wpa81/_._",
  4463. "lib/uap10.0.16299/_._",
  4464. "lib/win8/_._",
  4465. "lib/wp80/_._",
  4466. "lib/wpa81/_._",
  4467. "lib/xamarinios10/_._",
  4468. "lib/xamarinmac20/_._",
  4469. "lib/xamarintvos10/_._",
  4470. "lib/xamarinwatchos10/_._",
  4471. "microsoft.csharp.4.7.0.nupkg.sha512",
  4472. "microsoft.csharp.nuspec",
  4473. "ref/MonoAndroid10/_._",
  4474. "ref/MonoTouch10/_._",
  4475. "ref/net45/_._",
  4476. "ref/netcore50/Microsoft.CSharp.dll",
  4477. "ref/netcore50/Microsoft.CSharp.xml",
  4478. "ref/netcore50/de/Microsoft.CSharp.xml",
  4479. "ref/netcore50/es/Microsoft.CSharp.xml",
  4480. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4481. "ref/netcore50/it/Microsoft.CSharp.xml",
  4482. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4483. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4484. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4485. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4486. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4487. "ref/netcoreapp2.0/_._",
  4488. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4489. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4490. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4491. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4492. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4493. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4494. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4495. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4496. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4497. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4498. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4499. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4500. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4501. "ref/portable-net45+win8+wp8+wpa81/_._",
  4502. "ref/uap10.0.16299/_._",
  4503. "ref/win8/_._",
  4504. "ref/wp80/_._",
  4505. "ref/wpa81/_._",
  4506. "ref/xamarinios10/_._",
  4507. "ref/xamarinmac20/_._",
  4508. "ref/xamarintvos10/_._",
  4509. "ref/xamarinwatchos10/_._",
  4510. "useSharedDesignerContext.txt",
  4511. "version.txt"
  4512. ]
  4513. },
  4514. "Microsoft.EntityFrameworkCore/5.0.0": {
  4515. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4516. "type": "package",
  4517. "path": "microsoft.entityframeworkcore/5.0.0",
  4518. "files": [
  4519. ".nupkg.metadata",
  4520. ".signature.p7s",
  4521. "Icon.png",
  4522. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4523. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4524. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4525. "microsoft.entityframeworkcore.nuspec"
  4526. ]
  4527. },
  4528. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4529. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4530. "type": "package",
  4531. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4532. "files": [
  4533. ".nupkg.metadata",
  4534. ".signature.p7s",
  4535. "Icon.png",
  4536. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4537. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4538. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4539. "microsoft.entityframeworkcore.abstractions.nuspec"
  4540. ]
  4541. },
  4542. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4543. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4544. "type": "package",
  4545. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4546. "files": [
  4547. ".nupkg.metadata",
  4548. ".signature.p7s",
  4549. "Icon.png",
  4550. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4551. "lib/netstandard2.0/_._",
  4552. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4553. "microsoft.entityframeworkcore.analyzers.nuspec"
  4554. ]
  4555. },
  4556. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4557. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4558. "type": "package",
  4559. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4560. "files": [
  4561. ".nupkg.metadata",
  4562. ".signature.p7s",
  4563. "Icon.png",
  4564. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4565. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4566. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4567. "microsoft.entityframeworkcore.relational.nuspec"
  4568. ]
  4569. },
  4570. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4571. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4572. "type": "package",
  4573. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4574. "files": [
  4575. ".nupkg.metadata",
  4576. ".signature.p7s",
  4577. "Icon.png",
  4578. "LICENSE.TXT",
  4579. "THIRD-PARTY-NOTICES.TXT",
  4580. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4581. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4582. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4583. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4584. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4585. "microsoft.extensions.caching.abstractions.nuspec",
  4586. "useSharedDesignerContext.txt",
  4587. "version.txt"
  4588. ]
  4589. },
  4590. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4591. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4592. "type": "package",
  4593. "path": "microsoft.extensions.caching.memory/5.0.0",
  4594. "files": [
  4595. ".nupkg.metadata",
  4596. ".signature.p7s",
  4597. "Icon.png",
  4598. "LICENSE.TXT",
  4599. "THIRD-PARTY-NOTICES.TXT",
  4600. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4601. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4602. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4603. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4604. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4605. "microsoft.extensions.caching.memory.nuspec",
  4606. "useSharedDesignerContext.txt",
  4607. "version.txt"
  4608. ]
  4609. },
  4610. "Microsoft.Extensions.Configuration/5.0.0": {
  4611. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4612. "type": "package",
  4613. "path": "microsoft.extensions.configuration/5.0.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "Icon.png",
  4618. "LICENSE.TXT",
  4619. "THIRD-PARTY-NOTICES.TXT",
  4620. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4621. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4622. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4623. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4624. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4625. "microsoft.extensions.configuration.nuspec",
  4626. "useSharedDesignerContext.txt",
  4627. "version.txt"
  4628. ]
  4629. },
  4630. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4631. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4632. "type": "package",
  4633. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4634. "files": [
  4635. ".nupkg.metadata",
  4636. ".signature.p7s",
  4637. "Icon.png",
  4638. "LICENSE.TXT",
  4639. "THIRD-PARTY-NOTICES.TXT",
  4640. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4641. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4642. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4643. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4644. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4645. "microsoft.extensions.configuration.abstractions.nuspec",
  4646. "useSharedDesignerContext.txt",
  4647. "version.txt"
  4648. ]
  4649. },
  4650. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4651. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4652. "type": "package",
  4653. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4654. "files": [
  4655. ".nupkg.metadata",
  4656. ".signature.p7s",
  4657. "Icon.png",
  4658. "LICENSE.TXT",
  4659. "THIRD-PARTY-NOTICES.TXT",
  4660. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4661. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4662. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4663. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4664. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4665. "microsoft.extensions.configuration.binder.nuspec",
  4666. "useSharedDesignerContext.txt",
  4667. "version.txt"
  4668. ]
  4669. },
  4670. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4671. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4672. "type": "package",
  4673. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4674. "files": [
  4675. ".nupkg.metadata",
  4676. ".signature.p7s",
  4677. "Icon.png",
  4678. "LICENSE.TXT",
  4679. "THIRD-PARTY-NOTICES.TXT",
  4680. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4681. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4682. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4683. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4684. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4685. "microsoft.extensions.configuration.fileextensions.nuspec",
  4686. "useSharedDesignerContext.txt",
  4687. "version.txt"
  4688. ]
  4689. },
  4690. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4691. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4692. "type": "package",
  4693. "path": "microsoft.extensions.configuration.json/5.0.0",
  4694. "files": [
  4695. ".nupkg.metadata",
  4696. ".signature.p7s",
  4697. "Icon.png",
  4698. "LICENSE.TXT",
  4699. "THIRD-PARTY-NOTICES.TXT",
  4700. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4701. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4702. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4703. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4704. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4705. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4706. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4707. "microsoft.extensions.configuration.json.nuspec",
  4708. "useSharedDesignerContext.txt",
  4709. "version.txt"
  4710. ]
  4711. },
  4712. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4713. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4714. "type": "package",
  4715. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4716. "files": [
  4717. ".nupkg.metadata",
  4718. ".signature.p7s",
  4719. "Icon.png",
  4720. "LICENSE.TXT",
  4721. "THIRD-PARTY-NOTICES.TXT",
  4722. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4723. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4724. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4725. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4726. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4727. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4728. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4729. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4730. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  4731. "microsoft.extensions.dependencyinjection.nuspec",
  4732. "useSharedDesignerContext.txt",
  4733. "version.txt"
  4734. ]
  4735. },
  4736. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4737. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4738. "type": "package",
  4739. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4740. "files": [
  4741. ".nupkg.metadata",
  4742. ".signature.p7s",
  4743. "Icon.png",
  4744. "LICENSE.TXT",
  4745. "THIRD-PARTY-NOTICES.TXT",
  4746. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4747. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4748. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4749. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4750. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4751. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4752. "useSharedDesignerContext.txt",
  4753. "version.txt"
  4754. ]
  4755. },
  4756. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4757. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4758. "type": "package",
  4759. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4760. "files": [
  4761. ".nupkg.metadata",
  4762. ".signature.p7s",
  4763. "Icon.png",
  4764. "LICENSE.TXT",
  4765. "THIRD-PARTY-NOTICES.TXT",
  4766. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4767. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4768. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4769. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4770. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4771. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4772. "useSharedDesignerContext.txt",
  4773. "version.txt"
  4774. ]
  4775. },
  4776. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4777. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4778. "type": "package",
  4779. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "Icon.png",
  4784. "LICENSE.TXT",
  4785. "THIRD-PARTY-NOTICES.TXT",
  4786. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4787. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4788. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4789. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4790. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4791. "microsoft.extensions.fileproviders.physical.nuspec",
  4792. "useSharedDesignerContext.txt",
  4793. "version.txt"
  4794. ]
  4795. },
  4796. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4797. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4798. "type": "package",
  4799. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4800. "files": [
  4801. ".nupkg.metadata",
  4802. ".signature.p7s",
  4803. "Icon.png",
  4804. "LICENSE.TXT",
  4805. "THIRD-PARTY-NOTICES.TXT",
  4806. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4807. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4808. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4809. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4810. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4811. "microsoft.extensions.filesystemglobbing.nuspec",
  4812. "useSharedDesignerContext.txt",
  4813. "version.txt"
  4814. ]
  4815. },
  4816. "Microsoft.Extensions.Hosting/2.1.0": {
  4817. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  4818. "type": "package",
  4819. "path": "microsoft.extensions.hosting/2.1.0",
  4820. "files": [
  4821. ".nupkg.metadata",
  4822. ".signature.p7s",
  4823. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  4824. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  4825. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  4826. "microsoft.extensions.hosting.nuspec"
  4827. ]
  4828. },
  4829. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4830. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4831. "type": "package",
  4832. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4833. "files": [
  4834. ".nupkg.metadata",
  4835. ".signature.p7s",
  4836. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4837. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4838. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4839. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4840. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4841. "microsoft.extensions.hosting.abstractions.nuspec",
  4842. "packageIcon.png"
  4843. ]
  4844. },
  4845. "Microsoft.Extensions.Http/5.0.0": {
  4846. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4847. "type": "package",
  4848. "path": "microsoft.extensions.http/5.0.0",
  4849. "files": [
  4850. ".nupkg.metadata",
  4851. ".signature.p7s",
  4852. "Icon.png",
  4853. "LICENSE.TXT",
  4854. "THIRD-PARTY-NOTICES.TXT",
  4855. "lib/net461/Microsoft.Extensions.Http.dll",
  4856. "lib/net461/Microsoft.Extensions.Http.xml",
  4857. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4858. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4859. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4860. "microsoft.extensions.http.nuspec",
  4861. "useSharedDesignerContext.txt",
  4862. "version.txt"
  4863. ]
  4864. },
  4865. "Microsoft.Extensions.Logging/5.0.0": {
  4866. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4867. "type": "package",
  4868. "path": "microsoft.extensions.logging/5.0.0",
  4869. "files": [
  4870. ".nupkg.metadata",
  4871. ".signature.p7s",
  4872. "Icon.png",
  4873. "LICENSE.TXT",
  4874. "THIRD-PARTY-NOTICES.TXT",
  4875. "lib/net461/Microsoft.Extensions.Logging.dll",
  4876. "lib/net461/Microsoft.Extensions.Logging.xml",
  4877. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4878. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4879. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4880. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4881. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4882. "microsoft.extensions.logging.nuspec",
  4883. "useSharedDesignerContext.txt",
  4884. "version.txt"
  4885. ]
  4886. },
  4887. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4888. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4889. "type": "package",
  4890. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4891. "files": [
  4892. ".nupkg.metadata",
  4893. ".signature.p7s",
  4894. "Icon.png",
  4895. "LICENSE.TXT",
  4896. "THIRD-PARTY-NOTICES.TXT",
  4897. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4898. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4899. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4900. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4901. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4902. "microsoft.extensions.logging.abstractions.nuspec",
  4903. "useSharedDesignerContext.txt",
  4904. "version.txt"
  4905. ]
  4906. },
  4907. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4908. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4909. "type": "package",
  4910. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4911. "files": [
  4912. ".nupkg.metadata",
  4913. ".signature.p7s",
  4914. "Icon.png",
  4915. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4916. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4917. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4918. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4919. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4920. "microsoft.extensions.logging.configuration.nuspec"
  4921. ]
  4922. },
  4923. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4924. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4925. "type": "package",
  4926. "path": "microsoft.extensions.logging.console/3.1.30",
  4927. "files": [
  4928. ".nupkg.metadata",
  4929. ".signature.p7s",
  4930. "Icon.png",
  4931. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4932. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4933. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4934. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4935. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4936. "microsoft.extensions.logging.console.nuspec"
  4937. ]
  4938. },
  4939. "Microsoft.Extensions.ObjectPool/2.2.0": {
  4940. "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  4941. "type": "package",
  4942. "path": "microsoft.extensions.objectpool/2.2.0",
  4943. "files": [
  4944. ".nupkg.metadata",
  4945. ".signature.p7s",
  4946. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  4947. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  4948. "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
  4949. "microsoft.extensions.objectpool.nuspec"
  4950. ]
  4951. },
  4952. "Microsoft.Extensions.Options/5.0.0": {
  4953. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4954. "type": "package",
  4955. "path": "microsoft.extensions.options/5.0.0",
  4956. "files": [
  4957. ".nupkg.metadata",
  4958. ".signature.p7s",
  4959. "Icon.png",
  4960. "LICENSE.TXT",
  4961. "THIRD-PARTY-NOTICES.TXT",
  4962. "lib/net461/Microsoft.Extensions.Options.dll",
  4963. "lib/net461/Microsoft.Extensions.Options.xml",
  4964. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4965. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4966. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4967. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4968. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4969. "microsoft.extensions.options.nuspec",
  4970. "useSharedDesignerContext.txt",
  4971. "version.txt"
  4972. ]
  4973. },
  4974. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4975. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4976. "type": "package",
  4977. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4978. "files": [
  4979. ".nupkg.metadata",
  4980. ".signature.p7s",
  4981. "Icon.png",
  4982. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4983. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4984. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4985. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4986. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4987. "microsoft.extensions.options.configurationextensions.nuspec"
  4988. ]
  4989. },
  4990. "Microsoft.Extensions.Primitives/5.0.0": {
  4991. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4992. "type": "package",
  4993. "path": "microsoft.extensions.primitives/5.0.0",
  4994. "files": [
  4995. ".nupkg.metadata",
  4996. ".signature.p7s",
  4997. "Icon.png",
  4998. "LICENSE.TXT",
  4999. "THIRD-PARTY-NOTICES.TXT",
  5000. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5001. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5002. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  5003. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  5004. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5005. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5006. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  5007. "microsoft.extensions.primitives.nuspec",
  5008. "useSharedDesignerContext.txt",
  5009. "version.txt"
  5010. ]
  5011. },
  5012. "Microsoft.Net.Http.Headers/2.2.0": {
  5013. "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  5014. "type": "package",
  5015. "path": "microsoft.net.http.headers/2.2.0",
  5016. "files": [
  5017. ".nupkg.metadata",
  5018. ".signature.p7s",
  5019. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  5020. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  5021. "microsoft.net.http.headers.2.2.0.nupkg.sha512",
  5022. "microsoft.net.http.headers.nuspec"
  5023. ]
  5024. },
  5025. "Microsoft.NETCore.Platforms/5.0.0": {
  5026. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5027. "type": "package",
  5028. "path": "microsoft.netcore.platforms/5.0.0",
  5029. "files": [
  5030. ".nupkg.metadata",
  5031. ".signature.p7s",
  5032. "Icon.png",
  5033. "LICENSE.TXT",
  5034. "THIRD-PARTY-NOTICES.TXT",
  5035. "lib/netstandard1.0/_._",
  5036. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5037. "microsoft.netcore.platforms.nuspec",
  5038. "runtime.json",
  5039. "useSharedDesignerContext.txt",
  5040. "version.txt"
  5041. ]
  5042. },
  5043. "Microsoft.NETCore.Targets/1.1.0": {
  5044. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5045. "type": "package",
  5046. "path": "microsoft.netcore.targets/1.1.0",
  5047. "files": [
  5048. ".nupkg.metadata",
  5049. ".signature.p7s",
  5050. "ThirdPartyNotices.txt",
  5051. "dotnet_library_license.txt",
  5052. "lib/netstandard1.0/_._",
  5053. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5054. "microsoft.netcore.targets.nuspec",
  5055. "runtime.json"
  5056. ]
  5057. },
  5058. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  5059. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  5060. "type": "package",
  5061. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  5062. "hasTools": true,
  5063. "files": [
  5064. ".nupkg.metadata",
  5065. ".signature.p7s",
  5066. "CHANGELOG.md",
  5067. "EULA.md",
  5068. "ThirdPartyNotices.txt",
  5069. "build/Container.props",
  5070. "build/Container.targets",
  5071. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  5072. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  5073. "build/Rules/GeneralBrowseObject.xaml",
  5074. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  5075. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  5076. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  5077. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  5078. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  5079. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  5080. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  5081. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  5082. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  5083. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  5084. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  5085. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  5086. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  5087. "build/ToolsTarget.props",
  5088. "build/ToolsTarget.targets",
  5089. "icon.png",
  5090. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  5091. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  5092. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  5093. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  5094. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5095. "tools/Newtonsoft.Json.dll",
  5096. "tools/System.Security.Principal.Windows.dll",
  5097. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5098. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5099. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5100. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5101. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5102. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5103. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5104. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5105. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5106. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5107. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5108. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5109. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5110. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5111. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5112. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5113. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5114. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5115. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5116. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5117. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5118. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5119. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5120. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5121. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5122. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5123. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5124. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5125. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5126. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5127. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5128. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5129. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5130. "tools/utils/KillProcess.exe",
  5131. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5132. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5133. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5134. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5135. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5136. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5137. ]
  5138. },
  5139. "Microsoft.Win32.Primitives/4.3.0": {
  5140. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5141. "type": "package",
  5142. "path": "microsoft.win32.primitives/4.3.0",
  5143. "files": [
  5144. ".nupkg.metadata",
  5145. ".signature.p7s",
  5146. "ThirdPartyNotices.txt",
  5147. "dotnet_library_license.txt",
  5148. "lib/MonoAndroid10/_._",
  5149. "lib/MonoTouch10/_._",
  5150. "lib/net46/Microsoft.Win32.Primitives.dll",
  5151. "lib/xamarinios10/_._",
  5152. "lib/xamarinmac20/_._",
  5153. "lib/xamarintvos10/_._",
  5154. "lib/xamarinwatchos10/_._",
  5155. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5156. "microsoft.win32.primitives.nuspec",
  5157. "ref/MonoAndroid10/_._",
  5158. "ref/MonoTouch10/_._",
  5159. "ref/net46/Microsoft.Win32.Primitives.dll",
  5160. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5161. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5162. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5163. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5164. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5165. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5166. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5167. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5168. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5169. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5170. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5171. "ref/xamarinios10/_._",
  5172. "ref/xamarinmac20/_._",
  5173. "ref/xamarintvos10/_._",
  5174. "ref/xamarinwatchos10/_._"
  5175. ]
  5176. },
  5177. "Microsoft.Win32.SystemEvents/5.0.0": {
  5178. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  5179. "type": "package",
  5180. "path": "microsoft.win32.systemevents/5.0.0",
  5181. "files": [
  5182. ".nupkg.metadata",
  5183. ".signature.p7s",
  5184. "Icon.png",
  5185. "LICENSE.TXT",
  5186. "THIRD-PARTY-NOTICES.TXT",
  5187. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5188. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5189. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5190. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5191. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5192. "microsoft.win32.systemevents.nuspec",
  5193. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5194. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5195. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5196. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5197. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5198. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5199. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5200. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5201. "useSharedDesignerContext.txt",
  5202. "version.txt"
  5203. ]
  5204. },
  5205. "MySql.Data/8.0.23": {
  5206. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5207. "type": "package",
  5208. "path": "mysql.data/8.0.23",
  5209. "files": [
  5210. ".nupkg.metadata",
  5211. ".signature.p7s",
  5212. "lib/net452/MySql.Data.dll",
  5213. "lib/net452/MySql.Data.xml",
  5214. "lib/net452/Ubiety.Dns.Core.dll",
  5215. "lib/net452/Zstandard.Net.dll",
  5216. "lib/net48/MySql.Data.dll",
  5217. "lib/net48/MySql.Data.xml",
  5218. "lib/net48/Ubiety.Dns.Core.dll",
  5219. "lib/net48/Zstandard.Net.dll",
  5220. "lib/net5.0/MySql.Data.dll",
  5221. "lib/net5.0/MySql.Data.xml",
  5222. "lib/net5.0/Ubiety.Dns.Core.dll",
  5223. "lib/net5.0/Zstandard.Net.dll",
  5224. "lib/netstandard2.0/MySql.Data.dll",
  5225. "lib/netstandard2.0/MySql.Data.xml",
  5226. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5227. "lib/netstandard2.0/Zstandard.Net.dll",
  5228. "lib/netstandard2.1/MySql.Data.dll",
  5229. "lib/netstandard2.1/MySql.Data.xml",
  5230. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5231. "lib/netstandard2.1/Zstandard.Net.dll",
  5232. "mysql.data.8.0.23.nupkg.sha512",
  5233. "mysql.data.nuspec"
  5234. ]
  5235. },
  5236. "MySqlConnector/1.1.0": {
  5237. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5238. "type": "package",
  5239. "path": "mysqlconnector/1.1.0",
  5240. "files": [
  5241. ".nupkg.metadata",
  5242. ".signature.p7s",
  5243. "lib/net45/MySqlConnector.dll",
  5244. "lib/net45/MySqlConnector.xml",
  5245. "lib/net461/MySqlConnector.dll",
  5246. "lib/net461/MySqlConnector.xml",
  5247. "lib/net471/MySqlConnector.dll",
  5248. "lib/net471/MySqlConnector.xml",
  5249. "lib/net5.0/MySqlConnector.dll",
  5250. "lib/net5.0/MySqlConnector.xml",
  5251. "lib/netcoreapp2.1/MySqlConnector.dll",
  5252. "lib/netcoreapp2.1/MySqlConnector.xml",
  5253. "lib/netcoreapp3.1/MySqlConnector.dll",
  5254. "lib/netcoreapp3.1/MySqlConnector.xml",
  5255. "lib/netstandard1.3/MySqlConnector.dll",
  5256. "lib/netstandard1.3/MySqlConnector.xml",
  5257. "lib/netstandard2.0/MySqlConnector.dll",
  5258. "lib/netstandard2.0/MySqlConnector.xml",
  5259. "lib/netstandard2.1/MySqlConnector.dll",
  5260. "lib/netstandard2.1/MySqlConnector.xml",
  5261. "logo.png",
  5262. "mysqlconnector.1.1.0.nupkg.sha512",
  5263. "mysqlconnector.nuspec"
  5264. ]
  5265. },
  5266. "NETStandard.Library/1.6.1": {
  5267. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5268. "type": "package",
  5269. "path": "netstandard.library/1.6.1",
  5270. "files": [
  5271. ".nupkg.metadata",
  5272. ".signature.p7s",
  5273. "ThirdPartyNotices.txt",
  5274. "dotnet_library_license.txt",
  5275. "netstandard.library.1.6.1.nupkg.sha512",
  5276. "netstandard.library.nuspec"
  5277. ]
  5278. },
  5279. "Newtonsoft.Json/13.0.1": {
  5280. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5281. "type": "package",
  5282. "path": "newtonsoft.json/13.0.1",
  5283. "files": [
  5284. ".nupkg.metadata",
  5285. ".signature.p7s",
  5286. "LICENSE.md",
  5287. "lib/net20/Newtonsoft.Json.dll",
  5288. "lib/net20/Newtonsoft.Json.xml",
  5289. "lib/net35/Newtonsoft.Json.dll",
  5290. "lib/net35/Newtonsoft.Json.xml",
  5291. "lib/net40/Newtonsoft.Json.dll",
  5292. "lib/net40/Newtonsoft.Json.xml",
  5293. "lib/net45/Newtonsoft.Json.dll",
  5294. "lib/net45/Newtonsoft.Json.xml",
  5295. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5296. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5297. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5298. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5299. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5300. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5301. "newtonsoft.json.13.0.1.nupkg.sha512",
  5302. "newtonsoft.json.nuspec",
  5303. "packageIcon.png"
  5304. ]
  5305. },
  5306. "Nito.AsyncEx.Coordination/5.0.0": {
  5307. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  5308. "type": "package",
  5309. "path": "nito.asyncex.coordination/5.0.0",
  5310. "files": [
  5311. ".nupkg.metadata",
  5312. ".signature.p7s",
  5313. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5314. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5315. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5316. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5317. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  5318. "nito.asyncex.coordination.nuspec"
  5319. ]
  5320. },
  5321. "Nito.AsyncEx.Tasks/5.0.0": {
  5322. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  5323. "type": "package",
  5324. "path": "nito.asyncex.tasks/5.0.0",
  5325. "files": [
  5326. ".nupkg.metadata",
  5327. ".signature.p7s",
  5328. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5329. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5330. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5331. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5332. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  5333. "nito.asyncex.tasks.nuspec"
  5334. ]
  5335. },
  5336. "Nito.Collections.Deque/1.0.4": {
  5337. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  5338. "type": "package",
  5339. "path": "nito.collections.deque/1.0.4",
  5340. "files": [
  5341. ".nupkg.metadata",
  5342. ".signature.p7s",
  5343. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5344. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5345. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5346. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5347. "nito.collections.deque.1.0.4.nupkg.sha512",
  5348. "nito.collections.deque.nuspec"
  5349. ]
  5350. },
  5351. "Nito.Disposables/2.0.0": {
  5352. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  5353. "type": "package",
  5354. "path": "nito.disposables/2.0.0",
  5355. "files": [
  5356. ".nupkg.metadata",
  5357. ".signature.p7s",
  5358. "lib/netstandard1.0/Nito.Disposables.dll",
  5359. "lib/netstandard1.0/Nito.Disposables.pdb",
  5360. "lib/netstandard1.0/Nito.Disposables.xml",
  5361. "lib/netstandard2.0/Nito.Disposables.dll",
  5362. "lib/netstandard2.0/Nito.Disposables.pdb",
  5363. "lib/netstandard2.0/Nito.Disposables.xml",
  5364. "nito.disposables.2.0.0.nupkg.sha512",
  5365. "nito.disposables.nuspec"
  5366. ]
  5367. },
  5368. "NLog/4.7.7": {
  5369. "sha512": "lCfAaKel4trne8Suf4/0aR9YPKDFLWKgqBupnHKNYx+cIjutF2BsVxfF2fAb+ObaYN3m5hDjx/ToVS15ouB+SA==",
  5370. "type": "package",
  5371. "path": "nlog/4.7.7",
  5372. "files": [
  5373. ".nupkg.metadata",
  5374. ".signature.p7s",
  5375. "lib/monoandroid44/NLog.dll",
  5376. "lib/monoandroid44/NLog.xml",
  5377. "lib/net35/NLog.dll",
  5378. "lib/net35/NLog.xml",
  5379. "lib/net40-client/NLog.dll",
  5380. "lib/net40-client/NLog.xml",
  5381. "lib/net45/NLog.dll",
  5382. "lib/net45/NLog.xml",
  5383. "lib/netstandard1.3/NLog.dll",
  5384. "lib/netstandard1.3/NLog.xml",
  5385. "lib/netstandard1.5/NLog.dll",
  5386. "lib/netstandard1.5/NLog.xml",
  5387. "lib/netstandard2.0/NLog.dll",
  5388. "lib/netstandard2.0/NLog.xml",
  5389. "lib/sl4/NLog.dll",
  5390. "lib/sl4/NLog.xml",
  5391. "lib/sl5/NLog.dll",
  5392. "lib/sl5/NLog.xml",
  5393. "lib/wp8/NLog.dll",
  5394. "lib/wp8/NLog.xml",
  5395. "lib/xamarinios10/NLog.dll",
  5396. "lib/xamarinios10/NLog.xml",
  5397. "nlog.4.7.7.nupkg.sha512",
  5398. "nlog.nuspec"
  5399. ]
  5400. },
  5401. "NodaTime/2.4.7": {
  5402. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  5403. "type": "package",
  5404. "path": "nodatime/2.4.7",
  5405. "files": [
  5406. ".nupkg.metadata",
  5407. ".signature.p7s",
  5408. "lib/net45/NodaTime.dll",
  5409. "lib/net45/NodaTime.pdb",
  5410. "lib/net45/NodaTime.xml",
  5411. "lib/netstandard1.3/NodaTime.dll",
  5412. "lib/netstandard1.3/NodaTime.pdb",
  5413. "lib/netstandard1.3/NodaTime.xml",
  5414. "lib/netstandard2.0/NodaTime.dll",
  5415. "lib/netstandard2.0/NodaTime.pdb",
  5416. "lib/netstandard2.0/NodaTime.xml",
  5417. "nodatime.2.4.7.nupkg.sha512",
  5418. "nodatime.nuspec"
  5419. ]
  5420. },
  5421. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5422. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5423. "type": "package",
  5424. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5425. "files": [
  5426. ".nupkg.metadata",
  5427. ".signature.p7s",
  5428. "icon.png",
  5429. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5430. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5431. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5432. "pomelo.entityframeworkcore.mysql.nuspec"
  5433. ]
  5434. },
  5435. "QRCoder/1.4.3": {
  5436. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5437. "type": "package",
  5438. "path": "qrcoder/1.4.3",
  5439. "files": [
  5440. ".nupkg.metadata",
  5441. ".signature.p7s",
  5442. "lib/net35/QRCoder.dll",
  5443. "lib/net40/QRCoder.dll",
  5444. "lib/net5.0-windows7.0/QRCoder.dll",
  5445. "lib/net5.0/QRCoder.dll",
  5446. "lib/net6.0-windows7.0/QRCoder.dll",
  5447. "lib/net6.0/QRCoder.dll",
  5448. "lib/netstandard1.3/QRCoder.dll",
  5449. "lib/netstandard2.0/QRCoder.dll",
  5450. "nuget-icon.png",
  5451. "nuget-readme.md",
  5452. "qrcoder.1.4.3.nupkg.sha512",
  5453. "qrcoder.nuspec"
  5454. ]
  5455. },
  5456. "Quartz/3.3.3": {
  5457. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5458. "type": "package",
  5459. "path": "quartz/3.3.3",
  5460. "files": [
  5461. ".nupkg.metadata",
  5462. ".signature.p7s",
  5463. "lib/net461/Quartz.dll",
  5464. "lib/net461/Quartz.xml",
  5465. "lib/net472/Quartz.dll",
  5466. "lib/net472/Quartz.xml",
  5467. "lib/netstandard2.0/Quartz.dll",
  5468. "lib/netstandard2.0/Quartz.xml",
  5469. "quartz-logo-small.png",
  5470. "quartz.3.3.3.nupkg.sha512",
  5471. "quartz.nuspec"
  5472. ]
  5473. },
  5474. "RabbitMQ.Client/6.8.1": {
  5475. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5476. "type": "package",
  5477. "path": "rabbitmq.client/6.8.1",
  5478. "files": [
  5479. ".nupkg.metadata",
  5480. ".signature.p7s",
  5481. "README.md",
  5482. "icon.png",
  5483. "lib/net462/RabbitMQ.Client.dll",
  5484. "lib/net462/RabbitMQ.Client.xml",
  5485. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5486. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5487. "rabbitmq.client.6.8.1.nupkg.sha512",
  5488. "rabbitmq.client.nuspec"
  5489. ]
  5490. },
  5491. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5492. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5493. "type": "package",
  5494. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5495. "files": [
  5496. ".nupkg.metadata",
  5497. ".signature.p7s",
  5498. "ThirdPartyNotices.txt",
  5499. "dotnet_library_license.txt",
  5500. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5501. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5502. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5503. ]
  5504. },
  5505. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5506. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5507. "type": "package",
  5508. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5509. "files": [
  5510. ".nupkg.metadata",
  5511. ".signature.p7s",
  5512. "ThirdPartyNotices.txt",
  5513. "dotnet_library_license.txt",
  5514. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5515. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5516. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5517. ]
  5518. },
  5519. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5520. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5521. "type": "package",
  5522. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5523. "files": [
  5524. ".nupkg.metadata",
  5525. ".signature.p7s",
  5526. "ThirdPartyNotices.txt",
  5527. "dotnet_library_license.txt",
  5528. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5529. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5530. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5531. ]
  5532. },
  5533. "runtime.native.System/4.3.0": {
  5534. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5535. "type": "package",
  5536. "path": "runtime.native.system/4.3.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/netstandard1.0/_._",
  5543. "runtime.native.system.4.3.0.nupkg.sha512",
  5544. "runtime.native.system.nuspec"
  5545. ]
  5546. },
  5547. "runtime.native.System.IO.Compression/4.3.0": {
  5548. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5549. "type": "package",
  5550. "path": "runtime.native.system.io.compression/4.3.0",
  5551. "files": [
  5552. ".nupkg.metadata",
  5553. ".signature.p7s",
  5554. "ThirdPartyNotices.txt",
  5555. "dotnet_library_license.txt",
  5556. "lib/netstandard1.0/_._",
  5557. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5558. "runtime.native.system.io.compression.nuspec"
  5559. ]
  5560. },
  5561. "runtime.native.System.Net.Http/4.3.0": {
  5562. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5563. "type": "package",
  5564. "path": "runtime.native.system.net.http/4.3.0",
  5565. "files": [
  5566. ".nupkg.metadata",
  5567. ".signature.p7s",
  5568. "ThirdPartyNotices.txt",
  5569. "dotnet_library_license.txt",
  5570. "lib/netstandard1.0/_._",
  5571. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5572. "runtime.native.system.net.http.nuspec"
  5573. ]
  5574. },
  5575. "runtime.native.System.Net.Security/4.3.0": {
  5576. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5577. "type": "package",
  5578. "path": "runtime.native.system.net.security/4.3.0",
  5579. "files": [
  5580. ".nupkg.metadata",
  5581. ".signature.p7s",
  5582. "ThirdPartyNotices.txt",
  5583. "dotnet_library_license.txt",
  5584. "lib/netstandard1.0/_._",
  5585. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5586. "runtime.native.system.net.security.nuspec"
  5587. ]
  5588. },
  5589. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5590. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5591. "type": "package",
  5592. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. ".signature.p7s",
  5596. "ThirdPartyNotices.txt",
  5597. "dotnet_library_license.txt",
  5598. "lib/netstandard1.0/_._",
  5599. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5600. "runtime.native.system.security.cryptography.apple.nuspec"
  5601. ]
  5602. },
  5603. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5604. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5605. "type": "package",
  5606. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5607. "files": [
  5608. ".nupkg.metadata",
  5609. ".signature.p7s",
  5610. "ThirdPartyNotices.txt",
  5611. "dotnet_library_license.txt",
  5612. "lib/netstandard1.0/_._",
  5613. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5614. "runtime.native.system.security.cryptography.openssl.nuspec"
  5615. ]
  5616. },
  5617. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5618. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5619. "type": "package",
  5620. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5621. "files": [
  5622. ".nupkg.metadata",
  5623. ".signature.p7s",
  5624. "ThirdPartyNotices.txt",
  5625. "dotnet_library_license.txt",
  5626. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5627. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5628. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5629. ]
  5630. },
  5631. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5632. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5633. "type": "package",
  5634. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5635. "files": [
  5636. ".nupkg.metadata",
  5637. ".signature.p7s",
  5638. "ThirdPartyNotices.txt",
  5639. "dotnet_library_license.txt",
  5640. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5641. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5642. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5643. ]
  5644. },
  5645. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5646. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5647. "type": "package",
  5648. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5649. "files": [
  5650. ".nupkg.metadata",
  5651. ".signature.p7s",
  5652. "ThirdPartyNotices.txt",
  5653. "dotnet_library_license.txt",
  5654. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5655. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5656. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5657. ]
  5658. },
  5659. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5660. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5661. "type": "package",
  5662. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5663. "files": [
  5664. ".nupkg.metadata",
  5665. ".signature.p7s",
  5666. "ThirdPartyNotices.txt",
  5667. "dotnet_library_license.txt",
  5668. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5669. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5670. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5671. ]
  5672. },
  5673. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5674. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5675. "type": "package",
  5676. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5677. "files": [
  5678. ".nupkg.metadata",
  5679. ".signature.p7s",
  5680. "ThirdPartyNotices.txt",
  5681. "dotnet_library_license.txt",
  5682. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5683. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5684. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5685. ]
  5686. },
  5687. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5688. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5689. "type": "package",
  5690. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5691. "files": [
  5692. ".nupkg.metadata",
  5693. ".signature.p7s",
  5694. "ThirdPartyNotices.txt",
  5695. "dotnet_library_license.txt",
  5696. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5697. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5698. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5699. ]
  5700. },
  5701. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5702. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5703. "type": "package",
  5704. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5705. "files": [
  5706. ".nupkg.metadata",
  5707. ".signature.p7s",
  5708. "ThirdPartyNotices.txt",
  5709. "dotnet_library_license.txt",
  5710. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5711. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5712. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5713. ]
  5714. },
  5715. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5716. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5717. "type": "package",
  5718. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5719. "files": [
  5720. ".nupkg.metadata",
  5721. ".signature.p7s",
  5722. "ThirdPartyNotices.txt",
  5723. "dotnet_library_license.txt",
  5724. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5725. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5726. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5727. ]
  5728. },
  5729. "Serilog/2.11.0": {
  5730. "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  5731. "type": "package",
  5732. "path": "serilog/2.11.0",
  5733. "files": [
  5734. ".nupkg.metadata",
  5735. ".signature.p7s",
  5736. "icon.png",
  5737. "lib/net45/Serilog.dll",
  5738. "lib/net45/Serilog.xml",
  5739. "lib/net46/Serilog.dll",
  5740. "lib/net46/Serilog.xml",
  5741. "lib/net5.0/Serilog.dll",
  5742. "lib/net5.0/Serilog.xml",
  5743. "lib/netstandard1.0/Serilog.dll",
  5744. "lib/netstandard1.0/Serilog.xml",
  5745. "lib/netstandard1.3/Serilog.dll",
  5746. "lib/netstandard1.3/Serilog.xml",
  5747. "lib/netstandard2.0/Serilog.dll",
  5748. "lib/netstandard2.0/Serilog.xml",
  5749. "lib/netstandard2.1/Serilog.dll",
  5750. "lib/netstandard2.1/Serilog.xml",
  5751. "serilog.2.11.0.nupkg.sha512",
  5752. "serilog.nuspec"
  5753. ]
  5754. },
  5755. "Serilog.Sinks.Console/4.0.1": {
  5756. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  5757. "type": "package",
  5758. "path": "serilog.sinks.console/4.0.1",
  5759. "files": [
  5760. ".nupkg.metadata",
  5761. ".signature.p7s",
  5762. "icon.png",
  5763. "lib/net45/Serilog.Sinks.Console.dll",
  5764. "lib/net45/Serilog.Sinks.Console.xml",
  5765. "lib/net5.0/Serilog.Sinks.Console.dll",
  5766. "lib/net5.0/Serilog.Sinks.Console.xml",
  5767. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  5768. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  5769. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  5770. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  5771. "serilog.sinks.console.4.0.1.nupkg.sha512",
  5772. "serilog.sinks.console.nuspec"
  5773. ]
  5774. },
  5775. "Serilog.Sinks.File/5.0.0": {
  5776. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  5777. "type": "package",
  5778. "path": "serilog.sinks.file/5.0.0",
  5779. "files": [
  5780. ".nupkg.metadata",
  5781. ".signature.p7s",
  5782. "images/icon.png",
  5783. "lib/net45/Serilog.Sinks.File.dll",
  5784. "lib/net45/Serilog.Sinks.File.pdb",
  5785. "lib/net45/Serilog.Sinks.File.xml",
  5786. "lib/net5.0/Serilog.Sinks.File.dll",
  5787. "lib/net5.0/Serilog.Sinks.File.pdb",
  5788. "lib/net5.0/Serilog.Sinks.File.xml",
  5789. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  5790. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  5791. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  5792. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  5793. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  5794. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  5795. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  5796. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  5797. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  5798. "serilog.sinks.file.5.0.0.nupkg.sha512",
  5799. "serilog.sinks.file.nuspec"
  5800. ]
  5801. },
  5802. "SixLabors.ImageSharp/2.1.6": {
  5803. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  5804. "type": "package",
  5805. "path": "sixlabors.imagesharp/2.1.6",
  5806. "files": [
  5807. ".nupkg.metadata",
  5808. ".signature.p7s",
  5809. "lib/net472/SixLabors.ImageSharp.dll",
  5810. "lib/net472/SixLabors.ImageSharp.xml",
  5811. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  5812. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  5813. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  5814. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  5815. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  5816. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  5817. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  5818. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  5819. "sixlabors.imagesharp.128.png",
  5820. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  5821. "sixlabors.imagesharp.nuspec"
  5822. ]
  5823. },
  5824. "SSH.NET/2020.0.0-beta1": {
  5825. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  5826. "type": "package",
  5827. "path": "ssh.net/2020.0.0-beta1",
  5828. "files": [
  5829. ".nupkg.metadata",
  5830. ".signature.p7s",
  5831. "lib/net35/Renci.SshNet.dll",
  5832. "lib/net35/Renci.SshNet.xml",
  5833. "lib/net40/Renci.SshNet.dll",
  5834. "lib/net40/Renci.SshNet.xml",
  5835. "lib/netstandard1.3/Renci.SshNet.dll",
  5836. "lib/netstandard1.3/Renci.SshNet.xml",
  5837. "lib/netstandard2.0/Renci.SshNet.dll",
  5838. "lib/netstandard2.0/Renci.SshNet.xml",
  5839. "lib/sl4/Renci.SshNet.dll",
  5840. "lib/sl4/Renci.SshNet.xml",
  5841. "lib/sl5/Renci.SshNet.dll",
  5842. "lib/sl5/Renci.SshNet.xml",
  5843. "lib/uap10/Renci.SshNet.dll",
  5844. "lib/uap10/Renci.SshNet.xml",
  5845. "lib/wp71/Renci.SshNet.dll",
  5846. "lib/wp71/Renci.SshNet.xml",
  5847. "lib/wp8/Renci.SshNet.dll",
  5848. "lib/wp8/Renci.SshNet.xml",
  5849. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5850. "ssh.net.nuspec"
  5851. ]
  5852. },
  5853. "SshNet.Security.Cryptography/1.3.0": {
  5854. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5855. "type": "package",
  5856. "path": "sshnet.security.cryptography/1.3.0",
  5857. "files": [
  5858. ".nupkg.metadata",
  5859. ".signature.p7s",
  5860. "lib/net20/SshNet.Security.Cryptography.dll",
  5861. "lib/net20/SshNet.Security.Cryptography.xml",
  5862. "lib/net40/SshNet.Security.Cryptography.dll",
  5863. "lib/net40/SshNet.Security.Cryptography.xml",
  5864. "lib/net45/SshNet.Security.Cryptography.dll",
  5865. "lib/net45/SshNet.Security.Cryptography.xml",
  5866. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5867. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5868. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5869. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5870. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5871. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5872. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5873. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5874. "lib/sl4/SshNet.Security.Cryptography.dll",
  5875. "lib/sl4/SshNet.Security.Cryptography.xml",
  5876. "lib/sl5/SshNet.Security.Cryptography.dll",
  5877. "lib/sl5/SshNet.Security.Cryptography.xml",
  5878. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5879. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5880. "lib/wp71/SshNet.Security.Cryptography.dll",
  5881. "lib/wp71/SshNet.Security.Cryptography.xml",
  5882. "lib/wp8/SshNet.Security.Cryptography.dll",
  5883. "lib/wp8/SshNet.Security.Cryptography.xml",
  5884. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5885. "sshnet.security.cryptography.nuspec"
  5886. ]
  5887. },
  5888. "StackExchange.Redis/1.2.4": {
  5889. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5890. "type": "package",
  5891. "path": "stackexchange.redis/1.2.4",
  5892. "files": [
  5893. ".nupkg.metadata",
  5894. ".signature.p7s",
  5895. "lib/net45/StackExchange.Redis.dll",
  5896. "lib/net45/StackExchange.Redis.xml",
  5897. "lib/net46/StackExchange.Redis.dll",
  5898. "lib/net46/StackExchange.Redis.xml",
  5899. "lib/netstandard1.5/StackExchange.Redis.dll",
  5900. "lib/netstandard1.5/StackExchange.Redis.xml",
  5901. "stackexchange.redis.1.2.4.nupkg.sha512",
  5902. "stackexchange.redis.nuspec"
  5903. ]
  5904. },
  5905. "System.AppContext/4.3.0": {
  5906. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5907. "type": "package",
  5908. "path": "system.appcontext/4.3.0",
  5909. "files": [
  5910. ".nupkg.metadata",
  5911. ".signature.p7s",
  5912. "ThirdPartyNotices.txt",
  5913. "dotnet_library_license.txt",
  5914. "lib/MonoAndroid10/_._",
  5915. "lib/MonoTouch10/_._",
  5916. "lib/net46/System.AppContext.dll",
  5917. "lib/net463/System.AppContext.dll",
  5918. "lib/netcore50/System.AppContext.dll",
  5919. "lib/netstandard1.6/System.AppContext.dll",
  5920. "lib/xamarinios10/_._",
  5921. "lib/xamarinmac20/_._",
  5922. "lib/xamarintvos10/_._",
  5923. "lib/xamarinwatchos10/_._",
  5924. "ref/MonoAndroid10/_._",
  5925. "ref/MonoTouch10/_._",
  5926. "ref/net46/System.AppContext.dll",
  5927. "ref/net463/System.AppContext.dll",
  5928. "ref/netstandard/_._",
  5929. "ref/netstandard1.3/System.AppContext.dll",
  5930. "ref/netstandard1.3/System.AppContext.xml",
  5931. "ref/netstandard1.3/de/System.AppContext.xml",
  5932. "ref/netstandard1.3/es/System.AppContext.xml",
  5933. "ref/netstandard1.3/fr/System.AppContext.xml",
  5934. "ref/netstandard1.3/it/System.AppContext.xml",
  5935. "ref/netstandard1.3/ja/System.AppContext.xml",
  5936. "ref/netstandard1.3/ko/System.AppContext.xml",
  5937. "ref/netstandard1.3/ru/System.AppContext.xml",
  5938. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5939. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5940. "ref/netstandard1.6/System.AppContext.dll",
  5941. "ref/netstandard1.6/System.AppContext.xml",
  5942. "ref/netstandard1.6/de/System.AppContext.xml",
  5943. "ref/netstandard1.6/es/System.AppContext.xml",
  5944. "ref/netstandard1.6/fr/System.AppContext.xml",
  5945. "ref/netstandard1.6/it/System.AppContext.xml",
  5946. "ref/netstandard1.6/ja/System.AppContext.xml",
  5947. "ref/netstandard1.6/ko/System.AppContext.xml",
  5948. "ref/netstandard1.6/ru/System.AppContext.xml",
  5949. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5950. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5951. "ref/xamarinios10/_._",
  5952. "ref/xamarinmac20/_._",
  5953. "ref/xamarintvos10/_._",
  5954. "ref/xamarinwatchos10/_._",
  5955. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5956. "system.appcontext.4.3.0.nupkg.sha512",
  5957. "system.appcontext.nuspec"
  5958. ]
  5959. },
  5960. "System.Buffers/4.5.1": {
  5961. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5962. "type": "package",
  5963. "path": "system.buffers/4.5.1",
  5964. "files": [
  5965. ".nupkg.metadata",
  5966. ".signature.p7s",
  5967. "LICENSE.TXT",
  5968. "THIRD-PARTY-NOTICES.TXT",
  5969. "lib/net461/System.Buffers.dll",
  5970. "lib/net461/System.Buffers.xml",
  5971. "lib/netcoreapp2.0/_._",
  5972. "lib/netstandard1.1/System.Buffers.dll",
  5973. "lib/netstandard1.1/System.Buffers.xml",
  5974. "lib/netstandard2.0/System.Buffers.dll",
  5975. "lib/netstandard2.0/System.Buffers.xml",
  5976. "lib/uap10.0.16299/_._",
  5977. "ref/net45/System.Buffers.dll",
  5978. "ref/net45/System.Buffers.xml",
  5979. "ref/netcoreapp2.0/_._",
  5980. "ref/netstandard1.1/System.Buffers.dll",
  5981. "ref/netstandard1.1/System.Buffers.xml",
  5982. "ref/netstandard2.0/System.Buffers.dll",
  5983. "ref/netstandard2.0/System.Buffers.xml",
  5984. "ref/uap10.0.16299/_._",
  5985. "system.buffers.4.5.1.nupkg.sha512",
  5986. "system.buffers.nuspec",
  5987. "useSharedDesignerContext.txt",
  5988. "version.txt"
  5989. ]
  5990. },
  5991. "System.Collections/4.3.0": {
  5992. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5993. "type": "package",
  5994. "path": "system.collections/4.3.0",
  5995. "files": [
  5996. ".nupkg.metadata",
  5997. ".signature.p7s",
  5998. "ThirdPartyNotices.txt",
  5999. "dotnet_library_license.txt",
  6000. "lib/MonoAndroid10/_._",
  6001. "lib/MonoTouch10/_._",
  6002. "lib/net45/_._",
  6003. "lib/portable-net45+win8+wp8+wpa81/_._",
  6004. "lib/win8/_._",
  6005. "lib/wp80/_._",
  6006. "lib/wpa81/_._",
  6007. "lib/xamarinios10/_._",
  6008. "lib/xamarinmac20/_._",
  6009. "lib/xamarintvos10/_._",
  6010. "lib/xamarinwatchos10/_._",
  6011. "ref/MonoAndroid10/_._",
  6012. "ref/MonoTouch10/_._",
  6013. "ref/net45/_._",
  6014. "ref/netcore50/System.Collections.dll",
  6015. "ref/netcore50/System.Collections.xml",
  6016. "ref/netcore50/de/System.Collections.xml",
  6017. "ref/netcore50/es/System.Collections.xml",
  6018. "ref/netcore50/fr/System.Collections.xml",
  6019. "ref/netcore50/it/System.Collections.xml",
  6020. "ref/netcore50/ja/System.Collections.xml",
  6021. "ref/netcore50/ko/System.Collections.xml",
  6022. "ref/netcore50/ru/System.Collections.xml",
  6023. "ref/netcore50/zh-hans/System.Collections.xml",
  6024. "ref/netcore50/zh-hant/System.Collections.xml",
  6025. "ref/netstandard1.0/System.Collections.dll",
  6026. "ref/netstandard1.0/System.Collections.xml",
  6027. "ref/netstandard1.0/de/System.Collections.xml",
  6028. "ref/netstandard1.0/es/System.Collections.xml",
  6029. "ref/netstandard1.0/fr/System.Collections.xml",
  6030. "ref/netstandard1.0/it/System.Collections.xml",
  6031. "ref/netstandard1.0/ja/System.Collections.xml",
  6032. "ref/netstandard1.0/ko/System.Collections.xml",
  6033. "ref/netstandard1.0/ru/System.Collections.xml",
  6034. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6035. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6036. "ref/netstandard1.3/System.Collections.dll",
  6037. "ref/netstandard1.3/System.Collections.xml",
  6038. "ref/netstandard1.3/de/System.Collections.xml",
  6039. "ref/netstandard1.3/es/System.Collections.xml",
  6040. "ref/netstandard1.3/fr/System.Collections.xml",
  6041. "ref/netstandard1.3/it/System.Collections.xml",
  6042. "ref/netstandard1.3/ja/System.Collections.xml",
  6043. "ref/netstandard1.3/ko/System.Collections.xml",
  6044. "ref/netstandard1.3/ru/System.Collections.xml",
  6045. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6046. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6047. "ref/portable-net45+win8+wp8+wpa81/_._",
  6048. "ref/win8/_._",
  6049. "ref/wp80/_._",
  6050. "ref/wpa81/_._",
  6051. "ref/xamarinios10/_._",
  6052. "ref/xamarinmac20/_._",
  6053. "ref/xamarintvos10/_._",
  6054. "ref/xamarinwatchos10/_._",
  6055. "system.collections.4.3.0.nupkg.sha512",
  6056. "system.collections.nuspec"
  6057. ]
  6058. },
  6059. "System.Collections.Concurrent/4.3.0": {
  6060. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6061. "type": "package",
  6062. "path": "system.collections.concurrent/4.3.0",
  6063. "files": [
  6064. ".nupkg.metadata",
  6065. ".signature.p7s",
  6066. "ThirdPartyNotices.txt",
  6067. "dotnet_library_license.txt",
  6068. "lib/MonoAndroid10/_._",
  6069. "lib/MonoTouch10/_._",
  6070. "lib/net45/_._",
  6071. "lib/netcore50/System.Collections.Concurrent.dll",
  6072. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6073. "lib/portable-net45+win8+wpa81/_._",
  6074. "lib/win8/_._",
  6075. "lib/wpa81/_._",
  6076. "lib/xamarinios10/_._",
  6077. "lib/xamarinmac20/_._",
  6078. "lib/xamarintvos10/_._",
  6079. "lib/xamarinwatchos10/_._",
  6080. "ref/MonoAndroid10/_._",
  6081. "ref/MonoTouch10/_._",
  6082. "ref/net45/_._",
  6083. "ref/netcore50/System.Collections.Concurrent.dll",
  6084. "ref/netcore50/System.Collections.Concurrent.xml",
  6085. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6086. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6087. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6088. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6089. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6090. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6091. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6092. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6093. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6094. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6095. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6096. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6097. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6098. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6099. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6100. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6101. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6102. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6103. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6104. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6105. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6106. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6107. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6108. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6109. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6110. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6111. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6112. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6113. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6114. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6115. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6116. "ref/portable-net45+win8+wpa81/_._",
  6117. "ref/win8/_._",
  6118. "ref/wpa81/_._",
  6119. "ref/xamarinios10/_._",
  6120. "ref/xamarinmac20/_._",
  6121. "ref/xamarintvos10/_._",
  6122. "ref/xamarinwatchos10/_._",
  6123. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6124. "system.collections.concurrent.nuspec"
  6125. ]
  6126. },
  6127. "System.Collections.Immutable/5.0.0": {
  6128. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6129. "type": "package",
  6130. "path": "system.collections.immutable/5.0.0",
  6131. "files": [
  6132. ".nupkg.metadata",
  6133. ".signature.p7s",
  6134. "Icon.png",
  6135. "LICENSE.TXT",
  6136. "THIRD-PARTY-NOTICES.TXT",
  6137. "lib/net461/System.Collections.Immutable.dll",
  6138. "lib/net461/System.Collections.Immutable.xml",
  6139. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6140. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6141. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6142. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6143. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6144. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6145. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6146. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6147. "system.collections.immutable.5.0.0.nupkg.sha512",
  6148. "system.collections.immutable.nuspec",
  6149. "useSharedDesignerContext.txt",
  6150. "version.txt"
  6151. ]
  6152. },
  6153. "System.Collections.NonGeneric/4.3.0": {
  6154. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6155. "type": "package",
  6156. "path": "system.collections.nongeneric/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/net46/System.Collections.NonGeneric.dll",
  6165. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6166. "lib/xamarinios10/_._",
  6167. "lib/xamarinmac20/_._",
  6168. "lib/xamarintvos10/_._",
  6169. "lib/xamarinwatchos10/_._",
  6170. "ref/MonoAndroid10/_._",
  6171. "ref/MonoTouch10/_._",
  6172. "ref/net46/System.Collections.NonGeneric.dll",
  6173. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6174. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6175. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6176. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6177. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6178. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6179. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6180. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6181. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6182. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6183. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6184. "ref/xamarinios10/_._",
  6185. "ref/xamarinmac20/_._",
  6186. "ref/xamarintvos10/_._",
  6187. "ref/xamarinwatchos10/_._",
  6188. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6189. "system.collections.nongeneric.nuspec"
  6190. ]
  6191. },
  6192. "System.ComponentModel/4.3.0": {
  6193. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6194. "type": "package",
  6195. "path": "system.componentmodel/4.3.0",
  6196. "files": [
  6197. ".nupkg.metadata",
  6198. ".signature.p7s",
  6199. "ThirdPartyNotices.txt",
  6200. "dotnet_library_license.txt",
  6201. "lib/MonoAndroid10/_._",
  6202. "lib/MonoTouch10/_._",
  6203. "lib/net45/_._",
  6204. "lib/netcore50/System.ComponentModel.dll",
  6205. "lib/netstandard1.3/System.ComponentModel.dll",
  6206. "lib/portable-net45+win8+wp8+wpa81/_._",
  6207. "lib/win8/_._",
  6208. "lib/wp80/_._",
  6209. "lib/wpa81/_._",
  6210. "lib/xamarinios10/_._",
  6211. "lib/xamarinmac20/_._",
  6212. "lib/xamarintvos10/_._",
  6213. "lib/xamarinwatchos10/_._",
  6214. "ref/MonoAndroid10/_._",
  6215. "ref/MonoTouch10/_._",
  6216. "ref/net45/_._",
  6217. "ref/netcore50/System.ComponentModel.dll",
  6218. "ref/netcore50/System.ComponentModel.xml",
  6219. "ref/netcore50/de/System.ComponentModel.xml",
  6220. "ref/netcore50/es/System.ComponentModel.xml",
  6221. "ref/netcore50/fr/System.ComponentModel.xml",
  6222. "ref/netcore50/it/System.ComponentModel.xml",
  6223. "ref/netcore50/ja/System.ComponentModel.xml",
  6224. "ref/netcore50/ko/System.ComponentModel.xml",
  6225. "ref/netcore50/ru/System.ComponentModel.xml",
  6226. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6227. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6228. "ref/netstandard1.0/System.ComponentModel.dll",
  6229. "ref/netstandard1.0/System.ComponentModel.xml",
  6230. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6231. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6232. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6233. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6234. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6235. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6236. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6237. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6238. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6239. "ref/portable-net45+win8+wp8+wpa81/_._",
  6240. "ref/win8/_._",
  6241. "ref/wp80/_._",
  6242. "ref/wpa81/_._",
  6243. "ref/xamarinios10/_._",
  6244. "ref/xamarinmac20/_._",
  6245. "ref/xamarintvos10/_._",
  6246. "ref/xamarinwatchos10/_._",
  6247. "system.componentmodel.4.3.0.nupkg.sha512",
  6248. "system.componentmodel.nuspec"
  6249. ]
  6250. },
  6251. "System.ComponentModel.Annotations/5.0.0": {
  6252. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6253. "type": "package",
  6254. "path": "system.componentmodel.annotations/5.0.0",
  6255. "files": [
  6256. ".nupkg.metadata",
  6257. ".signature.p7s",
  6258. "Icon.png",
  6259. "LICENSE.TXT",
  6260. "THIRD-PARTY-NOTICES.TXT",
  6261. "lib/MonoAndroid10/_._",
  6262. "lib/MonoTouch10/_._",
  6263. "lib/net45/_._",
  6264. "lib/net461/System.ComponentModel.Annotations.dll",
  6265. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6266. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6267. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6268. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6269. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6270. "lib/portable-net45+win8/_._",
  6271. "lib/win8/_._",
  6272. "lib/xamarinios10/_._",
  6273. "lib/xamarinmac20/_._",
  6274. "lib/xamarintvos10/_._",
  6275. "lib/xamarinwatchos10/_._",
  6276. "ref/MonoAndroid10/_._",
  6277. "ref/MonoTouch10/_._",
  6278. "ref/net45/_._",
  6279. "ref/net461/System.ComponentModel.Annotations.dll",
  6280. "ref/net461/System.ComponentModel.Annotations.xml",
  6281. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6282. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6283. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6284. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6285. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6286. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6287. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6288. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6289. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6290. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6291. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6292. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6293. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6294. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6295. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6296. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6297. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6298. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6299. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6300. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6301. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6302. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6303. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6304. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6305. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6306. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6307. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6308. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6309. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6310. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6311. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6312. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6313. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6314. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6315. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6316. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6317. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6318. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6319. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6320. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6321. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6322. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6323. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6324. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6325. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6326. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6327. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6328. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6329. "ref/portable-net45+win8/_._",
  6330. "ref/win8/_._",
  6331. "ref/xamarinios10/_._",
  6332. "ref/xamarinmac20/_._",
  6333. "ref/xamarintvos10/_._",
  6334. "ref/xamarinwatchos10/_._",
  6335. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6336. "system.componentmodel.annotations.nuspec",
  6337. "useSharedDesignerContext.txt",
  6338. "version.txt"
  6339. ]
  6340. },
  6341. "System.ComponentModel.EventBasedAsync/4.3.0": {
  6342. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  6343. "type": "package",
  6344. "path": "system.componentmodel.eventbasedasync/4.3.0",
  6345. "files": [
  6346. ".nupkg.metadata",
  6347. ".signature.p7s",
  6348. "ThirdPartyNotices.txt",
  6349. "dotnet_library_license.txt",
  6350. "lib/MonoAndroid10/_._",
  6351. "lib/MonoTouch10/_._",
  6352. "lib/net45/_._",
  6353. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6354. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6355. "lib/portable-net45+win8+wp8+wpa81/_._",
  6356. "lib/win8/_._",
  6357. "lib/wp80/_._",
  6358. "lib/wpa81/_._",
  6359. "lib/xamarinios10/_._",
  6360. "lib/xamarinmac20/_._",
  6361. "lib/xamarintvos10/_._",
  6362. "lib/xamarinwatchos10/_._",
  6363. "ref/MonoAndroid10/_._",
  6364. "ref/MonoTouch10/_._",
  6365. "ref/net45/_._",
  6366. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  6367. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  6368. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  6369. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  6370. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  6371. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  6372. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  6373. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  6374. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  6375. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6376. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6377. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  6378. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  6379. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  6380. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  6381. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  6382. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  6383. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  6384. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  6385. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  6386. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6387. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6388. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  6389. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  6390. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  6391. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  6392. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  6393. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  6394. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  6395. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  6396. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  6397. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  6398. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  6399. "ref/portable-net45+win8+wp8+wpa81/_._",
  6400. "ref/win8/_._",
  6401. "ref/wp80/_._",
  6402. "ref/wpa81/_._",
  6403. "ref/xamarinios10/_._",
  6404. "ref/xamarinmac20/_._",
  6405. "ref/xamarintvos10/_._",
  6406. "ref/xamarinwatchos10/_._",
  6407. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  6408. "system.componentmodel.eventbasedasync.nuspec"
  6409. ]
  6410. },
  6411. "System.ComponentModel.Primitives/4.3.0": {
  6412. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6413. "type": "package",
  6414. "path": "system.componentmodel.primitives/4.3.0",
  6415. "files": [
  6416. ".nupkg.metadata",
  6417. ".signature.p7s",
  6418. "ThirdPartyNotices.txt",
  6419. "dotnet_library_license.txt",
  6420. "lib/MonoAndroid10/_._",
  6421. "lib/MonoTouch10/_._",
  6422. "lib/net45/System.ComponentModel.Primitives.dll",
  6423. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6424. "lib/xamarinios10/_._",
  6425. "lib/xamarinmac20/_._",
  6426. "lib/xamarintvos10/_._",
  6427. "lib/xamarinwatchos10/_._",
  6428. "ref/MonoAndroid10/_._",
  6429. "ref/MonoTouch10/_._",
  6430. "ref/net45/System.ComponentModel.Primitives.dll",
  6431. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6432. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6433. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6434. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6435. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6436. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6437. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6438. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6439. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6440. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6441. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6442. "ref/xamarinios10/_._",
  6443. "ref/xamarinmac20/_._",
  6444. "ref/xamarintvos10/_._",
  6445. "ref/xamarinwatchos10/_._",
  6446. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6447. "system.componentmodel.primitives.nuspec"
  6448. ]
  6449. },
  6450. "System.Configuration.ConfigurationManager/4.7.0": {
  6451. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6452. "type": "package",
  6453. "path": "system.configuration.configurationmanager/4.7.0",
  6454. "files": [
  6455. ".nupkg.metadata",
  6456. ".signature.p7s",
  6457. "LICENSE.TXT",
  6458. "THIRD-PARTY-NOTICES.TXT",
  6459. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6460. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6461. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6462. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6463. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6464. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6465. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6466. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6467. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6468. "system.configuration.configurationmanager.nuspec",
  6469. "useSharedDesignerContext.txt",
  6470. "version.txt"
  6471. ]
  6472. },
  6473. "System.Console/4.3.0": {
  6474. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6475. "type": "package",
  6476. "path": "system.console/4.3.0",
  6477. "files": [
  6478. ".nupkg.metadata",
  6479. ".signature.p7s",
  6480. "ThirdPartyNotices.txt",
  6481. "dotnet_library_license.txt",
  6482. "lib/MonoAndroid10/_._",
  6483. "lib/MonoTouch10/_._",
  6484. "lib/net46/System.Console.dll",
  6485. "lib/xamarinios10/_._",
  6486. "lib/xamarinmac20/_._",
  6487. "lib/xamarintvos10/_._",
  6488. "lib/xamarinwatchos10/_._",
  6489. "ref/MonoAndroid10/_._",
  6490. "ref/MonoTouch10/_._",
  6491. "ref/net46/System.Console.dll",
  6492. "ref/netstandard1.3/System.Console.dll",
  6493. "ref/netstandard1.3/System.Console.xml",
  6494. "ref/netstandard1.3/de/System.Console.xml",
  6495. "ref/netstandard1.3/es/System.Console.xml",
  6496. "ref/netstandard1.3/fr/System.Console.xml",
  6497. "ref/netstandard1.3/it/System.Console.xml",
  6498. "ref/netstandard1.3/ja/System.Console.xml",
  6499. "ref/netstandard1.3/ko/System.Console.xml",
  6500. "ref/netstandard1.3/ru/System.Console.xml",
  6501. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6502. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6503. "ref/xamarinios10/_._",
  6504. "ref/xamarinmac20/_._",
  6505. "ref/xamarintvos10/_._",
  6506. "ref/xamarinwatchos10/_._",
  6507. "system.console.4.3.0.nupkg.sha512",
  6508. "system.console.nuspec"
  6509. ]
  6510. },
  6511. "System.Diagnostics.Debug/4.3.0": {
  6512. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6513. "type": "package",
  6514. "path": "system.diagnostics.debug/4.3.0",
  6515. "files": [
  6516. ".nupkg.metadata",
  6517. ".signature.p7s",
  6518. "ThirdPartyNotices.txt",
  6519. "dotnet_library_license.txt",
  6520. "lib/MonoAndroid10/_._",
  6521. "lib/MonoTouch10/_._",
  6522. "lib/net45/_._",
  6523. "lib/portable-net45+win8+wp8+wpa81/_._",
  6524. "lib/win8/_._",
  6525. "lib/wp80/_._",
  6526. "lib/wpa81/_._",
  6527. "lib/xamarinios10/_._",
  6528. "lib/xamarinmac20/_._",
  6529. "lib/xamarintvos10/_._",
  6530. "lib/xamarinwatchos10/_._",
  6531. "ref/MonoAndroid10/_._",
  6532. "ref/MonoTouch10/_._",
  6533. "ref/net45/_._",
  6534. "ref/netcore50/System.Diagnostics.Debug.dll",
  6535. "ref/netcore50/System.Diagnostics.Debug.xml",
  6536. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6537. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6538. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6539. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6540. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6541. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6542. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6543. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6544. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6545. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6546. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6547. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6548. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6549. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6550. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6551. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6552. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6553. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6554. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6555. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6556. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6557. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6558. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6559. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6560. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6561. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6562. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6563. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6564. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6565. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6566. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6567. "ref/portable-net45+win8+wp8+wpa81/_._",
  6568. "ref/win8/_._",
  6569. "ref/wp80/_._",
  6570. "ref/wpa81/_._",
  6571. "ref/xamarinios10/_._",
  6572. "ref/xamarinmac20/_._",
  6573. "ref/xamarintvos10/_._",
  6574. "ref/xamarinwatchos10/_._",
  6575. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6576. "system.diagnostics.debug.nuspec"
  6577. ]
  6578. },
  6579. "System.Diagnostics.DiagnosticSource/5.0.0": {
  6580. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  6581. "type": "package",
  6582. "path": "system.diagnostics.diagnosticsource/5.0.0",
  6583. "files": [
  6584. ".nupkg.metadata",
  6585. ".signature.p7s",
  6586. "Icon.png",
  6587. "LICENSE.TXT",
  6588. "THIRD-PARTY-NOTICES.TXT",
  6589. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6590. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6591. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6592. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6593. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6594. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6595. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6596. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6597. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6598. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6599. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6600. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6601. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  6602. "system.diagnostics.diagnosticsource.nuspec",
  6603. "useSharedDesignerContext.txt",
  6604. "version.txt"
  6605. ]
  6606. },
  6607. "System.Diagnostics.Tools/4.3.0": {
  6608. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6609. "type": "package",
  6610. "path": "system.diagnostics.tools/4.3.0",
  6611. "files": [
  6612. ".nupkg.metadata",
  6613. ".signature.p7s",
  6614. "ThirdPartyNotices.txt",
  6615. "dotnet_library_license.txt",
  6616. "lib/MonoAndroid10/_._",
  6617. "lib/MonoTouch10/_._",
  6618. "lib/net45/_._",
  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/netcore50/System.Diagnostics.Tools.dll",
  6631. "ref/netcore50/System.Diagnostics.Tools.xml",
  6632. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6633. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6634. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6635. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6636. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6637. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6638. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6639. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6640. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6641. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6642. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6643. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6644. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6645. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6646. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6647. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6648. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6649. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6650. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6651. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6652. "ref/portable-net45+win8+wp8+wpa81/_._",
  6653. "ref/win8/_._",
  6654. "ref/wp80/_._",
  6655. "ref/wpa81/_._",
  6656. "ref/xamarinios10/_._",
  6657. "ref/xamarinmac20/_._",
  6658. "ref/xamarintvos10/_._",
  6659. "ref/xamarinwatchos10/_._",
  6660. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6661. "system.diagnostics.tools.nuspec"
  6662. ]
  6663. },
  6664. "System.Diagnostics.Tracing/4.3.0": {
  6665. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6666. "type": "package",
  6667. "path": "system.diagnostics.tracing/4.3.0",
  6668. "files": [
  6669. ".nupkg.metadata",
  6670. ".signature.p7s",
  6671. "ThirdPartyNotices.txt",
  6672. "dotnet_library_license.txt",
  6673. "lib/MonoAndroid10/_._",
  6674. "lib/MonoTouch10/_._",
  6675. "lib/net45/_._",
  6676. "lib/net462/System.Diagnostics.Tracing.dll",
  6677. "lib/portable-net45+win8+wpa81/_._",
  6678. "lib/win8/_._",
  6679. "lib/wpa81/_._",
  6680. "lib/xamarinios10/_._",
  6681. "lib/xamarinmac20/_._",
  6682. "lib/xamarintvos10/_._",
  6683. "lib/xamarinwatchos10/_._",
  6684. "ref/MonoAndroid10/_._",
  6685. "ref/MonoTouch10/_._",
  6686. "ref/net45/_._",
  6687. "ref/net462/System.Diagnostics.Tracing.dll",
  6688. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6689. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6690. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6691. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6692. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6693. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6694. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6695. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6696. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6697. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6698. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6699. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6700. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6701. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6702. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6703. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6704. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6705. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6706. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6707. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6708. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6709. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6710. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6711. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6712. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6713. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6714. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6715. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6716. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6717. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6718. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6719. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6720. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6721. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6722. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6723. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6724. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6725. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6726. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6727. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6728. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6729. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6730. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6731. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6732. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6733. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6734. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6735. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6736. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6737. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6738. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6739. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6740. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6741. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6742. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6743. "ref/portable-net45+win8+wpa81/_._",
  6744. "ref/win8/_._",
  6745. "ref/wpa81/_._",
  6746. "ref/xamarinios10/_._",
  6747. "ref/xamarinmac20/_._",
  6748. "ref/xamarintvos10/_._",
  6749. "ref/xamarinwatchos10/_._",
  6750. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6751. "system.diagnostics.tracing.nuspec"
  6752. ]
  6753. },
  6754. "System.Drawing.Common/5.0.3": {
  6755. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  6756. "type": "package",
  6757. "path": "system.drawing.common/5.0.3",
  6758. "files": [
  6759. ".nupkg.metadata",
  6760. ".signature.p7s",
  6761. "Icon.png",
  6762. "LICENSE.TXT",
  6763. "THIRD-PARTY-NOTICES.TXT",
  6764. "lib/MonoAndroid10/_._",
  6765. "lib/MonoTouch10/_._",
  6766. "lib/net461/System.Drawing.Common.dll",
  6767. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  6768. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  6769. "lib/netstandard2.0/System.Drawing.Common.dll",
  6770. "lib/xamarinios10/_._",
  6771. "lib/xamarinmac20/_._",
  6772. "lib/xamarintvos10/_._",
  6773. "lib/xamarinwatchos10/_._",
  6774. "ref/MonoAndroid10/_._",
  6775. "ref/MonoTouch10/_._",
  6776. "ref/net461/System.Drawing.Common.dll",
  6777. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6778. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6779. "ref/netstandard2.0/System.Drawing.Common.dll",
  6780. "ref/xamarinios10/_._",
  6781. "ref/xamarinmac20/_._",
  6782. "ref/xamarintvos10/_._",
  6783. "ref/xamarinwatchos10/_._",
  6784. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6785. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6786. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6787. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6788. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6789. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6790. "system.drawing.common.5.0.3.nupkg.sha512",
  6791. "system.drawing.common.nuspec",
  6792. "useSharedDesignerContext.txt",
  6793. "version.txt"
  6794. ]
  6795. },
  6796. "System.Globalization/4.3.0": {
  6797. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6798. "type": "package",
  6799. "path": "system.globalization/4.3.0",
  6800. "files": [
  6801. ".nupkg.metadata",
  6802. ".signature.p7s",
  6803. "ThirdPartyNotices.txt",
  6804. "dotnet_library_license.txt",
  6805. "lib/MonoAndroid10/_._",
  6806. "lib/MonoTouch10/_._",
  6807. "lib/net45/_._",
  6808. "lib/portable-net45+win8+wp8+wpa81/_._",
  6809. "lib/win8/_._",
  6810. "lib/wp80/_._",
  6811. "lib/wpa81/_._",
  6812. "lib/xamarinios10/_._",
  6813. "lib/xamarinmac20/_._",
  6814. "lib/xamarintvos10/_._",
  6815. "lib/xamarinwatchos10/_._",
  6816. "ref/MonoAndroid10/_._",
  6817. "ref/MonoTouch10/_._",
  6818. "ref/net45/_._",
  6819. "ref/netcore50/System.Globalization.dll",
  6820. "ref/netcore50/System.Globalization.xml",
  6821. "ref/netcore50/de/System.Globalization.xml",
  6822. "ref/netcore50/es/System.Globalization.xml",
  6823. "ref/netcore50/fr/System.Globalization.xml",
  6824. "ref/netcore50/it/System.Globalization.xml",
  6825. "ref/netcore50/ja/System.Globalization.xml",
  6826. "ref/netcore50/ko/System.Globalization.xml",
  6827. "ref/netcore50/ru/System.Globalization.xml",
  6828. "ref/netcore50/zh-hans/System.Globalization.xml",
  6829. "ref/netcore50/zh-hant/System.Globalization.xml",
  6830. "ref/netstandard1.0/System.Globalization.dll",
  6831. "ref/netstandard1.0/System.Globalization.xml",
  6832. "ref/netstandard1.0/de/System.Globalization.xml",
  6833. "ref/netstandard1.0/es/System.Globalization.xml",
  6834. "ref/netstandard1.0/fr/System.Globalization.xml",
  6835. "ref/netstandard1.0/it/System.Globalization.xml",
  6836. "ref/netstandard1.0/ja/System.Globalization.xml",
  6837. "ref/netstandard1.0/ko/System.Globalization.xml",
  6838. "ref/netstandard1.0/ru/System.Globalization.xml",
  6839. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6840. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6841. "ref/netstandard1.3/System.Globalization.dll",
  6842. "ref/netstandard1.3/System.Globalization.xml",
  6843. "ref/netstandard1.3/de/System.Globalization.xml",
  6844. "ref/netstandard1.3/es/System.Globalization.xml",
  6845. "ref/netstandard1.3/fr/System.Globalization.xml",
  6846. "ref/netstandard1.3/it/System.Globalization.xml",
  6847. "ref/netstandard1.3/ja/System.Globalization.xml",
  6848. "ref/netstandard1.3/ko/System.Globalization.xml",
  6849. "ref/netstandard1.3/ru/System.Globalization.xml",
  6850. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6851. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6852. "ref/portable-net45+win8+wp8+wpa81/_._",
  6853. "ref/win8/_._",
  6854. "ref/wp80/_._",
  6855. "ref/wpa81/_._",
  6856. "ref/xamarinios10/_._",
  6857. "ref/xamarinmac20/_._",
  6858. "ref/xamarintvos10/_._",
  6859. "ref/xamarinwatchos10/_._",
  6860. "system.globalization.4.3.0.nupkg.sha512",
  6861. "system.globalization.nuspec"
  6862. ]
  6863. },
  6864. "System.Globalization.Calendars/4.3.0": {
  6865. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6866. "type": "package",
  6867. "path": "system.globalization.calendars/4.3.0",
  6868. "files": [
  6869. ".nupkg.metadata",
  6870. ".signature.p7s",
  6871. "ThirdPartyNotices.txt",
  6872. "dotnet_library_license.txt",
  6873. "lib/MonoAndroid10/_._",
  6874. "lib/MonoTouch10/_._",
  6875. "lib/net46/System.Globalization.Calendars.dll",
  6876. "lib/xamarinios10/_._",
  6877. "lib/xamarinmac20/_._",
  6878. "lib/xamarintvos10/_._",
  6879. "lib/xamarinwatchos10/_._",
  6880. "ref/MonoAndroid10/_._",
  6881. "ref/MonoTouch10/_._",
  6882. "ref/net46/System.Globalization.Calendars.dll",
  6883. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6884. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6885. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6886. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6887. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6888. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6889. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6890. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6891. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6892. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6893. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6894. "ref/xamarinios10/_._",
  6895. "ref/xamarinmac20/_._",
  6896. "ref/xamarintvos10/_._",
  6897. "ref/xamarinwatchos10/_._",
  6898. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6899. "system.globalization.calendars.nuspec"
  6900. ]
  6901. },
  6902. "System.Globalization.Extensions/4.3.0": {
  6903. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6904. "type": "package",
  6905. "path": "system.globalization.extensions/4.3.0",
  6906. "files": [
  6907. ".nupkg.metadata",
  6908. ".signature.p7s",
  6909. "ThirdPartyNotices.txt",
  6910. "dotnet_library_license.txt",
  6911. "lib/MonoAndroid10/_._",
  6912. "lib/MonoTouch10/_._",
  6913. "lib/net46/System.Globalization.Extensions.dll",
  6914. "lib/xamarinios10/_._",
  6915. "lib/xamarinmac20/_._",
  6916. "lib/xamarintvos10/_._",
  6917. "lib/xamarinwatchos10/_._",
  6918. "ref/MonoAndroid10/_._",
  6919. "ref/MonoTouch10/_._",
  6920. "ref/net46/System.Globalization.Extensions.dll",
  6921. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6922. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6923. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6924. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6925. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6926. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6927. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6928. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6929. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6930. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6931. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6932. "ref/xamarinios10/_._",
  6933. "ref/xamarinmac20/_._",
  6934. "ref/xamarintvos10/_._",
  6935. "ref/xamarinwatchos10/_._",
  6936. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6937. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6938. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6939. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6940. "system.globalization.extensions.nuspec"
  6941. ]
  6942. },
  6943. "System.IO/4.3.0": {
  6944. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6945. "type": "package",
  6946. "path": "system.io/4.3.0",
  6947. "files": [
  6948. ".nupkg.metadata",
  6949. ".signature.p7s",
  6950. "ThirdPartyNotices.txt",
  6951. "dotnet_library_license.txt",
  6952. "lib/MonoAndroid10/_._",
  6953. "lib/MonoTouch10/_._",
  6954. "lib/net45/_._",
  6955. "lib/net462/System.IO.dll",
  6956. "lib/portable-net45+win8+wp8+wpa81/_._",
  6957. "lib/win8/_._",
  6958. "lib/wp80/_._",
  6959. "lib/wpa81/_._",
  6960. "lib/xamarinios10/_._",
  6961. "lib/xamarinmac20/_._",
  6962. "lib/xamarintvos10/_._",
  6963. "lib/xamarinwatchos10/_._",
  6964. "ref/MonoAndroid10/_._",
  6965. "ref/MonoTouch10/_._",
  6966. "ref/net45/_._",
  6967. "ref/net462/System.IO.dll",
  6968. "ref/netcore50/System.IO.dll",
  6969. "ref/netcore50/System.IO.xml",
  6970. "ref/netcore50/de/System.IO.xml",
  6971. "ref/netcore50/es/System.IO.xml",
  6972. "ref/netcore50/fr/System.IO.xml",
  6973. "ref/netcore50/it/System.IO.xml",
  6974. "ref/netcore50/ja/System.IO.xml",
  6975. "ref/netcore50/ko/System.IO.xml",
  6976. "ref/netcore50/ru/System.IO.xml",
  6977. "ref/netcore50/zh-hans/System.IO.xml",
  6978. "ref/netcore50/zh-hant/System.IO.xml",
  6979. "ref/netstandard1.0/System.IO.dll",
  6980. "ref/netstandard1.0/System.IO.xml",
  6981. "ref/netstandard1.0/de/System.IO.xml",
  6982. "ref/netstandard1.0/es/System.IO.xml",
  6983. "ref/netstandard1.0/fr/System.IO.xml",
  6984. "ref/netstandard1.0/it/System.IO.xml",
  6985. "ref/netstandard1.0/ja/System.IO.xml",
  6986. "ref/netstandard1.0/ko/System.IO.xml",
  6987. "ref/netstandard1.0/ru/System.IO.xml",
  6988. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6989. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6990. "ref/netstandard1.3/System.IO.dll",
  6991. "ref/netstandard1.3/System.IO.xml",
  6992. "ref/netstandard1.3/de/System.IO.xml",
  6993. "ref/netstandard1.3/es/System.IO.xml",
  6994. "ref/netstandard1.3/fr/System.IO.xml",
  6995. "ref/netstandard1.3/it/System.IO.xml",
  6996. "ref/netstandard1.3/ja/System.IO.xml",
  6997. "ref/netstandard1.3/ko/System.IO.xml",
  6998. "ref/netstandard1.3/ru/System.IO.xml",
  6999. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7000. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7001. "ref/netstandard1.5/System.IO.dll",
  7002. "ref/netstandard1.5/System.IO.xml",
  7003. "ref/netstandard1.5/de/System.IO.xml",
  7004. "ref/netstandard1.5/es/System.IO.xml",
  7005. "ref/netstandard1.5/fr/System.IO.xml",
  7006. "ref/netstandard1.5/it/System.IO.xml",
  7007. "ref/netstandard1.5/ja/System.IO.xml",
  7008. "ref/netstandard1.5/ko/System.IO.xml",
  7009. "ref/netstandard1.5/ru/System.IO.xml",
  7010. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7011. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7012. "ref/portable-net45+win8+wp8+wpa81/_._",
  7013. "ref/win8/_._",
  7014. "ref/wp80/_._",
  7015. "ref/wpa81/_._",
  7016. "ref/xamarinios10/_._",
  7017. "ref/xamarinmac20/_._",
  7018. "ref/xamarintvos10/_._",
  7019. "ref/xamarinwatchos10/_._",
  7020. "system.io.4.3.0.nupkg.sha512",
  7021. "system.io.nuspec"
  7022. ]
  7023. },
  7024. "System.IO.Compression/4.3.0": {
  7025. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7026. "type": "package",
  7027. "path": "system.io.compression/4.3.0",
  7028. "files": [
  7029. ".nupkg.metadata",
  7030. ".signature.p7s",
  7031. "ThirdPartyNotices.txt",
  7032. "dotnet_library_license.txt",
  7033. "lib/MonoAndroid10/_._",
  7034. "lib/MonoTouch10/_._",
  7035. "lib/net45/_._",
  7036. "lib/net46/System.IO.Compression.dll",
  7037. "lib/portable-net45+win8+wpa81/_._",
  7038. "lib/win8/_._",
  7039. "lib/wpa81/_._",
  7040. "lib/xamarinios10/_._",
  7041. "lib/xamarinmac20/_._",
  7042. "lib/xamarintvos10/_._",
  7043. "lib/xamarinwatchos10/_._",
  7044. "ref/MonoAndroid10/_._",
  7045. "ref/MonoTouch10/_._",
  7046. "ref/net45/_._",
  7047. "ref/net46/System.IO.Compression.dll",
  7048. "ref/netcore50/System.IO.Compression.dll",
  7049. "ref/netcore50/System.IO.Compression.xml",
  7050. "ref/netcore50/de/System.IO.Compression.xml",
  7051. "ref/netcore50/es/System.IO.Compression.xml",
  7052. "ref/netcore50/fr/System.IO.Compression.xml",
  7053. "ref/netcore50/it/System.IO.Compression.xml",
  7054. "ref/netcore50/ja/System.IO.Compression.xml",
  7055. "ref/netcore50/ko/System.IO.Compression.xml",
  7056. "ref/netcore50/ru/System.IO.Compression.xml",
  7057. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7058. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7059. "ref/netstandard1.1/System.IO.Compression.dll",
  7060. "ref/netstandard1.1/System.IO.Compression.xml",
  7061. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7062. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7063. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7064. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7065. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7066. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7067. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7068. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7069. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7070. "ref/netstandard1.3/System.IO.Compression.dll",
  7071. "ref/netstandard1.3/System.IO.Compression.xml",
  7072. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7073. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7074. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7075. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7076. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7077. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7078. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7079. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7080. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7081. "ref/portable-net45+win8+wpa81/_._",
  7082. "ref/win8/_._",
  7083. "ref/wpa81/_._",
  7084. "ref/xamarinios10/_._",
  7085. "ref/xamarinmac20/_._",
  7086. "ref/xamarintvos10/_._",
  7087. "ref/xamarinwatchos10/_._",
  7088. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7089. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7090. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7091. "system.io.compression.4.3.0.nupkg.sha512",
  7092. "system.io.compression.nuspec"
  7093. ]
  7094. },
  7095. "System.IO.Compression.ZipFile/4.3.0": {
  7096. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7097. "type": "package",
  7098. "path": "system.io.compression.zipfile/4.3.0",
  7099. "files": [
  7100. ".nupkg.metadata",
  7101. ".signature.p7s",
  7102. "ThirdPartyNotices.txt",
  7103. "dotnet_library_license.txt",
  7104. "lib/MonoAndroid10/_._",
  7105. "lib/MonoTouch10/_._",
  7106. "lib/net46/System.IO.Compression.ZipFile.dll",
  7107. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7108. "lib/xamarinios10/_._",
  7109. "lib/xamarinmac20/_._",
  7110. "lib/xamarintvos10/_._",
  7111. "lib/xamarinwatchos10/_._",
  7112. "ref/MonoAndroid10/_._",
  7113. "ref/MonoTouch10/_._",
  7114. "ref/net46/System.IO.Compression.ZipFile.dll",
  7115. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7116. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7117. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7118. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7119. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7120. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7121. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7122. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7123. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7124. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7125. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7126. "ref/xamarinios10/_._",
  7127. "ref/xamarinmac20/_._",
  7128. "ref/xamarintvos10/_._",
  7129. "ref/xamarinwatchos10/_._",
  7130. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7131. "system.io.compression.zipfile.nuspec"
  7132. ]
  7133. },
  7134. "System.IO.FileSystem/4.3.0": {
  7135. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7136. "type": "package",
  7137. "path": "system.io.filesystem/4.3.0",
  7138. "files": [
  7139. ".nupkg.metadata",
  7140. ".signature.p7s",
  7141. "ThirdPartyNotices.txt",
  7142. "dotnet_library_license.txt",
  7143. "lib/MonoAndroid10/_._",
  7144. "lib/MonoTouch10/_._",
  7145. "lib/net46/System.IO.FileSystem.dll",
  7146. "lib/xamarinios10/_._",
  7147. "lib/xamarinmac20/_._",
  7148. "lib/xamarintvos10/_._",
  7149. "lib/xamarinwatchos10/_._",
  7150. "ref/MonoAndroid10/_._",
  7151. "ref/MonoTouch10/_._",
  7152. "ref/net46/System.IO.FileSystem.dll",
  7153. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7154. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7155. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7156. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7157. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7158. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7159. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7160. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7161. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7162. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7163. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7164. "ref/xamarinios10/_._",
  7165. "ref/xamarinmac20/_._",
  7166. "ref/xamarintvos10/_._",
  7167. "ref/xamarinwatchos10/_._",
  7168. "system.io.filesystem.4.3.0.nupkg.sha512",
  7169. "system.io.filesystem.nuspec"
  7170. ]
  7171. },
  7172. "System.IO.FileSystem.Primitives/4.3.0": {
  7173. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7174. "type": "package",
  7175. "path": "system.io.filesystem.primitives/4.3.0",
  7176. "files": [
  7177. ".nupkg.metadata",
  7178. ".signature.p7s",
  7179. "ThirdPartyNotices.txt",
  7180. "dotnet_library_license.txt",
  7181. "lib/MonoAndroid10/_._",
  7182. "lib/MonoTouch10/_._",
  7183. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7184. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7185. "lib/xamarinios10/_._",
  7186. "lib/xamarinmac20/_._",
  7187. "lib/xamarintvos10/_._",
  7188. "lib/xamarinwatchos10/_._",
  7189. "ref/MonoAndroid10/_._",
  7190. "ref/MonoTouch10/_._",
  7191. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7192. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7193. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7194. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7195. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7196. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7197. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7198. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7199. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7200. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7201. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7202. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7203. "ref/xamarinios10/_._",
  7204. "ref/xamarinmac20/_._",
  7205. "ref/xamarintvos10/_._",
  7206. "ref/xamarinwatchos10/_._",
  7207. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7208. "system.io.filesystem.primitives.nuspec"
  7209. ]
  7210. },
  7211. "System.IO.Pipelines/5.0.0": {
  7212. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7213. "type": "package",
  7214. "path": "system.io.pipelines/5.0.0",
  7215. "files": [
  7216. ".nupkg.metadata",
  7217. ".signature.p7s",
  7218. "Icon.png",
  7219. "LICENSE.TXT",
  7220. "THIRD-PARTY-NOTICES.TXT",
  7221. "lib/net461/System.IO.Pipelines.dll",
  7222. "lib/net461/System.IO.Pipelines.xml",
  7223. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7224. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7225. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7226. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7227. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7228. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7229. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7230. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7231. "system.io.pipelines.5.0.0.nupkg.sha512",
  7232. "system.io.pipelines.nuspec",
  7233. "useSharedDesignerContext.txt",
  7234. "version.txt"
  7235. ]
  7236. },
  7237. "System.Linq/4.3.0": {
  7238. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7239. "type": "package",
  7240. "path": "system.linq/4.3.0",
  7241. "files": [
  7242. ".nupkg.metadata",
  7243. ".signature.p7s",
  7244. "ThirdPartyNotices.txt",
  7245. "dotnet_library_license.txt",
  7246. "lib/MonoAndroid10/_._",
  7247. "lib/MonoTouch10/_._",
  7248. "lib/net45/_._",
  7249. "lib/net463/System.Linq.dll",
  7250. "lib/netcore50/System.Linq.dll",
  7251. "lib/netstandard1.6/System.Linq.dll",
  7252. "lib/portable-net45+win8+wp8+wpa81/_._",
  7253. "lib/win8/_._",
  7254. "lib/wp80/_._",
  7255. "lib/wpa81/_._",
  7256. "lib/xamarinios10/_._",
  7257. "lib/xamarinmac20/_._",
  7258. "lib/xamarintvos10/_._",
  7259. "lib/xamarinwatchos10/_._",
  7260. "ref/MonoAndroid10/_._",
  7261. "ref/MonoTouch10/_._",
  7262. "ref/net45/_._",
  7263. "ref/net463/System.Linq.dll",
  7264. "ref/netcore50/System.Linq.dll",
  7265. "ref/netcore50/System.Linq.xml",
  7266. "ref/netcore50/de/System.Linq.xml",
  7267. "ref/netcore50/es/System.Linq.xml",
  7268. "ref/netcore50/fr/System.Linq.xml",
  7269. "ref/netcore50/it/System.Linq.xml",
  7270. "ref/netcore50/ja/System.Linq.xml",
  7271. "ref/netcore50/ko/System.Linq.xml",
  7272. "ref/netcore50/ru/System.Linq.xml",
  7273. "ref/netcore50/zh-hans/System.Linq.xml",
  7274. "ref/netcore50/zh-hant/System.Linq.xml",
  7275. "ref/netstandard1.0/System.Linq.dll",
  7276. "ref/netstandard1.0/System.Linq.xml",
  7277. "ref/netstandard1.0/de/System.Linq.xml",
  7278. "ref/netstandard1.0/es/System.Linq.xml",
  7279. "ref/netstandard1.0/fr/System.Linq.xml",
  7280. "ref/netstandard1.0/it/System.Linq.xml",
  7281. "ref/netstandard1.0/ja/System.Linq.xml",
  7282. "ref/netstandard1.0/ko/System.Linq.xml",
  7283. "ref/netstandard1.0/ru/System.Linq.xml",
  7284. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7285. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7286. "ref/netstandard1.6/System.Linq.dll",
  7287. "ref/netstandard1.6/System.Linq.xml",
  7288. "ref/netstandard1.6/de/System.Linq.xml",
  7289. "ref/netstandard1.6/es/System.Linq.xml",
  7290. "ref/netstandard1.6/fr/System.Linq.xml",
  7291. "ref/netstandard1.6/it/System.Linq.xml",
  7292. "ref/netstandard1.6/ja/System.Linq.xml",
  7293. "ref/netstandard1.6/ko/System.Linq.xml",
  7294. "ref/netstandard1.6/ru/System.Linq.xml",
  7295. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7296. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7297. "ref/portable-net45+win8+wp8+wpa81/_._",
  7298. "ref/win8/_._",
  7299. "ref/wp80/_._",
  7300. "ref/wpa81/_._",
  7301. "ref/xamarinios10/_._",
  7302. "ref/xamarinmac20/_._",
  7303. "ref/xamarintvos10/_._",
  7304. "ref/xamarinwatchos10/_._",
  7305. "system.linq.4.3.0.nupkg.sha512",
  7306. "system.linq.nuspec"
  7307. ]
  7308. },
  7309. "System.Linq.Expressions/4.3.0": {
  7310. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7311. "type": "package",
  7312. "path": "system.linq.expressions/4.3.0",
  7313. "files": [
  7314. ".nupkg.metadata",
  7315. ".signature.p7s",
  7316. "ThirdPartyNotices.txt",
  7317. "dotnet_library_license.txt",
  7318. "lib/MonoAndroid10/_._",
  7319. "lib/MonoTouch10/_._",
  7320. "lib/net45/_._",
  7321. "lib/net463/System.Linq.Expressions.dll",
  7322. "lib/netcore50/System.Linq.Expressions.dll",
  7323. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7324. "lib/portable-net45+win8+wp8+wpa81/_._",
  7325. "lib/win8/_._",
  7326. "lib/wp80/_._",
  7327. "lib/wpa81/_._",
  7328. "lib/xamarinios10/_._",
  7329. "lib/xamarinmac20/_._",
  7330. "lib/xamarintvos10/_._",
  7331. "lib/xamarinwatchos10/_._",
  7332. "ref/MonoAndroid10/_._",
  7333. "ref/MonoTouch10/_._",
  7334. "ref/net45/_._",
  7335. "ref/net463/System.Linq.Expressions.dll",
  7336. "ref/netcore50/System.Linq.Expressions.dll",
  7337. "ref/netcore50/System.Linq.Expressions.xml",
  7338. "ref/netcore50/de/System.Linq.Expressions.xml",
  7339. "ref/netcore50/es/System.Linq.Expressions.xml",
  7340. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7341. "ref/netcore50/it/System.Linq.Expressions.xml",
  7342. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7343. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7344. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7345. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7346. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7347. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7348. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7349. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7350. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7351. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7352. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7353. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7354. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7355. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7356. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7357. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7358. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7359. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7360. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7361. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7362. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7363. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7364. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7365. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7366. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7367. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7368. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7369. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7370. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7371. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7372. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7373. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7374. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7375. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7376. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7377. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7378. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7379. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.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. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7389. "system.linq.expressions.4.3.0.nupkg.sha512",
  7390. "system.linq.expressions.nuspec"
  7391. ]
  7392. },
  7393. "System.Memory/4.5.5": {
  7394. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7395. "type": "package",
  7396. "path": "system.memory/4.5.5",
  7397. "files": [
  7398. ".nupkg.metadata",
  7399. ".signature.p7s",
  7400. "LICENSE.TXT",
  7401. "THIRD-PARTY-NOTICES.TXT",
  7402. "lib/net461/System.Memory.dll",
  7403. "lib/net461/System.Memory.xml",
  7404. "lib/netcoreapp2.1/_._",
  7405. "lib/netstandard1.1/System.Memory.dll",
  7406. "lib/netstandard1.1/System.Memory.xml",
  7407. "lib/netstandard2.0/System.Memory.dll",
  7408. "lib/netstandard2.0/System.Memory.xml",
  7409. "ref/netcoreapp2.1/_._",
  7410. "system.memory.4.5.5.nupkg.sha512",
  7411. "system.memory.nuspec",
  7412. "useSharedDesignerContext.txt",
  7413. "version.txt"
  7414. ]
  7415. },
  7416. "System.Net.Http/4.3.2": {
  7417. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7418. "type": "package",
  7419. "path": "system.net.http/4.3.2",
  7420. "files": [
  7421. ".nupkg.metadata",
  7422. ".signature.p7s",
  7423. "ThirdPartyNotices.txt",
  7424. "dotnet_library_license.txt",
  7425. "lib/Xamarinmac20/_._",
  7426. "lib/monoandroid10/_._",
  7427. "lib/monotouch10/_._",
  7428. "lib/net45/_._",
  7429. "lib/net46/System.Net.Http.dll",
  7430. "lib/portable-net45+win8+wpa81/_._",
  7431. "lib/win8/_._",
  7432. "lib/wpa81/_._",
  7433. "lib/xamarinios10/_._",
  7434. "lib/xamarintvos10/_._",
  7435. "lib/xamarinwatchos10/_._",
  7436. "ref/Xamarinmac20/_._",
  7437. "ref/monoandroid10/_._",
  7438. "ref/monotouch10/_._",
  7439. "ref/net45/_._",
  7440. "ref/net46/System.Net.Http.dll",
  7441. "ref/netcore50/System.Net.Http.dll",
  7442. "ref/netstandard1.1/System.Net.Http.dll",
  7443. "ref/netstandard1.3/System.Net.Http.dll",
  7444. "ref/portable-net45+win8+wpa81/_._",
  7445. "ref/win8/_._",
  7446. "ref/wpa81/_._",
  7447. "ref/xamarinios10/_._",
  7448. "ref/xamarintvos10/_._",
  7449. "ref/xamarinwatchos10/_._",
  7450. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7451. "runtimes/win/lib/net46/System.Net.Http.dll",
  7452. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7453. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7454. "system.net.http.4.3.2.nupkg.sha512",
  7455. "system.net.http.nuspec"
  7456. ]
  7457. },
  7458. "System.Net.NameResolution/4.3.0": {
  7459. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7460. "type": "package",
  7461. "path": "system.net.nameresolution/4.3.0",
  7462. "files": [
  7463. ".nupkg.metadata",
  7464. ".signature.p7s",
  7465. "ThirdPartyNotices.txt",
  7466. "dotnet_library_license.txt",
  7467. "lib/MonoAndroid10/_._",
  7468. "lib/MonoTouch10/_._",
  7469. "lib/net46/System.Net.NameResolution.dll",
  7470. "lib/xamarinios10/_._",
  7471. "lib/xamarinmac20/_._",
  7472. "lib/xamarintvos10/_._",
  7473. "lib/xamarinwatchos10/_._",
  7474. "ref/MonoAndroid10/_._",
  7475. "ref/MonoTouch10/_._",
  7476. "ref/net46/System.Net.NameResolution.dll",
  7477. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7478. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7479. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7480. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7481. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7482. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7483. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7484. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7485. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7486. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7487. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7488. "ref/xamarinios10/_._",
  7489. "ref/xamarinmac20/_._",
  7490. "ref/xamarintvos10/_._",
  7491. "ref/xamarinwatchos10/_._",
  7492. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7493. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7494. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7495. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7496. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7497. "system.net.nameresolution.nuspec"
  7498. ]
  7499. },
  7500. "System.Net.Primitives/4.3.0": {
  7501. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7502. "type": "package",
  7503. "path": "system.net.primitives/4.3.0",
  7504. "files": [
  7505. ".nupkg.metadata",
  7506. ".signature.p7s",
  7507. "ThirdPartyNotices.txt",
  7508. "dotnet_library_license.txt",
  7509. "lib/MonoAndroid10/_._",
  7510. "lib/MonoTouch10/_._",
  7511. "lib/net45/_._",
  7512. "lib/portable-net45+win8+wp8+wpa81/_._",
  7513. "lib/win8/_._",
  7514. "lib/wp80/_._",
  7515. "lib/wpa81/_._",
  7516. "lib/xamarinios10/_._",
  7517. "lib/xamarinmac20/_._",
  7518. "lib/xamarintvos10/_._",
  7519. "lib/xamarinwatchos10/_._",
  7520. "ref/MonoAndroid10/_._",
  7521. "ref/MonoTouch10/_._",
  7522. "ref/net45/_._",
  7523. "ref/netcore50/System.Net.Primitives.dll",
  7524. "ref/netcore50/System.Net.Primitives.xml",
  7525. "ref/netcore50/de/System.Net.Primitives.xml",
  7526. "ref/netcore50/es/System.Net.Primitives.xml",
  7527. "ref/netcore50/fr/System.Net.Primitives.xml",
  7528. "ref/netcore50/it/System.Net.Primitives.xml",
  7529. "ref/netcore50/ja/System.Net.Primitives.xml",
  7530. "ref/netcore50/ko/System.Net.Primitives.xml",
  7531. "ref/netcore50/ru/System.Net.Primitives.xml",
  7532. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7533. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7534. "ref/netstandard1.0/System.Net.Primitives.dll",
  7535. "ref/netstandard1.0/System.Net.Primitives.xml",
  7536. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7537. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7538. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7539. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7540. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7541. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7542. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7543. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7544. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7545. "ref/netstandard1.1/System.Net.Primitives.dll",
  7546. "ref/netstandard1.1/System.Net.Primitives.xml",
  7547. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7548. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7549. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7550. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7551. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7552. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7553. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7554. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7555. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7556. "ref/netstandard1.3/System.Net.Primitives.dll",
  7557. "ref/netstandard1.3/System.Net.Primitives.xml",
  7558. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7559. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7560. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7561. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7562. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7563. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7564. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7565. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7566. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7567. "ref/portable-net45+win8+wp8+wpa81/_._",
  7568. "ref/win8/_._",
  7569. "ref/wp80/_._",
  7570. "ref/wpa81/_._",
  7571. "ref/xamarinios10/_._",
  7572. "ref/xamarinmac20/_._",
  7573. "ref/xamarintvos10/_._",
  7574. "ref/xamarinwatchos10/_._",
  7575. "system.net.primitives.4.3.0.nupkg.sha512",
  7576. "system.net.primitives.nuspec"
  7577. ]
  7578. },
  7579. "System.Net.Security/4.3.0": {
  7580. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  7581. "type": "package",
  7582. "path": "system.net.security/4.3.0",
  7583. "files": [
  7584. ".nupkg.metadata",
  7585. ".signature.p7s",
  7586. "ThirdPartyNotices.txt",
  7587. "dotnet_library_license.txt",
  7588. "lib/MonoAndroid10/_._",
  7589. "lib/MonoTouch10/_._",
  7590. "lib/net46/System.Net.Security.dll",
  7591. "lib/xamarinios10/_._",
  7592. "lib/xamarinmac20/_._",
  7593. "lib/xamarintvos10/_._",
  7594. "lib/xamarinwatchos10/_._",
  7595. "ref/MonoAndroid10/_._",
  7596. "ref/MonoTouch10/_._",
  7597. "ref/net46/System.Net.Security.dll",
  7598. "ref/netstandard1.3/System.Net.Security.dll",
  7599. "ref/netstandard1.3/System.Net.Security.xml",
  7600. "ref/netstandard1.3/de/System.Net.Security.xml",
  7601. "ref/netstandard1.3/es/System.Net.Security.xml",
  7602. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7603. "ref/netstandard1.3/it/System.Net.Security.xml",
  7604. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7605. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7606. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7607. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7608. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7609. "ref/xamarinios10/_._",
  7610. "ref/xamarinmac20/_._",
  7611. "ref/xamarintvos10/_._",
  7612. "ref/xamarinwatchos10/_._",
  7613. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7614. "runtimes/win/lib/net46/System.Net.Security.dll",
  7615. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7616. "runtimes/win7/lib/netcore50/_._",
  7617. "system.net.security.4.3.0.nupkg.sha512",
  7618. "system.net.security.nuspec"
  7619. ]
  7620. },
  7621. "System.Net.Sockets/4.3.0": {
  7622. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7623. "type": "package",
  7624. "path": "system.net.sockets/4.3.0",
  7625. "files": [
  7626. ".nupkg.metadata",
  7627. ".signature.p7s",
  7628. "ThirdPartyNotices.txt",
  7629. "dotnet_library_license.txt",
  7630. "lib/MonoAndroid10/_._",
  7631. "lib/MonoTouch10/_._",
  7632. "lib/net46/System.Net.Sockets.dll",
  7633. "lib/xamarinios10/_._",
  7634. "lib/xamarinmac20/_._",
  7635. "lib/xamarintvos10/_._",
  7636. "lib/xamarinwatchos10/_._",
  7637. "ref/MonoAndroid10/_._",
  7638. "ref/MonoTouch10/_._",
  7639. "ref/net46/System.Net.Sockets.dll",
  7640. "ref/netstandard1.3/System.Net.Sockets.dll",
  7641. "ref/netstandard1.3/System.Net.Sockets.xml",
  7642. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7643. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7644. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7645. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7646. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7647. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7648. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7649. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7650. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7651. "ref/xamarinios10/_._",
  7652. "ref/xamarinmac20/_._",
  7653. "ref/xamarintvos10/_._",
  7654. "ref/xamarinwatchos10/_._",
  7655. "system.net.sockets.4.3.0.nupkg.sha512",
  7656. "system.net.sockets.nuspec"
  7657. ]
  7658. },
  7659. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  7660. "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==",
  7661. "type": "package",
  7662. "path": "system.net.websockets.websocketprotocol/4.5.1",
  7663. "files": [
  7664. ".nupkg.metadata",
  7665. ".signature.p7s",
  7666. "LICENSE.TXT",
  7667. "THIRD-PARTY-NOTICES.TXT",
  7668. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll",
  7669. "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  7670. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  7671. "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512",
  7672. "system.net.websockets.websocketprotocol.nuspec",
  7673. "useSharedDesignerContext.txt",
  7674. "version.txt"
  7675. ]
  7676. },
  7677. "System.ObjectModel/4.3.0": {
  7678. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7679. "type": "package",
  7680. "path": "system.objectmodel/4.3.0",
  7681. "files": [
  7682. ".nupkg.metadata",
  7683. ".signature.p7s",
  7684. "ThirdPartyNotices.txt",
  7685. "dotnet_library_license.txt",
  7686. "lib/MonoAndroid10/_._",
  7687. "lib/MonoTouch10/_._",
  7688. "lib/net45/_._",
  7689. "lib/netcore50/System.ObjectModel.dll",
  7690. "lib/netstandard1.3/System.ObjectModel.dll",
  7691. "lib/portable-net45+win8+wp8+wpa81/_._",
  7692. "lib/win8/_._",
  7693. "lib/wp80/_._",
  7694. "lib/wpa81/_._",
  7695. "lib/xamarinios10/_._",
  7696. "lib/xamarinmac20/_._",
  7697. "lib/xamarintvos10/_._",
  7698. "lib/xamarinwatchos10/_._",
  7699. "ref/MonoAndroid10/_._",
  7700. "ref/MonoTouch10/_._",
  7701. "ref/net45/_._",
  7702. "ref/netcore50/System.ObjectModel.dll",
  7703. "ref/netcore50/System.ObjectModel.xml",
  7704. "ref/netcore50/de/System.ObjectModel.xml",
  7705. "ref/netcore50/es/System.ObjectModel.xml",
  7706. "ref/netcore50/fr/System.ObjectModel.xml",
  7707. "ref/netcore50/it/System.ObjectModel.xml",
  7708. "ref/netcore50/ja/System.ObjectModel.xml",
  7709. "ref/netcore50/ko/System.ObjectModel.xml",
  7710. "ref/netcore50/ru/System.ObjectModel.xml",
  7711. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7712. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7713. "ref/netstandard1.0/System.ObjectModel.dll",
  7714. "ref/netstandard1.0/System.ObjectModel.xml",
  7715. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7716. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7717. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7718. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7719. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7720. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7721. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7722. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7723. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7724. "ref/netstandard1.3/System.ObjectModel.dll",
  7725. "ref/netstandard1.3/System.ObjectModel.xml",
  7726. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7727. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7728. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7729. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7730. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7731. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7732. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7733. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7734. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7735. "ref/portable-net45+win8+wp8+wpa81/_._",
  7736. "ref/win8/_._",
  7737. "ref/wp80/_._",
  7738. "ref/wpa81/_._",
  7739. "ref/xamarinios10/_._",
  7740. "ref/xamarinmac20/_._",
  7741. "ref/xamarintvos10/_._",
  7742. "ref/xamarinwatchos10/_._",
  7743. "system.objectmodel.4.3.0.nupkg.sha512",
  7744. "system.objectmodel.nuspec"
  7745. ]
  7746. },
  7747. "System.Reactive/4.4.1": {
  7748. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  7749. "type": "package",
  7750. "path": "system.reactive/4.4.1",
  7751. "files": [
  7752. ".nupkg.metadata",
  7753. ".signature.p7s",
  7754. "build/netcoreapp3.0/System.Reactive.dll",
  7755. "build/netcoreapp3.0/System.Reactive.targets",
  7756. "build/netcoreapp3.0/System.Reactive.xml",
  7757. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  7758. "lib/net46/System.Reactive.dll",
  7759. "lib/net46/System.Reactive.xml",
  7760. "lib/netcoreapp3.0/_._",
  7761. "lib/netstandard2.0/System.Reactive.dll",
  7762. "lib/netstandard2.0/System.Reactive.xml",
  7763. "lib/uap10.0.16299/System.Reactive.dll",
  7764. "lib/uap10.0.16299/System.Reactive.pri",
  7765. "lib/uap10.0.16299/System.Reactive.xml",
  7766. "lib/uap10.0/System.Reactive.dll",
  7767. "lib/uap10.0/System.Reactive.pri",
  7768. "lib/uap10.0/System.Reactive.xml",
  7769. "system.reactive.4.4.1.nupkg.sha512",
  7770. "system.reactive.nuspec"
  7771. ]
  7772. },
  7773. "System.Reflection/4.3.0": {
  7774. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7775. "type": "package",
  7776. "path": "system.reflection/4.3.0",
  7777. "files": [
  7778. ".nupkg.metadata",
  7779. ".signature.p7s",
  7780. "ThirdPartyNotices.txt",
  7781. "dotnet_library_license.txt",
  7782. "lib/MonoAndroid10/_._",
  7783. "lib/MonoTouch10/_._",
  7784. "lib/net45/_._",
  7785. "lib/net462/System.Reflection.dll",
  7786. "lib/portable-net45+win8+wp8+wpa81/_._",
  7787. "lib/win8/_._",
  7788. "lib/wp80/_._",
  7789. "lib/wpa81/_._",
  7790. "lib/xamarinios10/_._",
  7791. "lib/xamarinmac20/_._",
  7792. "lib/xamarintvos10/_._",
  7793. "lib/xamarinwatchos10/_._",
  7794. "ref/MonoAndroid10/_._",
  7795. "ref/MonoTouch10/_._",
  7796. "ref/net45/_._",
  7797. "ref/net462/System.Reflection.dll",
  7798. "ref/netcore50/System.Reflection.dll",
  7799. "ref/netcore50/System.Reflection.xml",
  7800. "ref/netcore50/de/System.Reflection.xml",
  7801. "ref/netcore50/es/System.Reflection.xml",
  7802. "ref/netcore50/fr/System.Reflection.xml",
  7803. "ref/netcore50/it/System.Reflection.xml",
  7804. "ref/netcore50/ja/System.Reflection.xml",
  7805. "ref/netcore50/ko/System.Reflection.xml",
  7806. "ref/netcore50/ru/System.Reflection.xml",
  7807. "ref/netcore50/zh-hans/System.Reflection.xml",
  7808. "ref/netcore50/zh-hant/System.Reflection.xml",
  7809. "ref/netstandard1.0/System.Reflection.dll",
  7810. "ref/netstandard1.0/System.Reflection.xml",
  7811. "ref/netstandard1.0/de/System.Reflection.xml",
  7812. "ref/netstandard1.0/es/System.Reflection.xml",
  7813. "ref/netstandard1.0/fr/System.Reflection.xml",
  7814. "ref/netstandard1.0/it/System.Reflection.xml",
  7815. "ref/netstandard1.0/ja/System.Reflection.xml",
  7816. "ref/netstandard1.0/ko/System.Reflection.xml",
  7817. "ref/netstandard1.0/ru/System.Reflection.xml",
  7818. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7819. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7820. "ref/netstandard1.3/System.Reflection.dll",
  7821. "ref/netstandard1.3/System.Reflection.xml",
  7822. "ref/netstandard1.3/de/System.Reflection.xml",
  7823. "ref/netstandard1.3/es/System.Reflection.xml",
  7824. "ref/netstandard1.3/fr/System.Reflection.xml",
  7825. "ref/netstandard1.3/it/System.Reflection.xml",
  7826. "ref/netstandard1.3/ja/System.Reflection.xml",
  7827. "ref/netstandard1.3/ko/System.Reflection.xml",
  7828. "ref/netstandard1.3/ru/System.Reflection.xml",
  7829. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7830. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7831. "ref/netstandard1.5/System.Reflection.dll",
  7832. "ref/netstandard1.5/System.Reflection.xml",
  7833. "ref/netstandard1.5/de/System.Reflection.xml",
  7834. "ref/netstandard1.5/es/System.Reflection.xml",
  7835. "ref/netstandard1.5/fr/System.Reflection.xml",
  7836. "ref/netstandard1.5/it/System.Reflection.xml",
  7837. "ref/netstandard1.5/ja/System.Reflection.xml",
  7838. "ref/netstandard1.5/ko/System.Reflection.xml",
  7839. "ref/netstandard1.5/ru/System.Reflection.xml",
  7840. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7841. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7842. "ref/portable-net45+win8+wp8+wpa81/_._",
  7843. "ref/win8/_._",
  7844. "ref/wp80/_._",
  7845. "ref/wpa81/_._",
  7846. "ref/xamarinios10/_._",
  7847. "ref/xamarinmac20/_._",
  7848. "ref/xamarintvos10/_._",
  7849. "ref/xamarinwatchos10/_._",
  7850. "system.reflection.4.3.0.nupkg.sha512",
  7851. "system.reflection.nuspec"
  7852. ]
  7853. },
  7854. "System.Reflection.Emit/4.7.0": {
  7855. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  7856. "type": "package",
  7857. "path": "system.reflection.emit/4.7.0",
  7858. "files": [
  7859. ".nupkg.metadata",
  7860. ".signature.p7s",
  7861. "LICENSE.TXT",
  7862. "THIRD-PARTY-NOTICES.TXT",
  7863. "lib/MonoAndroid10/_._",
  7864. "lib/MonoTouch10/_._",
  7865. "lib/net45/_._",
  7866. "lib/netcore50/System.Reflection.Emit.dll",
  7867. "lib/netcoreapp2.0/_._",
  7868. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7869. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7870. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7871. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7872. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7873. "lib/netstandard2.1/_._",
  7874. "lib/xamarinios10/_._",
  7875. "lib/xamarinmac20/_._",
  7876. "lib/xamarintvos10/_._",
  7877. "lib/xamarinwatchos10/_._",
  7878. "ref/MonoAndroid10/_._",
  7879. "ref/MonoTouch10/_._",
  7880. "ref/net45/_._",
  7881. "ref/netcoreapp2.0/_._",
  7882. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7883. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7884. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7885. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7886. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7887. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7888. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7889. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7890. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7891. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7892. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7893. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7894. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7895. "ref/netstandard2.1/_._",
  7896. "ref/xamarinios10/_._",
  7897. "ref/xamarinmac20/_._",
  7898. "ref/xamarintvos10/_._",
  7899. "ref/xamarinwatchos10/_._",
  7900. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7901. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7902. "system.reflection.emit.4.7.0.nupkg.sha512",
  7903. "system.reflection.emit.nuspec",
  7904. "useSharedDesignerContext.txt",
  7905. "version.txt"
  7906. ]
  7907. },
  7908. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7909. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7910. "type": "package",
  7911. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7912. "files": [
  7913. ".nupkg.metadata",
  7914. ".signature.p7s",
  7915. "ThirdPartyNotices.txt",
  7916. "dotnet_library_license.txt",
  7917. "lib/MonoAndroid10/_._",
  7918. "lib/MonoTouch10/_._",
  7919. "lib/net45/_._",
  7920. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7921. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7922. "lib/portable-net45+wp8/_._",
  7923. "lib/wp80/_._",
  7924. "lib/xamarinios10/_._",
  7925. "lib/xamarinmac20/_._",
  7926. "lib/xamarintvos10/_._",
  7927. "lib/xamarinwatchos10/_._",
  7928. "ref/MonoAndroid10/_._",
  7929. "ref/MonoTouch10/_._",
  7930. "ref/net45/_._",
  7931. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7932. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7933. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7934. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7935. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7936. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7937. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7938. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7939. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7940. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7941. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7942. "ref/portable-net45+wp8/_._",
  7943. "ref/wp80/_._",
  7944. "ref/xamarinios10/_._",
  7945. "ref/xamarinmac20/_._",
  7946. "ref/xamarintvos10/_._",
  7947. "ref/xamarinwatchos10/_._",
  7948. "runtimes/aot/lib/netcore50/_._",
  7949. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7950. "system.reflection.emit.ilgeneration.nuspec"
  7951. ]
  7952. },
  7953. "System.Reflection.Emit.Lightweight/4.3.0": {
  7954. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7955. "type": "package",
  7956. "path": "system.reflection.emit.lightweight/4.3.0",
  7957. "files": [
  7958. ".nupkg.metadata",
  7959. ".signature.p7s",
  7960. "ThirdPartyNotices.txt",
  7961. "dotnet_library_license.txt",
  7962. "lib/MonoAndroid10/_._",
  7963. "lib/MonoTouch10/_._",
  7964. "lib/net45/_._",
  7965. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7966. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7967. "lib/portable-net45+wp8/_._",
  7968. "lib/wp80/_._",
  7969. "lib/xamarinios10/_._",
  7970. "lib/xamarinmac20/_._",
  7971. "lib/xamarintvos10/_._",
  7972. "lib/xamarinwatchos10/_._",
  7973. "ref/MonoAndroid10/_._",
  7974. "ref/MonoTouch10/_._",
  7975. "ref/net45/_._",
  7976. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7977. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7978. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7979. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7980. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7981. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7982. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7983. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7984. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7985. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7986. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7987. "ref/portable-net45+wp8/_._",
  7988. "ref/wp80/_._",
  7989. "ref/xamarinios10/_._",
  7990. "ref/xamarinmac20/_._",
  7991. "ref/xamarintvos10/_._",
  7992. "ref/xamarinwatchos10/_._",
  7993. "runtimes/aot/lib/netcore50/_._",
  7994. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7995. "system.reflection.emit.lightweight.nuspec"
  7996. ]
  7997. },
  7998. "System.Reflection.Extensions/4.3.0": {
  7999. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8000. "type": "package",
  8001. "path": "system.reflection.extensions/4.3.0",
  8002. "files": [
  8003. ".nupkg.metadata",
  8004. ".signature.p7s",
  8005. "ThirdPartyNotices.txt",
  8006. "dotnet_library_license.txt",
  8007. "lib/MonoAndroid10/_._",
  8008. "lib/MonoTouch10/_._",
  8009. "lib/net45/_._",
  8010. "lib/portable-net45+win8+wp8+wpa81/_._",
  8011. "lib/win8/_._",
  8012. "lib/wp80/_._",
  8013. "lib/wpa81/_._",
  8014. "lib/xamarinios10/_._",
  8015. "lib/xamarinmac20/_._",
  8016. "lib/xamarintvos10/_._",
  8017. "lib/xamarinwatchos10/_._",
  8018. "ref/MonoAndroid10/_._",
  8019. "ref/MonoTouch10/_._",
  8020. "ref/net45/_._",
  8021. "ref/netcore50/System.Reflection.Extensions.dll",
  8022. "ref/netcore50/System.Reflection.Extensions.xml",
  8023. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8024. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8025. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8026. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8027. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8028. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8029. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8030. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8031. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8032. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8033. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8034. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8035. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8036. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8037. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8038. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8039. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8040. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8041. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8042. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8043. "ref/portable-net45+win8+wp8+wpa81/_._",
  8044. "ref/win8/_._",
  8045. "ref/wp80/_._",
  8046. "ref/wpa81/_._",
  8047. "ref/xamarinios10/_._",
  8048. "ref/xamarinmac20/_._",
  8049. "ref/xamarintvos10/_._",
  8050. "ref/xamarinwatchos10/_._",
  8051. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8052. "system.reflection.extensions.nuspec"
  8053. ]
  8054. },
  8055. "System.Reflection.Primitives/4.3.0": {
  8056. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8057. "type": "package",
  8058. "path": "system.reflection.primitives/4.3.0",
  8059. "files": [
  8060. ".nupkg.metadata",
  8061. ".signature.p7s",
  8062. "ThirdPartyNotices.txt",
  8063. "dotnet_library_license.txt",
  8064. "lib/MonoAndroid10/_._",
  8065. "lib/MonoTouch10/_._",
  8066. "lib/net45/_._",
  8067. "lib/portable-net45+win8+wp8+wpa81/_._",
  8068. "lib/win8/_._",
  8069. "lib/wp80/_._",
  8070. "lib/wpa81/_._",
  8071. "lib/xamarinios10/_._",
  8072. "lib/xamarinmac20/_._",
  8073. "lib/xamarintvos10/_._",
  8074. "lib/xamarinwatchos10/_._",
  8075. "ref/MonoAndroid10/_._",
  8076. "ref/MonoTouch10/_._",
  8077. "ref/net45/_._",
  8078. "ref/netcore50/System.Reflection.Primitives.dll",
  8079. "ref/netcore50/System.Reflection.Primitives.xml",
  8080. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8081. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8082. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8083. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8084. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8085. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8086. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8087. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8088. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8089. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8090. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8091. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8092. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8093. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8094. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8095. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8096. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8097. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8098. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8099. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8100. "ref/portable-net45+win8+wp8+wpa81/_._",
  8101. "ref/win8/_._",
  8102. "ref/wp80/_._",
  8103. "ref/wpa81/_._",
  8104. "ref/xamarinios10/_._",
  8105. "ref/xamarinmac20/_._",
  8106. "ref/xamarintvos10/_._",
  8107. "ref/xamarinwatchos10/_._",
  8108. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8109. "system.reflection.primitives.nuspec"
  8110. ]
  8111. },
  8112. "System.Reflection.TypeExtensions/4.3.0": {
  8113. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8114. "type": "package",
  8115. "path": "system.reflection.typeextensions/4.3.0",
  8116. "files": [
  8117. ".nupkg.metadata",
  8118. ".signature.p7s",
  8119. "ThirdPartyNotices.txt",
  8120. "dotnet_library_license.txt",
  8121. "lib/MonoAndroid10/_._",
  8122. "lib/MonoTouch10/_._",
  8123. "lib/net46/System.Reflection.TypeExtensions.dll",
  8124. "lib/net462/System.Reflection.TypeExtensions.dll",
  8125. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8126. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8127. "lib/xamarinios10/_._",
  8128. "lib/xamarinmac20/_._",
  8129. "lib/xamarintvos10/_._",
  8130. "lib/xamarinwatchos10/_._",
  8131. "ref/MonoAndroid10/_._",
  8132. "ref/MonoTouch10/_._",
  8133. "ref/net46/System.Reflection.TypeExtensions.dll",
  8134. "ref/net462/System.Reflection.TypeExtensions.dll",
  8135. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8136. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8137. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8138. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8139. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8140. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8141. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8142. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8143. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8144. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8145. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8146. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8147. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8148. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8149. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8150. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8151. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8152. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8153. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8154. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8155. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8156. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8157. "ref/xamarinios10/_._",
  8158. "ref/xamarinmac20/_._",
  8159. "ref/xamarintvos10/_._",
  8160. "ref/xamarinwatchos10/_._",
  8161. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8162. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8163. "system.reflection.typeextensions.nuspec"
  8164. ]
  8165. },
  8166. "System.Resources.ResourceManager/4.3.0": {
  8167. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8168. "type": "package",
  8169. "path": "system.resources.resourcemanager/4.3.0",
  8170. "files": [
  8171. ".nupkg.metadata",
  8172. ".signature.p7s",
  8173. "ThirdPartyNotices.txt",
  8174. "dotnet_library_license.txt",
  8175. "lib/MonoAndroid10/_._",
  8176. "lib/MonoTouch10/_._",
  8177. "lib/net45/_._",
  8178. "lib/portable-net45+win8+wp8+wpa81/_._",
  8179. "lib/win8/_._",
  8180. "lib/wp80/_._",
  8181. "lib/wpa81/_._",
  8182. "lib/xamarinios10/_._",
  8183. "lib/xamarinmac20/_._",
  8184. "lib/xamarintvos10/_._",
  8185. "lib/xamarinwatchos10/_._",
  8186. "ref/MonoAndroid10/_._",
  8187. "ref/MonoTouch10/_._",
  8188. "ref/net45/_._",
  8189. "ref/netcore50/System.Resources.ResourceManager.dll",
  8190. "ref/netcore50/System.Resources.ResourceManager.xml",
  8191. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8192. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8193. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8194. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8195. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8196. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8197. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8198. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8199. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8200. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8201. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8202. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8203. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8204. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8205. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8206. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8207. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8208. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8209. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8210. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8211. "ref/portable-net45+win8+wp8+wpa81/_._",
  8212. "ref/win8/_._",
  8213. "ref/wp80/_._",
  8214. "ref/wpa81/_._",
  8215. "ref/xamarinios10/_._",
  8216. "ref/xamarinmac20/_._",
  8217. "ref/xamarintvos10/_._",
  8218. "ref/xamarinwatchos10/_._",
  8219. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8220. "system.resources.resourcemanager.nuspec"
  8221. ]
  8222. },
  8223. "System.Runtime/4.3.0": {
  8224. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8225. "type": "package",
  8226. "path": "system.runtime/4.3.0",
  8227. "files": [
  8228. ".nupkg.metadata",
  8229. ".signature.p7s",
  8230. "ThirdPartyNotices.txt",
  8231. "dotnet_library_license.txt",
  8232. "lib/MonoAndroid10/_._",
  8233. "lib/MonoTouch10/_._",
  8234. "lib/net45/_._",
  8235. "lib/net462/System.Runtime.dll",
  8236. "lib/portable-net45+win8+wp80+wpa81/_._",
  8237. "lib/win8/_._",
  8238. "lib/wp80/_._",
  8239. "lib/wpa81/_._",
  8240. "lib/xamarinios10/_._",
  8241. "lib/xamarinmac20/_._",
  8242. "lib/xamarintvos10/_._",
  8243. "lib/xamarinwatchos10/_._",
  8244. "ref/MonoAndroid10/_._",
  8245. "ref/MonoTouch10/_._",
  8246. "ref/net45/_._",
  8247. "ref/net462/System.Runtime.dll",
  8248. "ref/netcore50/System.Runtime.dll",
  8249. "ref/netcore50/System.Runtime.xml",
  8250. "ref/netcore50/de/System.Runtime.xml",
  8251. "ref/netcore50/es/System.Runtime.xml",
  8252. "ref/netcore50/fr/System.Runtime.xml",
  8253. "ref/netcore50/it/System.Runtime.xml",
  8254. "ref/netcore50/ja/System.Runtime.xml",
  8255. "ref/netcore50/ko/System.Runtime.xml",
  8256. "ref/netcore50/ru/System.Runtime.xml",
  8257. "ref/netcore50/zh-hans/System.Runtime.xml",
  8258. "ref/netcore50/zh-hant/System.Runtime.xml",
  8259. "ref/netstandard1.0/System.Runtime.dll",
  8260. "ref/netstandard1.0/System.Runtime.xml",
  8261. "ref/netstandard1.0/de/System.Runtime.xml",
  8262. "ref/netstandard1.0/es/System.Runtime.xml",
  8263. "ref/netstandard1.0/fr/System.Runtime.xml",
  8264. "ref/netstandard1.0/it/System.Runtime.xml",
  8265. "ref/netstandard1.0/ja/System.Runtime.xml",
  8266. "ref/netstandard1.0/ko/System.Runtime.xml",
  8267. "ref/netstandard1.0/ru/System.Runtime.xml",
  8268. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8269. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8270. "ref/netstandard1.2/System.Runtime.dll",
  8271. "ref/netstandard1.2/System.Runtime.xml",
  8272. "ref/netstandard1.2/de/System.Runtime.xml",
  8273. "ref/netstandard1.2/es/System.Runtime.xml",
  8274. "ref/netstandard1.2/fr/System.Runtime.xml",
  8275. "ref/netstandard1.2/it/System.Runtime.xml",
  8276. "ref/netstandard1.2/ja/System.Runtime.xml",
  8277. "ref/netstandard1.2/ko/System.Runtime.xml",
  8278. "ref/netstandard1.2/ru/System.Runtime.xml",
  8279. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8280. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8281. "ref/netstandard1.3/System.Runtime.dll",
  8282. "ref/netstandard1.3/System.Runtime.xml",
  8283. "ref/netstandard1.3/de/System.Runtime.xml",
  8284. "ref/netstandard1.3/es/System.Runtime.xml",
  8285. "ref/netstandard1.3/fr/System.Runtime.xml",
  8286. "ref/netstandard1.3/it/System.Runtime.xml",
  8287. "ref/netstandard1.3/ja/System.Runtime.xml",
  8288. "ref/netstandard1.3/ko/System.Runtime.xml",
  8289. "ref/netstandard1.3/ru/System.Runtime.xml",
  8290. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8291. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8292. "ref/netstandard1.5/System.Runtime.dll",
  8293. "ref/netstandard1.5/System.Runtime.xml",
  8294. "ref/netstandard1.5/de/System.Runtime.xml",
  8295. "ref/netstandard1.5/es/System.Runtime.xml",
  8296. "ref/netstandard1.5/fr/System.Runtime.xml",
  8297. "ref/netstandard1.5/it/System.Runtime.xml",
  8298. "ref/netstandard1.5/ja/System.Runtime.xml",
  8299. "ref/netstandard1.5/ko/System.Runtime.xml",
  8300. "ref/netstandard1.5/ru/System.Runtime.xml",
  8301. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8302. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8303. "ref/portable-net45+win8+wp80+wpa81/_._",
  8304. "ref/win8/_._",
  8305. "ref/wp80/_._",
  8306. "ref/wpa81/_._",
  8307. "ref/xamarinios10/_._",
  8308. "ref/xamarinmac20/_._",
  8309. "ref/xamarintvos10/_._",
  8310. "ref/xamarinwatchos10/_._",
  8311. "system.runtime.4.3.0.nupkg.sha512",
  8312. "system.runtime.nuspec"
  8313. ]
  8314. },
  8315. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  8316. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  8317. "type": "package",
  8318. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  8319. "files": [
  8320. ".nupkg.metadata",
  8321. ".signature.p7s",
  8322. "Icon.png",
  8323. "LICENSE.TXT",
  8324. "THIRD-PARTY-NOTICES.TXT",
  8325. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  8326. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  8327. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8328. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8329. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8330. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8331. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8332. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8333. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8334. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8335. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8336. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8337. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8338. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8339. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  8340. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  8341. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  8342. "system.runtime.compilerservices.unsafe.nuspec",
  8343. "useSharedDesignerContext.txt",
  8344. "version.txt"
  8345. ]
  8346. },
  8347. "System.Runtime.Extensions/4.3.0": {
  8348. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8349. "type": "package",
  8350. "path": "system.runtime.extensions/4.3.0",
  8351. "files": [
  8352. ".nupkg.metadata",
  8353. ".signature.p7s",
  8354. "ThirdPartyNotices.txt",
  8355. "dotnet_library_license.txt",
  8356. "lib/MonoAndroid10/_._",
  8357. "lib/MonoTouch10/_._",
  8358. "lib/net45/_._",
  8359. "lib/net462/System.Runtime.Extensions.dll",
  8360. "lib/portable-net45+win8+wp8+wpa81/_._",
  8361. "lib/win8/_._",
  8362. "lib/wp80/_._",
  8363. "lib/wpa81/_._",
  8364. "lib/xamarinios10/_._",
  8365. "lib/xamarinmac20/_._",
  8366. "lib/xamarintvos10/_._",
  8367. "lib/xamarinwatchos10/_._",
  8368. "ref/MonoAndroid10/_._",
  8369. "ref/MonoTouch10/_._",
  8370. "ref/net45/_._",
  8371. "ref/net462/System.Runtime.Extensions.dll",
  8372. "ref/netcore50/System.Runtime.Extensions.dll",
  8373. "ref/netcore50/System.Runtime.Extensions.xml",
  8374. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8375. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8376. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8377. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8378. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8379. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8380. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8381. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8382. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8383. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8384. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8385. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8386. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8387. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8388. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8389. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8390. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8391. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8392. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8393. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8394. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8395. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8396. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8397. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8398. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8399. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8400. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8401. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8402. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8403. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8404. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8405. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8406. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8407. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8408. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8409. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8410. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8411. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8412. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8413. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8414. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8415. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8416. "ref/portable-net45+win8+wp8+wpa81/_._",
  8417. "ref/win8/_._",
  8418. "ref/wp80/_._",
  8419. "ref/wpa81/_._",
  8420. "ref/xamarinios10/_._",
  8421. "ref/xamarinmac20/_._",
  8422. "ref/xamarintvos10/_._",
  8423. "ref/xamarinwatchos10/_._",
  8424. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8425. "system.runtime.extensions.nuspec"
  8426. ]
  8427. },
  8428. "System.Runtime.Handles/4.3.0": {
  8429. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8430. "type": "package",
  8431. "path": "system.runtime.handles/4.3.0",
  8432. "files": [
  8433. ".nupkg.metadata",
  8434. ".signature.p7s",
  8435. "ThirdPartyNotices.txt",
  8436. "dotnet_library_license.txt",
  8437. "lib/MonoAndroid10/_._",
  8438. "lib/MonoTouch10/_._",
  8439. "lib/net46/_._",
  8440. "lib/xamarinios10/_._",
  8441. "lib/xamarinmac20/_._",
  8442. "lib/xamarintvos10/_._",
  8443. "lib/xamarinwatchos10/_._",
  8444. "ref/MonoAndroid10/_._",
  8445. "ref/MonoTouch10/_._",
  8446. "ref/net46/_._",
  8447. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8448. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8449. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8450. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8451. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8452. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8453. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8454. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8455. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8456. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8457. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8458. "ref/xamarinios10/_._",
  8459. "ref/xamarinmac20/_._",
  8460. "ref/xamarintvos10/_._",
  8461. "ref/xamarinwatchos10/_._",
  8462. "system.runtime.handles.4.3.0.nupkg.sha512",
  8463. "system.runtime.handles.nuspec"
  8464. ]
  8465. },
  8466. "System.Runtime.InteropServices/4.3.0": {
  8467. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8468. "type": "package",
  8469. "path": "system.runtime.interopservices/4.3.0",
  8470. "files": [
  8471. ".nupkg.metadata",
  8472. ".signature.p7s",
  8473. "ThirdPartyNotices.txt",
  8474. "dotnet_library_license.txt",
  8475. "lib/MonoAndroid10/_._",
  8476. "lib/MonoTouch10/_._",
  8477. "lib/net45/_._",
  8478. "lib/net462/System.Runtime.InteropServices.dll",
  8479. "lib/net463/System.Runtime.InteropServices.dll",
  8480. "lib/portable-net45+win8+wpa81/_._",
  8481. "lib/win8/_._",
  8482. "lib/wpa81/_._",
  8483. "lib/xamarinios10/_._",
  8484. "lib/xamarinmac20/_._",
  8485. "lib/xamarintvos10/_._",
  8486. "lib/xamarinwatchos10/_._",
  8487. "ref/MonoAndroid10/_._",
  8488. "ref/MonoTouch10/_._",
  8489. "ref/net45/_._",
  8490. "ref/net462/System.Runtime.InteropServices.dll",
  8491. "ref/net463/System.Runtime.InteropServices.dll",
  8492. "ref/netcore50/System.Runtime.InteropServices.dll",
  8493. "ref/netcore50/System.Runtime.InteropServices.xml",
  8494. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8495. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8496. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8497. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8498. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8499. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8500. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8501. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8502. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8503. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8504. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8505. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8506. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8507. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8508. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8509. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8510. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8511. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8512. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8513. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8514. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8515. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8516. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8517. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8518. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8519. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8520. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8521. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8522. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8523. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8524. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8525. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8526. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8527. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8528. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8529. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8530. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8531. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8532. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8533. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8534. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8535. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8536. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8537. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8538. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8539. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8540. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8541. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8542. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8543. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8544. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8545. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8546. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8547. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8548. "ref/portable-net45+win8+wpa81/_._",
  8549. "ref/win8/_._",
  8550. "ref/wpa81/_._",
  8551. "ref/xamarinios10/_._",
  8552. "ref/xamarinmac20/_._",
  8553. "ref/xamarintvos10/_._",
  8554. "ref/xamarinwatchos10/_._",
  8555. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8556. "system.runtime.interopservices.nuspec"
  8557. ]
  8558. },
  8559. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8560. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8561. "type": "package",
  8562. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8563. "files": [
  8564. ".nupkg.metadata",
  8565. ".signature.p7s",
  8566. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  8567. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  8568. "ThirdPartyNotices.txt",
  8569. "dotnet_library_license.txt",
  8570. "lib/MonoAndroid10/_._",
  8571. "lib/MonoTouch10/_._",
  8572. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8573. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8574. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8575. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8576. "lib/xamarinios10/_._",
  8577. "lib/xamarinmac20/_._",
  8578. "lib/xamarintvos10/_._",
  8579. "lib/xamarinwatchos10/_._",
  8580. "ref/MonoAndroid10/_._",
  8581. "ref/MonoTouch10/_._",
  8582. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8583. "ref/xamarinios10/_._",
  8584. "ref/xamarinmac20/_._",
  8585. "ref/xamarintvos10/_._",
  8586. "ref/xamarinwatchos10/_._",
  8587. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8588. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8589. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8590. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8591. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  8592. ]
  8593. },
  8594. "System.Runtime.Numerics/4.3.0": {
  8595. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8596. "type": "package",
  8597. "path": "system.runtime.numerics/4.3.0",
  8598. "files": [
  8599. ".nupkg.metadata",
  8600. ".signature.p7s",
  8601. "ThirdPartyNotices.txt",
  8602. "dotnet_library_license.txt",
  8603. "lib/MonoAndroid10/_._",
  8604. "lib/MonoTouch10/_._",
  8605. "lib/net45/_._",
  8606. "lib/netcore50/System.Runtime.Numerics.dll",
  8607. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8608. "lib/portable-net45+win8+wpa81/_._",
  8609. "lib/win8/_._",
  8610. "lib/wpa81/_._",
  8611. "lib/xamarinios10/_._",
  8612. "lib/xamarinmac20/_._",
  8613. "lib/xamarintvos10/_._",
  8614. "lib/xamarinwatchos10/_._",
  8615. "ref/MonoAndroid10/_._",
  8616. "ref/MonoTouch10/_._",
  8617. "ref/net45/_._",
  8618. "ref/netcore50/System.Runtime.Numerics.dll",
  8619. "ref/netcore50/System.Runtime.Numerics.xml",
  8620. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8621. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8622. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8623. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8624. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8625. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8626. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8627. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8628. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8629. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8630. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8631. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8632. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8633. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8634. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8635. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8636. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8637. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8638. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8639. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8640. "ref/portable-net45+win8+wpa81/_._",
  8641. "ref/win8/_._",
  8642. "ref/wpa81/_._",
  8643. "ref/xamarinios10/_._",
  8644. "ref/xamarinmac20/_._",
  8645. "ref/xamarintvos10/_._",
  8646. "ref/xamarinwatchos10/_._",
  8647. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8648. "system.runtime.numerics.nuspec"
  8649. ]
  8650. },
  8651. "System.Runtime.Serialization.Primitives/4.3.0": {
  8652. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8653. "type": "package",
  8654. "path": "system.runtime.serialization.primitives/4.3.0",
  8655. "files": [
  8656. ".nupkg.metadata",
  8657. ".signature.p7s",
  8658. "ThirdPartyNotices.txt",
  8659. "dotnet_library_license.txt",
  8660. "lib/MonoAndroid10/_._",
  8661. "lib/MonoTouch10/_._",
  8662. "lib/net45/_._",
  8663. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8664. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8665. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8666. "lib/portable-net45+win8+wp8+wpa81/_._",
  8667. "lib/win8/_._",
  8668. "lib/wp80/_._",
  8669. "lib/wpa81/_._",
  8670. "lib/xamarinios10/_._",
  8671. "lib/xamarinmac20/_._",
  8672. "lib/xamarintvos10/_._",
  8673. "lib/xamarinwatchos10/_._",
  8674. "ref/MonoAndroid10/_._",
  8675. "ref/MonoTouch10/_._",
  8676. "ref/net45/_._",
  8677. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8678. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8679. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8680. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8681. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8682. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8683. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8684. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8685. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8686. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8687. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8688. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8689. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8690. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8691. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8692. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8693. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8694. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8695. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8696. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8697. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8698. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8699. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8700. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8701. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8702. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8703. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8704. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8705. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8706. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8707. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8708. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8709. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8710. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8711. "ref/portable-net45+win8+wp8+wpa81/_._",
  8712. "ref/win8/_._",
  8713. "ref/wp80/_._",
  8714. "ref/wpa81/_._",
  8715. "ref/xamarinios10/_._",
  8716. "ref/xamarinmac20/_._",
  8717. "ref/xamarintvos10/_._",
  8718. "ref/xamarinwatchos10/_._",
  8719. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8720. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8721. "system.runtime.serialization.primitives.nuspec"
  8722. ]
  8723. },
  8724. "System.Security.AccessControl/4.7.0": {
  8725. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8726. "type": "package",
  8727. "path": "system.security.accesscontrol/4.7.0",
  8728. "files": [
  8729. ".nupkg.metadata",
  8730. ".signature.p7s",
  8731. "LICENSE.TXT",
  8732. "THIRD-PARTY-NOTICES.TXT",
  8733. "lib/net46/System.Security.AccessControl.dll",
  8734. "lib/net461/System.Security.AccessControl.dll",
  8735. "lib/net461/System.Security.AccessControl.xml",
  8736. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8737. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8738. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8739. "lib/uap10.0.16299/_._",
  8740. "ref/net46/System.Security.AccessControl.dll",
  8741. "ref/net461/System.Security.AccessControl.dll",
  8742. "ref/net461/System.Security.AccessControl.xml",
  8743. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8744. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8745. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8746. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8747. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8748. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8749. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8750. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8751. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8752. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8753. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8754. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8755. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8756. "ref/uap10.0.16299/_._",
  8757. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8758. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8759. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8760. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8761. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8762. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8763. "runtimes/win/lib/uap10.0.16299/_._",
  8764. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8765. "system.security.accesscontrol.nuspec",
  8766. "useSharedDesignerContext.txt",
  8767. "version.txt"
  8768. ]
  8769. },
  8770. "System.Security.Claims/4.3.0": {
  8771. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8772. "type": "package",
  8773. "path": "system.security.claims/4.3.0",
  8774. "files": [
  8775. ".nupkg.metadata",
  8776. ".signature.p7s",
  8777. "ThirdPartyNotices.txt",
  8778. "dotnet_library_license.txt",
  8779. "lib/MonoAndroid10/_._",
  8780. "lib/MonoTouch10/_._",
  8781. "lib/net46/System.Security.Claims.dll",
  8782. "lib/netstandard1.3/System.Security.Claims.dll",
  8783. "lib/xamarinios10/_._",
  8784. "lib/xamarinmac20/_._",
  8785. "lib/xamarintvos10/_._",
  8786. "lib/xamarinwatchos10/_._",
  8787. "ref/MonoAndroid10/_._",
  8788. "ref/MonoTouch10/_._",
  8789. "ref/net46/System.Security.Claims.dll",
  8790. "ref/netstandard1.3/System.Security.Claims.dll",
  8791. "ref/netstandard1.3/System.Security.Claims.xml",
  8792. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8793. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8794. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8795. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8796. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8797. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8798. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8799. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8800. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8801. "ref/xamarinios10/_._",
  8802. "ref/xamarinmac20/_._",
  8803. "ref/xamarintvos10/_._",
  8804. "ref/xamarinwatchos10/_._",
  8805. "system.security.claims.4.3.0.nupkg.sha512",
  8806. "system.security.claims.nuspec"
  8807. ]
  8808. },
  8809. "System.Security.Cryptography.Algorithms/4.3.0": {
  8810. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8811. "type": "package",
  8812. "path": "system.security.cryptography.algorithms/4.3.0",
  8813. "files": [
  8814. ".nupkg.metadata",
  8815. ".signature.p7s",
  8816. "ThirdPartyNotices.txt",
  8817. "dotnet_library_license.txt",
  8818. "lib/MonoAndroid10/_._",
  8819. "lib/MonoTouch10/_._",
  8820. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8821. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8822. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8823. "lib/xamarinios10/_._",
  8824. "lib/xamarinmac20/_._",
  8825. "lib/xamarintvos10/_._",
  8826. "lib/xamarinwatchos10/_._",
  8827. "ref/MonoAndroid10/_._",
  8828. "ref/MonoTouch10/_._",
  8829. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8830. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8831. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8832. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8833. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8834. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8835. "ref/xamarinios10/_._",
  8836. "ref/xamarinmac20/_._",
  8837. "ref/xamarintvos10/_._",
  8838. "ref/xamarinwatchos10/_._",
  8839. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8840. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8841. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8842. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8843. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8844. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8845. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8846. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8847. "system.security.cryptography.algorithms.nuspec"
  8848. ]
  8849. },
  8850. "System.Security.Cryptography.Cng/4.3.0": {
  8851. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  8852. "type": "package",
  8853. "path": "system.security.cryptography.cng/4.3.0",
  8854. "files": [
  8855. ".nupkg.metadata",
  8856. ".signature.p7s",
  8857. "ThirdPartyNotices.txt",
  8858. "dotnet_library_license.txt",
  8859. "lib/net46/System.Security.Cryptography.Cng.dll",
  8860. "lib/net461/System.Security.Cryptography.Cng.dll",
  8861. "lib/net463/System.Security.Cryptography.Cng.dll",
  8862. "ref/net46/System.Security.Cryptography.Cng.dll",
  8863. "ref/net461/System.Security.Cryptography.Cng.dll",
  8864. "ref/net463/System.Security.Cryptography.Cng.dll",
  8865. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8866. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8867. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8868. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8869. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8870. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8871. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8872. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8873. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8874. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  8875. "system.security.cryptography.cng.nuspec"
  8876. ]
  8877. },
  8878. "System.Security.Cryptography.Csp/4.3.0": {
  8879. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8880. "type": "package",
  8881. "path": "system.security.cryptography.csp/4.3.0",
  8882. "files": [
  8883. ".nupkg.metadata",
  8884. ".signature.p7s",
  8885. "ThirdPartyNotices.txt",
  8886. "dotnet_library_license.txt",
  8887. "lib/MonoAndroid10/_._",
  8888. "lib/MonoTouch10/_._",
  8889. "lib/net46/System.Security.Cryptography.Csp.dll",
  8890. "lib/xamarinios10/_._",
  8891. "lib/xamarinmac20/_._",
  8892. "lib/xamarintvos10/_._",
  8893. "lib/xamarinwatchos10/_._",
  8894. "ref/MonoAndroid10/_._",
  8895. "ref/MonoTouch10/_._",
  8896. "ref/net46/System.Security.Cryptography.Csp.dll",
  8897. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8898. "ref/xamarinios10/_._",
  8899. "ref/xamarinmac20/_._",
  8900. "ref/xamarintvos10/_._",
  8901. "ref/xamarinwatchos10/_._",
  8902. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8903. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8904. "runtimes/win/lib/netcore50/_._",
  8905. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8906. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8907. "system.security.cryptography.csp.nuspec"
  8908. ]
  8909. },
  8910. "System.Security.Cryptography.Encoding/4.3.0": {
  8911. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8912. "type": "package",
  8913. "path": "system.security.cryptography.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/net46/System.Security.Cryptography.Encoding.dll",
  8922. "lib/xamarinios10/_._",
  8923. "lib/xamarinmac20/_._",
  8924. "lib/xamarintvos10/_._",
  8925. "lib/xamarinwatchos10/_._",
  8926. "ref/MonoAndroid10/_._",
  8927. "ref/MonoTouch10/_._",
  8928. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8929. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8930. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8931. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8932. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8933. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8934. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8935. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8936. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8937. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8938. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8939. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8940. "ref/xamarinios10/_._",
  8941. "ref/xamarinmac20/_._",
  8942. "ref/xamarintvos10/_._",
  8943. "ref/xamarinwatchos10/_._",
  8944. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8945. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8946. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8947. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8948. "system.security.cryptography.encoding.nuspec"
  8949. ]
  8950. },
  8951. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8952. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8953. "type": "package",
  8954. "path": "system.security.cryptography.openssl/4.3.0",
  8955. "files": [
  8956. ".nupkg.metadata",
  8957. ".signature.p7s",
  8958. "ThirdPartyNotices.txt",
  8959. "dotnet_library_license.txt",
  8960. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8961. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8962. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8963. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8964. "system.security.cryptography.openssl.nuspec"
  8965. ]
  8966. },
  8967. "System.Security.Cryptography.Primitives/4.3.0": {
  8968. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8969. "type": "package",
  8970. "path": "system.security.cryptography.primitives/4.3.0",
  8971. "files": [
  8972. ".nupkg.metadata",
  8973. ".signature.p7s",
  8974. "ThirdPartyNotices.txt",
  8975. "dotnet_library_license.txt",
  8976. "lib/MonoAndroid10/_._",
  8977. "lib/MonoTouch10/_._",
  8978. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8979. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8980. "lib/xamarinios10/_._",
  8981. "lib/xamarinmac20/_._",
  8982. "lib/xamarintvos10/_._",
  8983. "lib/xamarinwatchos10/_._",
  8984. "ref/MonoAndroid10/_._",
  8985. "ref/MonoTouch10/_._",
  8986. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8987. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8988. "ref/xamarinios10/_._",
  8989. "ref/xamarinmac20/_._",
  8990. "ref/xamarintvos10/_._",
  8991. "ref/xamarinwatchos10/_._",
  8992. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8993. "system.security.cryptography.primitives.nuspec"
  8994. ]
  8995. },
  8996. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8997. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8998. "type": "package",
  8999. "path": "system.security.cryptography.protecteddata/4.7.0",
  9000. "files": [
  9001. ".nupkg.metadata",
  9002. ".signature.p7s",
  9003. "LICENSE.TXT",
  9004. "THIRD-PARTY-NOTICES.TXT",
  9005. "lib/MonoAndroid10/_._",
  9006. "lib/MonoTouch10/_._",
  9007. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9008. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9009. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9010. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9011. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9012. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9013. "lib/xamarinios10/_._",
  9014. "lib/xamarinmac20/_._",
  9015. "lib/xamarintvos10/_._",
  9016. "lib/xamarinwatchos10/_._",
  9017. "ref/MonoAndroid10/_._",
  9018. "ref/MonoTouch10/_._",
  9019. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9020. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9021. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9022. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9023. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9024. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9025. "ref/xamarinios10/_._",
  9026. "ref/xamarinmac20/_._",
  9027. "ref/xamarintvos10/_._",
  9028. "ref/xamarinwatchos10/_._",
  9029. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9030. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9031. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9032. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9033. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9034. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9035. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  9036. "system.security.cryptography.protecteddata.nuspec",
  9037. "useSharedDesignerContext.txt",
  9038. "version.txt"
  9039. ]
  9040. },
  9041. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9042. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9043. "type": "package",
  9044. "path": "system.security.cryptography.x509certificates/4.3.0",
  9045. "files": [
  9046. ".nupkg.metadata",
  9047. ".signature.p7s",
  9048. "ThirdPartyNotices.txt",
  9049. "dotnet_library_license.txt",
  9050. "lib/MonoAndroid10/_._",
  9051. "lib/MonoTouch10/_._",
  9052. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9053. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9054. "lib/xamarinios10/_._",
  9055. "lib/xamarinmac20/_._",
  9056. "lib/xamarintvos10/_._",
  9057. "lib/xamarinwatchos10/_._",
  9058. "ref/MonoAndroid10/_._",
  9059. "ref/MonoTouch10/_._",
  9060. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9061. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9062. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9063. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9064. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9065. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9066. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9067. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9068. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9069. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9070. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9071. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9072. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9073. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9074. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9075. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9076. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9077. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9078. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9079. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9080. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9081. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9082. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9083. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9084. "ref/xamarinios10/_._",
  9085. "ref/xamarinmac20/_._",
  9086. "ref/xamarintvos10/_._",
  9087. "ref/xamarinwatchos10/_._",
  9088. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9089. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9090. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9091. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9092. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9093. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9094. "system.security.cryptography.x509certificates.nuspec"
  9095. ]
  9096. },
  9097. "System.Security.Permissions/4.7.0": {
  9098. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9099. "type": "package",
  9100. "path": "system.security.permissions/4.7.0",
  9101. "files": [
  9102. ".nupkg.metadata",
  9103. ".signature.p7s",
  9104. "LICENSE.TXT",
  9105. "THIRD-PARTY-NOTICES.TXT",
  9106. "lib/net461/System.Security.Permissions.dll",
  9107. "lib/net461/System.Security.Permissions.xml",
  9108. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9109. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9110. "lib/netstandard2.0/System.Security.Permissions.dll",
  9111. "lib/netstandard2.0/System.Security.Permissions.xml",
  9112. "ref/net461/System.Security.Permissions.dll",
  9113. "ref/net461/System.Security.Permissions.xml",
  9114. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9115. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9116. "ref/netstandard2.0/System.Security.Permissions.dll",
  9117. "ref/netstandard2.0/System.Security.Permissions.xml",
  9118. "system.security.permissions.4.7.0.nupkg.sha512",
  9119. "system.security.permissions.nuspec",
  9120. "useSharedDesignerContext.txt",
  9121. "version.txt"
  9122. ]
  9123. },
  9124. "System.Security.Principal/4.3.0": {
  9125. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9126. "type": "package",
  9127. "path": "system.security.principal/4.3.0",
  9128. "files": [
  9129. ".nupkg.metadata",
  9130. ".signature.p7s",
  9131. "ThirdPartyNotices.txt",
  9132. "dotnet_library_license.txt",
  9133. "lib/MonoAndroid10/_._",
  9134. "lib/MonoTouch10/_._",
  9135. "lib/net45/_._",
  9136. "lib/netcore50/System.Security.Principal.dll",
  9137. "lib/netstandard1.0/System.Security.Principal.dll",
  9138. "lib/portable-net45+win8+wp8+wpa81/_._",
  9139. "lib/win8/_._",
  9140. "lib/wp80/_._",
  9141. "lib/wpa81/_._",
  9142. "lib/xamarinios10/_._",
  9143. "lib/xamarinmac20/_._",
  9144. "lib/xamarintvos10/_._",
  9145. "lib/xamarinwatchos10/_._",
  9146. "ref/MonoAndroid10/_._",
  9147. "ref/MonoTouch10/_._",
  9148. "ref/net45/_._",
  9149. "ref/netcore50/System.Security.Principal.dll",
  9150. "ref/netcore50/System.Security.Principal.xml",
  9151. "ref/netcore50/de/System.Security.Principal.xml",
  9152. "ref/netcore50/es/System.Security.Principal.xml",
  9153. "ref/netcore50/fr/System.Security.Principal.xml",
  9154. "ref/netcore50/it/System.Security.Principal.xml",
  9155. "ref/netcore50/ja/System.Security.Principal.xml",
  9156. "ref/netcore50/ko/System.Security.Principal.xml",
  9157. "ref/netcore50/ru/System.Security.Principal.xml",
  9158. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9159. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9160. "ref/netstandard1.0/System.Security.Principal.dll",
  9161. "ref/netstandard1.0/System.Security.Principal.xml",
  9162. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9163. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9164. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9165. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9166. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9167. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9168. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9169. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9170. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9171. "ref/portable-net45+win8+wp8+wpa81/_._",
  9172. "ref/win8/_._",
  9173. "ref/wp80/_._",
  9174. "ref/wpa81/_._",
  9175. "ref/xamarinios10/_._",
  9176. "ref/xamarinmac20/_._",
  9177. "ref/xamarintvos10/_._",
  9178. "ref/xamarinwatchos10/_._",
  9179. "system.security.principal.4.3.0.nupkg.sha512",
  9180. "system.security.principal.nuspec"
  9181. ]
  9182. },
  9183. "System.Security.Principal.Windows/4.7.0": {
  9184. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  9185. "type": "package",
  9186. "path": "system.security.principal.windows/4.7.0",
  9187. "files": [
  9188. ".nupkg.metadata",
  9189. ".signature.p7s",
  9190. "LICENSE.TXT",
  9191. "THIRD-PARTY-NOTICES.TXT",
  9192. "lib/net46/System.Security.Principal.Windows.dll",
  9193. "lib/net461/System.Security.Principal.Windows.dll",
  9194. "lib/net461/System.Security.Principal.Windows.xml",
  9195. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9196. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9197. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9198. "lib/uap10.0.16299/_._",
  9199. "ref/net46/System.Security.Principal.Windows.dll",
  9200. "ref/net461/System.Security.Principal.Windows.dll",
  9201. "ref/net461/System.Security.Principal.Windows.xml",
  9202. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9203. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9204. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9205. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9206. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9207. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9208. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9209. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9210. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9211. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9212. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9213. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9214. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9215. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9216. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9217. "ref/uap10.0.16299/_._",
  9218. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9219. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9220. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9221. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9222. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9223. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9224. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9225. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9226. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9227. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9228. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9229. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9230. "runtimes/win/lib/uap10.0.16299/_._",
  9231. "system.security.principal.windows.4.7.0.nupkg.sha512",
  9232. "system.security.principal.windows.nuspec",
  9233. "useSharedDesignerContext.txt",
  9234. "version.txt"
  9235. ]
  9236. },
  9237. "System.Text.Encoding/4.3.0": {
  9238. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9239. "type": "package",
  9240. "path": "system.text.encoding/4.3.0",
  9241. "files": [
  9242. ".nupkg.metadata",
  9243. ".signature.p7s",
  9244. "ThirdPartyNotices.txt",
  9245. "dotnet_library_license.txt",
  9246. "lib/MonoAndroid10/_._",
  9247. "lib/MonoTouch10/_._",
  9248. "lib/net45/_._",
  9249. "lib/portable-net45+win8+wp8+wpa81/_._",
  9250. "lib/win8/_._",
  9251. "lib/wp80/_._",
  9252. "lib/wpa81/_._",
  9253. "lib/xamarinios10/_._",
  9254. "lib/xamarinmac20/_._",
  9255. "lib/xamarintvos10/_._",
  9256. "lib/xamarinwatchos10/_._",
  9257. "ref/MonoAndroid10/_._",
  9258. "ref/MonoTouch10/_._",
  9259. "ref/net45/_._",
  9260. "ref/netcore50/System.Text.Encoding.dll",
  9261. "ref/netcore50/System.Text.Encoding.xml",
  9262. "ref/netcore50/de/System.Text.Encoding.xml",
  9263. "ref/netcore50/es/System.Text.Encoding.xml",
  9264. "ref/netcore50/fr/System.Text.Encoding.xml",
  9265. "ref/netcore50/it/System.Text.Encoding.xml",
  9266. "ref/netcore50/ja/System.Text.Encoding.xml",
  9267. "ref/netcore50/ko/System.Text.Encoding.xml",
  9268. "ref/netcore50/ru/System.Text.Encoding.xml",
  9269. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9270. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9271. "ref/netstandard1.0/System.Text.Encoding.dll",
  9272. "ref/netstandard1.0/System.Text.Encoding.xml",
  9273. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9274. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9275. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9276. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9277. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9278. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9279. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9280. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9281. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9282. "ref/netstandard1.3/System.Text.Encoding.dll",
  9283. "ref/netstandard1.3/System.Text.Encoding.xml",
  9284. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9285. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9286. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9287. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9288. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9289. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9290. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9291. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9292. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9293. "ref/portable-net45+win8+wp8+wpa81/_._",
  9294. "ref/win8/_._",
  9295. "ref/wp80/_._",
  9296. "ref/wpa81/_._",
  9297. "ref/xamarinios10/_._",
  9298. "ref/xamarinmac20/_._",
  9299. "ref/xamarintvos10/_._",
  9300. "ref/xamarinwatchos10/_._",
  9301. "system.text.encoding.4.3.0.nupkg.sha512",
  9302. "system.text.encoding.nuspec"
  9303. ]
  9304. },
  9305. "System.Text.Encoding.CodePages/5.0.0": {
  9306. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9307. "type": "package",
  9308. "path": "system.text.encoding.codepages/5.0.0",
  9309. "files": [
  9310. ".nupkg.metadata",
  9311. ".signature.p7s",
  9312. "Icon.png",
  9313. "LICENSE.TXT",
  9314. "THIRD-PARTY-NOTICES.TXT",
  9315. "lib/MonoAndroid10/_._",
  9316. "lib/MonoTouch10/_._",
  9317. "lib/net46/System.Text.Encoding.CodePages.dll",
  9318. "lib/net461/System.Text.Encoding.CodePages.dll",
  9319. "lib/net461/System.Text.Encoding.CodePages.xml",
  9320. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9321. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9322. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9323. "lib/xamarinios10/_._",
  9324. "lib/xamarinmac20/_._",
  9325. "lib/xamarintvos10/_._",
  9326. "lib/xamarinwatchos10/_._",
  9327. "ref/MonoAndroid10/_._",
  9328. "ref/MonoTouch10/_._",
  9329. "ref/xamarinios10/_._",
  9330. "ref/xamarinmac20/_._",
  9331. "ref/xamarintvos10/_._",
  9332. "ref/xamarinwatchos10/_._",
  9333. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9334. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9335. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9336. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9337. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9338. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9339. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9340. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9341. "system.text.encoding.codepages.nuspec",
  9342. "useSharedDesignerContext.txt",
  9343. "version.txt"
  9344. ]
  9345. },
  9346. "System.Text.Encoding.Extensions/4.3.0": {
  9347. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9348. "type": "package",
  9349. "path": "system.text.encoding.extensions/4.3.0",
  9350. "files": [
  9351. ".nupkg.metadata",
  9352. ".signature.p7s",
  9353. "ThirdPartyNotices.txt",
  9354. "dotnet_library_license.txt",
  9355. "lib/MonoAndroid10/_._",
  9356. "lib/MonoTouch10/_._",
  9357. "lib/net45/_._",
  9358. "lib/portable-net45+win8+wp8+wpa81/_._",
  9359. "lib/win8/_._",
  9360. "lib/wp80/_._",
  9361. "lib/wpa81/_._",
  9362. "lib/xamarinios10/_._",
  9363. "lib/xamarinmac20/_._",
  9364. "lib/xamarintvos10/_._",
  9365. "lib/xamarinwatchos10/_._",
  9366. "ref/MonoAndroid10/_._",
  9367. "ref/MonoTouch10/_._",
  9368. "ref/net45/_._",
  9369. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9370. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9371. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9372. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9373. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9374. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9375. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9376. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9377. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9378. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9379. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9380. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9381. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9382. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9383. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9384. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9385. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9386. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9387. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9388. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9389. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9390. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9391. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9392. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9393. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9394. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9395. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9396. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9397. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9398. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9399. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9400. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9401. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9402. "ref/portable-net45+win8+wp8+wpa81/_._",
  9403. "ref/win8/_._",
  9404. "ref/wp80/_._",
  9405. "ref/wpa81/_._",
  9406. "ref/xamarinios10/_._",
  9407. "ref/xamarinmac20/_._",
  9408. "ref/xamarintvos10/_._",
  9409. "ref/xamarinwatchos10/_._",
  9410. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9411. "system.text.encoding.extensions.nuspec"
  9412. ]
  9413. },
  9414. "System.Text.Encodings.Web/4.7.0": {
  9415. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  9416. "type": "package",
  9417. "path": "system.text.encodings.web/4.7.0",
  9418. "files": [
  9419. ".nupkg.metadata",
  9420. ".signature.p7s",
  9421. "LICENSE.TXT",
  9422. "THIRD-PARTY-NOTICES.TXT",
  9423. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9424. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9425. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9426. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9427. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  9428. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  9429. "system.text.encodings.web.4.7.0.nupkg.sha512",
  9430. "system.text.encodings.web.nuspec",
  9431. "useSharedDesignerContext.txt",
  9432. "version.txt"
  9433. ]
  9434. },
  9435. "System.Text.RegularExpressions/4.3.0": {
  9436. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9437. "type": "package",
  9438. "path": "system.text.regularexpressions/4.3.0",
  9439. "files": [
  9440. ".nupkg.metadata",
  9441. ".signature.p7s",
  9442. "ThirdPartyNotices.txt",
  9443. "dotnet_library_license.txt",
  9444. "lib/MonoAndroid10/_._",
  9445. "lib/MonoTouch10/_._",
  9446. "lib/net45/_._",
  9447. "lib/net463/System.Text.RegularExpressions.dll",
  9448. "lib/netcore50/System.Text.RegularExpressions.dll",
  9449. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9450. "lib/portable-net45+win8+wp8+wpa81/_._",
  9451. "lib/win8/_._",
  9452. "lib/wp80/_._",
  9453. "lib/wpa81/_._",
  9454. "lib/xamarinios10/_._",
  9455. "lib/xamarinmac20/_._",
  9456. "lib/xamarintvos10/_._",
  9457. "lib/xamarinwatchos10/_._",
  9458. "ref/MonoAndroid10/_._",
  9459. "ref/MonoTouch10/_._",
  9460. "ref/net45/_._",
  9461. "ref/net463/System.Text.RegularExpressions.dll",
  9462. "ref/netcore50/System.Text.RegularExpressions.dll",
  9463. "ref/netcore50/System.Text.RegularExpressions.xml",
  9464. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9465. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9466. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9467. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9468. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9469. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9470. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9471. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9472. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9473. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9474. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9475. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9476. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9477. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9478. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9479. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9480. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9481. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9482. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9483. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9484. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9485. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9486. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9487. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9488. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9489. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9490. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9491. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9492. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9493. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9494. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9495. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9496. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9497. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9498. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9499. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9500. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9501. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9502. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9503. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9504. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9505. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9506. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9507. "ref/portable-net45+win8+wp8+wpa81/_._",
  9508. "ref/win8/_._",
  9509. "ref/wp80/_._",
  9510. "ref/wpa81/_._",
  9511. "ref/xamarinios10/_._",
  9512. "ref/xamarinmac20/_._",
  9513. "ref/xamarintvos10/_._",
  9514. "ref/xamarinwatchos10/_._",
  9515. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9516. "system.text.regularexpressions.nuspec"
  9517. ]
  9518. },
  9519. "System.Threading/4.3.0": {
  9520. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9521. "type": "package",
  9522. "path": "system.threading/4.3.0",
  9523. "files": [
  9524. ".nupkg.metadata",
  9525. ".signature.p7s",
  9526. "ThirdPartyNotices.txt",
  9527. "dotnet_library_license.txt",
  9528. "lib/MonoAndroid10/_._",
  9529. "lib/MonoTouch10/_._",
  9530. "lib/net45/_._",
  9531. "lib/netcore50/System.Threading.dll",
  9532. "lib/netstandard1.3/System.Threading.dll",
  9533. "lib/portable-net45+win8+wp8+wpa81/_._",
  9534. "lib/win8/_._",
  9535. "lib/wp80/_._",
  9536. "lib/wpa81/_._",
  9537. "lib/xamarinios10/_._",
  9538. "lib/xamarinmac20/_._",
  9539. "lib/xamarintvos10/_._",
  9540. "lib/xamarinwatchos10/_._",
  9541. "ref/MonoAndroid10/_._",
  9542. "ref/MonoTouch10/_._",
  9543. "ref/net45/_._",
  9544. "ref/netcore50/System.Threading.dll",
  9545. "ref/netcore50/System.Threading.xml",
  9546. "ref/netcore50/de/System.Threading.xml",
  9547. "ref/netcore50/es/System.Threading.xml",
  9548. "ref/netcore50/fr/System.Threading.xml",
  9549. "ref/netcore50/it/System.Threading.xml",
  9550. "ref/netcore50/ja/System.Threading.xml",
  9551. "ref/netcore50/ko/System.Threading.xml",
  9552. "ref/netcore50/ru/System.Threading.xml",
  9553. "ref/netcore50/zh-hans/System.Threading.xml",
  9554. "ref/netcore50/zh-hant/System.Threading.xml",
  9555. "ref/netstandard1.0/System.Threading.dll",
  9556. "ref/netstandard1.0/System.Threading.xml",
  9557. "ref/netstandard1.0/de/System.Threading.xml",
  9558. "ref/netstandard1.0/es/System.Threading.xml",
  9559. "ref/netstandard1.0/fr/System.Threading.xml",
  9560. "ref/netstandard1.0/it/System.Threading.xml",
  9561. "ref/netstandard1.0/ja/System.Threading.xml",
  9562. "ref/netstandard1.0/ko/System.Threading.xml",
  9563. "ref/netstandard1.0/ru/System.Threading.xml",
  9564. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9565. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9566. "ref/netstandard1.3/System.Threading.dll",
  9567. "ref/netstandard1.3/System.Threading.xml",
  9568. "ref/netstandard1.3/de/System.Threading.xml",
  9569. "ref/netstandard1.3/es/System.Threading.xml",
  9570. "ref/netstandard1.3/fr/System.Threading.xml",
  9571. "ref/netstandard1.3/it/System.Threading.xml",
  9572. "ref/netstandard1.3/ja/System.Threading.xml",
  9573. "ref/netstandard1.3/ko/System.Threading.xml",
  9574. "ref/netstandard1.3/ru/System.Threading.xml",
  9575. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9576. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9577. "ref/portable-net45+win8+wp8+wpa81/_._",
  9578. "ref/win8/_._",
  9579. "ref/wp80/_._",
  9580. "ref/wpa81/_._",
  9581. "ref/xamarinios10/_._",
  9582. "ref/xamarinmac20/_._",
  9583. "ref/xamarintvos10/_._",
  9584. "ref/xamarinwatchos10/_._",
  9585. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9586. "system.threading.4.3.0.nupkg.sha512",
  9587. "system.threading.nuspec"
  9588. ]
  9589. },
  9590. "System.Threading.Channels/7.0.0": {
  9591. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  9592. "type": "package",
  9593. "path": "system.threading.channels/7.0.0",
  9594. "files": [
  9595. ".nupkg.metadata",
  9596. ".signature.p7s",
  9597. "Icon.png",
  9598. "LICENSE.TXT",
  9599. "THIRD-PARTY-NOTICES.TXT",
  9600. "buildTransitive/net461/System.Threading.Channels.targets",
  9601. "buildTransitive/net462/_._",
  9602. "buildTransitive/net6.0/_._",
  9603. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  9604. "lib/net462/System.Threading.Channels.dll",
  9605. "lib/net462/System.Threading.Channels.xml",
  9606. "lib/net6.0/System.Threading.Channels.dll",
  9607. "lib/net6.0/System.Threading.Channels.xml",
  9608. "lib/net7.0/System.Threading.Channels.dll",
  9609. "lib/net7.0/System.Threading.Channels.xml",
  9610. "lib/netstandard2.0/System.Threading.Channels.dll",
  9611. "lib/netstandard2.0/System.Threading.Channels.xml",
  9612. "lib/netstandard2.1/System.Threading.Channels.dll",
  9613. "lib/netstandard2.1/System.Threading.Channels.xml",
  9614. "system.threading.channels.7.0.0.nupkg.sha512",
  9615. "system.threading.channels.nuspec",
  9616. "useSharedDesignerContext.txt"
  9617. ]
  9618. },
  9619. "System.Threading.Tasks/4.3.0": {
  9620. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9621. "type": "package",
  9622. "path": "system.threading.tasks/4.3.0",
  9623. "files": [
  9624. ".nupkg.metadata",
  9625. ".signature.p7s",
  9626. "ThirdPartyNotices.txt",
  9627. "dotnet_library_license.txt",
  9628. "lib/MonoAndroid10/_._",
  9629. "lib/MonoTouch10/_._",
  9630. "lib/net45/_._",
  9631. "lib/portable-net45+win8+wp8+wpa81/_._",
  9632. "lib/win8/_._",
  9633. "lib/wp80/_._",
  9634. "lib/wpa81/_._",
  9635. "lib/xamarinios10/_._",
  9636. "lib/xamarinmac20/_._",
  9637. "lib/xamarintvos10/_._",
  9638. "lib/xamarinwatchos10/_._",
  9639. "ref/MonoAndroid10/_._",
  9640. "ref/MonoTouch10/_._",
  9641. "ref/net45/_._",
  9642. "ref/netcore50/System.Threading.Tasks.dll",
  9643. "ref/netcore50/System.Threading.Tasks.xml",
  9644. "ref/netcore50/de/System.Threading.Tasks.xml",
  9645. "ref/netcore50/es/System.Threading.Tasks.xml",
  9646. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9647. "ref/netcore50/it/System.Threading.Tasks.xml",
  9648. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9649. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9650. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9651. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9652. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9653. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9654. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9655. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9656. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9657. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9658. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9659. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9660. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9661. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9662. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9663. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9664. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9665. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9666. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9667. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9668. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9669. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9670. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9671. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9672. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9673. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9674. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9675. "ref/portable-net45+win8+wp8+wpa81/_._",
  9676. "ref/win8/_._",
  9677. "ref/wp80/_._",
  9678. "ref/wpa81/_._",
  9679. "ref/xamarinios10/_._",
  9680. "ref/xamarinmac20/_._",
  9681. "ref/xamarintvos10/_._",
  9682. "ref/xamarinwatchos10/_._",
  9683. "system.threading.tasks.4.3.0.nupkg.sha512",
  9684. "system.threading.tasks.nuspec"
  9685. ]
  9686. },
  9687. "System.Threading.Tasks.Extensions/4.3.0": {
  9688. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9689. "type": "package",
  9690. "path": "system.threading.tasks.extensions/4.3.0",
  9691. "files": [
  9692. ".nupkg.metadata",
  9693. ".signature.p7s",
  9694. "ThirdPartyNotices.txt",
  9695. "dotnet_library_license.txt",
  9696. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9697. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9698. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9699. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9700. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9701. "system.threading.tasks.extensions.nuspec"
  9702. ]
  9703. },
  9704. "System.Threading.Thread/4.3.0": {
  9705. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9706. "type": "package",
  9707. "path": "system.threading.thread/4.3.0",
  9708. "files": [
  9709. ".nupkg.metadata",
  9710. ".signature.p7s",
  9711. "ThirdPartyNotices.txt",
  9712. "dotnet_library_license.txt",
  9713. "lib/MonoAndroid10/_._",
  9714. "lib/MonoTouch10/_._",
  9715. "lib/net46/System.Threading.Thread.dll",
  9716. "lib/netcore50/_._",
  9717. "lib/netstandard1.3/System.Threading.Thread.dll",
  9718. "lib/xamarinios10/_._",
  9719. "lib/xamarinmac20/_._",
  9720. "lib/xamarintvos10/_._",
  9721. "lib/xamarinwatchos10/_._",
  9722. "ref/MonoAndroid10/_._",
  9723. "ref/MonoTouch10/_._",
  9724. "ref/net46/System.Threading.Thread.dll",
  9725. "ref/netstandard1.3/System.Threading.Thread.dll",
  9726. "ref/netstandard1.3/System.Threading.Thread.xml",
  9727. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9728. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9729. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9730. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9731. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9732. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9733. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9734. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9735. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9736. "ref/xamarinios10/_._",
  9737. "ref/xamarinmac20/_._",
  9738. "ref/xamarintvos10/_._",
  9739. "ref/xamarinwatchos10/_._",
  9740. "system.threading.thread.4.3.0.nupkg.sha512",
  9741. "system.threading.thread.nuspec"
  9742. ]
  9743. },
  9744. "System.Threading.ThreadPool/4.3.0": {
  9745. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  9746. "type": "package",
  9747. "path": "system.threading.threadpool/4.3.0",
  9748. "files": [
  9749. ".nupkg.metadata",
  9750. ".signature.p7s",
  9751. "ThirdPartyNotices.txt",
  9752. "dotnet_library_license.txt",
  9753. "lib/MonoAndroid10/_._",
  9754. "lib/MonoTouch10/_._",
  9755. "lib/net46/System.Threading.ThreadPool.dll",
  9756. "lib/netcore50/_._",
  9757. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9758. "lib/xamarinios10/_._",
  9759. "lib/xamarinmac20/_._",
  9760. "lib/xamarintvos10/_._",
  9761. "lib/xamarinwatchos10/_._",
  9762. "ref/MonoAndroid10/_._",
  9763. "ref/MonoTouch10/_._",
  9764. "ref/net46/System.Threading.ThreadPool.dll",
  9765. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9766. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9767. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9768. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9769. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9770. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9771. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9772. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9773. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9774. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9775. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9776. "ref/xamarinios10/_._",
  9777. "ref/xamarinmac20/_._",
  9778. "ref/xamarintvos10/_._",
  9779. "ref/xamarinwatchos10/_._",
  9780. "system.threading.threadpool.4.3.0.nupkg.sha512",
  9781. "system.threading.threadpool.nuspec"
  9782. ]
  9783. },
  9784. "System.Threading.Timer/4.3.0": {
  9785. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9786. "type": "package",
  9787. "path": "system.threading.timer/4.3.0",
  9788. "files": [
  9789. ".nupkg.metadata",
  9790. ".signature.p7s",
  9791. "ThirdPartyNotices.txt",
  9792. "dotnet_library_license.txt",
  9793. "lib/MonoAndroid10/_._",
  9794. "lib/MonoTouch10/_._",
  9795. "lib/net451/_._",
  9796. "lib/portable-net451+win81+wpa81/_._",
  9797. "lib/win81/_._",
  9798. "lib/wpa81/_._",
  9799. "lib/xamarinios10/_._",
  9800. "lib/xamarinmac20/_._",
  9801. "lib/xamarintvos10/_._",
  9802. "lib/xamarinwatchos10/_._",
  9803. "ref/MonoAndroid10/_._",
  9804. "ref/MonoTouch10/_._",
  9805. "ref/net451/_._",
  9806. "ref/netcore50/System.Threading.Timer.dll",
  9807. "ref/netcore50/System.Threading.Timer.xml",
  9808. "ref/netcore50/de/System.Threading.Timer.xml",
  9809. "ref/netcore50/es/System.Threading.Timer.xml",
  9810. "ref/netcore50/fr/System.Threading.Timer.xml",
  9811. "ref/netcore50/it/System.Threading.Timer.xml",
  9812. "ref/netcore50/ja/System.Threading.Timer.xml",
  9813. "ref/netcore50/ko/System.Threading.Timer.xml",
  9814. "ref/netcore50/ru/System.Threading.Timer.xml",
  9815. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9816. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9817. "ref/netstandard1.2/System.Threading.Timer.dll",
  9818. "ref/netstandard1.2/System.Threading.Timer.xml",
  9819. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9820. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9821. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9822. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9823. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9824. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9825. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9826. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9827. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9828. "ref/portable-net451+win81+wpa81/_._",
  9829. "ref/win81/_._",
  9830. "ref/wpa81/_._",
  9831. "ref/xamarinios10/_._",
  9832. "ref/xamarinmac20/_._",
  9833. "ref/xamarintvos10/_._",
  9834. "ref/xamarinwatchos10/_._",
  9835. "system.threading.timer.4.3.0.nupkg.sha512",
  9836. "system.threading.timer.nuspec"
  9837. ]
  9838. },
  9839. "System.Windows.Extensions/4.7.0": {
  9840. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9841. "type": "package",
  9842. "path": "system.windows.extensions/4.7.0",
  9843. "files": [
  9844. ".nupkg.metadata",
  9845. ".signature.p7s",
  9846. "LICENSE.TXT",
  9847. "THIRD-PARTY-NOTICES.TXT",
  9848. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9849. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9850. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9851. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9852. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9853. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9854. "system.windows.extensions.4.7.0.nupkg.sha512",
  9855. "system.windows.extensions.nuspec",
  9856. "useSharedDesignerContext.txt",
  9857. "version.txt"
  9858. ]
  9859. },
  9860. "System.Xml.ReaderWriter/4.3.0": {
  9861. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9862. "type": "package",
  9863. "path": "system.xml.readerwriter/4.3.0",
  9864. "files": [
  9865. ".nupkg.metadata",
  9866. ".signature.p7s",
  9867. "ThirdPartyNotices.txt",
  9868. "dotnet_library_license.txt",
  9869. "lib/MonoAndroid10/_._",
  9870. "lib/MonoTouch10/_._",
  9871. "lib/net45/_._",
  9872. "lib/net46/System.Xml.ReaderWriter.dll",
  9873. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9874. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9875. "lib/portable-net45+win8+wp8+wpa81/_._",
  9876. "lib/win8/_._",
  9877. "lib/wp80/_._",
  9878. "lib/wpa81/_._",
  9879. "lib/xamarinios10/_._",
  9880. "lib/xamarinmac20/_._",
  9881. "lib/xamarintvos10/_._",
  9882. "lib/xamarinwatchos10/_._",
  9883. "ref/MonoAndroid10/_._",
  9884. "ref/MonoTouch10/_._",
  9885. "ref/net45/_._",
  9886. "ref/net46/System.Xml.ReaderWriter.dll",
  9887. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9888. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9889. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9890. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9891. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9892. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9893. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9894. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9895. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9896. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9897. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9898. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9899. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9900. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9901. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9902. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9903. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9904. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9905. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9906. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9907. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9908. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9909. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9910. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9911. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9912. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9913. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9914. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9915. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9916. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9917. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9918. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9919. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9920. "ref/portable-net45+win8+wp8+wpa81/_._",
  9921. "ref/win8/_._",
  9922. "ref/wp80/_._",
  9923. "ref/wpa81/_._",
  9924. "ref/xamarinios10/_._",
  9925. "ref/xamarinmac20/_._",
  9926. "ref/xamarintvos10/_._",
  9927. "ref/xamarinwatchos10/_._",
  9928. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9929. "system.xml.readerwriter.nuspec"
  9930. ]
  9931. },
  9932. "System.Xml.XDocument/4.3.0": {
  9933. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9934. "type": "package",
  9935. "path": "system.xml.xdocument/4.3.0",
  9936. "files": [
  9937. ".nupkg.metadata",
  9938. ".signature.p7s",
  9939. "ThirdPartyNotices.txt",
  9940. "dotnet_library_license.txt",
  9941. "lib/MonoAndroid10/_._",
  9942. "lib/MonoTouch10/_._",
  9943. "lib/net45/_._",
  9944. "lib/netcore50/System.Xml.XDocument.dll",
  9945. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9946. "lib/portable-net45+win8+wp8+wpa81/_._",
  9947. "lib/win8/_._",
  9948. "lib/wp80/_._",
  9949. "lib/wpa81/_._",
  9950. "lib/xamarinios10/_._",
  9951. "lib/xamarinmac20/_._",
  9952. "lib/xamarintvos10/_._",
  9953. "lib/xamarinwatchos10/_._",
  9954. "ref/MonoAndroid10/_._",
  9955. "ref/MonoTouch10/_._",
  9956. "ref/net45/_._",
  9957. "ref/netcore50/System.Xml.XDocument.dll",
  9958. "ref/netcore50/System.Xml.XDocument.xml",
  9959. "ref/netcore50/de/System.Xml.XDocument.xml",
  9960. "ref/netcore50/es/System.Xml.XDocument.xml",
  9961. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9962. "ref/netcore50/it/System.Xml.XDocument.xml",
  9963. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9964. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9965. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9966. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9967. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9968. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9969. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9970. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9971. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9972. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9973. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9974. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9975. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9976. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9977. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9978. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9979. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9980. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9981. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9982. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9983. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9984. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9985. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9986. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9987. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9988. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9989. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9990. "ref/portable-net45+win8+wp8+wpa81/_._",
  9991. "ref/win8/_._",
  9992. "ref/wp80/_._",
  9993. "ref/wpa81/_._",
  9994. "ref/xamarinios10/_._",
  9995. "ref/xamarinmac20/_._",
  9996. "ref/xamarintvos10/_._",
  9997. "ref/xamarinwatchos10/_._",
  9998. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9999. "system.xml.xdocument.nuspec"
  10000. ]
  10001. },
  10002. "ZXing.Net/0.16.9": {
  10003. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10004. "type": "package",
  10005. "path": "zxing.net/0.16.9",
  10006. "files": [
  10007. ".nupkg.metadata",
  10008. ".signature.p7s",
  10009. "lib/native/zxing.XML",
  10010. "lib/native/zxing.pri",
  10011. "lib/native/zxing.winmd",
  10012. "lib/net20-cf/zxing.ce2.0.dll",
  10013. "lib/net20-cf/zxing.ce2.0.xml",
  10014. "lib/net20/zxing.XML",
  10015. "lib/net20/zxing.dll",
  10016. "lib/net35-cf/zxing.ce3.5.dll",
  10017. "lib/net35-cf/zxing.ce3.5.xml",
  10018. "lib/net35/zxing.XML",
  10019. "lib/net35/zxing.dll",
  10020. "lib/net40/zxing.XML",
  10021. "lib/net40/zxing.dll",
  10022. "lib/net40/zxing.presentation.XML",
  10023. "lib/net40/zxing.presentation.dll",
  10024. "lib/net45/zxing.XML",
  10025. "lib/net45/zxing.dll",
  10026. "lib/net45/zxing.presentation.XML",
  10027. "lib/net45/zxing.presentation.dll",
  10028. "lib/net461/zxing.XML",
  10029. "lib/net461/zxing.dll",
  10030. "lib/net461/zxing.presentation.XML",
  10031. "lib/net461/zxing.presentation.dll",
  10032. "lib/net47/zxing.XML",
  10033. "lib/net47/zxing.dll",
  10034. "lib/net47/zxing.presentation.XML",
  10035. "lib/net47/zxing.presentation.dll",
  10036. "lib/net48/zxing.XML",
  10037. "lib/net48/zxing.dll",
  10038. "lib/net48/zxing.presentation.XML",
  10039. "lib/net48/zxing.presentation.dll",
  10040. "lib/net5.0/zxing.XML",
  10041. "lib/net5.0/zxing.dll",
  10042. "lib/net6.0/zxing.XML",
  10043. "lib/net6.0/zxing.dll",
  10044. "lib/net7.0/zxing.XML",
  10045. "lib/net7.0/zxing.dll",
  10046. "lib/netcoreapp3.0/zxing.dll",
  10047. "lib/netcoreapp3.0/zxing.xml",
  10048. "lib/netcoreapp3.1/zxing.dll",
  10049. "lib/netcoreapp3.1/zxing.xml",
  10050. "lib/netstandard1.0/zxing.dll",
  10051. "lib/netstandard1.0/zxing.xml",
  10052. "lib/netstandard1.1/zxing.dll",
  10053. "lib/netstandard1.1/zxing.xml",
  10054. "lib/netstandard1.3/zxing.dll",
  10055. "lib/netstandard1.3/zxing.xml",
  10056. "lib/netstandard2.0/zxing.dll",
  10057. "lib/netstandard2.0/zxing.xml",
  10058. "lib/netstandard2.1/zxing.dll",
  10059. "lib/netstandard2.1/zxing.xml",
  10060. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10061. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10062. "lib/sl3-wp/zxing.wp7.0.XML",
  10063. "lib/sl3-wp/zxing.wp7.0.dll",
  10064. "lib/sl4-wp71/zxing.wp7.1.XML",
  10065. "lib/sl4-wp71/zxing.wp7.1.dll",
  10066. "lib/sl4/zxing.sl4.XML",
  10067. "lib/sl4/zxing.sl4.dll",
  10068. "lib/sl5/zxing.sl5.XML",
  10069. "lib/sl5/zxing.sl5.dll",
  10070. "lib/uap10/zxing.dll",
  10071. "lib/uap10/zxing.pri",
  10072. "lib/uap10/zxing.xml",
  10073. "lib/windows8-managed/zxing.winrt.XML",
  10074. "lib/windows8-managed/zxing.winrt.dll",
  10075. "lib/windows8/zxing.XML",
  10076. "lib/windows8/zxing.pri",
  10077. "lib/windows8/zxing.winmd",
  10078. "lib/wp8/zxing.wp8.0.XML",
  10079. "lib/wp8/zxing.wp8.0.dll",
  10080. "logo.jpg",
  10081. "zxing.net.0.16.9.nupkg.sha512",
  10082. "zxing.net.nuspec"
  10083. ]
  10084. },
  10085. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10086. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10087. "type": "package",
  10088. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10089. "files": [
  10090. ".nupkg.metadata",
  10091. ".signature.p7s",
  10092. "lib/net472/ZXing.ImageSharp.V2.dll",
  10093. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10094. "lib/net472/ZXing.ImageSharp.V2.xml",
  10095. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10096. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10097. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10098. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10099. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10100. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10101. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10102. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10103. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10104. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10105. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10106. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10107. "logo.jpg",
  10108. "readme.md",
  10109. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10110. "zxing.net.bindings.imagesharp.v2.nuspec"
  10111. ]
  10112. },
  10113. "Ropin.Core.Common/1.0.0": {
  10114. "type": "project",
  10115. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10116. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10117. },
  10118. "Ropin.Core.Extensions/1.0.0": {
  10119. "type": "project",
  10120. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10121. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10122. },
  10123. "Ropin.Inspection.Common/1.0.0": {
  10124. "type": "project",
  10125. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10126. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10127. },
  10128. "Ropin.Inspection.Model/1.0.0": {
  10129. "type": "project",
  10130. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10131. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10132. },
  10133. "Ropin.Inspection.Repository/1.0.0": {
  10134. "type": "project",
  10135. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10136. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10137. },
  10138. "Ropin.Inspection.Service/1.0.0": {
  10139. "type": "project",
  10140. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10141. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10142. },
  10143. "Ropin.Inspection.Tasks/1.0.0": {
  10144. "type": "project",
  10145. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10146. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10147. }
  10148. },
  10149. "projectFileDependencyGroups": {
  10150. "net5.0": [
  10151. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10152. "FBoxClientDriver >= 1.2.0",
  10153. "FBoxClientDriver.Contract >= 1.2.0",
  10154. "InfluxData.Net >= 8.0.1",
  10155. "InitQ >= 1.0.0.14",
  10156. "Microsoft.AspNetCore.NodeServices >= 3.1.30",
  10157. "Microsoft.AspNetCore.SignalR >= 1.1.0",
  10158. "Microsoft.AspNetCore.SignalR.Client >= 3.1.20",
  10159. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  10160. "NLog >= 4.7.7",
  10161. "Newtonsoft.Json >= 13.0.1",
  10162. "RabbitMQ.Client >= 6.8.1",
  10163. "Ropin.Core.Extensions >= 1.0.0",
  10164. "Ropin.Inspection.Common >= 1.0.0",
  10165. "Ropin.Inspection.Model >= 1.0.0",
  10166. "Ropin.Inspection.Repository >= 1.0.0",
  10167. "Serilog >= 2.11.0",
  10168. "Serilog.Sinks.Console >= 4.0.1",
  10169. "Serilog.Sinks.File >= 5.0.0"
  10170. ]
  10171. },
  10172. "packageFolders": {
  10173. "D:\\.nuget\\packages": {},
  10174. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10175. },
  10176. "project": {
  10177. "version": "1.0.0",
  10178. "restore": {
  10179. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10180. "projectName": "Ropin.Environmentally.WebScada",
  10181. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\Ropin.Environmentally.WebScada.csproj",
  10182. "packagesPath": "D:\\.nuget\\packages",
  10183. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.WebScada\\obj\\",
  10184. "projectStyle": "PackageReference",
  10185. "fallbackFolders": [
  10186. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10187. ],
  10188. "configFilePaths": [
  10189. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10190. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10191. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10192. ],
  10193. "originalTargetFrameworks": [
  10194. "net5.0"
  10195. ],
  10196. "sources": {
  10197. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10198. "C:\\Program Files\\dotnet\\library-packs": {},
  10199. "https://api.nuget.org/v3/index.json": {}
  10200. },
  10201. "frameworks": {
  10202. "net5.0": {
  10203. "targetAlias": "net5.0",
  10204. "projectReferences": {
  10205. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10206. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10207. },
  10208. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10209. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10210. },
  10211. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10212. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10213. },
  10214. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  10215. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  10216. }
  10217. }
  10218. }
  10219. },
  10220. "warningProperties": {
  10221. "warnAsError": [
  10222. "NU1605"
  10223. ]
  10224. }
  10225. },
  10226. "frameworks": {
  10227. "net5.0": {
  10228. "targetAlias": "net5.0",
  10229. "dependencies": {
  10230. "Autofac.Extensions.DependencyInjection": {
  10231. "target": "Package",
  10232. "version": "[7.1.0, )"
  10233. },
  10234. "FBoxClientDriver": {
  10235. "target": "Package",
  10236. "version": "[1.2.0, )"
  10237. },
  10238. "FBoxClientDriver.Contract": {
  10239. "target": "Package",
  10240. "version": "[1.2.0, )"
  10241. },
  10242. "InfluxData.Net": {
  10243. "target": "Package",
  10244. "version": "[8.0.1, )"
  10245. },
  10246. "InitQ": {
  10247. "target": "Package",
  10248. "version": "[1.0.0.14, )"
  10249. },
  10250. "Microsoft.AspNetCore.NodeServices": {
  10251. "target": "Package",
  10252. "version": "[3.1.30, )"
  10253. },
  10254. "Microsoft.AspNetCore.SignalR": {
  10255. "target": "Package",
  10256. "version": "[1.1.0, )"
  10257. },
  10258. "Microsoft.AspNetCore.SignalR.Client": {
  10259. "target": "Package",
  10260. "version": "[3.1.20, )"
  10261. },
  10262. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10263. "target": "Package",
  10264. "version": "[1.17.2, )"
  10265. },
  10266. "NLog": {
  10267. "target": "Package",
  10268. "version": "[4.7.7, )"
  10269. },
  10270. "Newtonsoft.Json": {
  10271. "target": "Package",
  10272. "version": "[13.0.1, )"
  10273. },
  10274. "RabbitMQ.Client": {
  10275. "target": "Package",
  10276. "version": "[6.8.1, )"
  10277. },
  10278. "Serilog": {
  10279. "target": "Package",
  10280. "version": "[2.11.0, )"
  10281. },
  10282. "Serilog.Sinks.Console": {
  10283. "target": "Package",
  10284. "version": "[4.0.1, )"
  10285. },
  10286. "Serilog.Sinks.File": {
  10287. "target": "Package",
  10288. "version": "[5.0.0, )"
  10289. }
  10290. },
  10291. "imports": [
  10292. "net461",
  10293. "net462",
  10294. "net47",
  10295. "net471",
  10296. "net472",
  10297. "net48",
  10298. "net481"
  10299. ],
  10300. "assetTargetFallback": true,
  10301. "warn": true,
  10302. "frameworkReferences": {
  10303. "Microsoft.AspNetCore.App": {
  10304. "privateAssets": "none"
  10305. },
  10306. "Microsoft.NETCore.App": {
  10307. "privateAssets": "all"
  10308. }
  10309. },
  10310. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10311. }
  10312. }
  10313. }
  10314. }