project.assets.json 364 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030
  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.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/net5.0/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/net5.0/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extras.DynamicProxy/6.0.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Castle.Core": "4.4.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.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. "Castle.Core/4.4.0": {
  82. "type": "package",
  83. "dependencies": {
  84. "NETStandard.Library": "1.6.1",
  85. "System.Collections.Specialized": "4.3.0",
  86. "System.ComponentModel": "4.3.0",
  87. "System.ComponentModel.TypeConverter": "4.3.0",
  88. "System.Diagnostics.TraceSource": "4.3.0",
  89. "System.Dynamic.Runtime": "4.3.0",
  90. "System.Reflection": "4.3.0",
  91. "System.Reflection.Emit": "4.3.0",
  92. "System.Reflection.TypeExtensions": "4.3.0",
  93. "System.Xml.XmlDocument": "4.3.0"
  94. },
  95. "compile": {
  96. "lib/netstandard1.5/Castle.Core.dll": {
  97. "related": ".xml"
  98. }
  99. },
  100. "runtime": {
  101. "lib/netstandard1.5/Castle.Core.dll": {
  102. "related": ".xml"
  103. }
  104. }
  105. },
  106. "Coravel/4.2.1": {
  107. "type": "package",
  108. "dependencies": {
  109. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  110. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  111. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/Coravel.dll": {
  115. "related": ".xml"
  116. }
  117. },
  118. "runtime": {
  119. "lib/netstandard2.0/Coravel.dll": {
  120. "related": ".xml"
  121. }
  122. }
  123. },
  124. "FluentEmail.Core/3.0.2": {
  125. "type": "package",
  126. "dependencies": {
  127. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  128. },
  129. "compile": {
  130. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  131. },
  132. "runtime": {
  133. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  134. }
  135. },
  136. "FluentEmail.Smtp/3.0.2": {
  137. "type": "package",
  138. "dependencies": {
  139. "FluentEmail.Core": "3.0.2"
  140. },
  141. "compile": {
  142. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  146. }
  147. },
  148. "Google.Protobuf/3.11.4": {
  149. "type": "package",
  150. "dependencies": {
  151. "System.Memory": "4.5.2"
  152. },
  153. "compile": {
  154. "lib/netstandard2.0/Google.Protobuf.dll": {
  155. "related": ".pdb;.xml"
  156. }
  157. },
  158. "runtime": {
  159. "lib/netstandard2.0/Google.Protobuf.dll": {
  160. "related": ".pdb;.xml"
  161. }
  162. }
  163. },
  164. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  165. "type": "package",
  166. "dependencies": {
  167. "AdvancedStringBuilder": "0.1.0",
  168. "JavaScriptEngineSwitcher.Core": "3.21.0"
  169. },
  170. "compile": {
  171. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  172. "related": ".xml"
  173. }
  174. },
  175. "runtime": {
  176. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  177. "related": ".xml"
  178. }
  179. },
  180. "resource": {
  181. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  182. "locale": "ru-RU"
  183. }
  184. }
  185. },
  186. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  187. "type": "package",
  188. "runtimeTargets": {
  189. "runtimes/linux-x64/native/libChakraCore.so": {
  190. "assetType": "native",
  191. "rid": "linux-x64"
  192. }
  193. }
  194. },
  195. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  196. "type": "package",
  197. "build": {
  198. "build/_._": {}
  199. },
  200. "runtimeTargets": {
  201. "runtimes/win-x64/native/ChakraCore.dll": {
  202. "assetType": "native",
  203. "rid": "win-x64"
  204. }
  205. }
  206. },
  207. "JavaScriptEngineSwitcher.Core/3.21.0": {
  208. "type": "package",
  209. "dependencies": {
  210. "AdvancedStringBuilder": "0.1.0"
  211. },
  212. "compile": {
  213. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  214. "related": ".xml"
  215. }
  216. },
  217. "runtime": {
  218. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  219. "related": ".xml"
  220. }
  221. },
  222. "resource": {
  223. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  224. "locale": "ru-RU"
  225. }
  226. }
  227. },
  228. "K4os.Compression.LZ4/1.1.11": {
  229. "type": "package",
  230. "dependencies": {
  231. "System.Memory": "4.5.3"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "K4os.Compression.LZ4.Streams/1.1.11": {
  245. "type": "package",
  246. "dependencies": {
  247. "K4os.Compression.LZ4": "1.1.11",
  248. "K4os.Hash.xxHash": "1.0.6"
  249. },
  250. "compile": {
  251. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  252. "related": ".xml"
  253. }
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  257. "related": ".xml"
  258. }
  259. }
  260. },
  261. "K4os.Hash.xxHash/1.0.6": {
  262. "type": "package",
  263. "dependencies": {
  264. "System.Memory": "4.5.3"
  265. },
  266. "compile": {
  267. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  268. "related": ".xml"
  269. }
  270. },
  271. "runtime": {
  272. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  273. "related": ".xml"
  274. }
  275. }
  276. },
  277. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  278. "type": "package",
  279. "dependencies": {
  280. "Microsoft.EntityFrameworkCore": "5.0.0"
  281. },
  282. "compile": {
  283. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  284. "related": ".xml"
  285. }
  286. },
  287. "runtime": {
  288. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  289. "related": ".xml"
  290. }
  291. }
  292. },
  293. "log4net/2.0.17": {
  294. "type": "package",
  295. "dependencies": {
  296. "System.Configuration.ConfigurationManager": "4.5.0"
  297. },
  298. "compile": {
  299. "lib/netstandard2.0/log4net.dll": {
  300. "related": ".xml"
  301. }
  302. },
  303. "runtime": {
  304. "lib/netstandard2.0/log4net.dll": {
  305. "related": ".xml"
  306. }
  307. }
  308. },
  309. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  310. "type": "package",
  311. "dependencies": {
  312. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  313. "System.Text.Encodings.Web": "4.5.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  322. "related": ".xml"
  323. }
  324. }
  325. },
  326. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  327. "type": "package",
  328. "dependencies": {
  329. "Microsoft.Extensions.Primitives": "5.0.0",
  330. "System.IO.Pipelines": "5.0.0"
  331. },
  332. "compile": {
  333. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  334. "related": ".xml"
  335. }
  336. },
  337. "runtime": {
  338. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  339. "related": ".xml"
  340. }
  341. }
  342. },
  343. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  344. "type": "package",
  345. "dependencies": {
  346. "Microsoft.Extensions.Logging.Console": "3.1.30",
  347. "Newtonsoft.Json": "13.0.1"
  348. },
  349. "compile": {
  350. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  351. },
  352. "runtime": {
  353. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  354. },
  355. "frameworkReferences": [
  356. "Microsoft.AspNetCore.App"
  357. ]
  358. },
  359. "Microsoft.CSharp/4.7.0": {
  360. "type": "package",
  361. "compile": {
  362. "ref/netcoreapp2.0/_._": {}
  363. },
  364. "runtime": {
  365. "lib/netcoreapp2.0/_._": {}
  366. }
  367. },
  368. "Microsoft.EntityFrameworkCore/5.0.0": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  372. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  373. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  374. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  375. "Microsoft.Extensions.Logging": "5.0.0",
  376. "System.Collections.Immutable": "5.0.0",
  377. "System.ComponentModel.Annotations": "5.0.0",
  378. "System.Diagnostics.DiagnosticSource": "5.0.0"
  379. },
  380. "compile": {
  381. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  382. "related": ".xml"
  383. }
  384. },
  385. "runtime": {
  386. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  387. "related": ".xml"
  388. }
  389. }
  390. },
  391. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  392. "type": "package",
  393. "compile": {
  394. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  395. "related": ".xml"
  396. }
  397. },
  398. "runtime": {
  399. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  400. "related": ".xml"
  401. }
  402. }
  403. },
  404. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  405. "type": "package",
  406. "compile": {
  407. "lib/netstandard2.0/_._": {}
  408. },
  409. "runtime": {
  410. "lib/netstandard2.0/_._": {}
  411. }
  412. },
  413. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  414. "type": "package",
  415. "dependencies": {
  416. "Microsoft.EntityFrameworkCore": "5.0.0",
  417. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  418. },
  419. "compile": {
  420. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  421. "related": ".xml"
  422. }
  423. },
  424. "runtime": {
  425. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  426. "related": ".xml"
  427. }
  428. }
  429. },
  430. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  431. "type": "package",
  432. "dependencies": {
  433. "Microsoft.Extensions.Primitives": "5.0.0"
  434. },
  435. "compile": {
  436. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  437. "related": ".xml"
  438. }
  439. },
  440. "runtime": {
  441. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  442. "related": ".xml"
  443. }
  444. }
  445. },
  446. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  447. "type": "package",
  448. "dependencies": {
  449. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  450. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  451. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  452. "Microsoft.Extensions.Options": "5.0.0",
  453. "Microsoft.Extensions.Primitives": "5.0.0"
  454. },
  455. "compile": {
  456. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  457. "related": ".xml"
  458. }
  459. },
  460. "runtime": {
  461. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  462. "related": ".xml"
  463. }
  464. }
  465. },
  466. "Microsoft.Extensions.Configuration/5.0.0": {
  467. "type": "package",
  468. "dependencies": {
  469. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  470. "Microsoft.Extensions.Primitives": "5.0.0"
  471. },
  472. "compile": {
  473. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.Extensions.Primitives": "5.0.0"
  487. },
  488. "compile": {
  489. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  490. "related": ".xml"
  491. }
  492. },
  493. "runtime": {
  494. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  495. "related": ".xml"
  496. }
  497. }
  498. },
  499. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  500. "type": "package",
  501. "dependencies": {
  502. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  503. },
  504. "compile": {
  505. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  506. "related": ".xml"
  507. }
  508. },
  509. "runtime": {
  510. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  511. "related": ".xml"
  512. }
  513. }
  514. },
  515. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  516. "type": "package",
  517. "dependencies": {
  518. "Microsoft.Extensions.Configuration": "5.0.0",
  519. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  520. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  521. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  522. "Microsoft.Extensions.Primitives": "5.0.0"
  523. },
  524. "compile": {
  525. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  526. "related": ".xml"
  527. }
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  531. "related": ".xml"
  532. }
  533. }
  534. },
  535. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  536. "type": "package",
  537. "dependencies": {
  538. "Microsoft.Extensions.Configuration": "5.0.0",
  539. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  540. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  541. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  542. },
  543. "compile": {
  544. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  545. "related": ".xml"
  546. }
  547. },
  548. "runtime": {
  549. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  550. "related": ".xml"
  551. }
  552. }
  553. },
  554. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  555. "type": "package",
  556. "dependencies": {
  557. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  558. },
  559. "compile": {
  560. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  561. "related": ".xml"
  562. }
  563. },
  564. "runtime": {
  565. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  566. "related": ".xml"
  567. }
  568. }
  569. },
  570. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  571. "type": "package",
  572. "compile": {
  573. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  574. "related": ".xml"
  575. }
  576. },
  577. "runtime": {
  578. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  579. "related": ".xml"
  580. }
  581. }
  582. },
  583. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  584. "type": "package",
  585. "dependencies": {
  586. "Microsoft.Extensions.Primitives": "5.0.0"
  587. },
  588. "compile": {
  589. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  590. "related": ".xml"
  591. }
  592. },
  593. "runtime": {
  594. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  595. "related": ".xml"
  596. }
  597. }
  598. },
  599. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  603. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  604. "Microsoft.Extensions.Primitives": "5.0.0"
  605. },
  606. "compile": {
  607. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  608. "related": ".xml"
  609. }
  610. },
  611. "runtime": {
  612. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  613. "related": ".xml"
  614. }
  615. }
  616. },
  617. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  618. "type": "package",
  619. "compile": {
  620. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "runtime": {
  625. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  626. "related": ".xml"
  627. }
  628. }
  629. },
  630. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  631. "type": "package",
  632. "dependencies": {
  633. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  634. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  635. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  636. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  637. },
  638. "compile": {
  639. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "runtime": {
  644. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  645. "related": ".xml"
  646. }
  647. }
  648. },
  649. "Microsoft.Extensions.Http/5.0.0": {
  650. "type": "package",
  651. "dependencies": {
  652. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  653. "Microsoft.Extensions.Logging": "5.0.0",
  654. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  655. "Microsoft.Extensions.Options": "5.0.0"
  656. },
  657. "compile": {
  658. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  659. "related": ".xml"
  660. }
  661. },
  662. "runtime": {
  663. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  664. "related": ".xml"
  665. }
  666. }
  667. },
  668. "Microsoft.Extensions.Logging/5.0.0": {
  669. "type": "package",
  670. "dependencies": {
  671. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  672. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  673. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  674. "Microsoft.Extensions.Options": "5.0.0"
  675. },
  676. "compile": {
  677. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  678. "related": ".xml"
  679. }
  680. },
  681. "runtime": {
  682. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  683. "related": ".xml"
  684. }
  685. }
  686. },
  687. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  688. "type": "package",
  689. "compile": {
  690. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  691. "related": ".xml"
  692. }
  693. },
  694. "runtime": {
  695. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  696. "related": ".xml"
  697. }
  698. }
  699. },
  700. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.Extensions.Logging": "3.1.30",
  704. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  705. },
  706. "compile": {
  707. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  708. "related": ".xml"
  709. }
  710. },
  711. "runtime": {
  712. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  713. "related": ".xml"
  714. }
  715. }
  716. },
  717. "Microsoft.Extensions.Logging.Console/3.1.30": {
  718. "type": "package",
  719. "dependencies": {
  720. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  721. "Microsoft.Extensions.Logging": "3.1.30",
  722. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  723. },
  724. "compile": {
  725. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  726. "related": ".xml"
  727. }
  728. },
  729. "runtime": {
  730. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  731. "related": ".xml"
  732. }
  733. }
  734. },
  735. "Microsoft.Extensions.Options/5.0.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  739. "Microsoft.Extensions.Primitives": "5.0.0"
  740. },
  741. "compile": {
  742. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  743. "related": ".xml"
  744. }
  745. },
  746. "runtime": {
  747. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  748. "related": ".xml"
  749. }
  750. }
  751. },
  752. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  753. "type": "package",
  754. "dependencies": {
  755. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  756. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  757. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  758. "Microsoft.Extensions.Options": "3.1.30"
  759. },
  760. "compile": {
  761. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  762. "related": ".xml"
  763. }
  764. },
  765. "runtime": {
  766. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  767. "related": ".xml"
  768. }
  769. }
  770. },
  771. "Microsoft.Extensions.Primitives/5.0.0": {
  772. "type": "package",
  773. "compile": {
  774. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  775. "related": ".xml"
  776. }
  777. },
  778. "runtime": {
  779. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  780. "related": ".xml"
  781. }
  782. }
  783. },
  784. "Microsoft.NETCore.Platforms/5.0.0": {
  785. "type": "package",
  786. "compile": {
  787. "lib/netstandard1.0/_._": {}
  788. },
  789. "runtime": {
  790. "lib/netstandard1.0/_._": {}
  791. }
  792. },
  793. "Microsoft.NETCore.Targets/1.1.0": {
  794. "type": "package",
  795. "compile": {
  796. "lib/netstandard1.0/_._": {}
  797. },
  798. "runtime": {
  799. "lib/netstandard1.0/_._": {}
  800. }
  801. },
  802. "Microsoft.Win32.Primitives/4.3.0": {
  803. "type": "package",
  804. "dependencies": {
  805. "Microsoft.NETCore.Platforms": "1.1.0",
  806. "Microsoft.NETCore.Targets": "1.1.0",
  807. "System.Runtime": "4.3.0"
  808. },
  809. "compile": {
  810. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  811. "related": ".xml"
  812. }
  813. }
  814. },
  815. "Microsoft.Win32.SystemEvents/5.0.0": {
  816. "type": "package",
  817. "dependencies": {
  818. "Microsoft.NETCore.Platforms": "5.0.0"
  819. },
  820. "compile": {
  821. "ref/netstandard2.0/_._": {
  822. "related": ".xml"
  823. }
  824. },
  825. "runtime": {
  826. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  827. "related": ".xml"
  828. }
  829. },
  830. "runtimeTargets": {
  831. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  832. "assetType": "runtime",
  833. "rid": "win"
  834. }
  835. }
  836. },
  837. "MySql.Data/8.0.23": {
  838. "type": "package",
  839. "dependencies": {
  840. "BouncyCastle.NetCore": "1.8.5",
  841. "Google.Protobuf": "3.11.4",
  842. "K4os.Compression.LZ4": "1.1.11",
  843. "K4os.Compression.LZ4.Streams": "1.1.11",
  844. "K4os.Hash.xxHash": "1.0.6",
  845. "SSH.NET": "2020.0.0-beta1",
  846. "System.Buffers": "4.5.1",
  847. "System.Configuration.ConfigurationManager": "4.4.1",
  848. "System.Security.Permissions": "4.7.0",
  849. "System.Text.Encoding.CodePages": "4.4.0"
  850. },
  851. "compile": {
  852. "lib/net5.0/MySql.Data.dll": {
  853. "related": ".xml"
  854. },
  855. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  856. "lib/net5.0/Zstandard.Net.dll": {}
  857. },
  858. "runtime": {
  859. "lib/net5.0/MySql.Data.dll": {
  860. "related": ".xml"
  861. },
  862. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  863. "lib/net5.0/Zstandard.Net.dll": {}
  864. }
  865. },
  866. "MySqlConnector/1.1.0": {
  867. "type": "package",
  868. "compile": {
  869. "lib/net5.0/MySqlConnector.dll": {
  870. "related": ".xml"
  871. }
  872. },
  873. "runtime": {
  874. "lib/net5.0/MySqlConnector.dll": {
  875. "related": ".xml"
  876. }
  877. }
  878. },
  879. "NETStandard.Library/1.6.1": {
  880. "type": "package",
  881. "dependencies": {
  882. "Microsoft.NETCore.Platforms": "1.1.0",
  883. "Microsoft.Win32.Primitives": "4.3.0",
  884. "System.AppContext": "4.3.0",
  885. "System.Collections": "4.3.0",
  886. "System.Collections.Concurrent": "4.3.0",
  887. "System.Console": "4.3.0",
  888. "System.Diagnostics.Debug": "4.3.0",
  889. "System.Diagnostics.Tools": "4.3.0",
  890. "System.Diagnostics.Tracing": "4.3.0",
  891. "System.Globalization": "4.3.0",
  892. "System.Globalization.Calendars": "4.3.0",
  893. "System.IO": "4.3.0",
  894. "System.IO.Compression": "4.3.0",
  895. "System.IO.Compression.ZipFile": "4.3.0",
  896. "System.IO.FileSystem": "4.3.0",
  897. "System.IO.FileSystem.Primitives": "4.3.0",
  898. "System.Linq": "4.3.0",
  899. "System.Linq.Expressions": "4.3.0",
  900. "System.Net.Http": "4.3.0",
  901. "System.Net.Primitives": "4.3.0",
  902. "System.Net.Sockets": "4.3.0",
  903. "System.ObjectModel": "4.3.0",
  904. "System.Reflection": "4.3.0",
  905. "System.Reflection.Extensions": "4.3.0",
  906. "System.Reflection.Primitives": "4.3.0",
  907. "System.Resources.ResourceManager": "4.3.0",
  908. "System.Runtime": "4.3.0",
  909. "System.Runtime.Extensions": "4.3.0",
  910. "System.Runtime.Handles": "4.3.0",
  911. "System.Runtime.InteropServices": "4.3.0",
  912. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  913. "System.Runtime.Numerics": "4.3.0",
  914. "System.Security.Cryptography.Algorithms": "4.3.0",
  915. "System.Security.Cryptography.Encoding": "4.3.0",
  916. "System.Security.Cryptography.Primitives": "4.3.0",
  917. "System.Security.Cryptography.X509Certificates": "4.3.0",
  918. "System.Text.Encoding": "4.3.0",
  919. "System.Text.Encoding.Extensions": "4.3.0",
  920. "System.Text.RegularExpressions": "4.3.0",
  921. "System.Threading": "4.3.0",
  922. "System.Threading.Tasks": "4.3.0",
  923. "System.Threading.Timer": "4.3.0",
  924. "System.Xml.ReaderWriter": "4.3.0",
  925. "System.Xml.XDocument": "4.3.0"
  926. }
  927. },
  928. "Newtonsoft.Json/13.0.1": {
  929. "type": "package",
  930. "compile": {
  931. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  932. "related": ".xml"
  933. }
  934. },
  935. "runtime": {
  936. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  937. "related": ".xml"
  938. }
  939. }
  940. },
  941. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  945. "MySqlConnector": "1.1.0"
  946. },
  947. "compile": {
  948. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  949. "related": ".xml"
  950. }
  951. },
  952. "runtime": {
  953. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  954. "related": ".xml"
  955. }
  956. }
  957. },
  958. "QRCoder/1.4.3": {
  959. "type": "package",
  960. "dependencies": {
  961. "System.Drawing.Common": "5.0.3"
  962. },
  963. "compile": {
  964. "lib/net5.0/QRCoder.dll": {}
  965. },
  966. "runtime": {
  967. "lib/net5.0/QRCoder.dll": {}
  968. }
  969. },
  970. "Quartz/3.3.3": {
  971. "type": "package",
  972. "dependencies": {
  973. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  974. "System.Configuration.ConfigurationManager": "4.7.0",
  975. "System.Diagnostics.DiagnosticSource": "4.7.1"
  976. },
  977. "compile": {
  978. "lib/netstandard2.0/Quartz.dll": {
  979. "related": ".xml"
  980. }
  981. },
  982. "runtime": {
  983. "lib/netstandard2.0/Quartz.dll": {
  984. "related": ".xml"
  985. }
  986. }
  987. },
  988. "RabbitMQ.Client/6.8.1": {
  989. "type": "package",
  990. "dependencies": {
  991. "System.Memory": "4.5.5",
  992. "System.Threading.Channels": "7.0.0"
  993. },
  994. "compile": {
  995. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  996. "related": ".xml"
  997. }
  998. },
  999. "runtime": {
  1000. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1001. "related": ".xml"
  1002. }
  1003. }
  1004. },
  1005. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1006. "type": "package",
  1007. "runtimeTargets": {
  1008. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1009. "assetType": "native",
  1010. "rid": "debian.8-x64"
  1011. }
  1012. }
  1013. },
  1014. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1015. "type": "package",
  1016. "runtimeTargets": {
  1017. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1018. "assetType": "native",
  1019. "rid": "fedora.23-x64"
  1020. }
  1021. }
  1022. },
  1023. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1024. "type": "package",
  1025. "runtimeTargets": {
  1026. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1027. "assetType": "native",
  1028. "rid": "fedora.24-x64"
  1029. }
  1030. }
  1031. },
  1032. "runtime.native.System/4.3.0": {
  1033. "type": "package",
  1034. "dependencies": {
  1035. "Microsoft.NETCore.Platforms": "1.1.0",
  1036. "Microsoft.NETCore.Targets": "1.1.0"
  1037. },
  1038. "compile": {
  1039. "lib/netstandard1.0/_._": {}
  1040. },
  1041. "runtime": {
  1042. "lib/netstandard1.0/_._": {}
  1043. }
  1044. },
  1045. "runtime.native.System.IO.Compression/4.3.0": {
  1046. "type": "package",
  1047. "dependencies": {
  1048. "Microsoft.NETCore.Platforms": "1.1.0",
  1049. "Microsoft.NETCore.Targets": "1.1.0"
  1050. },
  1051. "compile": {
  1052. "lib/netstandard1.0/_._": {}
  1053. },
  1054. "runtime": {
  1055. "lib/netstandard1.0/_._": {}
  1056. }
  1057. },
  1058. "runtime.native.System.Net.Http/4.3.0": {
  1059. "type": "package",
  1060. "dependencies": {
  1061. "Microsoft.NETCore.Platforms": "1.1.0",
  1062. "Microsoft.NETCore.Targets": "1.1.0"
  1063. },
  1064. "compile": {
  1065. "lib/netstandard1.0/_._": {}
  1066. },
  1067. "runtime": {
  1068. "lib/netstandard1.0/_._": {}
  1069. }
  1070. },
  1071. "runtime.native.System.Net.Security/4.3.0": {
  1072. "type": "package",
  1073. "dependencies": {
  1074. "Microsoft.NETCore.Platforms": "1.1.0",
  1075. "Microsoft.NETCore.Targets": "1.1.0"
  1076. },
  1077. "compile": {
  1078. "lib/netstandard1.0/_._": {}
  1079. },
  1080. "runtime": {
  1081. "lib/netstandard1.0/_._": {}
  1082. }
  1083. },
  1084. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1085. "type": "package",
  1086. "dependencies": {
  1087. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1088. },
  1089. "compile": {
  1090. "lib/netstandard1.0/_._": {}
  1091. },
  1092. "runtime": {
  1093. "lib/netstandard1.0/_._": {}
  1094. }
  1095. },
  1096. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1097. "type": "package",
  1098. "dependencies": {
  1099. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1100. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1101. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1102. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1103. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1104. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1105. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1106. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1107. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1108. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1109. },
  1110. "compile": {
  1111. "lib/netstandard1.0/_._": {}
  1112. },
  1113. "runtime": {
  1114. "lib/netstandard1.0/_._": {}
  1115. }
  1116. },
  1117. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1118. "type": "package",
  1119. "runtimeTargets": {
  1120. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1121. "assetType": "native",
  1122. "rid": "opensuse.13.2-x64"
  1123. }
  1124. }
  1125. },
  1126. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1127. "type": "package",
  1128. "runtimeTargets": {
  1129. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1130. "assetType": "native",
  1131. "rid": "opensuse.42.1-x64"
  1132. }
  1133. }
  1134. },
  1135. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1136. "type": "package",
  1137. "runtimeTargets": {
  1138. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1139. "assetType": "native",
  1140. "rid": "osx.10.10-x64"
  1141. }
  1142. }
  1143. },
  1144. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1145. "type": "package",
  1146. "runtimeTargets": {
  1147. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1148. "assetType": "native",
  1149. "rid": "osx.10.10-x64"
  1150. }
  1151. }
  1152. },
  1153. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1154. "type": "package",
  1155. "runtimeTargets": {
  1156. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1157. "assetType": "native",
  1158. "rid": "rhel.7-x64"
  1159. }
  1160. }
  1161. },
  1162. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1163. "type": "package",
  1164. "runtimeTargets": {
  1165. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1166. "assetType": "native",
  1167. "rid": "ubuntu.14.04-x64"
  1168. }
  1169. }
  1170. },
  1171. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1172. "type": "package",
  1173. "runtimeTargets": {
  1174. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1175. "assetType": "native",
  1176. "rid": "ubuntu.16.04-x64"
  1177. }
  1178. }
  1179. },
  1180. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1181. "type": "package",
  1182. "runtimeTargets": {
  1183. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1184. "assetType": "native",
  1185. "rid": "ubuntu.16.10-x64"
  1186. }
  1187. }
  1188. },
  1189. "SixLabors.ImageSharp/2.1.6": {
  1190. "type": "package",
  1191. "dependencies": {
  1192. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1193. "System.Text.Encoding.CodePages": "5.0.0"
  1194. },
  1195. "compile": {
  1196. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1197. "related": ".xml"
  1198. }
  1199. },
  1200. "runtime": {
  1201. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1202. "related": ".xml"
  1203. }
  1204. }
  1205. },
  1206. "SSH.NET/2020.0.0-beta1": {
  1207. "type": "package",
  1208. "dependencies": {
  1209. "SshNet.Security.Cryptography": "[1.3.0]"
  1210. },
  1211. "compile": {
  1212. "lib/netstandard2.0/Renci.SshNet.dll": {
  1213. "related": ".xml"
  1214. }
  1215. },
  1216. "runtime": {
  1217. "lib/netstandard2.0/Renci.SshNet.dll": {
  1218. "related": ".xml"
  1219. }
  1220. }
  1221. },
  1222. "SshNet.Security.Cryptography/1.3.0": {
  1223. "type": "package",
  1224. "compile": {
  1225. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1226. "related": ".xml"
  1227. }
  1228. },
  1229. "runtime": {
  1230. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1231. "related": ".xml"
  1232. }
  1233. }
  1234. },
  1235. "StackExchange.Redis/1.2.4": {
  1236. "type": "package",
  1237. "dependencies": {
  1238. "NETStandard.Library": "1.6.1",
  1239. "System.Collections": "4.3.0",
  1240. "System.Collections.Concurrent": "4.3.0",
  1241. "System.Collections.NonGeneric": "4.3.0",
  1242. "System.Diagnostics.Tools": "4.3.0",
  1243. "System.IO.Compression": "4.3.0",
  1244. "System.IO.FileSystem": "4.3.0",
  1245. "System.Linq": "4.3.0",
  1246. "System.Net.NameResolution": "4.3.0",
  1247. "System.Net.Security": "4.3.0",
  1248. "System.Net.Sockets": "4.3.0",
  1249. "System.Reflection.Emit": "4.3.0",
  1250. "System.Reflection.Emit.Lightweight": "4.3.0",
  1251. "System.Reflection.TypeExtensions": "4.3.0",
  1252. "System.Runtime.Extensions": "4.3.0",
  1253. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1254. "System.Security.Cryptography.Algorithms": "4.3.0",
  1255. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1256. "System.Text.RegularExpressions": "4.3.0",
  1257. "System.Threading": "4.3.0",
  1258. "System.Threading.Thread": "4.3.0",
  1259. "System.Threading.ThreadPool": "4.3.0",
  1260. "System.Threading.Timer": "4.3.0"
  1261. },
  1262. "compile": {
  1263. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1264. "related": ".xml"
  1265. }
  1266. },
  1267. "runtime": {
  1268. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1269. "related": ".xml"
  1270. }
  1271. }
  1272. },
  1273. "System.AppContext/4.3.0": {
  1274. "type": "package",
  1275. "dependencies": {
  1276. "System.Runtime": "4.3.0"
  1277. },
  1278. "compile": {
  1279. "ref/netstandard1.6/System.AppContext.dll": {
  1280. "related": ".xml"
  1281. }
  1282. },
  1283. "runtime": {
  1284. "lib/netstandard1.6/System.AppContext.dll": {}
  1285. }
  1286. },
  1287. "System.Buffers/4.5.1": {
  1288. "type": "package",
  1289. "compile": {
  1290. "ref/netcoreapp2.0/_._": {}
  1291. },
  1292. "runtime": {
  1293. "lib/netcoreapp2.0/_._": {}
  1294. }
  1295. },
  1296. "System.Collections/4.3.0": {
  1297. "type": "package",
  1298. "dependencies": {
  1299. "Microsoft.NETCore.Platforms": "1.1.0",
  1300. "Microsoft.NETCore.Targets": "1.1.0",
  1301. "System.Runtime": "4.3.0"
  1302. },
  1303. "compile": {
  1304. "ref/netstandard1.3/System.Collections.dll": {
  1305. "related": ".xml"
  1306. }
  1307. }
  1308. },
  1309. "System.Collections.Concurrent/4.3.0": {
  1310. "type": "package",
  1311. "dependencies": {
  1312. "System.Collections": "4.3.0",
  1313. "System.Diagnostics.Debug": "4.3.0",
  1314. "System.Diagnostics.Tracing": "4.3.0",
  1315. "System.Globalization": "4.3.0",
  1316. "System.Reflection": "4.3.0",
  1317. "System.Resources.ResourceManager": "4.3.0",
  1318. "System.Runtime": "4.3.0",
  1319. "System.Runtime.Extensions": "4.3.0",
  1320. "System.Threading": "4.3.0",
  1321. "System.Threading.Tasks": "4.3.0"
  1322. },
  1323. "compile": {
  1324. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1325. "related": ".xml"
  1326. }
  1327. },
  1328. "runtime": {
  1329. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1330. }
  1331. },
  1332. "System.Collections.Immutable/5.0.0": {
  1333. "type": "package",
  1334. "compile": {
  1335. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1336. "related": ".xml"
  1337. }
  1338. },
  1339. "runtime": {
  1340. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1341. "related": ".xml"
  1342. }
  1343. }
  1344. },
  1345. "System.Collections.NonGeneric/4.3.0": {
  1346. "type": "package",
  1347. "dependencies": {
  1348. "System.Diagnostics.Debug": "4.3.0",
  1349. "System.Globalization": "4.3.0",
  1350. "System.Resources.ResourceManager": "4.3.0",
  1351. "System.Runtime": "4.3.0",
  1352. "System.Runtime.Extensions": "4.3.0",
  1353. "System.Threading": "4.3.0"
  1354. },
  1355. "compile": {
  1356. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1357. "related": ".xml"
  1358. }
  1359. },
  1360. "runtime": {
  1361. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1362. }
  1363. },
  1364. "System.Collections.Specialized/4.3.0": {
  1365. "type": "package",
  1366. "dependencies": {
  1367. "System.Collections.NonGeneric": "4.3.0",
  1368. "System.Globalization": "4.3.0",
  1369. "System.Globalization.Extensions": "4.3.0",
  1370. "System.Resources.ResourceManager": "4.3.0",
  1371. "System.Runtime": "4.3.0",
  1372. "System.Runtime.Extensions": "4.3.0",
  1373. "System.Threading": "4.3.0"
  1374. },
  1375. "compile": {
  1376. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1377. "related": ".xml"
  1378. }
  1379. },
  1380. "runtime": {
  1381. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1382. }
  1383. },
  1384. "System.ComponentModel/4.3.0": {
  1385. "type": "package",
  1386. "dependencies": {
  1387. "System.Runtime": "4.3.0"
  1388. },
  1389. "compile": {
  1390. "ref/netstandard1.0/System.ComponentModel.dll": {
  1391. "related": ".xml"
  1392. }
  1393. },
  1394. "runtime": {
  1395. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1396. }
  1397. },
  1398. "System.ComponentModel.Annotations/5.0.0": {
  1399. "type": "package",
  1400. "compile": {
  1401. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1402. "related": ".xml"
  1403. }
  1404. },
  1405. "runtime": {
  1406. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1407. "related": ".xml"
  1408. }
  1409. }
  1410. },
  1411. "System.ComponentModel.Primitives/4.3.0": {
  1412. "type": "package",
  1413. "dependencies": {
  1414. "System.ComponentModel": "4.3.0",
  1415. "System.Resources.ResourceManager": "4.3.0",
  1416. "System.Runtime": "4.3.0"
  1417. },
  1418. "compile": {
  1419. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1420. "related": ".xml"
  1421. }
  1422. },
  1423. "runtime": {
  1424. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1425. }
  1426. },
  1427. "System.ComponentModel.TypeConverter/4.3.0": {
  1428. "type": "package",
  1429. "dependencies": {
  1430. "System.Collections": "4.3.0",
  1431. "System.Collections.NonGeneric": "4.3.0",
  1432. "System.Collections.Specialized": "4.3.0",
  1433. "System.ComponentModel": "4.3.0",
  1434. "System.ComponentModel.Primitives": "4.3.0",
  1435. "System.Globalization": "4.3.0",
  1436. "System.Linq": "4.3.0",
  1437. "System.Reflection": "4.3.0",
  1438. "System.Reflection.Extensions": "4.3.0",
  1439. "System.Reflection.Primitives": "4.3.0",
  1440. "System.Reflection.TypeExtensions": "4.3.0",
  1441. "System.Resources.ResourceManager": "4.3.0",
  1442. "System.Runtime": "4.3.0",
  1443. "System.Runtime.Extensions": "4.3.0",
  1444. "System.Threading": "4.3.0"
  1445. },
  1446. "compile": {
  1447. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1448. "related": ".xml"
  1449. }
  1450. },
  1451. "runtime": {
  1452. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1453. }
  1454. },
  1455. "System.Configuration.ConfigurationManager/4.7.0": {
  1456. "type": "package",
  1457. "dependencies": {
  1458. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1459. "System.Security.Permissions": "4.7.0"
  1460. },
  1461. "compile": {
  1462. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1463. "related": ".xml"
  1464. }
  1465. },
  1466. "runtime": {
  1467. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1468. "related": ".xml"
  1469. }
  1470. }
  1471. },
  1472. "System.Console/4.3.0": {
  1473. "type": "package",
  1474. "dependencies": {
  1475. "Microsoft.NETCore.Platforms": "1.1.0",
  1476. "Microsoft.NETCore.Targets": "1.1.0",
  1477. "System.IO": "4.3.0",
  1478. "System.Runtime": "4.3.0",
  1479. "System.Text.Encoding": "4.3.0"
  1480. },
  1481. "compile": {
  1482. "ref/netstandard1.3/System.Console.dll": {
  1483. "related": ".xml"
  1484. }
  1485. }
  1486. },
  1487. "System.Diagnostics.Debug/4.3.0": {
  1488. "type": "package",
  1489. "dependencies": {
  1490. "Microsoft.NETCore.Platforms": "1.1.0",
  1491. "Microsoft.NETCore.Targets": "1.1.0",
  1492. "System.Runtime": "4.3.0"
  1493. },
  1494. "compile": {
  1495. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1496. "related": ".xml"
  1497. }
  1498. }
  1499. },
  1500. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1501. "type": "package",
  1502. "compile": {
  1503. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1504. "related": ".xml"
  1505. }
  1506. },
  1507. "runtime": {
  1508. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1509. "related": ".xml"
  1510. }
  1511. }
  1512. },
  1513. "System.Diagnostics.Tools/4.3.0": {
  1514. "type": "package",
  1515. "dependencies": {
  1516. "Microsoft.NETCore.Platforms": "1.1.0",
  1517. "Microsoft.NETCore.Targets": "1.1.0",
  1518. "System.Runtime": "4.3.0"
  1519. },
  1520. "compile": {
  1521. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1522. "related": ".xml"
  1523. }
  1524. }
  1525. },
  1526. "System.Diagnostics.TraceSource/4.3.0": {
  1527. "type": "package",
  1528. "dependencies": {
  1529. "Microsoft.NETCore.Platforms": "1.1.0",
  1530. "System.Collections": "4.3.0",
  1531. "System.Diagnostics.Debug": "4.3.0",
  1532. "System.Globalization": "4.3.0",
  1533. "System.Resources.ResourceManager": "4.3.0",
  1534. "System.Runtime": "4.3.0",
  1535. "System.Runtime.Extensions": "4.3.0",
  1536. "System.Threading": "4.3.0",
  1537. "runtime.native.System": "4.3.0"
  1538. },
  1539. "compile": {
  1540. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1541. "related": ".xml"
  1542. }
  1543. },
  1544. "runtimeTargets": {
  1545. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1546. "assetType": "runtime",
  1547. "rid": "unix"
  1548. },
  1549. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1550. "assetType": "runtime",
  1551. "rid": "win"
  1552. }
  1553. }
  1554. },
  1555. "System.Diagnostics.Tracing/4.3.0": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "Microsoft.NETCore.Platforms": "1.1.0",
  1559. "Microsoft.NETCore.Targets": "1.1.0",
  1560. "System.Runtime": "4.3.0"
  1561. },
  1562. "compile": {
  1563. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1564. "related": ".xml"
  1565. }
  1566. }
  1567. },
  1568. "System.Drawing.Common/5.0.3": {
  1569. "type": "package",
  1570. "dependencies": {
  1571. "Microsoft.Win32.SystemEvents": "5.0.0"
  1572. },
  1573. "compile": {
  1574. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1575. "related": ".xml"
  1576. }
  1577. },
  1578. "runtime": {
  1579. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1580. "related": ".xml"
  1581. }
  1582. },
  1583. "runtimeTargets": {
  1584. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1585. "assetType": "runtime",
  1586. "rid": "unix"
  1587. },
  1588. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1589. "assetType": "runtime",
  1590. "rid": "win"
  1591. }
  1592. }
  1593. },
  1594. "System.Dynamic.Runtime/4.3.0": {
  1595. "type": "package",
  1596. "dependencies": {
  1597. "System.Collections": "4.3.0",
  1598. "System.Diagnostics.Debug": "4.3.0",
  1599. "System.Linq": "4.3.0",
  1600. "System.Linq.Expressions": "4.3.0",
  1601. "System.ObjectModel": "4.3.0",
  1602. "System.Reflection": "4.3.0",
  1603. "System.Reflection.Emit": "4.3.0",
  1604. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1605. "System.Reflection.Primitives": "4.3.0",
  1606. "System.Reflection.TypeExtensions": "4.3.0",
  1607. "System.Resources.ResourceManager": "4.3.0",
  1608. "System.Runtime": "4.3.0",
  1609. "System.Runtime.Extensions": "4.3.0",
  1610. "System.Threading": "4.3.0"
  1611. },
  1612. "compile": {
  1613. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1614. "related": ".xml"
  1615. }
  1616. },
  1617. "runtime": {
  1618. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1619. }
  1620. },
  1621. "System.Globalization/4.3.0": {
  1622. "type": "package",
  1623. "dependencies": {
  1624. "Microsoft.NETCore.Platforms": "1.1.0",
  1625. "Microsoft.NETCore.Targets": "1.1.0",
  1626. "System.Runtime": "4.3.0"
  1627. },
  1628. "compile": {
  1629. "ref/netstandard1.3/System.Globalization.dll": {
  1630. "related": ".xml"
  1631. }
  1632. }
  1633. },
  1634. "System.Globalization.Calendars/4.3.0": {
  1635. "type": "package",
  1636. "dependencies": {
  1637. "Microsoft.NETCore.Platforms": "1.1.0",
  1638. "Microsoft.NETCore.Targets": "1.1.0",
  1639. "System.Globalization": "4.3.0",
  1640. "System.Runtime": "4.3.0"
  1641. },
  1642. "compile": {
  1643. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1644. "related": ".xml"
  1645. }
  1646. }
  1647. },
  1648. "System.Globalization.Extensions/4.3.0": {
  1649. "type": "package",
  1650. "dependencies": {
  1651. "Microsoft.NETCore.Platforms": "1.1.0",
  1652. "System.Globalization": "4.3.0",
  1653. "System.Resources.ResourceManager": "4.3.0",
  1654. "System.Runtime": "4.3.0",
  1655. "System.Runtime.Extensions": "4.3.0",
  1656. "System.Runtime.InteropServices": "4.3.0"
  1657. },
  1658. "compile": {
  1659. "ref/netstandard1.3/_._": {
  1660. "related": ".xml"
  1661. }
  1662. },
  1663. "runtimeTargets": {
  1664. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1665. "assetType": "runtime",
  1666. "rid": "unix"
  1667. },
  1668. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1669. "assetType": "runtime",
  1670. "rid": "win"
  1671. }
  1672. }
  1673. },
  1674. "System.IO/4.3.0": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "Microsoft.NETCore.Platforms": "1.1.0",
  1678. "Microsoft.NETCore.Targets": "1.1.0",
  1679. "System.Runtime": "4.3.0",
  1680. "System.Text.Encoding": "4.3.0",
  1681. "System.Threading.Tasks": "4.3.0"
  1682. },
  1683. "compile": {
  1684. "ref/netstandard1.5/System.IO.dll": {
  1685. "related": ".xml"
  1686. }
  1687. }
  1688. },
  1689. "System.IO.Compression/4.3.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "Microsoft.NETCore.Platforms": "1.1.0",
  1693. "System.Buffers": "4.3.0",
  1694. "System.Collections": "4.3.0",
  1695. "System.Diagnostics.Debug": "4.3.0",
  1696. "System.IO": "4.3.0",
  1697. "System.Resources.ResourceManager": "4.3.0",
  1698. "System.Runtime": "4.3.0",
  1699. "System.Runtime.Extensions": "4.3.0",
  1700. "System.Runtime.Handles": "4.3.0",
  1701. "System.Runtime.InteropServices": "4.3.0",
  1702. "System.Text.Encoding": "4.3.0",
  1703. "System.Threading": "4.3.0",
  1704. "System.Threading.Tasks": "4.3.0",
  1705. "runtime.native.System": "4.3.0",
  1706. "runtime.native.System.IO.Compression": "4.3.0"
  1707. },
  1708. "compile": {
  1709. "ref/netstandard1.3/System.IO.Compression.dll": {
  1710. "related": ".xml"
  1711. }
  1712. },
  1713. "runtimeTargets": {
  1714. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1715. "assetType": "runtime",
  1716. "rid": "unix"
  1717. },
  1718. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1719. "assetType": "runtime",
  1720. "rid": "win"
  1721. }
  1722. }
  1723. },
  1724. "System.IO.Compression.ZipFile/4.3.0": {
  1725. "type": "package",
  1726. "dependencies": {
  1727. "System.Buffers": "4.3.0",
  1728. "System.IO": "4.3.0",
  1729. "System.IO.Compression": "4.3.0",
  1730. "System.IO.FileSystem": "4.3.0",
  1731. "System.IO.FileSystem.Primitives": "4.3.0",
  1732. "System.Resources.ResourceManager": "4.3.0",
  1733. "System.Runtime": "4.3.0",
  1734. "System.Runtime.Extensions": "4.3.0",
  1735. "System.Text.Encoding": "4.3.0"
  1736. },
  1737. "compile": {
  1738. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1739. "related": ".xml"
  1740. }
  1741. },
  1742. "runtime": {
  1743. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1744. }
  1745. },
  1746. "System.IO.FileSystem/4.3.0": {
  1747. "type": "package",
  1748. "dependencies": {
  1749. "Microsoft.NETCore.Platforms": "1.1.0",
  1750. "Microsoft.NETCore.Targets": "1.1.0",
  1751. "System.IO": "4.3.0",
  1752. "System.IO.FileSystem.Primitives": "4.3.0",
  1753. "System.Runtime": "4.3.0",
  1754. "System.Runtime.Handles": "4.3.0",
  1755. "System.Text.Encoding": "4.3.0",
  1756. "System.Threading.Tasks": "4.3.0"
  1757. },
  1758. "compile": {
  1759. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1760. "related": ".xml"
  1761. }
  1762. }
  1763. },
  1764. "System.IO.FileSystem.Primitives/4.3.0": {
  1765. "type": "package",
  1766. "dependencies": {
  1767. "System.Runtime": "4.3.0"
  1768. },
  1769. "compile": {
  1770. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1771. "related": ".xml"
  1772. }
  1773. },
  1774. "runtime": {
  1775. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1776. }
  1777. },
  1778. "System.IO.Pipelines/5.0.0": {
  1779. "type": "package",
  1780. "compile": {
  1781. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1787. "related": ".xml"
  1788. }
  1789. }
  1790. },
  1791. "System.Linq/4.3.0": {
  1792. "type": "package",
  1793. "dependencies": {
  1794. "System.Collections": "4.3.0",
  1795. "System.Diagnostics.Debug": "4.3.0",
  1796. "System.Resources.ResourceManager": "4.3.0",
  1797. "System.Runtime": "4.3.0",
  1798. "System.Runtime.Extensions": "4.3.0"
  1799. },
  1800. "compile": {
  1801. "ref/netstandard1.6/System.Linq.dll": {
  1802. "related": ".xml"
  1803. }
  1804. },
  1805. "runtime": {
  1806. "lib/netstandard1.6/System.Linq.dll": {}
  1807. }
  1808. },
  1809. "System.Linq.Expressions/4.3.0": {
  1810. "type": "package",
  1811. "dependencies": {
  1812. "System.Collections": "4.3.0",
  1813. "System.Diagnostics.Debug": "4.3.0",
  1814. "System.Globalization": "4.3.0",
  1815. "System.IO": "4.3.0",
  1816. "System.Linq": "4.3.0",
  1817. "System.ObjectModel": "4.3.0",
  1818. "System.Reflection": "4.3.0",
  1819. "System.Reflection.Emit": "4.3.0",
  1820. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1821. "System.Reflection.Emit.Lightweight": "4.3.0",
  1822. "System.Reflection.Extensions": "4.3.0",
  1823. "System.Reflection.Primitives": "4.3.0",
  1824. "System.Reflection.TypeExtensions": "4.3.0",
  1825. "System.Resources.ResourceManager": "4.3.0",
  1826. "System.Runtime": "4.3.0",
  1827. "System.Runtime.Extensions": "4.3.0",
  1828. "System.Threading": "4.3.0"
  1829. },
  1830. "compile": {
  1831. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1832. "related": ".xml"
  1833. }
  1834. },
  1835. "runtime": {
  1836. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1837. }
  1838. },
  1839. "System.Memory/4.5.5": {
  1840. "type": "package",
  1841. "compile": {
  1842. "ref/netcoreapp2.1/_._": {}
  1843. },
  1844. "runtime": {
  1845. "lib/netcoreapp2.1/_._": {}
  1846. }
  1847. },
  1848. "System.Net.Http/4.3.0": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "Microsoft.NETCore.Platforms": "1.1.0",
  1852. "System.Collections": "4.3.0",
  1853. "System.Diagnostics.Debug": "4.3.0",
  1854. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1855. "System.Diagnostics.Tracing": "4.3.0",
  1856. "System.Globalization": "4.3.0",
  1857. "System.Globalization.Extensions": "4.3.0",
  1858. "System.IO": "4.3.0",
  1859. "System.IO.FileSystem": "4.3.0",
  1860. "System.Net.Primitives": "4.3.0",
  1861. "System.Resources.ResourceManager": "4.3.0",
  1862. "System.Runtime": "4.3.0",
  1863. "System.Runtime.Extensions": "4.3.0",
  1864. "System.Runtime.Handles": "4.3.0",
  1865. "System.Runtime.InteropServices": "4.3.0",
  1866. "System.Security.Cryptography.Algorithms": "4.3.0",
  1867. "System.Security.Cryptography.Encoding": "4.3.0",
  1868. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1869. "System.Security.Cryptography.Primitives": "4.3.0",
  1870. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1871. "System.Text.Encoding": "4.3.0",
  1872. "System.Threading": "4.3.0",
  1873. "System.Threading.Tasks": "4.3.0",
  1874. "runtime.native.System": "4.3.0",
  1875. "runtime.native.System.Net.Http": "4.3.0",
  1876. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1877. },
  1878. "compile": {
  1879. "ref/netstandard1.3/System.Net.Http.dll": {
  1880. "related": ".xml"
  1881. }
  1882. },
  1883. "runtimeTargets": {
  1884. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1885. "assetType": "runtime",
  1886. "rid": "unix"
  1887. },
  1888. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1889. "assetType": "runtime",
  1890. "rid": "win"
  1891. }
  1892. }
  1893. },
  1894. "System.Net.NameResolution/4.3.0": {
  1895. "type": "package",
  1896. "dependencies": {
  1897. "Microsoft.NETCore.Platforms": "1.1.0",
  1898. "System.Collections": "4.3.0",
  1899. "System.Diagnostics.Tracing": "4.3.0",
  1900. "System.Globalization": "4.3.0",
  1901. "System.Net.Primitives": "4.3.0",
  1902. "System.Resources.ResourceManager": "4.3.0",
  1903. "System.Runtime": "4.3.0",
  1904. "System.Runtime.Extensions": "4.3.0",
  1905. "System.Runtime.Handles": "4.3.0",
  1906. "System.Runtime.InteropServices": "4.3.0",
  1907. "System.Security.Principal.Windows": "4.3.0",
  1908. "System.Threading": "4.3.0",
  1909. "System.Threading.Tasks": "4.3.0",
  1910. "runtime.native.System": "4.3.0"
  1911. },
  1912. "compile": {
  1913. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  1914. "related": ".xml"
  1915. }
  1916. },
  1917. "runtimeTargets": {
  1918. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1919. "assetType": "runtime",
  1920. "rid": "unix"
  1921. },
  1922. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1923. "assetType": "runtime",
  1924. "rid": "win"
  1925. }
  1926. }
  1927. },
  1928. "System.Net.Primitives/4.3.0": {
  1929. "type": "package",
  1930. "dependencies": {
  1931. "Microsoft.NETCore.Platforms": "1.1.0",
  1932. "Microsoft.NETCore.Targets": "1.1.0",
  1933. "System.Runtime": "4.3.0",
  1934. "System.Runtime.Handles": "4.3.0"
  1935. },
  1936. "compile": {
  1937. "ref/netstandard1.3/System.Net.Primitives.dll": {
  1938. "related": ".xml"
  1939. }
  1940. }
  1941. },
  1942. "System.Net.Security/4.3.0": {
  1943. "type": "package",
  1944. "dependencies": {
  1945. "Microsoft.NETCore.Platforms": "1.1.0",
  1946. "Microsoft.Win32.Primitives": "4.3.0",
  1947. "System.Collections": "4.3.0",
  1948. "System.Collections.Concurrent": "4.3.0",
  1949. "System.Diagnostics.Tracing": "4.3.0",
  1950. "System.Globalization": "4.3.0",
  1951. "System.Globalization.Extensions": "4.3.0",
  1952. "System.IO": "4.3.0",
  1953. "System.Net.Primitives": "4.3.0",
  1954. "System.Resources.ResourceManager": "4.3.0",
  1955. "System.Runtime": "4.3.0",
  1956. "System.Runtime.Extensions": "4.3.0",
  1957. "System.Runtime.Handles": "4.3.0",
  1958. "System.Runtime.InteropServices": "4.3.0",
  1959. "System.Security.Claims": "4.3.0",
  1960. "System.Security.Cryptography.Algorithms": "4.3.0",
  1961. "System.Security.Cryptography.Encoding": "4.3.0",
  1962. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1963. "System.Security.Cryptography.Primitives": "4.3.0",
  1964. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1965. "System.Security.Principal": "4.3.0",
  1966. "System.Text.Encoding": "4.3.0",
  1967. "System.Threading": "4.3.0",
  1968. "System.Threading.Tasks": "4.3.0",
  1969. "System.Threading.ThreadPool": "4.3.0",
  1970. "runtime.native.System": "4.3.0",
  1971. "runtime.native.System.Net.Security": "4.3.0",
  1972. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1973. },
  1974. "compile": {
  1975. "ref/netstandard1.3/System.Net.Security.dll": {
  1976. "related": ".xml"
  1977. }
  1978. },
  1979. "runtimeTargets": {
  1980. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  1981. "assetType": "runtime",
  1982. "rid": "unix"
  1983. },
  1984. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  1985. "assetType": "runtime",
  1986. "rid": "win"
  1987. }
  1988. }
  1989. },
  1990. "System.Net.Sockets/4.3.0": {
  1991. "type": "package",
  1992. "dependencies": {
  1993. "Microsoft.NETCore.Platforms": "1.1.0",
  1994. "Microsoft.NETCore.Targets": "1.1.0",
  1995. "System.IO": "4.3.0",
  1996. "System.Net.Primitives": "4.3.0",
  1997. "System.Runtime": "4.3.0",
  1998. "System.Threading.Tasks": "4.3.0"
  1999. },
  2000. "compile": {
  2001. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2002. "related": ".xml"
  2003. }
  2004. }
  2005. },
  2006. "System.ObjectModel/4.3.0": {
  2007. "type": "package",
  2008. "dependencies": {
  2009. "System.Collections": "4.3.0",
  2010. "System.Diagnostics.Debug": "4.3.0",
  2011. "System.Resources.ResourceManager": "4.3.0",
  2012. "System.Runtime": "4.3.0",
  2013. "System.Threading": "4.3.0"
  2014. },
  2015. "compile": {
  2016. "ref/netstandard1.3/System.ObjectModel.dll": {
  2017. "related": ".xml"
  2018. }
  2019. },
  2020. "runtime": {
  2021. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2022. }
  2023. },
  2024. "System.Reflection/4.3.0": {
  2025. "type": "package",
  2026. "dependencies": {
  2027. "Microsoft.NETCore.Platforms": "1.1.0",
  2028. "Microsoft.NETCore.Targets": "1.1.0",
  2029. "System.IO": "4.3.0",
  2030. "System.Reflection.Primitives": "4.3.0",
  2031. "System.Runtime": "4.3.0"
  2032. },
  2033. "compile": {
  2034. "ref/netstandard1.5/System.Reflection.dll": {
  2035. "related": ".xml"
  2036. }
  2037. }
  2038. },
  2039. "System.Reflection.Emit/4.7.0": {
  2040. "type": "package",
  2041. "compile": {
  2042. "ref/netcoreapp2.0/_._": {}
  2043. },
  2044. "runtime": {
  2045. "lib/netcoreapp2.0/_._": {}
  2046. }
  2047. },
  2048. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2049. "type": "package",
  2050. "dependencies": {
  2051. "System.Reflection": "4.3.0",
  2052. "System.Reflection.Primitives": "4.3.0",
  2053. "System.Runtime": "4.3.0"
  2054. },
  2055. "compile": {
  2056. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2057. "related": ".xml"
  2058. }
  2059. },
  2060. "runtime": {
  2061. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2062. }
  2063. },
  2064. "System.Reflection.Emit.Lightweight/4.3.0": {
  2065. "type": "package",
  2066. "dependencies": {
  2067. "System.Reflection": "4.3.0",
  2068. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2069. "System.Reflection.Primitives": "4.3.0",
  2070. "System.Runtime": "4.3.0"
  2071. },
  2072. "compile": {
  2073. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2074. "related": ".xml"
  2075. }
  2076. },
  2077. "runtime": {
  2078. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2079. }
  2080. },
  2081. "System.Reflection.Extensions/4.3.0": {
  2082. "type": "package",
  2083. "dependencies": {
  2084. "Microsoft.NETCore.Platforms": "1.1.0",
  2085. "Microsoft.NETCore.Targets": "1.1.0",
  2086. "System.Reflection": "4.3.0",
  2087. "System.Runtime": "4.3.0"
  2088. },
  2089. "compile": {
  2090. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2091. "related": ".xml"
  2092. }
  2093. }
  2094. },
  2095. "System.Reflection.Primitives/4.3.0": {
  2096. "type": "package",
  2097. "dependencies": {
  2098. "Microsoft.NETCore.Platforms": "1.1.0",
  2099. "Microsoft.NETCore.Targets": "1.1.0",
  2100. "System.Runtime": "4.3.0"
  2101. },
  2102. "compile": {
  2103. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2104. "related": ".xml"
  2105. }
  2106. }
  2107. },
  2108. "System.Reflection.TypeExtensions/4.3.0": {
  2109. "type": "package",
  2110. "dependencies": {
  2111. "System.Reflection": "4.3.0",
  2112. "System.Runtime": "4.3.0"
  2113. },
  2114. "compile": {
  2115. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2116. "related": ".xml"
  2117. }
  2118. },
  2119. "runtime": {
  2120. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2121. }
  2122. },
  2123. "System.Resources.ResourceManager/4.3.0": {
  2124. "type": "package",
  2125. "dependencies": {
  2126. "Microsoft.NETCore.Platforms": "1.1.0",
  2127. "Microsoft.NETCore.Targets": "1.1.0",
  2128. "System.Globalization": "4.3.0",
  2129. "System.Reflection": "4.3.0",
  2130. "System.Runtime": "4.3.0"
  2131. },
  2132. "compile": {
  2133. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2134. "related": ".xml"
  2135. }
  2136. }
  2137. },
  2138. "System.Runtime/4.3.0": {
  2139. "type": "package",
  2140. "dependencies": {
  2141. "Microsoft.NETCore.Platforms": "1.1.0",
  2142. "Microsoft.NETCore.Targets": "1.1.0"
  2143. },
  2144. "compile": {
  2145. "ref/netstandard1.5/System.Runtime.dll": {
  2146. "related": ".xml"
  2147. }
  2148. }
  2149. },
  2150. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2151. "type": "package",
  2152. "compile": {
  2153. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2154. "related": ".xml"
  2155. }
  2156. },
  2157. "runtime": {
  2158. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2159. "related": ".xml"
  2160. }
  2161. }
  2162. },
  2163. "System.Runtime.Extensions/4.3.0": {
  2164. "type": "package",
  2165. "dependencies": {
  2166. "Microsoft.NETCore.Platforms": "1.1.0",
  2167. "Microsoft.NETCore.Targets": "1.1.0",
  2168. "System.Runtime": "4.3.0"
  2169. },
  2170. "compile": {
  2171. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2172. "related": ".xml"
  2173. }
  2174. }
  2175. },
  2176. "System.Runtime.Handles/4.3.0": {
  2177. "type": "package",
  2178. "dependencies": {
  2179. "Microsoft.NETCore.Platforms": "1.1.0",
  2180. "Microsoft.NETCore.Targets": "1.1.0",
  2181. "System.Runtime": "4.3.0"
  2182. },
  2183. "compile": {
  2184. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2185. "related": ".xml"
  2186. }
  2187. }
  2188. },
  2189. "System.Runtime.InteropServices/4.3.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "Microsoft.NETCore.Platforms": "1.1.0",
  2193. "Microsoft.NETCore.Targets": "1.1.0",
  2194. "System.Reflection": "4.3.0",
  2195. "System.Reflection.Primitives": "4.3.0",
  2196. "System.Runtime": "4.3.0",
  2197. "System.Runtime.Handles": "4.3.0"
  2198. },
  2199. "compile": {
  2200. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2201. }
  2202. },
  2203. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2204. "type": "package",
  2205. "dependencies": {
  2206. "System.Reflection": "4.3.0",
  2207. "System.Reflection.Extensions": "4.3.0",
  2208. "System.Resources.ResourceManager": "4.3.0",
  2209. "System.Runtime": "4.3.0",
  2210. "System.Runtime.InteropServices": "4.3.0",
  2211. "System.Threading": "4.3.0",
  2212. "runtime.native.System": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2216. },
  2217. "runtime": {
  2218. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2219. },
  2220. "runtimeTargets": {
  2221. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "unix"
  2224. },
  2225. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2226. "assetType": "runtime",
  2227. "rid": "win"
  2228. }
  2229. }
  2230. },
  2231. "System.Runtime.Numerics/4.3.0": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "System.Globalization": "4.3.0",
  2235. "System.Resources.ResourceManager": "4.3.0",
  2236. "System.Runtime": "4.3.0",
  2237. "System.Runtime.Extensions": "4.3.0"
  2238. },
  2239. "compile": {
  2240. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2241. "related": ".xml"
  2242. }
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2246. }
  2247. },
  2248. "System.Security.AccessControl/4.7.0": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "Microsoft.NETCore.Platforms": "3.1.0",
  2252. "System.Security.Principal.Windows": "4.7.0"
  2253. },
  2254. "compile": {
  2255. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2256. "related": ".xml"
  2257. }
  2258. },
  2259. "runtime": {
  2260. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2261. "related": ".xml"
  2262. }
  2263. },
  2264. "runtimeTargets": {
  2265. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2266. "assetType": "runtime",
  2267. "rid": "win"
  2268. }
  2269. }
  2270. },
  2271. "System.Security.Claims/4.3.0": {
  2272. "type": "package",
  2273. "dependencies": {
  2274. "System.Collections": "4.3.0",
  2275. "System.Globalization": "4.3.0",
  2276. "System.IO": "4.3.0",
  2277. "System.Resources.ResourceManager": "4.3.0",
  2278. "System.Runtime": "4.3.0",
  2279. "System.Runtime.Extensions": "4.3.0",
  2280. "System.Security.Principal": "4.3.0"
  2281. },
  2282. "compile": {
  2283. "ref/netstandard1.3/_._": {
  2284. "related": ".xml"
  2285. }
  2286. },
  2287. "runtime": {
  2288. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2289. }
  2290. },
  2291. "System.Security.Cryptography.Algorithms/4.3.0": {
  2292. "type": "package",
  2293. "dependencies": {
  2294. "Microsoft.NETCore.Platforms": "1.1.0",
  2295. "System.Collections": "4.3.0",
  2296. "System.IO": "4.3.0",
  2297. "System.Resources.ResourceManager": "4.3.0",
  2298. "System.Runtime": "4.3.0",
  2299. "System.Runtime.Extensions": "4.3.0",
  2300. "System.Runtime.Handles": "4.3.0",
  2301. "System.Runtime.InteropServices": "4.3.0",
  2302. "System.Runtime.Numerics": "4.3.0",
  2303. "System.Security.Cryptography.Encoding": "4.3.0",
  2304. "System.Security.Cryptography.Primitives": "4.3.0",
  2305. "System.Text.Encoding": "4.3.0",
  2306. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2307. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2308. },
  2309. "compile": {
  2310. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2311. },
  2312. "runtimeTargets": {
  2313. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2314. "assetType": "runtime",
  2315. "rid": "osx"
  2316. },
  2317. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2318. "assetType": "runtime",
  2319. "rid": "unix"
  2320. },
  2321. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2322. "assetType": "runtime",
  2323. "rid": "win"
  2324. }
  2325. }
  2326. },
  2327. "System.Security.Cryptography.Cng/4.3.0": {
  2328. "type": "package",
  2329. "dependencies": {
  2330. "Microsoft.NETCore.Platforms": "1.1.0",
  2331. "System.IO": "4.3.0",
  2332. "System.Resources.ResourceManager": "4.3.0",
  2333. "System.Runtime": "4.3.0",
  2334. "System.Runtime.Extensions": "4.3.0",
  2335. "System.Runtime.Handles": "4.3.0",
  2336. "System.Runtime.InteropServices": "4.3.0",
  2337. "System.Security.Cryptography.Algorithms": "4.3.0",
  2338. "System.Security.Cryptography.Encoding": "4.3.0",
  2339. "System.Security.Cryptography.Primitives": "4.3.0",
  2340. "System.Text.Encoding": "4.3.0"
  2341. },
  2342. "compile": {
  2343. "ref/netstandard1.6/_._": {}
  2344. },
  2345. "runtimeTargets": {
  2346. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2347. "assetType": "runtime",
  2348. "rid": "unix"
  2349. },
  2350. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "win"
  2353. }
  2354. }
  2355. },
  2356. "System.Security.Cryptography.Csp/4.3.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "Microsoft.NETCore.Platforms": "1.1.0",
  2360. "System.IO": "4.3.0",
  2361. "System.Reflection": "4.3.0",
  2362. "System.Resources.ResourceManager": "4.3.0",
  2363. "System.Runtime": "4.3.0",
  2364. "System.Runtime.Extensions": "4.3.0",
  2365. "System.Runtime.Handles": "4.3.0",
  2366. "System.Runtime.InteropServices": "4.3.0",
  2367. "System.Security.Cryptography.Algorithms": "4.3.0",
  2368. "System.Security.Cryptography.Encoding": "4.3.0",
  2369. "System.Security.Cryptography.Primitives": "4.3.0",
  2370. "System.Text.Encoding": "4.3.0",
  2371. "System.Threading": "4.3.0"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/_._": {}
  2375. },
  2376. "runtimeTargets": {
  2377. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2378. "assetType": "runtime",
  2379. "rid": "unix"
  2380. },
  2381. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2382. "assetType": "runtime",
  2383. "rid": "win"
  2384. }
  2385. }
  2386. },
  2387. "System.Security.Cryptography.Encoding/4.3.0": {
  2388. "type": "package",
  2389. "dependencies": {
  2390. "Microsoft.NETCore.Platforms": "1.1.0",
  2391. "System.Collections": "4.3.0",
  2392. "System.Collections.Concurrent": "4.3.0",
  2393. "System.Linq": "4.3.0",
  2394. "System.Resources.ResourceManager": "4.3.0",
  2395. "System.Runtime": "4.3.0",
  2396. "System.Runtime.Extensions": "4.3.0",
  2397. "System.Runtime.Handles": "4.3.0",
  2398. "System.Runtime.InteropServices": "4.3.0",
  2399. "System.Security.Cryptography.Primitives": "4.3.0",
  2400. "System.Text.Encoding": "4.3.0",
  2401. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2402. },
  2403. "compile": {
  2404. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2405. "related": ".xml"
  2406. }
  2407. },
  2408. "runtimeTargets": {
  2409. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2410. "assetType": "runtime",
  2411. "rid": "unix"
  2412. },
  2413. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2414. "assetType": "runtime",
  2415. "rid": "win"
  2416. }
  2417. }
  2418. },
  2419. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2420. "type": "package",
  2421. "dependencies": {
  2422. "System.Collections": "4.3.0",
  2423. "System.IO": "4.3.0",
  2424. "System.Resources.ResourceManager": "4.3.0",
  2425. "System.Runtime": "4.3.0",
  2426. "System.Runtime.Extensions": "4.3.0",
  2427. "System.Runtime.Handles": "4.3.0",
  2428. "System.Runtime.InteropServices": "4.3.0",
  2429. "System.Runtime.Numerics": "4.3.0",
  2430. "System.Security.Cryptography.Algorithms": "4.3.0",
  2431. "System.Security.Cryptography.Encoding": "4.3.0",
  2432. "System.Security.Cryptography.Primitives": "4.3.0",
  2433. "System.Text.Encoding": "4.3.0",
  2434. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2435. },
  2436. "compile": {
  2437. "ref/netstandard1.6/_._": {}
  2438. },
  2439. "runtime": {
  2440. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2441. },
  2442. "runtimeTargets": {
  2443. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2444. "assetType": "runtime",
  2445. "rid": "unix"
  2446. }
  2447. }
  2448. },
  2449. "System.Security.Cryptography.Primitives/4.3.0": {
  2450. "type": "package",
  2451. "dependencies": {
  2452. "System.Diagnostics.Debug": "4.3.0",
  2453. "System.Globalization": "4.3.0",
  2454. "System.IO": "4.3.0",
  2455. "System.Resources.ResourceManager": "4.3.0",
  2456. "System.Runtime": "4.3.0",
  2457. "System.Threading": "4.3.0",
  2458. "System.Threading.Tasks": "4.3.0"
  2459. },
  2460. "compile": {
  2461. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2462. },
  2463. "runtime": {
  2464. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2465. }
  2466. },
  2467. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2468. "type": "package",
  2469. "compile": {
  2470. "ref/netstandard2.0/_._": {
  2471. "related": ".xml"
  2472. }
  2473. },
  2474. "runtime": {
  2475. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2476. "related": ".xml"
  2477. }
  2478. },
  2479. "runtimeTargets": {
  2480. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2481. "assetType": "runtime",
  2482. "rid": "win"
  2483. }
  2484. }
  2485. },
  2486. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2487. "type": "package",
  2488. "dependencies": {
  2489. "Microsoft.NETCore.Platforms": "1.1.0",
  2490. "System.Collections": "4.3.0",
  2491. "System.Diagnostics.Debug": "4.3.0",
  2492. "System.Globalization": "4.3.0",
  2493. "System.Globalization.Calendars": "4.3.0",
  2494. "System.IO": "4.3.0",
  2495. "System.IO.FileSystem": "4.3.0",
  2496. "System.IO.FileSystem.Primitives": "4.3.0",
  2497. "System.Resources.ResourceManager": "4.3.0",
  2498. "System.Runtime": "4.3.0",
  2499. "System.Runtime.Extensions": "4.3.0",
  2500. "System.Runtime.Handles": "4.3.0",
  2501. "System.Runtime.InteropServices": "4.3.0",
  2502. "System.Runtime.Numerics": "4.3.0",
  2503. "System.Security.Cryptography.Algorithms": "4.3.0",
  2504. "System.Security.Cryptography.Cng": "4.3.0",
  2505. "System.Security.Cryptography.Csp": "4.3.0",
  2506. "System.Security.Cryptography.Encoding": "4.3.0",
  2507. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2508. "System.Security.Cryptography.Primitives": "4.3.0",
  2509. "System.Text.Encoding": "4.3.0",
  2510. "System.Threading": "4.3.0",
  2511. "runtime.native.System": "4.3.0",
  2512. "runtime.native.System.Net.Http": "4.3.0",
  2513. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2514. },
  2515. "compile": {
  2516. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2517. "related": ".xml"
  2518. }
  2519. },
  2520. "runtimeTargets": {
  2521. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2522. "assetType": "runtime",
  2523. "rid": "unix"
  2524. },
  2525. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2526. "assetType": "runtime",
  2527. "rid": "win"
  2528. }
  2529. }
  2530. },
  2531. "System.Security.Permissions/4.7.0": {
  2532. "type": "package",
  2533. "dependencies": {
  2534. "System.Security.AccessControl": "4.7.0",
  2535. "System.Windows.Extensions": "4.7.0"
  2536. },
  2537. "compile": {
  2538. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2539. "related": ".xml"
  2540. }
  2541. },
  2542. "runtime": {
  2543. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2544. "related": ".xml"
  2545. }
  2546. }
  2547. },
  2548. "System.Security.Principal/4.3.0": {
  2549. "type": "package",
  2550. "dependencies": {
  2551. "System.Runtime": "4.3.0"
  2552. },
  2553. "compile": {
  2554. "ref/netstandard1.0/System.Security.Principal.dll": {
  2555. "related": ".xml"
  2556. }
  2557. },
  2558. "runtime": {
  2559. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2560. }
  2561. },
  2562. "System.Security.Principal.Windows/4.7.0": {
  2563. "type": "package",
  2564. "compile": {
  2565. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2566. "related": ".xml"
  2567. }
  2568. },
  2569. "runtime": {
  2570. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2571. "related": ".xml"
  2572. }
  2573. },
  2574. "runtimeTargets": {
  2575. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2576. "assetType": "runtime",
  2577. "rid": "unix"
  2578. },
  2579. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2580. "assetType": "runtime",
  2581. "rid": "win"
  2582. }
  2583. }
  2584. },
  2585. "System.Text.Encoding/4.3.0": {
  2586. "type": "package",
  2587. "dependencies": {
  2588. "Microsoft.NETCore.Platforms": "1.1.0",
  2589. "Microsoft.NETCore.Targets": "1.1.0",
  2590. "System.Runtime": "4.3.0"
  2591. },
  2592. "compile": {
  2593. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2594. "related": ".xml"
  2595. }
  2596. }
  2597. },
  2598. "System.Text.Encoding.CodePages/5.0.0": {
  2599. "type": "package",
  2600. "dependencies": {
  2601. "Microsoft.NETCore.Platforms": "5.0.0"
  2602. },
  2603. "compile": {
  2604. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2605. "related": ".xml"
  2606. }
  2607. },
  2608. "runtime": {
  2609. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2610. "related": ".xml"
  2611. }
  2612. },
  2613. "runtimeTargets": {
  2614. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2615. "assetType": "runtime",
  2616. "rid": "win"
  2617. }
  2618. }
  2619. },
  2620. "System.Text.Encoding.Extensions/4.3.0": {
  2621. "type": "package",
  2622. "dependencies": {
  2623. "Microsoft.NETCore.Platforms": "1.1.0",
  2624. "Microsoft.NETCore.Targets": "1.1.0",
  2625. "System.Runtime": "4.3.0",
  2626. "System.Text.Encoding": "4.3.0"
  2627. },
  2628. "compile": {
  2629. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2630. "related": ".xml"
  2631. }
  2632. }
  2633. },
  2634. "System.Text.Encodings.Web/4.5.0": {
  2635. "type": "package",
  2636. "compile": {
  2637. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2638. "related": ".xml"
  2639. }
  2640. },
  2641. "runtime": {
  2642. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2643. "related": ".xml"
  2644. }
  2645. }
  2646. },
  2647. "System.Text.RegularExpressions/4.3.0": {
  2648. "type": "package",
  2649. "dependencies": {
  2650. "System.Runtime": "4.3.0"
  2651. },
  2652. "compile": {
  2653. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2654. },
  2655. "runtime": {
  2656. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2657. }
  2658. },
  2659. "System.Threading/4.3.0": {
  2660. "type": "package",
  2661. "dependencies": {
  2662. "System.Runtime": "4.3.0",
  2663. "System.Threading.Tasks": "4.3.0"
  2664. },
  2665. "compile": {
  2666. "ref/netstandard1.3/System.Threading.dll": {
  2667. "related": ".xml"
  2668. }
  2669. },
  2670. "runtime": {
  2671. "lib/netstandard1.3/System.Threading.dll": {}
  2672. }
  2673. },
  2674. "System.Threading.Channels/7.0.0": {
  2675. "type": "package",
  2676. "compile": {
  2677. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2678. "related": ".xml"
  2679. }
  2680. },
  2681. "runtime": {
  2682. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2683. "related": ".xml"
  2684. }
  2685. },
  2686. "build": {
  2687. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2688. }
  2689. },
  2690. "System.Threading.Tasks/4.3.0": {
  2691. "type": "package",
  2692. "dependencies": {
  2693. "Microsoft.NETCore.Platforms": "1.1.0",
  2694. "Microsoft.NETCore.Targets": "1.1.0",
  2695. "System.Runtime": "4.3.0"
  2696. },
  2697. "compile": {
  2698. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2699. "related": ".xml"
  2700. }
  2701. }
  2702. },
  2703. "System.Threading.Tasks.Extensions/4.3.0": {
  2704. "type": "package",
  2705. "dependencies": {
  2706. "System.Collections": "4.3.0",
  2707. "System.Runtime": "4.3.0",
  2708. "System.Threading.Tasks": "4.3.0"
  2709. },
  2710. "compile": {
  2711. "lib/netstandard1.0/_._": {
  2712. "related": ".xml"
  2713. }
  2714. },
  2715. "runtime": {
  2716. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2717. "related": ".xml"
  2718. }
  2719. }
  2720. },
  2721. "System.Threading.Thread/4.3.0": {
  2722. "type": "package",
  2723. "dependencies": {
  2724. "System.Runtime": "4.3.0"
  2725. },
  2726. "compile": {
  2727. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2728. "related": ".xml"
  2729. }
  2730. },
  2731. "runtime": {
  2732. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2733. }
  2734. },
  2735. "System.Threading.ThreadPool/4.3.0": {
  2736. "type": "package",
  2737. "dependencies": {
  2738. "System.Runtime": "4.3.0",
  2739. "System.Runtime.Handles": "4.3.0"
  2740. },
  2741. "compile": {
  2742. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2743. "related": ".xml"
  2744. }
  2745. },
  2746. "runtime": {
  2747. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2748. }
  2749. },
  2750. "System.Threading.Timer/4.3.0": {
  2751. "type": "package",
  2752. "dependencies": {
  2753. "Microsoft.NETCore.Platforms": "1.1.0",
  2754. "Microsoft.NETCore.Targets": "1.1.0",
  2755. "System.Runtime": "4.3.0"
  2756. },
  2757. "compile": {
  2758. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2759. "related": ".xml"
  2760. }
  2761. }
  2762. },
  2763. "System.Windows.Extensions/4.7.0": {
  2764. "type": "package",
  2765. "dependencies": {
  2766. "System.Drawing.Common": "4.7.0"
  2767. },
  2768. "compile": {
  2769. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2770. "related": ".xml"
  2771. }
  2772. },
  2773. "runtime": {
  2774. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2775. "related": ".xml"
  2776. }
  2777. },
  2778. "runtimeTargets": {
  2779. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2780. "assetType": "runtime",
  2781. "rid": "win"
  2782. }
  2783. }
  2784. },
  2785. "System.Xml.ReaderWriter/4.3.0": {
  2786. "type": "package",
  2787. "dependencies": {
  2788. "System.Collections": "4.3.0",
  2789. "System.Diagnostics.Debug": "4.3.0",
  2790. "System.Globalization": "4.3.0",
  2791. "System.IO": "4.3.0",
  2792. "System.IO.FileSystem": "4.3.0",
  2793. "System.IO.FileSystem.Primitives": "4.3.0",
  2794. "System.Resources.ResourceManager": "4.3.0",
  2795. "System.Runtime": "4.3.0",
  2796. "System.Runtime.Extensions": "4.3.0",
  2797. "System.Runtime.InteropServices": "4.3.0",
  2798. "System.Text.Encoding": "4.3.0",
  2799. "System.Text.Encoding.Extensions": "4.3.0",
  2800. "System.Text.RegularExpressions": "4.3.0",
  2801. "System.Threading.Tasks": "4.3.0",
  2802. "System.Threading.Tasks.Extensions": "4.3.0"
  2803. },
  2804. "compile": {
  2805. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2806. "related": ".xml"
  2807. }
  2808. },
  2809. "runtime": {
  2810. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2811. }
  2812. },
  2813. "System.Xml.XDocument/4.3.0": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "System.Collections": "4.3.0",
  2817. "System.Diagnostics.Debug": "4.3.0",
  2818. "System.Diagnostics.Tools": "4.3.0",
  2819. "System.Globalization": "4.3.0",
  2820. "System.IO": "4.3.0",
  2821. "System.Reflection": "4.3.0",
  2822. "System.Resources.ResourceManager": "4.3.0",
  2823. "System.Runtime": "4.3.0",
  2824. "System.Runtime.Extensions": "4.3.0",
  2825. "System.Text.Encoding": "4.3.0",
  2826. "System.Threading": "4.3.0",
  2827. "System.Xml.ReaderWriter": "4.3.0"
  2828. },
  2829. "compile": {
  2830. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2831. "related": ".xml"
  2832. }
  2833. },
  2834. "runtime": {
  2835. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2836. }
  2837. },
  2838. "System.Xml.XmlDocument/4.3.0": {
  2839. "type": "package",
  2840. "dependencies": {
  2841. "System.Collections": "4.3.0",
  2842. "System.Diagnostics.Debug": "4.3.0",
  2843. "System.Globalization": "4.3.0",
  2844. "System.IO": "4.3.0",
  2845. "System.Resources.ResourceManager": "4.3.0",
  2846. "System.Runtime": "4.3.0",
  2847. "System.Runtime.Extensions": "4.3.0",
  2848. "System.Text.Encoding": "4.3.0",
  2849. "System.Threading": "4.3.0",
  2850. "System.Xml.ReaderWriter": "4.3.0"
  2851. },
  2852. "compile": {
  2853. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2854. "related": ".xml"
  2855. }
  2856. },
  2857. "runtime": {
  2858. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2859. }
  2860. },
  2861. "ZXing.Net/0.16.9": {
  2862. "type": "package",
  2863. "compile": {
  2864. "lib/net5.0/zxing.dll": {
  2865. "related": ".XML"
  2866. }
  2867. },
  2868. "runtime": {
  2869. "lib/net5.0/zxing.dll": {
  2870. "related": ".XML"
  2871. }
  2872. }
  2873. },
  2874. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  2875. "type": "package",
  2876. "dependencies": {
  2877. "SixLabors.ImageSharp": "2.1.3",
  2878. "ZXing.Net": "0.16.9"
  2879. },
  2880. "compile": {
  2881. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2882. "related": ".pdb;.xml"
  2883. }
  2884. },
  2885. "runtime": {
  2886. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2887. "related": ".pdb;.xml"
  2888. }
  2889. }
  2890. },
  2891. "Ropin.Core.Common/1.0.0": {
  2892. "type": "project",
  2893. "framework": ".NETCoreApp,Version=v5.0",
  2894. "dependencies": {
  2895. "Coravel": "4.2.1",
  2896. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  2897. "Newtonsoft.Json": "13.0.1",
  2898. "QRCoder": "1.4.3",
  2899. "SixLabors.ImageSharp": "2.1.6",
  2900. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  2901. },
  2902. "compile": {
  2903. "bin/placeholder/Ropin.Core.Common.dll": {}
  2904. },
  2905. "runtime": {
  2906. "bin/placeholder/Ropin.Core.Common.dll": {}
  2907. }
  2908. },
  2909. "Ropin.Inspection.Common/1.0.0": {
  2910. "type": "project",
  2911. "framework": ".NETCoreApp,Version=v5.0",
  2912. "dependencies": {
  2913. "FluentEmail.Smtp": "3.0.2",
  2914. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  2915. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  2916. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  2917. "JavaScriptEngineSwitcher.Core": "3.21.0",
  2918. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2919. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  2920. "Microsoft.Extensions.Configuration": "5.0.0",
  2921. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2922. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  2923. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  2924. "Microsoft.Extensions.Http": "5.0.0",
  2925. "Newtonsoft.Json": "13.0.1",
  2926. "RabbitMQ.Client": "6.8.1",
  2927. "log4net": "2.0.17"
  2928. },
  2929. "compile": {
  2930. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  2931. },
  2932. "runtime": {
  2933. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  2934. }
  2935. },
  2936. "Ropin.Inspection.Model/1.0.0": {
  2937. "type": "project",
  2938. "framework": ".NETCoreApp,Version=v5.0",
  2939. "dependencies": {
  2940. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  2941. "Microsoft.EntityFrameworkCore": "5.0.0",
  2942. "MySql.Data": "8.0.23",
  2943. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  2944. "Ropin.Inspection.Common": "1.0.0"
  2945. },
  2946. "compile": {
  2947. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  2948. },
  2949. "runtime": {
  2950. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  2951. }
  2952. },
  2953. "Ropin.Inspection.Repository/1.0.0": {
  2954. "type": "project",
  2955. "framework": ".NETCoreApp,Version=v5.0",
  2956. "dependencies": {
  2957. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  2958. "Microsoft.EntityFrameworkCore": "5.0.0",
  2959. "Ropin.Inspection.Model": "1.0.0"
  2960. },
  2961. "compile": {
  2962. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  2963. },
  2964. "runtime": {
  2965. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  2966. }
  2967. },
  2968. "Ropin.Inspection.Service/1.0.0": {
  2969. "type": "project",
  2970. "framework": ".NETCoreApp,Version=v5.0",
  2971. "dependencies": {
  2972. "AutoMapper": "10.1.1",
  2973. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2974. "Newtonsoft.Json": "13.0.1",
  2975. "Ropin.Core.Common": "1.0.0",
  2976. "Ropin.Inspection.Common": "1.0.0",
  2977. "Ropin.Inspection.Model": "1.0.0",
  2978. "Ropin.Inspection.Repository": "1.0.0",
  2979. "log4net": "2.0.17"
  2980. },
  2981. "compile": {
  2982. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  2983. },
  2984. "runtime": {
  2985. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  2986. }
  2987. },
  2988. "Ropin.Inspection.Tasks/1.0.0": {
  2989. "type": "project",
  2990. "framework": ".NETCoreApp,Version=v5.0",
  2991. "dependencies": {
  2992. "Quartz": "3.3.3",
  2993. "Ropin.Inspection.Common": "1.0.0",
  2994. "Ropin.Inspection.Model": "1.0.0",
  2995. "Ropin.Inspection.Service": "1.0.0"
  2996. },
  2997. "compile": {
  2998. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  2999. },
  3000. "runtime": {
  3001. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3002. }
  3003. }
  3004. }
  3005. },
  3006. "libraries": {
  3007. "AdvancedStringBuilder/0.1.0": {
  3008. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3009. "type": "package",
  3010. "path": "advancedstringbuilder/0.1.0",
  3011. "files": [
  3012. ".nupkg.metadata",
  3013. ".signature.p7s",
  3014. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3015. "advancedstringbuilder.nuspec",
  3016. "lib/net40-client/AdvancedStringBuilder.dll",
  3017. "lib/net40-client/AdvancedStringBuilder.xml",
  3018. "lib/net45/AdvancedStringBuilder.dll",
  3019. "lib/net45/AdvancedStringBuilder.xml",
  3020. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3021. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3022. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3023. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3024. ]
  3025. },
  3026. "Autofac/6.2.0": {
  3027. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3028. "type": "package",
  3029. "path": "autofac/6.2.0",
  3030. "files": [
  3031. ".nupkg.metadata",
  3032. ".signature.p7s",
  3033. "autofac.6.2.0.nupkg.sha512",
  3034. "autofac.nuspec",
  3035. "icon.png",
  3036. "lib/net5.0/Autofac.dll",
  3037. "lib/net5.0/Autofac.pdb",
  3038. "lib/net5.0/Autofac.xml",
  3039. "lib/netstandard2.0/Autofac.dll",
  3040. "lib/netstandard2.0/Autofac.pdb",
  3041. "lib/netstandard2.0/Autofac.xml",
  3042. "lib/netstandard2.1/Autofac.dll",
  3043. "lib/netstandard2.1/Autofac.pdb",
  3044. "lib/netstandard2.1/Autofac.xml"
  3045. ]
  3046. },
  3047. "Autofac.Extras.DynamicProxy/6.0.0": {
  3048. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3049. "type": "package",
  3050. "path": "autofac.extras.dynamicproxy/6.0.0",
  3051. "files": [
  3052. ".nupkg.metadata",
  3053. ".signature.p7s",
  3054. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3055. "autofac.extras.dynamicproxy.nuspec",
  3056. "icon.png",
  3057. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3058. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3059. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3060. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3061. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3062. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3063. ]
  3064. },
  3065. "AutoMapper/10.1.1": {
  3066. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3067. "type": "package",
  3068. "path": "automapper/10.1.1",
  3069. "files": [
  3070. ".nupkg.metadata",
  3071. ".signature.p7s",
  3072. "automapper.10.1.1.nupkg.sha512",
  3073. "automapper.nuspec",
  3074. "icon.png",
  3075. "lib/net461/AutoMapper.dll",
  3076. "lib/net461/AutoMapper.xml",
  3077. "lib/netstandard2.0/AutoMapper.dll",
  3078. "lib/netstandard2.0/AutoMapper.xml"
  3079. ]
  3080. },
  3081. "BouncyCastle.NetCore/1.8.5": {
  3082. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3083. "type": "package",
  3084. "path": "bouncycastle.netcore/1.8.5",
  3085. "files": [
  3086. ".nupkg.metadata",
  3087. ".signature.p7s",
  3088. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3089. "bouncycastle.netcore.nuspec",
  3090. "lib/Mono/BouncyCastle.Crypto.dll",
  3091. "lib/Mono/BouncyCastle.Crypto.xml",
  3092. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3093. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3094. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3095. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3096. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3097. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3098. "lib/net20/BouncyCastle.Crypto.dll",
  3099. "lib/net20/BouncyCastle.Crypto.xml",
  3100. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3101. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3102. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3103. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3104. ]
  3105. },
  3106. "Castle.Core/4.4.0": {
  3107. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3108. "type": "package",
  3109. "path": "castle.core/4.4.0",
  3110. "files": [
  3111. ".nupkg.metadata",
  3112. ".signature.p7s",
  3113. "ASL - Apache Software Foundation License.txt",
  3114. "CHANGELOG.md",
  3115. "LICENSE",
  3116. "castle.core.4.4.0.nupkg.sha512",
  3117. "castle.core.nuspec",
  3118. "lib/net35/Castle.Core.dll",
  3119. "lib/net35/Castle.Core.xml",
  3120. "lib/net40/Castle.Core.dll",
  3121. "lib/net40/Castle.Core.xml",
  3122. "lib/net45/Castle.Core.dll",
  3123. "lib/net45/Castle.Core.xml",
  3124. "lib/netstandard1.3/Castle.Core.dll",
  3125. "lib/netstandard1.3/Castle.Core.xml",
  3126. "lib/netstandard1.5/Castle.Core.dll",
  3127. "lib/netstandard1.5/Castle.Core.xml",
  3128. "readme.txt"
  3129. ]
  3130. },
  3131. "Coravel/4.2.1": {
  3132. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3133. "type": "package",
  3134. "path": "coravel/4.2.1",
  3135. "files": [
  3136. ".nupkg.metadata",
  3137. ".signature.p7s",
  3138. "coravel.4.2.1.nupkg.sha512",
  3139. "coravel.nuspec",
  3140. "lib/netstandard2.0/Coravel.dll",
  3141. "lib/netstandard2.0/Coravel.xml",
  3142. "logo.png",
  3143. "readme.md"
  3144. ]
  3145. },
  3146. "FluentEmail.Core/3.0.2": {
  3147. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3148. "type": "package",
  3149. "path": "fluentemail.core/3.0.2",
  3150. "files": [
  3151. ".nupkg.metadata",
  3152. ".signature.p7s",
  3153. "fluentemail.core.3.0.2.nupkg.sha512",
  3154. "fluentemail.core.nuspec",
  3155. "fluentemail_logo_64x64.png",
  3156. "lib/netstandard2.0/FluentEmail.Core.dll"
  3157. ]
  3158. },
  3159. "FluentEmail.Smtp/3.0.2": {
  3160. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3161. "type": "package",
  3162. "path": "fluentemail.smtp/3.0.2",
  3163. "files": [
  3164. ".nupkg.metadata",
  3165. ".signature.p7s",
  3166. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3167. "fluentemail.smtp.nuspec",
  3168. "fluentemail_logo_64x64.png",
  3169. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3170. ]
  3171. },
  3172. "Google.Protobuf/3.11.4": {
  3173. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3174. "type": "package",
  3175. "path": "google.protobuf/3.11.4",
  3176. "files": [
  3177. ".nupkg.metadata",
  3178. ".signature.p7s",
  3179. "google.protobuf.3.11.4.nupkg.sha512",
  3180. "google.protobuf.nuspec",
  3181. "lib/net45/Google.Protobuf.dll",
  3182. "lib/net45/Google.Protobuf.pdb",
  3183. "lib/net45/Google.Protobuf.xml",
  3184. "lib/netstandard1.0/Google.Protobuf.dll",
  3185. "lib/netstandard1.0/Google.Protobuf.pdb",
  3186. "lib/netstandard1.0/Google.Protobuf.xml",
  3187. "lib/netstandard2.0/Google.Protobuf.dll",
  3188. "lib/netstandard2.0/Google.Protobuf.pdb",
  3189. "lib/netstandard2.0/Google.Protobuf.xml"
  3190. ]
  3191. },
  3192. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3193. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3194. "type": "package",
  3195. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3196. "files": [
  3197. ".nupkg.metadata",
  3198. ".signature.p7s",
  3199. "LICENSE.txt",
  3200. "advanced-string-builder-license.txt",
  3201. "chakra-samples-license.txt",
  3202. "icon.png",
  3203. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3204. "javascriptengineswitcher.chakracore.nuspec",
  3205. "jsrt-dotnet-license.txt",
  3206. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3207. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3208. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3209. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3210. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3211. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3212. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3213. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3214. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3215. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3216. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3217. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3218. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3219. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3220. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3221. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3222. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3223. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3224. "polyfills-for-old-dot-net-license.txt",
  3225. "readme.txt"
  3226. ]
  3227. },
  3228. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3229. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3230. "type": "package",
  3231. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3232. "files": [
  3233. ".nupkg.metadata",
  3234. ".signature.p7s",
  3235. "LICENSE.txt",
  3236. "chakra-core-license.txt",
  3237. "icon.png",
  3238. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3239. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3240. "readme.txt",
  3241. "runtimes/linux-x64/native/libChakraCore.so"
  3242. ]
  3243. },
  3244. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3245. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3246. "type": "package",
  3247. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3248. "hasTools": true,
  3249. "files": [
  3250. ".nupkg.metadata",
  3251. ".signature.p7s",
  3252. "LICENSE.txt",
  3253. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3254. "chakra-core-license.txt",
  3255. "icon.png",
  3256. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3257. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3258. "readme.txt",
  3259. "runtimes/win-x64/native/ChakraCore.dll",
  3260. "tools/Install.ps1",
  3261. "tools/Uninstall.ps1"
  3262. ]
  3263. },
  3264. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3265. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3266. "type": "package",
  3267. "path": "javascriptengineswitcher.core/3.21.0",
  3268. "files": [
  3269. ".nupkg.metadata",
  3270. ".signature.p7s",
  3271. "LICENSE.txt",
  3272. "advanced-string-builder-license.txt",
  3273. "icon.png",
  3274. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3275. "javascriptengineswitcher.core.nuspec",
  3276. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3277. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3278. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3279. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3280. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3281. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3282. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3283. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3284. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3285. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3286. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3287. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3288. "readme.txt"
  3289. ]
  3290. },
  3291. "K4os.Compression.LZ4/1.1.11": {
  3292. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3293. "type": "package",
  3294. "path": "k4os.compression.lz4/1.1.11",
  3295. "files": [
  3296. ".nupkg.metadata",
  3297. ".signature.p7s",
  3298. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3299. "k4os.compression.lz4.nuspec",
  3300. "lib/net45/K4os.Compression.LZ4.dll",
  3301. "lib/net45/K4os.Compression.LZ4.xml",
  3302. "lib/net46/K4os.Compression.LZ4.dll",
  3303. "lib/net46/K4os.Compression.LZ4.xml",
  3304. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3305. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3306. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3307. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3308. ]
  3309. },
  3310. "K4os.Compression.LZ4.Streams/1.1.11": {
  3311. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3312. "type": "package",
  3313. "path": "k4os.compression.lz4.streams/1.1.11",
  3314. "files": [
  3315. ".nupkg.metadata",
  3316. ".signature.p7s",
  3317. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3318. "k4os.compression.lz4.streams.nuspec",
  3319. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3320. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3321. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3322. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3323. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3324. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3325. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3326. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3327. ]
  3328. },
  3329. "K4os.Hash.xxHash/1.0.6": {
  3330. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3331. "type": "package",
  3332. "path": "k4os.hash.xxhash/1.0.6",
  3333. "files": [
  3334. ".nupkg.metadata",
  3335. ".signature.p7s",
  3336. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3337. "k4os.hash.xxhash.nuspec",
  3338. "lib/net45/K4os.Hash.xxHash.dll",
  3339. "lib/net45/K4os.Hash.xxHash.xml",
  3340. "lib/net46/K4os.Hash.xxHash.dll",
  3341. "lib/net46/K4os.Hash.xxHash.xml",
  3342. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3343. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3344. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3345. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3346. ]
  3347. },
  3348. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3349. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3350. "type": "package",
  3351. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3352. "files": [
  3353. ".nupkg.metadata",
  3354. ".signature.p7s",
  3355. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3356. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3357. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3358. "linqkit.microsoft.entityframeworkcore.nuspec"
  3359. ]
  3360. },
  3361. "log4net/2.0.17": {
  3362. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3363. "type": "package",
  3364. "path": "log4net/2.0.17",
  3365. "files": [
  3366. ".nupkg.metadata",
  3367. ".signature.p7s",
  3368. "lib/net20/log4net.dll",
  3369. "lib/net20/log4net.xml",
  3370. "lib/net35/log4net.dll",
  3371. "lib/net35/log4net.xml",
  3372. "lib/net40-client/log4net.dll",
  3373. "lib/net40-client/log4net.xml",
  3374. "lib/net40/log4net.dll",
  3375. "lib/net40/log4net.xml",
  3376. "lib/net45/log4net.dll",
  3377. "lib/net45/log4net.xml",
  3378. "lib/netstandard1.3/log4net.dll",
  3379. "lib/netstandard1.3/log4net.xml",
  3380. "lib/netstandard2.0/log4net.dll",
  3381. "lib/netstandard2.0/log4net.xml",
  3382. "log4net.2.0.17.nupkg.sha512",
  3383. "log4net.nuspec",
  3384. "package-icon.png"
  3385. ]
  3386. },
  3387. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3388. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3389. "type": "package",
  3390. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3391. "files": [
  3392. ".nupkg.metadata",
  3393. ".signature.p7s",
  3394. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3395. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3396. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3397. "microsoft.aspnetcore.http.abstractions.nuspec"
  3398. ]
  3399. },
  3400. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3401. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3402. "type": "package",
  3403. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3404. "files": [
  3405. ".nupkg.metadata",
  3406. ".signature.p7s",
  3407. "Icon.png",
  3408. "THIRD-PARTY-NOTICES.TXT",
  3409. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3410. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3411. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3412. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3413. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3414. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3415. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3416. "microsoft.aspnetcore.http.features.nuspec"
  3417. ]
  3418. },
  3419. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3420. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3421. "type": "package",
  3422. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3423. "files": [
  3424. ".nupkg.metadata",
  3425. ".signature.p7s",
  3426. "Icon.png",
  3427. "THIRD-PARTY-NOTICES.TXT",
  3428. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3429. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3430. "microsoft.aspnetcore.nodeservices.nuspec"
  3431. ]
  3432. },
  3433. "Microsoft.CSharp/4.7.0": {
  3434. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3435. "type": "package",
  3436. "path": "microsoft.csharp/4.7.0",
  3437. "files": [
  3438. ".nupkg.metadata",
  3439. ".signature.p7s",
  3440. "LICENSE.TXT",
  3441. "THIRD-PARTY-NOTICES.TXT",
  3442. "lib/MonoAndroid10/_._",
  3443. "lib/MonoTouch10/_._",
  3444. "lib/net45/_._",
  3445. "lib/netcore50/Microsoft.CSharp.dll",
  3446. "lib/netcoreapp2.0/_._",
  3447. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3448. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3449. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3450. "lib/portable-net45+win8+wp8+wpa81/_._",
  3451. "lib/uap10.0.16299/_._",
  3452. "lib/win8/_._",
  3453. "lib/wp80/_._",
  3454. "lib/wpa81/_._",
  3455. "lib/xamarinios10/_._",
  3456. "lib/xamarinmac20/_._",
  3457. "lib/xamarintvos10/_._",
  3458. "lib/xamarinwatchos10/_._",
  3459. "microsoft.csharp.4.7.0.nupkg.sha512",
  3460. "microsoft.csharp.nuspec",
  3461. "ref/MonoAndroid10/_._",
  3462. "ref/MonoTouch10/_._",
  3463. "ref/net45/_._",
  3464. "ref/netcore50/Microsoft.CSharp.dll",
  3465. "ref/netcore50/Microsoft.CSharp.xml",
  3466. "ref/netcore50/de/Microsoft.CSharp.xml",
  3467. "ref/netcore50/es/Microsoft.CSharp.xml",
  3468. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3469. "ref/netcore50/it/Microsoft.CSharp.xml",
  3470. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3471. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3472. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3473. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3474. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3475. "ref/netcoreapp2.0/_._",
  3476. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3477. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3478. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3479. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3480. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3481. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3482. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3483. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3484. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3485. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3486. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3487. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3488. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3489. "ref/portable-net45+win8+wp8+wpa81/_._",
  3490. "ref/uap10.0.16299/_._",
  3491. "ref/win8/_._",
  3492. "ref/wp80/_._",
  3493. "ref/wpa81/_._",
  3494. "ref/xamarinios10/_._",
  3495. "ref/xamarinmac20/_._",
  3496. "ref/xamarintvos10/_._",
  3497. "ref/xamarinwatchos10/_._",
  3498. "useSharedDesignerContext.txt",
  3499. "version.txt"
  3500. ]
  3501. },
  3502. "Microsoft.EntityFrameworkCore/5.0.0": {
  3503. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3504. "type": "package",
  3505. "path": "microsoft.entityframeworkcore/5.0.0",
  3506. "files": [
  3507. ".nupkg.metadata",
  3508. ".signature.p7s",
  3509. "Icon.png",
  3510. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3511. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3512. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3513. "microsoft.entityframeworkcore.nuspec"
  3514. ]
  3515. },
  3516. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3517. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3518. "type": "package",
  3519. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3520. "files": [
  3521. ".nupkg.metadata",
  3522. ".signature.p7s",
  3523. "Icon.png",
  3524. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3525. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3526. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3527. "microsoft.entityframeworkcore.abstractions.nuspec"
  3528. ]
  3529. },
  3530. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3531. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3532. "type": "package",
  3533. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3534. "files": [
  3535. ".nupkg.metadata",
  3536. ".signature.p7s",
  3537. "Icon.png",
  3538. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3539. "lib/netstandard2.0/_._",
  3540. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3541. "microsoft.entityframeworkcore.analyzers.nuspec"
  3542. ]
  3543. },
  3544. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3545. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3546. "type": "package",
  3547. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3548. "files": [
  3549. ".nupkg.metadata",
  3550. ".signature.p7s",
  3551. "Icon.png",
  3552. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3553. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3554. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3555. "microsoft.entityframeworkcore.relational.nuspec"
  3556. ]
  3557. },
  3558. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3559. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3560. "type": "package",
  3561. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3562. "files": [
  3563. ".nupkg.metadata",
  3564. ".signature.p7s",
  3565. "Icon.png",
  3566. "LICENSE.TXT",
  3567. "THIRD-PARTY-NOTICES.TXT",
  3568. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3569. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3570. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3571. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3572. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3573. "microsoft.extensions.caching.abstractions.nuspec",
  3574. "useSharedDesignerContext.txt",
  3575. "version.txt"
  3576. ]
  3577. },
  3578. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3579. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3580. "type": "package",
  3581. "path": "microsoft.extensions.caching.memory/5.0.0",
  3582. "files": [
  3583. ".nupkg.metadata",
  3584. ".signature.p7s",
  3585. "Icon.png",
  3586. "LICENSE.TXT",
  3587. "THIRD-PARTY-NOTICES.TXT",
  3588. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3589. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3590. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3591. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3592. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3593. "microsoft.extensions.caching.memory.nuspec",
  3594. "useSharedDesignerContext.txt",
  3595. "version.txt"
  3596. ]
  3597. },
  3598. "Microsoft.Extensions.Configuration/5.0.0": {
  3599. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3600. "type": "package",
  3601. "path": "microsoft.extensions.configuration/5.0.0",
  3602. "files": [
  3603. ".nupkg.metadata",
  3604. ".signature.p7s",
  3605. "Icon.png",
  3606. "LICENSE.TXT",
  3607. "THIRD-PARTY-NOTICES.TXT",
  3608. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3609. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3610. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3611. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3612. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3613. "microsoft.extensions.configuration.nuspec",
  3614. "useSharedDesignerContext.txt",
  3615. "version.txt"
  3616. ]
  3617. },
  3618. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3619. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3620. "type": "package",
  3621. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3622. "files": [
  3623. ".nupkg.metadata",
  3624. ".signature.p7s",
  3625. "Icon.png",
  3626. "LICENSE.TXT",
  3627. "THIRD-PARTY-NOTICES.TXT",
  3628. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3629. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3630. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3631. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3632. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3633. "microsoft.extensions.configuration.abstractions.nuspec",
  3634. "useSharedDesignerContext.txt",
  3635. "version.txt"
  3636. ]
  3637. },
  3638. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3639. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3640. "type": "package",
  3641. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3642. "files": [
  3643. ".nupkg.metadata",
  3644. ".signature.p7s",
  3645. "Icon.png",
  3646. "LICENSE.TXT",
  3647. "THIRD-PARTY-NOTICES.TXT",
  3648. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3649. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3650. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3651. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3652. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3653. "microsoft.extensions.configuration.binder.nuspec",
  3654. "useSharedDesignerContext.txt",
  3655. "version.txt"
  3656. ]
  3657. },
  3658. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3659. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3660. "type": "package",
  3661. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3662. "files": [
  3663. ".nupkg.metadata",
  3664. ".signature.p7s",
  3665. "Icon.png",
  3666. "LICENSE.TXT",
  3667. "THIRD-PARTY-NOTICES.TXT",
  3668. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3669. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3670. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3671. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3672. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3673. "microsoft.extensions.configuration.fileextensions.nuspec",
  3674. "useSharedDesignerContext.txt",
  3675. "version.txt"
  3676. ]
  3677. },
  3678. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3679. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3680. "type": "package",
  3681. "path": "microsoft.extensions.configuration.json/5.0.0",
  3682. "files": [
  3683. ".nupkg.metadata",
  3684. ".signature.p7s",
  3685. "Icon.png",
  3686. "LICENSE.TXT",
  3687. "THIRD-PARTY-NOTICES.TXT",
  3688. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3689. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3690. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3691. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3692. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3693. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3694. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3695. "microsoft.extensions.configuration.json.nuspec",
  3696. "useSharedDesignerContext.txt",
  3697. "version.txt"
  3698. ]
  3699. },
  3700. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3701. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3702. "type": "package",
  3703. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3704. "files": [
  3705. ".nupkg.metadata",
  3706. ".signature.p7s",
  3707. "Icon.png",
  3708. "LICENSE.TXT",
  3709. "THIRD-PARTY-NOTICES.TXT",
  3710. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3711. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3712. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3713. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3714. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3715. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3716. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3717. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3718. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3719. "microsoft.extensions.dependencyinjection.nuspec",
  3720. "useSharedDesignerContext.txt",
  3721. "version.txt"
  3722. ]
  3723. },
  3724. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3725. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3726. "type": "package",
  3727. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3728. "files": [
  3729. ".nupkg.metadata",
  3730. ".signature.p7s",
  3731. "Icon.png",
  3732. "LICENSE.TXT",
  3733. "THIRD-PARTY-NOTICES.TXT",
  3734. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3735. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3736. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3737. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3738. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3739. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3740. "useSharedDesignerContext.txt",
  3741. "version.txt"
  3742. ]
  3743. },
  3744. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3745. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3746. "type": "package",
  3747. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3748. "files": [
  3749. ".nupkg.metadata",
  3750. ".signature.p7s",
  3751. "Icon.png",
  3752. "LICENSE.TXT",
  3753. "THIRD-PARTY-NOTICES.TXT",
  3754. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3755. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3756. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3757. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3758. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3759. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3760. "useSharedDesignerContext.txt",
  3761. "version.txt"
  3762. ]
  3763. },
  3764. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3765. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3766. "type": "package",
  3767. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3768. "files": [
  3769. ".nupkg.metadata",
  3770. ".signature.p7s",
  3771. "Icon.png",
  3772. "LICENSE.TXT",
  3773. "THIRD-PARTY-NOTICES.TXT",
  3774. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3775. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3776. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3777. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3778. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3779. "microsoft.extensions.fileproviders.physical.nuspec",
  3780. "useSharedDesignerContext.txt",
  3781. "version.txt"
  3782. ]
  3783. },
  3784. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3785. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3786. "type": "package",
  3787. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3788. "files": [
  3789. ".nupkg.metadata",
  3790. ".signature.p7s",
  3791. "Icon.png",
  3792. "LICENSE.TXT",
  3793. "THIRD-PARTY-NOTICES.TXT",
  3794. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3795. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3796. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3797. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3798. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3799. "microsoft.extensions.filesystemglobbing.nuspec",
  3800. "useSharedDesignerContext.txt",
  3801. "version.txt"
  3802. ]
  3803. },
  3804. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  3805. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  3806. "type": "package",
  3807. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  3808. "files": [
  3809. ".nupkg.metadata",
  3810. ".signature.p7s",
  3811. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3812. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3813. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3814. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3815. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  3816. "microsoft.extensions.hosting.abstractions.nuspec",
  3817. "packageIcon.png"
  3818. ]
  3819. },
  3820. "Microsoft.Extensions.Http/5.0.0": {
  3821. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  3822. "type": "package",
  3823. "path": "microsoft.extensions.http/5.0.0",
  3824. "files": [
  3825. ".nupkg.metadata",
  3826. ".signature.p7s",
  3827. "Icon.png",
  3828. "LICENSE.TXT",
  3829. "THIRD-PARTY-NOTICES.TXT",
  3830. "lib/net461/Microsoft.Extensions.Http.dll",
  3831. "lib/net461/Microsoft.Extensions.Http.xml",
  3832. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  3833. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  3834. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  3835. "microsoft.extensions.http.nuspec",
  3836. "useSharedDesignerContext.txt",
  3837. "version.txt"
  3838. ]
  3839. },
  3840. "Microsoft.Extensions.Logging/5.0.0": {
  3841. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3842. "type": "package",
  3843. "path": "microsoft.extensions.logging/5.0.0",
  3844. "files": [
  3845. ".nupkg.metadata",
  3846. ".signature.p7s",
  3847. "Icon.png",
  3848. "LICENSE.TXT",
  3849. "THIRD-PARTY-NOTICES.TXT",
  3850. "lib/net461/Microsoft.Extensions.Logging.dll",
  3851. "lib/net461/Microsoft.Extensions.Logging.xml",
  3852. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3853. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3854. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3855. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3856. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3857. "microsoft.extensions.logging.nuspec",
  3858. "useSharedDesignerContext.txt",
  3859. "version.txt"
  3860. ]
  3861. },
  3862. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3863. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3864. "type": "package",
  3865. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  3866. "files": [
  3867. ".nupkg.metadata",
  3868. ".signature.p7s",
  3869. "Icon.png",
  3870. "LICENSE.TXT",
  3871. "THIRD-PARTY-NOTICES.TXT",
  3872. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3873. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3874. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3875. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3876. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  3877. "microsoft.extensions.logging.abstractions.nuspec",
  3878. "useSharedDesignerContext.txt",
  3879. "version.txt"
  3880. ]
  3881. },
  3882. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  3883. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  3884. "type": "package",
  3885. "path": "microsoft.extensions.logging.configuration/3.1.30",
  3886. "files": [
  3887. ".nupkg.metadata",
  3888. ".signature.p7s",
  3889. "Icon.png",
  3890. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  3891. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  3892. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3893. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3894. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  3895. "microsoft.extensions.logging.configuration.nuspec"
  3896. ]
  3897. },
  3898. "Microsoft.Extensions.Logging.Console/3.1.30": {
  3899. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  3900. "type": "package",
  3901. "path": "microsoft.extensions.logging.console/3.1.30",
  3902. "files": [
  3903. ".nupkg.metadata",
  3904. ".signature.p7s",
  3905. "Icon.png",
  3906. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  3907. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  3908. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3909. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3910. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  3911. "microsoft.extensions.logging.console.nuspec"
  3912. ]
  3913. },
  3914. "Microsoft.Extensions.Options/5.0.0": {
  3915. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  3916. "type": "package",
  3917. "path": "microsoft.extensions.options/5.0.0",
  3918. "files": [
  3919. ".nupkg.metadata",
  3920. ".signature.p7s",
  3921. "Icon.png",
  3922. "LICENSE.TXT",
  3923. "THIRD-PARTY-NOTICES.TXT",
  3924. "lib/net461/Microsoft.Extensions.Options.dll",
  3925. "lib/net461/Microsoft.Extensions.Options.xml",
  3926. "lib/net5.0/Microsoft.Extensions.Options.dll",
  3927. "lib/net5.0/Microsoft.Extensions.Options.xml",
  3928. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3929. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3930. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  3931. "microsoft.extensions.options.nuspec",
  3932. "useSharedDesignerContext.txt",
  3933. "version.txt"
  3934. ]
  3935. },
  3936. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  3937. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  3938. "type": "package",
  3939. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  3940. "files": [
  3941. ".nupkg.metadata",
  3942. ".signature.p7s",
  3943. "Icon.png",
  3944. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3945. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3946. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3947. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3948. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  3949. "microsoft.extensions.options.configurationextensions.nuspec"
  3950. ]
  3951. },
  3952. "Microsoft.Extensions.Primitives/5.0.0": {
  3953. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  3954. "type": "package",
  3955. "path": "microsoft.extensions.primitives/5.0.0",
  3956. "files": [
  3957. ".nupkg.metadata",
  3958. ".signature.p7s",
  3959. "Icon.png",
  3960. "LICENSE.TXT",
  3961. "THIRD-PARTY-NOTICES.TXT",
  3962. "lib/net461/Microsoft.Extensions.Primitives.dll",
  3963. "lib/net461/Microsoft.Extensions.Primitives.xml",
  3964. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  3965. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  3966. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3967. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3968. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  3969. "microsoft.extensions.primitives.nuspec",
  3970. "useSharedDesignerContext.txt",
  3971. "version.txt"
  3972. ]
  3973. },
  3974. "Microsoft.NETCore.Platforms/5.0.0": {
  3975. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3976. "type": "package",
  3977. "path": "microsoft.netcore.platforms/5.0.0",
  3978. "files": [
  3979. ".nupkg.metadata",
  3980. ".signature.p7s",
  3981. "Icon.png",
  3982. "LICENSE.TXT",
  3983. "THIRD-PARTY-NOTICES.TXT",
  3984. "lib/netstandard1.0/_._",
  3985. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  3986. "microsoft.netcore.platforms.nuspec",
  3987. "runtime.json",
  3988. "useSharedDesignerContext.txt",
  3989. "version.txt"
  3990. ]
  3991. },
  3992. "Microsoft.NETCore.Targets/1.1.0": {
  3993. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3994. "type": "package",
  3995. "path": "microsoft.netcore.targets/1.1.0",
  3996. "files": [
  3997. ".nupkg.metadata",
  3998. ".signature.p7s",
  3999. "ThirdPartyNotices.txt",
  4000. "dotnet_library_license.txt",
  4001. "lib/netstandard1.0/_._",
  4002. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4003. "microsoft.netcore.targets.nuspec",
  4004. "runtime.json"
  4005. ]
  4006. },
  4007. "Microsoft.Win32.Primitives/4.3.0": {
  4008. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4009. "type": "package",
  4010. "path": "microsoft.win32.primitives/4.3.0",
  4011. "files": [
  4012. ".nupkg.metadata",
  4013. ".signature.p7s",
  4014. "ThirdPartyNotices.txt",
  4015. "dotnet_library_license.txt",
  4016. "lib/MonoAndroid10/_._",
  4017. "lib/MonoTouch10/_._",
  4018. "lib/net46/Microsoft.Win32.Primitives.dll",
  4019. "lib/xamarinios10/_._",
  4020. "lib/xamarinmac20/_._",
  4021. "lib/xamarintvos10/_._",
  4022. "lib/xamarinwatchos10/_._",
  4023. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4024. "microsoft.win32.primitives.nuspec",
  4025. "ref/MonoAndroid10/_._",
  4026. "ref/MonoTouch10/_._",
  4027. "ref/net46/Microsoft.Win32.Primitives.dll",
  4028. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4029. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4030. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4031. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4032. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4033. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4034. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4035. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4036. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4037. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4038. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4039. "ref/xamarinios10/_._",
  4040. "ref/xamarinmac20/_._",
  4041. "ref/xamarintvos10/_._",
  4042. "ref/xamarinwatchos10/_._"
  4043. ]
  4044. },
  4045. "Microsoft.Win32.SystemEvents/5.0.0": {
  4046. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4047. "type": "package",
  4048. "path": "microsoft.win32.systemevents/5.0.0",
  4049. "files": [
  4050. ".nupkg.metadata",
  4051. ".signature.p7s",
  4052. "Icon.png",
  4053. "LICENSE.TXT",
  4054. "THIRD-PARTY-NOTICES.TXT",
  4055. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4056. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4057. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4058. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4059. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4060. "microsoft.win32.systemevents.nuspec",
  4061. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4062. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4063. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4064. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4065. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4066. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4067. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4068. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4069. "useSharedDesignerContext.txt",
  4070. "version.txt"
  4071. ]
  4072. },
  4073. "MySql.Data/8.0.23": {
  4074. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4075. "type": "package",
  4076. "path": "mysql.data/8.0.23",
  4077. "files": [
  4078. ".nupkg.metadata",
  4079. ".signature.p7s",
  4080. "lib/net452/MySql.Data.dll",
  4081. "lib/net452/MySql.Data.xml",
  4082. "lib/net452/Ubiety.Dns.Core.dll",
  4083. "lib/net452/Zstandard.Net.dll",
  4084. "lib/net48/MySql.Data.dll",
  4085. "lib/net48/MySql.Data.xml",
  4086. "lib/net48/Ubiety.Dns.Core.dll",
  4087. "lib/net48/Zstandard.Net.dll",
  4088. "lib/net5.0/MySql.Data.dll",
  4089. "lib/net5.0/MySql.Data.xml",
  4090. "lib/net5.0/Ubiety.Dns.Core.dll",
  4091. "lib/net5.0/Zstandard.Net.dll",
  4092. "lib/netstandard2.0/MySql.Data.dll",
  4093. "lib/netstandard2.0/MySql.Data.xml",
  4094. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4095. "lib/netstandard2.0/Zstandard.Net.dll",
  4096. "lib/netstandard2.1/MySql.Data.dll",
  4097. "lib/netstandard2.1/MySql.Data.xml",
  4098. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4099. "lib/netstandard2.1/Zstandard.Net.dll",
  4100. "mysql.data.8.0.23.nupkg.sha512",
  4101. "mysql.data.nuspec"
  4102. ]
  4103. },
  4104. "MySqlConnector/1.1.0": {
  4105. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4106. "type": "package",
  4107. "path": "mysqlconnector/1.1.0",
  4108. "files": [
  4109. ".nupkg.metadata",
  4110. ".signature.p7s",
  4111. "lib/net45/MySqlConnector.dll",
  4112. "lib/net45/MySqlConnector.xml",
  4113. "lib/net461/MySqlConnector.dll",
  4114. "lib/net461/MySqlConnector.xml",
  4115. "lib/net471/MySqlConnector.dll",
  4116. "lib/net471/MySqlConnector.xml",
  4117. "lib/net5.0/MySqlConnector.dll",
  4118. "lib/net5.0/MySqlConnector.xml",
  4119. "lib/netcoreapp2.1/MySqlConnector.dll",
  4120. "lib/netcoreapp2.1/MySqlConnector.xml",
  4121. "lib/netcoreapp3.1/MySqlConnector.dll",
  4122. "lib/netcoreapp3.1/MySqlConnector.xml",
  4123. "lib/netstandard1.3/MySqlConnector.dll",
  4124. "lib/netstandard1.3/MySqlConnector.xml",
  4125. "lib/netstandard2.0/MySqlConnector.dll",
  4126. "lib/netstandard2.0/MySqlConnector.xml",
  4127. "lib/netstandard2.1/MySqlConnector.dll",
  4128. "lib/netstandard2.1/MySqlConnector.xml",
  4129. "logo.png",
  4130. "mysqlconnector.1.1.0.nupkg.sha512",
  4131. "mysqlconnector.nuspec"
  4132. ]
  4133. },
  4134. "NETStandard.Library/1.6.1": {
  4135. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4136. "type": "package",
  4137. "path": "netstandard.library/1.6.1",
  4138. "files": [
  4139. ".nupkg.metadata",
  4140. ".signature.p7s",
  4141. "ThirdPartyNotices.txt",
  4142. "dotnet_library_license.txt",
  4143. "netstandard.library.1.6.1.nupkg.sha512",
  4144. "netstandard.library.nuspec"
  4145. ]
  4146. },
  4147. "Newtonsoft.Json/13.0.1": {
  4148. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4149. "type": "package",
  4150. "path": "newtonsoft.json/13.0.1",
  4151. "files": [
  4152. ".nupkg.metadata",
  4153. ".signature.p7s",
  4154. "LICENSE.md",
  4155. "lib/net20/Newtonsoft.Json.dll",
  4156. "lib/net20/Newtonsoft.Json.xml",
  4157. "lib/net35/Newtonsoft.Json.dll",
  4158. "lib/net35/Newtonsoft.Json.xml",
  4159. "lib/net40/Newtonsoft.Json.dll",
  4160. "lib/net40/Newtonsoft.Json.xml",
  4161. "lib/net45/Newtonsoft.Json.dll",
  4162. "lib/net45/Newtonsoft.Json.xml",
  4163. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4164. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4165. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4166. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4167. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4168. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4169. "newtonsoft.json.13.0.1.nupkg.sha512",
  4170. "newtonsoft.json.nuspec",
  4171. "packageIcon.png"
  4172. ]
  4173. },
  4174. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4175. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4176. "type": "package",
  4177. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4178. "files": [
  4179. ".nupkg.metadata",
  4180. ".signature.p7s",
  4181. "icon.png",
  4182. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4183. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4184. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4185. "pomelo.entityframeworkcore.mysql.nuspec"
  4186. ]
  4187. },
  4188. "QRCoder/1.4.3": {
  4189. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4190. "type": "package",
  4191. "path": "qrcoder/1.4.3",
  4192. "files": [
  4193. ".nupkg.metadata",
  4194. ".signature.p7s",
  4195. "lib/net35/QRCoder.dll",
  4196. "lib/net40/QRCoder.dll",
  4197. "lib/net5.0-windows7.0/QRCoder.dll",
  4198. "lib/net5.0/QRCoder.dll",
  4199. "lib/net6.0-windows7.0/QRCoder.dll",
  4200. "lib/net6.0/QRCoder.dll",
  4201. "lib/netstandard1.3/QRCoder.dll",
  4202. "lib/netstandard2.0/QRCoder.dll",
  4203. "nuget-icon.png",
  4204. "nuget-readme.md",
  4205. "qrcoder.1.4.3.nupkg.sha512",
  4206. "qrcoder.nuspec"
  4207. ]
  4208. },
  4209. "Quartz/3.3.3": {
  4210. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  4211. "type": "package",
  4212. "path": "quartz/3.3.3",
  4213. "files": [
  4214. ".nupkg.metadata",
  4215. ".signature.p7s",
  4216. "lib/net461/Quartz.dll",
  4217. "lib/net461/Quartz.xml",
  4218. "lib/net472/Quartz.dll",
  4219. "lib/net472/Quartz.xml",
  4220. "lib/netstandard2.0/Quartz.dll",
  4221. "lib/netstandard2.0/Quartz.xml",
  4222. "quartz-logo-small.png",
  4223. "quartz.3.3.3.nupkg.sha512",
  4224. "quartz.nuspec"
  4225. ]
  4226. },
  4227. "RabbitMQ.Client/6.8.1": {
  4228. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4229. "type": "package",
  4230. "path": "rabbitmq.client/6.8.1",
  4231. "files": [
  4232. ".nupkg.metadata",
  4233. ".signature.p7s",
  4234. "README.md",
  4235. "icon.png",
  4236. "lib/net462/RabbitMQ.Client.dll",
  4237. "lib/net462/RabbitMQ.Client.xml",
  4238. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4239. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4240. "rabbitmq.client.6.8.1.nupkg.sha512",
  4241. "rabbitmq.client.nuspec"
  4242. ]
  4243. },
  4244. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4245. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4246. "type": "package",
  4247. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4248. "files": [
  4249. ".nupkg.metadata",
  4250. ".signature.p7s",
  4251. "ThirdPartyNotices.txt",
  4252. "dotnet_library_license.txt",
  4253. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4254. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4255. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4256. ]
  4257. },
  4258. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4259. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4260. "type": "package",
  4261. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4262. "files": [
  4263. ".nupkg.metadata",
  4264. ".signature.p7s",
  4265. "ThirdPartyNotices.txt",
  4266. "dotnet_library_license.txt",
  4267. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4268. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4269. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4270. ]
  4271. },
  4272. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4273. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4274. "type": "package",
  4275. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4276. "files": [
  4277. ".nupkg.metadata",
  4278. ".signature.p7s",
  4279. "ThirdPartyNotices.txt",
  4280. "dotnet_library_license.txt",
  4281. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4282. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4283. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4284. ]
  4285. },
  4286. "runtime.native.System/4.3.0": {
  4287. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4288. "type": "package",
  4289. "path": "runtime.native.system/4.3.0",
  4290. "files": [
  4291. ".nupkg.metadata",
  4292. ".signature.p7s",
  4293. "ThirdPartyNotices.txt",
  4294. "dotnet_library_license.txt",
  4295. "lib/netstandard1.0/_._",
  4296. "runtime.native.system.4.3.0.nupkg.sha512",
  4297. "runtime.native.system.nuspec"
  4298. ]
  4299. },
  4300. "runtime.native.System.IO.Compression/4.3.0": {
  4301. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4302. "type": "package",
  4303. "path": "runtime.native.system.io.compression/4.3.0",
  4304. "files": [
  4305. ".nupkg.metadata",
  4306. ".signature.p7s",
  4307. "ThirdPartyNotices.txt",
  4308. "dotnet_library_license.txt",
  4309. "lib/netstandard1.0/_._",
  4310. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4311. "runtime.native.system.io.compression.nuspec"
  4312. ]
  4313. },
  4314. "runtime.native.System.Net.Http/4.3.0": {
  4315. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4316. "type": "package",
  4317. "path": "runtime.native.system.net.http/4.3.0",
  4318. "files": [
  4319. ".nupkg.metadata",
  4320. ".signature.p7s",
  4321. "ThirdPartyNotices.txt",
  4322. "dotnet_library_license.txt",
  4323. "lib/netstandard1.0/_._",
  4324. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4325. "runtime.native.system.net.http.nuspec"
  4326. ]
  4327. },
  4328. "runtime.native.System.Net.Security/4.3.0": {
  4329. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4330. "type": "package",
  4331. "path": "runtime.native.system.net.security/4.3.0",
  4332. "files": [
  4333. ".nupkg.metadata",
  4334. ".signature.p7s",
  4335. "ThirdPartyNotices.txt",
  4336. "dotnet_library_license.txt",
  4337. "lib/netstandard1.0/_._",
  4338. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4339. "runtime.native.system.net.security.nuspec"
  4340. ]
  4341. },
  4342. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4343. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4344. "type": "package",
  4345. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4346. "files": [
  4347. ".nupkg.metadata",
  4348. ".signature.p7s",
  4349. "ThirdPartyNotices.txt",
  4350. "dotnet_library_license.txt",
  4351. "lib/netstandard1.0/_._",
  4352. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4353. "runtime.native.system.security.cryptography.apple.nuspec"
  4354. ]
  4355. },
  4356. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4357. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4358. "type": "package",
  4359. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4360. "files": [
  4361. ".nupkg.metadata",
  4362. ".signature.p7s",
  4363. "ThirdPartyNotices.txt",
  4364. "dotnet_library_license.txt",
  4365. "lib/netstandard1.0/_._",
  4366. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4367. "runtime.native.system.security.cryptography.openssl.nuspec"
  4368. ]
  4369. },
  4370. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4371. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4372. "type": "package",
  4373. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4374. "files": [
  4375. ".nupkg.metadata",
  4376. ".signature.p7s",
  4377. "ThirdPartyNotices.txt",
  4378. "dotnet_library_license.txt",
  4379. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4380. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4381. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4382. ]
  4383. },
  4384. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4385. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4386. "type": "package",
  4387. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4388. "files": [
  4389. ".nupkg.metadata",
  4390. ".signature.p7s",
  4391. "ThirdPartyNotices.txt",
  4392. "dotnet_library_license.txt",
  4393. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4394. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4395. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4396. ]
  4397. },
  4398. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4399. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4400. "type": "package",
  4401. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4402. "files": [
  4403. ".nupkg.metadata",
  4404. ".signature.p7s",
  4405. "ThirdPartyNotices.txt",
  4406. "dotnet_library_license.txt",
  4407. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4408. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4409. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4410. ]
  4411. },
  4412. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4413. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4414. "type": "package",
  4415. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4416. "files": [
  4417. ".nupkg.metadata",
  4418. ".signature.p7s",
  4419. "ThirdPartyNotices.txt",
  4420. "dotnet_library_license.txt",
  4421. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4422. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4423. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4424. ]
  4425. },
  4426. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4427. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4428. "type": "package",
  4429. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4430. "files": [
  4431. ".nupkg.metadata",
  4432. ".signature.p7s",
  4433. "ThirdPartyNotices.txt",
  4434. "dotnet_library_license.txt",
  4435. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4436. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4437. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4438. ]
  4439. },
  4440. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4441. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4442. "type": "package",
  4443. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4444. "files": [
  4445. ".nupkg.metadata",
  4446. ".signature.p7s",
  4447. "ThirdPartyNotices.txt",
  4448. "dotnet_library_license.txt",
  4449. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4450. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4451. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4452. ]
  4453. },
  4454. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4455. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4456. "type": "package",
  4457. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4458. "files": [
  4459. ".nupkg.metadata",
  4460. ".signature.p7s",
  4461. "ThirdPartyNotices.txt",
  4462. "dotnet_library_license.txt",
  4463. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4464. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4465. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4466. ]
  4467. },
  4468. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4469. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4470. "type": "package",
  4471. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "ThirdPartyNotices.txt",
  4476. "dotnet_library_license.txt",
  4477. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4478. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4479. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4480. ]
  4481. },
  4482. "SixLabors.ImageSharp/2.1.6": {
  4483. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4484. "type": "package",
  4485. "path": "sixlabors.imagesharp/2.1.6",
  4486. "files": [
  4487. ".nupkg.metadata",
  4488. ".signature.p7s",
  4489. "lib/net472/SixLabors.ImageSharp.dll",
  4490. "lib/net472/SixLabors.ImageSharp.xml",
  4491. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4492. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4493. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4494. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4495. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4496. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4497. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4498. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4499. "sixlabors.imagesharp.128.png",
  4500. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4501. "sixlabors.imagesharp.nuspec"
  4502. ]
  4503. },
  4504. "SSH.NET/2020.0.0-beta1": {
  4505. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4506. "type": "package",
  4507. "path": "ssh.net/2020.0.0-beta1",
  4508. "files": [
  4509. ".nupkg.metadata",
  4510. ".signature.p7s",
  4511. "lib/net35/Renci.SshNet.dll",
  4512. "lib/net35/Renci.SshNet.xml",
  4513. "lib/net40/Renci.SshNet.dll",
  4514. "lib/net40/Renci.SshNet.xml",
  4515. "lib/netstandard1.3/Renci.SshNet.dll",
  4516. "lib/netstandard1.3/Renci.SshNet.xml",
  4517. "lib/netstandard2.0/Renci.SshNet.dll",
  4518. "lib/netstandard2.0/Renci.SshNet.xml",
  4519. "lib/sl4/Renci.SshNet.dll",
  4520. "lib/sl4/Renci.SshNet.xml",
  4521. "lib/sl5/Renci.SshNet.dll",
  4522. "lib/sl5/Renci.SshNet.xml",
  4523. "lib/uap10/Renci.SshNet.dll",
  4524. "lib/uap10/Renci.SshNet.xml",
  4525. "lib/wp71/Renci.SshNet.dll",
  4526. "lib/wp71/Renci.SshNet.xml",
  4527. "lib/wp8/Renci.SshNet.dll",
  4528. "lib/wp8/Renci.SshNet.xml",
  4529. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4530. "ssh.net.nuspec"
  4531. ]
  4532. },
  4533. "SshNet.Security.Cryptography/1.3.0": {
  4534. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4535. "type": "package",
  4536. "path": "sshnet.security.cryptography/1.3.0",
  4537. "files": [
  4538. ".nupkg.metadata",
  4539. ".signature.p7s",
  4540. "lib/net20/SshNet.Security.Cryptography.dll",
  4541. "lib/net20/SshNet.Security.Cryptography.xml",
  4542. "lib/net40/SshNet.Security.Cryptography.dll",
  4543. "lib/net40/SshNet.Security.Cryptography.xml",
  4544. "lib/net45/SshNet.Security.Cryptography.dll",
  4545. "lib/net45/SshNet.Security.Cryptography.xml",
  4546. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4547. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4548. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4549. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4550. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4551. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4552. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4553. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4554. "lib/sl4/SshNet.Security.Cryptography.dll",
  4555. "lib/sl4/SshNet.Security.Cryptography.xml",
  4556. "lib/sl5/SshNet.Security.Cryptography.dll",
  4557. "lib/sl5/SshNet.Security.Cryptography.xml",
  4558. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4559. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4560. "lib/wp71/SshNet.Security.Cryptography.dll",
  4561. "lib/wp71/SshNet.Security.Cryptography.xml",
  4562. "lib/wp8/SshNet.Security.Cryptography.dll",
  4563. "lib/wp8/SshNet.Security.Cryptography.xml",
  4564. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4565. "sshnet.security.cryptography.nuspec"
  4566. ]
  4567. },
  4568. "StackExchange.Redis/1.2.4": {
  4569. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4570. "type": "package",
  4571. "path": "stackexchange.redis/1.2.4",
  4572. "files": [
  4573. ".nupkg.metadata",
  4574. ".signature.p7s",
  4575. "lib/net45/StackExchange.Redis.dll",
  4576. "lib/net45/StackExchange.Redis.xml",
  4577. "lib/net46/StackExchange.Redis.dll",
  4578. "lib/net46/StackExchange.Redis.xml",
  4579. "lib/netstandard1.5/StackExchange.Redis.dll",
  4580. "lib/netstandard1.5/StackExchange.Redis.xml",
  4581. "stackexchange.redis.1.2.4.nupkg.sha512",
  4582. "stackexchange.redis.nuspec"
  4583. ]
  4584. },
  4585. "System.AppContext/4.3.0": {
  4586. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4587. "type": "package",
  4588. "path": "system.appcontext/4.3.0",
  4589. "files": [
  4590. ".nupkg.metadata",
  4591. ".signature.p7s",
  4592. "ThirdPartyNotices.txt",
  4593. "dotnet_library_license.txt",
  4594. "lib/MonoAndroid10/_._",
  4595. "lib/MonoTouch10/_._",
  4596. "lib/net46/System.AppContext.dll",
  4597. "lib/net463/System.AppContext.dll",
  4598. "lib/netcore50/System.AppContext.dll",
  4599. "lib/netstandard1.6/System.AppContext.dll",
  4600. "lib/xamarinios10/_._",
  4601. "lib/xamarinmac20/_._",
  4602. "lib/xamarintvos10/_._",
  4603. "lib/xamarinwatchos10/_._",
  4604. "ref/MonoAndroid10/_._",
  4605. "ref/MonoTouch10/_._",
  4606. "ref/net46/System.AppContext.dll",
  4607. "ref/net463/System.AppContext.dll",
  4608. "ref/netstandard/_._",
  4609. "ref/netstandard1.3/System.AppContext.dll",
  4610. "ref/netstandard1.3/System.AppContext.xml",
  4611. "ref/netstandard1.3/de/System.AppContext.xml",
  4612. "ref/netstandard1.3/es/System.AppContext.xml",
  4613. "ref/netstandard1.3/fr/System.AppContext.xml",
  4614. "ref/netstandard1.3/it/System.AppContext.xml",
  4615. "ref/netstandard1.3/ja/System.AppContext.xml",
  4616. "ref/netstandard1.3/ko/System.AppContext.xml",
  4617. "ref/netstandard1.3/ru/System.AppContext.xml",
  4618. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4619. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4620. "ref/netstandard1.6/System.AppContext.dll",
  4621. "ref/netstandard1.6/System.AppContext.xml",
  4622. "ref/netstandard1.6/de/System.AppContext.xml",
  4623. "ref/netstandard1.6/es/System.AppContext.xml",
  4624. "ref/netstandard1.6/fr/System.AppContext.xml",
  4625. "ref/netstandard1.6/it/System.AppContext.xml",
  4626. "ref/netstandard1.6/ja/System.AppContext.xml",
  4627. "ref/netstandard1.6/ko/System.AppContext.xml",
  4628. "ref/netstandard1.6/ru/System.AppContext.xml",
  4629. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4630. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4631. "ref/xamarinios10/_._",
  4632. "ref/xamarinmac20/_._",
  4633. "ref/xamarintvos10/_._",
  4634. "ref/xamarinwatchos10/_._",
  4635. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4636. "system.appcontext.4.3.0.nupkg.sha512",
  4637. "system.appcontext.nuspec"
  4638. ]
  4639. },
  4640. "System.Buffers/4.5.1": {
  4641. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4642. "type": "package",
  4643. "path": "system.buffers/4.5.1",
  4644. "files": [
  4645. ".nupkg.metadata",
  4646. ".signature.p7s",
  4647. "LICENSE.TXT",
  4648. "THIRD-PARTY-NOTICES.TXT",
  4649. "lib/net461/System.Buffers.dll",
  4650. "lib/net461/System.Buffers.xml",
  4651. "lib/netcoreapp2.0/_._",
  4652. "lib/netstandard1.1/System.Buffers.dll",
  4653. "lib/netstandard1.1/System.Buffers.xml",
  4654. "lib/netstandard2.0/System.Buffers.dll",
  4655. "lib/netstandard2.0/System.Buffers.xml",
  4656. "lib/uap10.0.16299/_._",
  4657. "ref/net45/System.Buffers.dll",
  4658. "ref/net45/System.Buffers.xml",
  4659. "ref/netcoreapp2.0/_._",
  4660. "ref/netstandard1.1/System.Buffers.dll",
  4661. "ref/netstandard1.1/System.Buffers.xml",
  4662. "ref/netstandard2.0/System.Buffers.dll",
  4663. "ref/netstandard2.0/System.Buffers.xml",
  4664. "ref/uap10.0.16299/_._",
  4665. "system.buffers.4.5.1.nupkg.sha512",
  4666. "system.buffers.nuspec",
  4667. "useSharedDesignerContext.txt",
  4668. "version.txt"
  4669. ]
  4670. },
  4671. "System.Collections/4.3.0": {
  4672. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4673. "type": "package",
  4674. "path": "system.collections/4.3.0",
  4675. "files": [
  4676. ".nupkg.metadata",
  4677. ".signature.p7s",
  4678. "ThirdPartyNotices.txt",
  4679. "dotnet_library_license.txt",
  4680. "lib/MonoAndroid10/_._",
  4681. "lib/MonoTouch10/_._",
  4682. "lib/net45/_._",
  4683. "lib/portable-net45+win8+wp8+wpa81/_._",
  4684. "lib/win8/_._",
  4685. "lib/wp80/_._",
  4686. "lib/wpa81/_._",
  4687. "lib/xamarinios10/_._",
  4688. "lib/xamarinmac20/_._",
  4689. "lib/xamarintvos10/_._",
  4690. "lib/xamarinwatchos10/_._",
  4691. "ref/MonoAndroid10/_._",
  4692. "ref/MonoTouch10/_._",
  4693. "ref/net45/_._",
  4694. "ref/netcore50/System.Collections.dll",
  4695. "ref/netcore50/System.Collections.xml",
  4696. "ref/netcore50/de/System.Collections.xml",
  4697. "ref/netcore50/es/System.Collections.xml",
  4698. "ref/netcore50/fr/System.Collections.xml",
  4699. "ref/netcore50/it/System.Collections.xml",
  4700. "ref/netcore50/ja/System.Collections.xml",
  4701. "ref/netcore50/ko/System.Collections.xml",
  4702. "ref/netcore50/ru/System.Collections.xml",
  4703. "ref/netcore50/zh-hans/System.Collections.xml",
  4704. "ref/netcore50/zh-hant/System.Collections.xml",
  4705. "ref/netstandard1.0/System.Collections.dll",
  4706. "ref/netstandard1.0/System.Collections.xml",
  4707. "ref/netstandard1.0/de/System.Collections.xml",
  4708. "ref/netstandard1.0/es/System.Collections.xml",
  4709. "ref/netstandard1.0/fr/System.Collections.xml",
  4710. "ref/netstandard1.0/it/System.Collections.xml",
  4711. "ref/netstandard1.0/ja/System.Collections.xml",
  4712. "ref/netstandard1.0/ko/System.Collections.xml",
  4713. "ref/netstandard1.0/ru/System.Collections.xml",
  4714. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4715. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4716. "ref/netstandard1.3/System.Collections.dll",
  4717. "ref/netstandard1.3/System.Collections.xml",
  4718. "ref/netstandard1.3/de/System.Collections.xml",
  4719. "ref/netstandard1.3/es/System.Collections.xml",
  4720. "ref/netstandard1.3/fr/System.Collections.xml",
  4721. "ref/netstandard1.3/it/System.Collections.xml",
  4722. "ref/netstandard1.3/ja/System.Collections.xml",
  4723. "ref/netstandard1.3/ko/System.Collections.xml",
  4724. "ref/netstandard1.3/ru/System.Collections.xml",
  4725. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4726. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4727. "ref/portable-net45+win8+wp8+wpa81/_._",
  4728. "ref/win8/_._",
  4729. "ref/wp80/_._",
  4730. "ref/wpa81/_._",
  4731. "ref/xamarinios10/_._",
  4732. "ref/xamarinmac20/_._",
  4733. "ref/xamarintvos10/_._",
  4734. "ref/xamarinwatchos10/_._",
  4735. "system.collections.4.3.0.nupkg.sha512",
  4736. "system.collections.nuspec"
  4737. ]
  4738. },
  4739. "System.Collections.Concurrent/4.3.0": {
  4740. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4741. "type": "package",
  4742. "path": "system.collections.concurrent/4.3.0",
  4743. "files": [
  4744. ".nupkg.metadata",
  4745. ".signature.p7s",
  4746. "ThirdPartyNotices.txt",
  4747. "dotnet_library_license.txt",
  4748. "lib/MonoAndroid10/_._",
  4749. "lib/MonoTouch10/_._",
  4750. "lib/net45/_._",
  4751. "lib/netcore50/System.Collections.Concurrent.dll",
  4752. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4753. "lib/portable-net45+win8+wpa81/_._",
  4754. "lib/win8/_._",
  4755. "lib/wpa81/_._",
  4756. "lib/xamarinios10/_._",
  4757. "lib/xamarinmac20/_._",
  4758. "lib/xamarintvos10/_._",
  4759. "lib/xamarinwatchos10/_._",
  4760. "ref/MonoAndroid10/_._",
  4761. "ref/MonoTouch10/_._",
  4762. "ref/net45/_._",
  4763. "ref/netcore50/System.Collections.Concurrent.dll",
  4764. "ref/netcore50/System.Collections.Concurrent.xml",
  4765. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4766. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4767. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4768. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4769. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4770. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4771. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4772. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4773. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4774. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4775. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4776. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4777. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4778. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4779. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4780. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4781. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4782. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4783. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4784. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4785. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4786. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4787. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4788. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4789. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4790. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4791. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4792. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4793. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4794. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4795. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4796. "ref/portable-net45+win8+wpa81/_._",
  4797. "ref/win8/_._",
  4798. "ref/wpa81/_._",
  4799. "ref/xamarinios10/_._",
  4800. "ref/xamarinmac20/_._",
  4801. "ref/xamarintvos10/_._",
  4802. "ref/xamarinwatchos10/_._",
  4803. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4804. "system.collections.concurrent.nuspec"
  4805. ]
  4806. },
  4807. "System.Collections.Immutable/5.0.0": {
  4808. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  4809. "type": "package",
  4810. "path": "system.collections.immutable/5.0.0",
  4811. "files": [
  4812. ".nupkg.metadata",
  4813. ".signature.p7s",
  4814. "Icon.png",
  4815. "LICENSE.TXT",
  4816. "THIRD-PARTY-NOTICES.TXT",
  4817. "lib/net461/System.Collections.Immutable.dll",
  4818. "lib/net461/System.Collections.Immutable.xml",
  4819. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4820. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4821. "lib/netstandard1.3/System.Collections.Immutable.dll",
  4822. "lib/netstandard1.3/System.Collections.Immutable.xml",
  4823. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4824. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4825. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4826. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  4827. "system.collections.immutable.5.0.0.nupkg.sha512",
  4828. "system.collections.immutable.nuspec",
  4829. "useSharedDesignerContext.txt",
  4830. "version.txt"
  4831. ]
  4832. },
  4833. "System.Collections.NonGeneric/4.3.0": {
  4834. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4835. "type": "package",
  4836. "path": "system.collections.nongeneric/4.3.0",
  4837. "files": [
  4838. ".nupkg.metadata",
  4839. ".signature.p7s",
  4840. "ThirdPartyNotices.txt",
  4841. "dotnet_library_license.txt",
  4842. "lib/MonoAndroid10/_._",
  4843. "lib/MonoTouch10/_._",
  4844. "lib/net46/System.Collections.NonGeneric.dll",
  4845. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4846. "lib/xamarinios10/_._",
  4847. "lib/xamarinmac20/_._",
  4848. "lib/xamarintvos10/_._",
  4849. "lib/xamarinwatchos10/_._",
  4850. "ref/MonoAndroid10/_._",
  4851. "ref/MonoTouch10/_._",
  4852. "ref/net46/System.Collections.NonGeneric.dll",
  4853. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4854. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4855. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4856. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4857. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4858. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4859. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4860. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4861. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4862. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4863. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4864. "ref/xamarinios10/_._",
  4865. "ref/xamarinmac20/_._",
  4866. "ref/xamarintvos10/_._",
  4867. "ref/xamarinwatchos10/_._",
  4868. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4869. "system.collections.nongeneric.nuspec"
  4870. ]
  4871. },
  4872. "System.Collections.Specialized/4.3.0": {
  4873. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4874. "type": "package",
  4875. "path": "system.collections.specialized/4.3.0",
  4876. "files": [
  4877. ".nupkg.metadata",
  4878. ".signature.p7s",
  4879. "ThirdPartyNotices.txt",
  4880. "dotnet_library_license.txt",
  4881. "lib/MonoAndroid10/_._",
  4882. "lib/MonoTouch10/_._",
  4883. "lib/net46/System.Collections.Specialized.dll",
  4884. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4885. "lib/xamarinios10/_._",
  4886. "lib/xamarinmac20/_._",
  4887. "lib/xamarintvos10/_._",
  4888. "lib/xamarinwatchos10/_._",
  4889. "ref/MonoAndroid10/_._",
  4890. "ref/MonoTouch10/_._",
  4891. "ref/net46/System.Collections.Specialized.dll",
  4892. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4893. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4894. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4895. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4896. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4897. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4898. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4899. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4900. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4901. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4902. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4903. "ref/xamarinios10/_._",
  4904. "ref/xamarinmac20/_._",
  4905. "ref/xamarintvos10/_._",
  4906. "ref/xamarinwatchos10/_._",
  4907. "system.collections.specialized.4.3.0.nupkg.sha512",
  4908. "system.collections.specialized.nuspec"
  4909. ]
  4910. },
  4911. "System.ComponentModel/4.3.0": {
  4912. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4913. "type": "package",
  4914. "path": "system.componentmodel/4.3.0",
  4915. "files": [
  4916. ".nupkg.metadata",
  4917. ".signature.p7s",
  4918. "ThirdPartyNotices.txt",
  4919. "dotnet_library_license.txt",
  4920. "lib/MonoAndroid10/_._",
  4921. "lib/MonoTouch10/_._",
  4922. "lib/net45/_._",
  4923. "lib/netcore50/System.ComponentModel.dll",
  4924. "lib/netstandard1.3/System.ComponentModel.dll",
  4925. "lib/portable-net45+win8+wp8+wpa81/_._",
  4926. "lib/win8/_._",
  4927. "lib/wp80/_._",
  4928. "lib/wpa81/_._",
  4929. "lib/xamarinios10/_._",
  4930. "lib/xamarinmac20/_._",
  4931. "lib/xamarintvos10/_._",
  4932. "lib/xamarinwatchos10/_._",
  4933. "ref/MonoAndroid10/_._",
  4934. "ref/MonoTouch10/_._",
  4935. "ref/net45/_._",
  4936. "ref/netcore50/System.ComponentModel.dll",
  4937. "ref/netcore50/System.ComponentModel.xml",
  4938. "ref/netcore50/de/System.ComponentModel.xml",
  4939. "ref/netcore50/es/System.ComponentModel.xml",
  4940. "ref/netcore50/fr/System.ComponentModel.xml",
  4941. "ref/netcore50/it/System.ComponentModel.xml",
  4942. "ref/netcore50/ja/System.ComponentModel.xml",
  4943. "ref/netcore50/ko/System.ComponentModel.xml",
  4944. "ref/netcore50/ru/System.ComponentModel.xml",
  4945. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4946. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4947. "ref/netstandard1.0/System.ComponentModel.dll",
  4948. "ref/netstandard1.0/System.ComponentModel.xml",
  4949. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4950. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4951. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4952. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4953. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4954. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4955. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4956. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4957. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4958. "ref/portable-net45+win8+wp8+wpa81/_._",
  4959. "ref/win8/_._",
  4960. "ref/wp80/_._",
  4961. "ref/wpa81/_._",
  4962. "ref/xamarinios10/_._",
  4963. "ref/xamarinmac20/_._",
  4964. "ref/xamarintvos10/_._",
  4965. "ref/xamarinwatchos10/_._",
  4966. "system.componentmodel.4.3.0.nupkg.sha512",
  4967. "system.componentmodel.nuspec"
  4968. ]
  4969. },
  4970. "System.ComponentModel.Annotations/5.0.0": {
  4971. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  4972. "type": "package",
  4973. "path": "system.componentmodel.annotations/5.0.0",
  4974. "files": [
  4975. ".nupkg.metadata",
  4976. ".signature.p7s",
  4977. "Icon.png",
  4978. "LICENSE.TXT",
  4979. "THIRD-PARTY-NOTICES.TXT",
  4980. "lib/MonoAndroid10/_._",
  4981. "lib/MonoTouch10/_._",
  4982. "lib/net45/_._",
  4983. "lib/net461/System.ComponentModel.Annotations.dll",
  4984. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4985. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4986. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4987. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4988. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4989. "lib/portable-net45+win8/_._",
  4990. "lib/win8/_._",
  4991. "lib/xamarinios10/_._",
  4992. "lib/xamarinmac20/_._",
  4993. "lib/xamarintvos10/_._",
  4994. "lib/xamarinwatchos10/_._",
  4995. "ref/MonoAndroid10/_._",
  4996. "ref/MonoTouch10/_._",
  4997. "ref/net45/_._",
  4998. "ref/net461/System.ComponentModel.Annotations.dll",
  4999. "ref/net461/System.ComponentModel.Annotations.xml",
  5000. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5001. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5002. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5003. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5004. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5005. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5006. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5007. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5008. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5009. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5010. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5011. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5012. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5013. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5014. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5015. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5016. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5017. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5018. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5019. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5020. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5021. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5022. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5023. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5024. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5025. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5026. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5027. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5028. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5029. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5030. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5031. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5032. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5033. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5034. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5035. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5036. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5037. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5038. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5039. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5040. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5041. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5042. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5043. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5044. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5045. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5046. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5047. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5048. "ref/portable-net45+win8/_._",
  5049. "ref/win8/_._",
  5050. "ref/xamarinios10/_._",
  5051. "ref/xamarinmac20/_._",
  5052. "ref/xamarintvos10/_._",
  5053. "ref/xamarinwatchos10/_._",
  5054. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5055. "system.componentmodel.annotations.nuspec",
  5056. "useSharedDesignerContext.txt",
  5057. "version.txt"
  5058. ]
  5059. },
  5060. "System.ComponentModel.Primitives/4.3.0": {
  5061. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5062. "type": "package",
  5063. "path": "system.componentmodel.primitives/4.3.0",
  5064. "files": [
  5065. ".nupkg.metadata",
  5066. ".signature.p7s",
  5067. "ThirdPartyNotices.txt",
  5068. "dotnet_library_license.txt",
  5069. "lib/MonoAndroid10/_._",
  5070. "lib/MonoTouch10/_._",
  5071. "lib/net45/System.ComponentModel.Primitives.dll",
  5072. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5073. "lib/xamarinios10/_._",
  5074. "lib/xamarinmac20/_._",
  5075. "lib/xamarintvos10/_._",
  5076. "lib/xamarinwatchos10/_._",
  5077. "ref/MonoAndroid10/_._",
  5078. "ref/MonoTouch10/_._",
  5079. "ref/net45/System.ComponentModel.Primitives.dll",
  5080. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5081. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5082. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5083. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5084. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5085. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5086. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5087. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5088. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5089. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5090. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5091. "ref/xamarinios10/_._",
  5092. "ref/xamarinmac20/_._",
  5093. "ref/xamarintvos10/_._",
  5094. "ref/xamarinwatchos10/_._",
  5095. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5096. "system.componentmodel.primitives.nuspec"
  5097. ]
  5098. },
  5099. "System.ComponentModel.TypeConverter/4.3.0": {
  5100. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5101. "type": "package",
  5102. "path": "system.componentmodel.typeconverter/4.3.0",
  5103. "files": [
  5104. ".nupkg.metadata",
  5105. ".signature.p7s",
  5106. "ThirdPartyNotices.txt",
  5107. "dotnet_library_license.txt",
  5108. "lib/MonoAndroid10/_._",
  5109. "lib/MonoTouch10/_._",
  5110. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5111. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5112. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5113. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5114. "lib/xamarinios10/_._",
  5115. "lib/xamarinmac20/_._",
  5116. "lib/xamarintvos10/_._",
  5117. "lib/xamarinwatchos10/_._",
  5118. "ref/MonoAndroid10/_._",
  5119. "ref/MonoTouch10/_._",
  5120. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5121. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5122. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5123. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5124. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5125. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5126. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5127. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5128. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5129. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5130. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5131. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5132. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5133. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5134. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5135. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5136. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5137. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5138. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5139. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5140. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5141. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5142. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5143. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5144. "ref/xamarinios10/_._",
  5145. "ref/xamarinmac20/_._",
  5146. "ref/xamarintvos10/_._",
  5147. "ref/xamarinwatchos10/_._",
  5148. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5149. "system.componentmodel.typeconverter.nuspec"
  5150. ]
  5151. },
  5152. "System.Configuration.ConfigurationManager/4.7.0": {
  5153. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5154. "type": "package",
  5155. "path": "system.configuration.configurationmanager/4.7.0",
  5156. "files": [
  5157. ".nupkg.metadata",
  5158. ".signature.p7s",
  5159. "LICENSE.TXT",
  5160. "THIRD-PARTY-NOTICES.TXT",
  5161. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5162. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5163. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5164. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5165. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5166. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5167. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5168. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5169. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5170. "system.configuration.configurationmanager.nuspec",
  5171. "useSharedDesignerContext.txt",
  5172. "version.txt"
  5173. ]
  5174. },
  5175. "System.Console/4.3.0": {
  5176. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5177. "type": "package",
  5178. "path": "system.console/4.3.0",
  5179. "files": [
  5180. ".nupkg.metadata",
  5181. ".signature.p7s",
  5182. "ThirdPartyNotices.txt",
  5183. "dotnet_library_license.txt",
  5184. "lib/MonoAndroid10/_._",
  5185. "lib/MonoTouch10/_._",
  5186. "lib/net46/System.Console.dll",
  5187. "lib/xamarinios10/_._",
  5188. "lib/xamarinmac20/_._",
  5189. "lib/xamarintvos10/_._",
  5190. "lib/xamarinwatchos10/_._",
  5191. "ref/MonoAndroid10/_._",
  5192. "ref/MonoTouch10/_._",
  5193. "ref/net46/System.Console.dll",
  5194. "ref/netstandard1.3/System.Console.dll",
  5195. "ref/netstandard1.3/System.Console.xml",
  5196. "ref/netstandard1.3/de/System.Console.xml",
  5197. "ref/netstandard1.3/es/System.Console.xml",
  5198. "ref/netstandard1.3/fr/System.Console.xml",
  5199. "ref/netstandard1.3/it/System.Console.xml",
  5200. "ref/netstandard1.3/ja/System.Console.xml",
  5201. "ref/netstandard1.3/ko/System.Console.xml",
  5202. "ref/netstandard1.3/ru/System.Console.xml",
  5203. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5204. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5205. "ref/xamarinios10/_._",
  5206. "ref/xamarinmac20/_._",
  5207. "ref/xamarintvos10/_._",
  5208. "ref/xamarinwatchos10/_._",
  5209. "system.console.4.3.0.nupkg.sha512",
  5210. "system.console.nuspec"
  5211. ]
  5212. },
  5213. "System.Diagnostics.Debug/4.3.0": {
  5214. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5215. "type": "package",
  5216. "path": "system.diagnostics.debug/4.3.0",
  5217. "files": [
  5218. ".nupkg.metadata",
  5219. ".signature.p7s",
  5220. "ThirdPartyNotices.txt",
  5221. "dotnet_library_license.txt",
  5222. "lib/MonoAndroid10/_._",
  5223. "lib/MonoTouch10/_._",
  5224. "lib/net45/_._",
  5225. "lib/portable-net45+win8+wp8+wpa81/_._",
  5226. "lib/win8/_._",
  5227. "lib/wp80/_._",
  5228. "lib/wpa81/_._",
  5229. "lib/xamarinios10/_._",
  5230. "lib/xamarinmac20/_._",
  5231. "lib/xamarintvos10/_._",
  5232. "lib/xamarinwatchos10/_._",
  5233. "ref/MonoAndroid10/_._",
  5234. "ref/MonoTouch10/_._",
  5235. "ref/net45/_._",
  5236. "ref/netcore50/System.Diagnostics.Debug.dll",
  5237. "ref/netcore50/System.Diagnostics.Debug.xml",
  5238. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5239. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5240. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5241. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5242. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5243. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5244. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5245. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5246. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5247. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5248. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5249. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5250. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5251. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5252. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5253. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5254. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5255. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5256. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5257. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5258. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5259. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5260. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5261. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5262. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5263. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5264. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5265. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5266. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5267. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5268. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5269. "ref/portable-net45+win8+wp8+wpa81/_._",
  5270. "ref/win8/_._",
  5271. "ref/wp80/_._",
  5272. "ref/wpa81/_._",
  5273. "ref/xamarinios10/_._",
  5274. "ref/xamarinmac20/_._",
  5275. "ref/xamarintvos10/_._",
  5276. "ref/xamarinwatchos10/_._",
  5277. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5278. "system.diagnostics.debug.nuspec"
  5279. ]
  5280. },
  5281. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5282. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5283. "type": "package",
  5284. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5285. "files": [
  5286. ".nupkg.metadata",
  5287. ".signature.p7s",
  5288. "Icon.png",
  5289. "LICENSE.TXT",
  5290. "THIRD-PARTY-NOTICES.TXT",
  5291. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5292. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5293. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5294. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5295. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5296. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5297. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5298. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5299. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5300. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5301. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5302. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5303. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5304. "system.diagnostics.diagnosticsource.nuspec",
  5305. "useSharedDesignerContext.txt",
  5306. "version.txt"
  5307. ]
  5308. },
  5309. "System.Diagnostics.Tools/4.3.0": {
  5310. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5311. "type": "package",
  5312. "path": "system.diagnostics.tools/4.3.0",
  5313. "files": [
  5314. ".nupkg.metadata",
  5315. ".signature.p7s",
  5316. "ThirdPartyNotices.txt",
  5317. "dotnet_library_license.txt",
  5318. "lib/MonoAndroid10/_._",
  5319. "lib/MonoTouch10/_._",
  5320. "lib/net45/_._",
  5321. "lib/portable-net45+win8+wp8+wpa81/_._",
  5322. "lib/win8/_._",
  5323. "lib/wp80/_._",
  5324. "lib/wpa81/_._",
  5325. "lib/xamarinios10/_._",
  5326. "lib/xamarinmac20/_._",
  5327. "lib/xamarintvos10/_._",
  5328. "lib/xamarinwatchos10/_._",
  5329. "ref/MonoAndroid10/_._",
  5330. "ref/MonoTouch10/_._",
  5331. "ref/net45/_._",
  5332. "ref/netcore50/System.Diagnostics.Tools.dll",
  5333. "ref/netcore50/System.Diagnostics.Tools.xml",
  5334. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5335. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5336. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5337. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5338. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5339. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5340. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5341. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5342. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5343. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5344. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5345. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5346. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5347. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5348. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5349. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5350. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5351. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5352. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5353. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5354. "ref/portable-net45+win8+wp8+wpa81/_._",
  5355. "ref/win8/_._",
  5356. "ref/wp80/_._",
  5357. "ref/wpa81/_._",
  5358. "ref/xamarinios10/_._",
  5359. "ref/xamarinmac20/_._",
  5360. "ref/xamarintvos10/_._",
  5361. "ref/xamarinwatchos10/_._",
  5362. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5363. "system.diagnostics.tools.nuspec"
  5364. ]
  5365. },
  5366. "System.Diagnostics.TraceSource/4.3.0": {
  5367. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5368. "type": "package",
  5369. "path": "system.diagnostics.tracesource/4.3.0",
  5370. "files": [
  5371. ".nupkg.metadata",
  5372. ".signature.p7s",
  5373. "ThirdPartyNotices.txt",
  5374. "dotnet_library_license.txt",
  5375. "lib/MonoAndroid10/_._",
  5376. "lib/MonoTouch10/_._",
  5377. "lib/net46/System.Diagnostics.TraceSource.dll",
  5378. "lib/xamarinios10/_._",
  5379. "lib/xamarinmac20/_._",
  5380. "lib/xamarintvos10/_._",
  5381. "lib/xamarinwatchos10/_._",
  5382. "ref/MonoAndroid10/_._",
  5383. "ref/MonoTouch10/_._",
  5384. "ref/net46/System.Diagnostics.TraceSource.dll",
  5385. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5386. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5387. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5388. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5389. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5390. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5391. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5392. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5393. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5394. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5395. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5396. "ref/xamarinios10/_._",
  5397. "ref/xamarinmac20/_._",
  5398. "ref/xamarintvos10/_._",
  5399. "ref/xamarinwatchos10/_._",
  5400. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5401. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5402. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5403. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5404. "system.diagnostics.tracesource.nuspec"
  5405. ]
  5406. },
  5407. "System.Diagnostics.Tracing/4.3.0": {
  5408. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5409. "type": "package",
  5410. "path": "system.diagnostics.tracing/4.3.0",
  5411. "files": [
  5412. ".nupkg.metadata",
  5413. ".signature.p7s",
  5414. "ThirdPartyNotices.txt",
  5415. "dotnet_library_license.txt",
  5416. "lib/MonoAndroid10/_._",
  5417. "lib/MonoTouch10/_._",
  5418. "lib/net45/_._",
  5419. "lib/net462/System.Diagnostics.Tracing.dll",
  5420. "lib/portable-net45+win8+wpa81/_._",
  5421. "lib/win8/_._",
  5422. "lib/wpa81/_._",
  5423. "lib/xamarinios10/_._",
  5424. "lib/xamarinmac20/_._",
  5425. "lib/xamarintvos10/_._",
  5426. "lib/xamarinwatchos10/_._",
  5427. "ref/MonoAndroid10/_._",
  5428. "ref/MonoTouch10/_._",
  5429. "ref/net45/_._",
  5430. "ref/net462/System.Diagnostics.Tracing.dll",
  5431. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5432. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5433. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5434. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5435. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5436. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5437. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5438. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5439. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5440. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5441. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5442. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5443. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5444. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5445. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5446. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5447. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5448. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5449. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5450. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5451. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5452. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5453. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5454. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5455. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5456. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5457. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5458. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5459. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5460. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5461. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5462. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5463. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5464. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5465. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5466. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5467. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5468. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5469. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5470. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5471. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5472. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5473. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5474. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5475. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5476. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5477. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5478. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5479. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5480. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5481. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5482. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5483. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5484. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5485. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5486. "ref/portable-net45+win8+wpa81/_._",
  5487. "ref/win8/_._",
  5488. "ref/wpa81/_._",
  5489. "ref/xamarinios10/_._",
  5490. "ref/xamarinmac20/_._",
  5491. "ref/xamarintvos10/_._",
  5492. "ref/xamarinwatchos10/_._",
  5493. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5494. "system.diagnostics.tracing.nuspec"
  5495. ]
  5496. },
  5497. "System.Drawing.Common/5.0.3": {
  5498. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5499. "type": "package",
  5500. "path": "system.drawing.common/5.0.3",
  5501. "files": [
  5502. ".nupkg.metadata",
  5503. ".signature.p7s",
  5504. "Icon.png",
  5505. "LICENSE.TXT",
  5506. "THIRD-PARTY-NOTICES.TXT",
  5507. "lib/MonoAndroid10/_._",
  5508. "lib/MonoTouch10/_._",
  5509. "lib/net461/System.Drawing.Common.dll",
  5510. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5511. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5512. "lib/netstandard2.0/System.Drawing.Common.dll",
  5513. "lib/xamarinios10/_._",
  5514. "lib/xamarinmac20/_._",
  5515. "lib/xamarintvos10/_._",
  5516. "lib/xamarinwatchos10/_._",
  5517. "ref/MonoAndroid10/_._",
  5518. "ref/MonoTouch10/_._",
  5519. "ref/net461/System.Drawing.Common.dll",
  5520. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5521. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5522. "ref/netstandard2.0/System.Drawing.Common.dll",
  5523. "ref/xamarinios10/_._",
  5524. "ref/xamarinmac20/_._",
  5525. "ref/xamarintvos10/_._",
  5526. "ref/xamarinwatchos10/_._",
  5527. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5528. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5529. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5530. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5531. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5532. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5533. "system.drawing.common.5.0.3.nupkg.sha512",
  5534. "system.drawing.common.nuspec",
  5535. "useSharedDesignerContext.txt",
  5536. "version.txt"
  5537. ]
  5538. },
  5539. "System.Dynamic.Runtime/4.3.0": {
  5540. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  5541. "type": "package",
  5542. "path": "system.dynamic.runtime/4.3.0",
  5543. "files": [
  5544. ".nupkg.metadata",
  5545. ".signature.p7s",
  5546. "ThirdPartyNotices.txt",
  5547. "dotnet_library_license.txt",
  5548. "lib/MonoAndroid10/_._",
  5549. "lib/MonoTouch10/_._",
  5550. "lib/net45/_._",
  5551. "lib/netcore50/System.Dynamic.Runtime.dll",
  5552. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5553. "lib/portable-net45+win8+wp8+wpa81/_._",
  5554. "lib/win8/_._",
  5555. "lib/wp80/_._",
  5556. "lib/wpa81/_._",
  5557. "lib/xamarinios10/_._",
  5558. "lib/xamarinmac20/_._",
  5559. "lib/xamarintvos10/_._",
  5560. "lib/xamarinwatchos10/_._",
  5561. "ref/MonoAndroid10/_._",
  5562. "ref/MonoTouch10/_._",
  5563. "ref/net45/_._",
  5564. "ref/netcore50/System.Dynamic.Runtime.dll",
  5565. "ref/netcore50/System.Dynamic.Runtime.xml",
  5566. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5567. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5568. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5569. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5570. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5571. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5572. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5573. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5574. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5575. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5576. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5577. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5578. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5579. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5580. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5581. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5582. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5583. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5584. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5585. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5586. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5587. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5588. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5589. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5590. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5591. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5592. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5593. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5594. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5595. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5596. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5597. "ref/portable-net45+win8+wp8+wpa81/_._",
  5598. "ref/win8/_._",
  5599. "ref/wp80/_._",
  5600. "ref/wpa81/_._",
  5601. "ref/xamarinios10/_._",
  5602. "ref/xamarinmac20/_._",
  5603. "ref/xamarintvos10/_._",
  5604. "ref/xamarinwatchos10/_._",
  5605. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  5606. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  5607. "system.dynamic.runtime.nuspec"
  5608. ]
  5609. },
  5610. "System.Globalization/4.3.0": {
  5611. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5612. "type": "package",
  5613. "path": "system.globalization/4.3.0",
  5614. "files": [
  5615. ".nupkg.metadata",
  5616. ".signature.p7s",
  5617. "ThirdPartyNotices.txt",
  5618. "dotnet_library_license.txt",
  5619. "lib/MonoAndroid10/_._",
  5620. "lib/MonoTouch10/_._",
  5621. "lib/net45/_._",
  5622. "lib/portable-net45+win8+wp8+wpa81/_._",
  5623. "lib/win8/_._",
  5624. "lib/wp80/_._",
  5625. "lib/wpa81/_._",
  5626. "lib/xamarinios10/_._",
  5627. "lib/xamarinmac20/_._",
  5628. "lib/xamarintvos10/_._",
  5629. "lib/xamarinwatchos10/_._",
  5630. "ref/MonoAndroid10/_._",
  5631. "ref/MonoTouch10/_._",
  5632. "ref/net45/_._",
  5633. "ref/netcore50/System.Globalization.dll",
  5634. "ref/netcore50/System.Globalization.xml",
  5635. "ref/netcore50/de/System.Globalization.xml",
  5636. "ref/netcore50/es/System.Globalization.xml",
  5637. "ref/netcore50/fr/System.Globalization.xml",
  5638. "ref/netcore50/it/System.Globalization.xml",
  5639. "ref/netcore50/ja/System.Globalization.xml",
  5640. "ref/netcore50/ko/System.Globalization.xml",
  5641. "ref/netcore50/ru/System.Globalization.xml",
  5642. "ref/netcore50/zh-hans/System.Globalization.xml",
  5643. "ref/netcore50/zh-hant/System.Globalization.xml",
  5644. "ref/netstandard1.0/System.Globalization.dll",
  5645. "ref/netstandard1.0/System.Globalization.xml",
  5646. "ref/netstandard1.0/de/System.Globalization.xml",
  5647. "ref/netstandard1.0/es/System.Globalization.xml",
  5648. "ref/netstandard1.0/fr/System.Globalization.xml",
  5649. "ref/netstandard1.0/it/System.Globalization.xml",
  5650. "ref/netstandard1.0/ja/System.Globalization.xml",
  5651. "ref/netstandard1.0/ko/System.Globalization.xml",
  5652. "ref/netstandard1.0/ru/System.Globalization.xml",
  5653. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5654. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5655. "ref/netstandard1.3/System.Globalization.dll",
  5656. "ref/netstandard1.3/System.Globalization.xml",
  5657. "ref/netstandard1.3/de/System.Globalization.xml",
  5658. "ref/netstandard1.3/es/System.Globalization.xml",
  5659. "ref/netstandard1.3/fr/System.Globalization.xml",
  5660. "ref/netstandard1.3/it/System.Globalization.xml",
  5661. "ref/netstandard1.3/ja/System.Globalization.xml",
  5662. "ref/netstandard1.3/ko/System.Globalization.xml",
  5663. "ref/netstandard1.3/ru/System.Globalization.xml",
  5664. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5665. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5666. "ref/portable-net45+win8+wp8+wpa81/_._",
  5667. "ref/win8/_._",
  5668. "ref/wp80/_._",
  5669. "ref/wpa81/_._",
  5670. "ref/xamarinios10/_._",
  5671. "ref/xamarinmac20/_._",
  5672. "ref/xamarintvos10/_._",
  5673. "ref/xamarinwatchos10/_._",
  5674. "system.globalization.4.3.0.nupkg.sha512",
  5675. "system.globalization.nuspec"
  5676. ]
  5677. },
  5678. "System.Globalization.Calendars/4.3.0": {
  5679. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5680. "type": "package",
  5681. "path": "system.globalization.calendars/4.3.0",
  5682. "files": [
  5683. ".nupkg.metadata",
  5684. ".signature.p7s",
  5685. "ThirdPartyNotices.txt",
  5686. "dotnet_library_license.txt",
  5687. "lib/MonoAndroid10/_._",
  5688. "lib/MonoTouch10/_._",
  5689. "lib/net46/System.Globalization.Calendars.dll",
  5690. "lib/xamarinios10/_._",
  5691. "lib/xamarinmac20/_._",
  5692. "lib/xamarintvos10/_._",
  5693. "lib/xamarinwatchos10/_._",
  5694. "ref/MonoAndroid10/_._",
  5695. "ref/MonoTouch10/_._",
  5696. "ref/net46/System.Globalization.Calendars.dll",
  5697. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5698. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5699. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5700. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5701. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5702. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5703. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5704. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5705. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5706. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5707. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5708. "ref/xamarinios10/_._",
  5709. "ref/xamarinmac20/_._",
  5710. "ref/xamarintvos10/_._",
  5711. "ref/xamarinwatchos10/_._",
  5712. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5713. "system.globalization.calendars.nuspec"
  5714. ]
  5715. },
  5716. "System.Globalization.Extensions/4.3.0": {
  5717. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5718. "type": "package",
  5719. "path": "system.globalization.extensions/4.3.0",
  5720. "files": [
  5721. ".nupkg.metadata",
  5722. ".signature.p7s",
  5723. "ThirdPartyNotices.txt",
  5724. "dotnet_library_license.txt",
  5725. "lib/MonoAndroid10/_._",
  5726. "lib/MonoTouch10/_._",
  5727. "lib/net46/System.Globalization.Extensions.dll",
  5728. "lib/xamarinios10/_._",
  5729. "lib/xamarinmac20/_._",
  5730. "lib/xamarintvos10/_._",
  5731. "lib/xamarinwatchos10/_._",
  5732. "ref/MonoAndroid10/_._",
  5733. "ref/MonoTouch10/_._",
  5734. "ref/net46/System.Globalization.Extensions.dll",
  5735. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5736. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5737. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5738. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5739. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5740. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5741. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5742. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5743. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5744. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5745. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5746. "ref/xamarinios10/_._",
  5747. "ref/xamarinmac20/_._",
  5748. "ref/xamarintvos10/_._",
  5749. "ref/xamarinwatchos10/_._",
  5750. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5751. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5752. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5753. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5754. "system.globalization.extensions.nuspec"
  5755. ]
  5756. },
  5757. "System.IO/4.3.0": {
  5758. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5759. "type": "package",
  5760. "path": "system.io/4.3.0",
  5761. "files": [
  5762. ".nupkg.metadata",
  5763. ".signature.p7s",
  5764. "ThirdPartyNotices.txt",
  5765. "dotnet_library_license.txt",
  5766. "lib/MonoAndroid10/_._",
  5767. "lib/MonoTouch10/_._",
  5768. "lib/net45/_._",
  5769. "lib/net462/System.IO.dll",
  5770. "lib/portable-net45+win8+wp8+wpa81/_._",
  5771. "lib/win8/_._",
  5772. "lib/wp80/_._",
  5773. "lib/wpa81/_._",
  5774. "lib/xamarinios10/_._",
  5775. "lib/xamarinmac20/_._",
  5776. "lib/xamarintvos10/_._",
  5777. "lib/xamarinwatchos10/_._",
  5778. "ref/MonoAndroid10/_._",
  5779. "ref/MonoTouch10/_._",
  5780. "ref/net45/_._",
  5781. "ref/net462/System.IO.dll",
  5782. "ref/netcore50/System.IO.dll",
  5783. "ref/netcore50/System.IO.xml",
  5784. "ref/netcore50/de/System.IO.xml",
  5785. "ref/netcore50/es/System.IO.xml",
  5786. "ref/netcore50/fr/System.IO.xml",
  5787. "ref/netcore50/it/System.IO.xml",
  5788. "ref/netcore50/ja/System.IO.xml",
  5789. "ref/netcore50/ko/System.IO.xml",
  5790. "ref/netcore50/ru/System.IO.xml",
  5791. "ref/netcore50/zh-hans/System.IO.xml",
  5792. "ref/netcore50/zh-hant/System.IO.xml",
  5793. "ref/netstandard1.0/System.IO.dll",
  5794. "ref/netstandard1.0/System.IO.xml",
  5795. "ref/netstandard1.0/de/System.IO.xml",
  5796. "ref/netstandard1.0/es/System.IO.xml",
  5797. "ref/netstandard1.0/fr/System.IO.xml",
  5798. "ref/netstandard1.0/it/System.IO.xml",
  5799. "ref/netstandard1.0/ja/System.IO.xml",
  5800. "ref/netstandard1.0/ko/System.IO.xml",
  5801. "ref/netstandard1.0/ru/System.IO.xml",
  5802. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5803. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5804. "ref/netstandard1.3/System.IO.dll",
  5805. "ref/netstandard1.3/System.IO.xml",
  5806. "ref/netstandard1.3/de/System.IO.xml",
  5807. "ref/netstandard1.3/es/System.IO.xml",
  5808. "ref/netstandard1.3/fr/System.IO.xml",
  5809. "ref/netstandard1.3/it/System.IO.xml",
  5810. "ref/netstandard1.3/ja/System.IO.xml",
  5811. "ref/netstandard1.3/ko/System.IO.xml",
  5812. "ref/netstandard1.3/ru/System.IO.xml",
  5813. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5814. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5815. "ref/netstandard1.5/System.IO.dll",
  5816. "ref/netstandard1.5/System.IO.xml",
  5817. "ref/netstandard1.5/de/System.IO.xml",
  5818. "ref/netstandard1.5/es/System.IO.xml",
  5819. "ref/netstandard1.5/fr/System.IO.xml",
  5820. "ref/netstandard1.5/it/System.IO.xml",
  5821. "ref/netstandard1.5/ja/System.IO.xml",
  5822. "ref/netstandard1.5/ko/System.IO.xml",
  5823. "ref/netstandard1.5/ru/System.IO.xml",
  5824. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5825. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5826. "ref/portable-net45+win8+wp8+wpa81/_._",
  5827. "ref/win8/_._",
  5828. "ref/wp80/_._",
  5829. "ref/wpa81/_._",
  5830. "ref/xamarinios10/_._",
  5831. "ref/xamarinmac20/_._",
  5832. "ref/xamarintvos10/_._",
  5833. "ref/xamarinwatchos10/_._",
  5834. "system.io.4.3.0.nupkg.sha512",
  5835. "system.io.nuspec"
  5836. ]
  5837. },
  5838. "System.IO.Compression/4.3.0": {
  5839. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5840. "type": "package",
  5841. "path": "system.io.compression/4.3.0",
  5842. "files": [
  5843. ".nupkg.metadata",
  5844. ".signature.p7s",
  5845. "ThirdPartyNotices.txt",
  5846. "dotnet_library_license.txt",
  5847. "lib/MonoAndroid10/_._",
  5848. "lib/MonoTouch10/_._",
  5849. "lib/net45/_._",
  5850. "lib/net46/System.IO.Compression.dll",
  5851. "lib/portable-net45+win8+wpa81/_._",
  5852. "lib/win8/_._",
  5853. "lib/wpa81/_._",
  5854. "lib/xamarinios10/_._",
  5855. "lib/xamarinmac20/_._",
  5856. "lib/xamarintvos10/_._",
  5857. "lib/xamarinwatchos10/_._",
  5858. "ref/MonoAndroid10/_._",
  5859. "ref/MonoTouch10/_._",
  5860. "ref/net45/_._",
  5861. "ref/net46/System.IO.Compression.dll",
  5862. "ref/netcore50/System.IO.Compression.dll",
  5863. "ref/netcore50/System.IO.Compression.xml",
  5864. "ref/netcore50/de/System.IO.Compression.xml",
  5865. "ref/netcore50/es/System.IO.Compression.xml",
  5866. "ref/netcore50/fr/System.IO.Compression.xml",
  5867. "ref/netcore50/it/System.IO.Compression.xml",
  5868. "ref/netcore50/ja/System.IO.Compression.xml",
  5869. "ref/netcore50/ko/System.IO.Compression.xml",
  5870. "ref/netcore50/ru/System.IO.Compression.xml",
  5871. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5872. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5873. "ref/netstandard1.1/System.IO.Compression.dll",
  5874. "ref/netstandard1.1/System.IO.Compression.xml",
  5875. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5876. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5877. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5878. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5879. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5880. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5881. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5882. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5883. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5884. "ref/netstandard1.3/System.IO.Compression.dll",
  5885. "ref/netstandard1.3/System.IO.Compression.xml",
  5886. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5887. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5888. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5889. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5890. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5891. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5892. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5893. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5894. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5895. "ref/portable-net45+win8+wpa81/_._",
  5896. "ref/win8/_._",
  5897. "ref/wpa81/_._",
  5898. "ref/xamarinios10/_._",
  5899. "ref/xamarinmac20/_._",
  5900. "ref/xamarintvos10/_._",
  5901. "ref/xamarinwatchos10/_._",
  5902. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5903. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5904. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5905. "system.io.compression.4.3.0.nupkg.sha512",
  5906. "system.io.compression.nuspec"
  5907. ]
  5908. },
  5909. "System.IO.Compression.ZipFile/4.3.0": {
  5910. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5911. "type": "package",
  5912. "path": "system.io.compression.zipfile/4.3.0",
  5913. "files": [
  5914. ".nupkg.metadata",
  5915. ".signature.p7s",
  5916. "ThirdPartyNotices.txt",
  5917. "dotnet_library_license.txt",
  5918. "lib/MonoAndroid10/_._",
  5919. "lib/MonoTouch10/_._",
  5920. "lib/net46/System.IO.Compression.ZipFile.dll",
  5921. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5922. "lib/xamarinios10/_._",
  5923. "lib/xamarinmac20/_._",
  5924. "lib/xamarintvos10/_._",
  5925. "lib/xamarinwatchos10/_._",
  5926. "ref/MonoAndroid10/_._",
  5927. "ref/MonoTouch10/_._",
  5928. "ref/net46/System.IO.Compression.ZipFile.dll",
  5929. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5930. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5931. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5932. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5933. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5934. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5935. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5936. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5937. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5938. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5939. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5940. "ref/xamarinios10/_._",
  5941. "ref/xamarinmac20/_._",
  5942. "ref/xamarintvos10/_._",
  5943. "ref/xamarinwatchos10/_._",
  5944. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5945. "system.io.compression.zipfile.nuspec"
  5946. ]
  5947. },
  5948. "System.IO.FileSystem/4.3.0": {
  5949. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5950. "type": "package",
  5951. "path": "system.io.filesystem/4.3.0",
  5952. "files": [
  5953. ".nupkg.metadata",
  5954. ".signature.p7s",
  5955. "ThirdPartyNotices.txt",
  5956. "dotnet_library_license.txt",
  5957. "lib/MonoAndroid10/_._",
  5958. "lib/MonoTouch10/_._",
  5959. "lib/net46/System.IO.FileSystem.dll",
  5960. "lib/xamarinios10/_._",
  5961. "lib/xamarinmac20/_._",
  5962. "lib/xamarintvos10/_._",
  5963. "lib/xamarinwatchos10/_._",
  5964. "ref/MonoAndroid10/_._",
  5965. "ref/MonoTouch10/_._",
  5966. "ref/net46/System.IO.FileSystem.dll",
  5967. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5968. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5969. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5970. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5971. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5972. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5973. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5974. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5975. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5976. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5977. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5978. "ref/xamarinios10/_._",
  5979. "ref/xamarinmac20/_._",
  5980. "ref/xamarintvos10/_._",
  5981. "ref/xamarinwatchos10/_._",
  5982. "system.io.filesystem.4.3.0.nupkg.sha512",
  5983. "system.io.filesystem.nuspec"
  5984. ]
  5985. },
  5986. "System.IO.FileSystem.Primitives/4.3.0": {
  5987. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5988. "type": "package",
  5989. "path": "system.io.filesystem.primitives/4.3.0",
  5990. "files": [
  5991. ".nupkg.metadata",
  5992. ".signature.p7s",
  5993. "ThirdPartyNotices.txt",
  5994. "dotnet_library_license.txt",
  5995. "lib/MonoAndroid10/_._",
  5996. "lib/MonoTouch10/_._",
  5997. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5998. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5999. "lib/xamarinios10/_._",
  6000. "lib/xamarinmac20/_._",
  6001. "lib/xamarintvos10/_._",
  6002. "lib/xamarinwatchos10/_._",
  6003. "ref/MonoAndroid10/_._",
  6004. "ref/MonoTouch10/_._",
  6005. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6006. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6007. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6008. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6009. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6010. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6011. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6012. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6013. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6014. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6015. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6016. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6017. "ref/xamarinios10/_._",
  6018. "ref/xamarinmac20/_._",
  6019. "ref/xamarintvos10/_._",
  6020. "ref/xamarinwatchos10/_._",
  6021. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6022. "system.io.filesystem.primitives.nuspec"
  6023. ]
  6024. },
  6025. "System.IO.Pipelines/5.0.0": {
  6026. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6027. "type": "package",
  6028. "path": "system.io.pipelines/5.0.0",
  6029. "files": [
  6030. ".nupkg.metadata",
  6031. ".signature.p7s",
  6032. "Icon.png",
  6033. "LICENSE.TXT",
  6034. "THIRD-PARTY-NOTICES.TXT",
  6035. "lib/net461/System.IO.Pipelines.dll",
  6036. "lib/net461/System.IO.Pipelines.xml",
  6037. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6038. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6039. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6040. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6041. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6042. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6043. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6044. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6045. "system.io.pipelines.5.0.0.nupkg.sha512",
  6046. "system.io.pipelines.nuspec",
  6047. "useSharedDesignerContext.txt",
  6048. "version.txt"
  6049. ]
  6050. },
  6051. "System.Linq/4.3.0": {
  6052. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6053. "type": "package",
  6054. "path": "system.linq/4.3.0",
  6055. "files": [
  6056. ".nupkg.metadata",
  6057. ".signature.p7s",
  6058. "ThirdPartyNotices.txt",
  6059. "dotnet_library_license.txt",
  6060. "lib/MonoAndroid10/_._",
  6061. "lib/MonoTouch10/_._",
  6062. "lib/net45/_._",
  6063. "lib/net463/System.Linq.dll",
  6064. "lib/netcore50/System.Linq.dll",
  6065. "lib/netstandard1.6/System.Linq.dll",
  6066. "lib/portable-net45+win8+wp8+wpa81/_._",
  6067. "lib/win8/_._",
  6068. "lib/wp80/_._",
  6069. "lib/wpa81/_._",
  6070. "lib/xamarinios10/_._",
  6071. "lib/xamarinmac20/_._",
  6072. "lib/xamarintvos10/_._",
  6073. "lib/xamarinwatchos10/_._",
  6074. "ref/MonoAndroid10/_._",
  6075. "ref/MonoTouch10/_._",
  6076. "ref/net45/_._",
  6077. "ref/net463/System.Linq.dll",
  6078. "ref/netcore50/System.Linq.dll",
  6079. "ref/netcore50/System.Linq.xml",
  6080. "ref/netcore50/de/System.Linq.xml",
  6081. "ref/netcore50/es/System.Linq.xml",
  6082. "ref/netcore50/fr/System.Linq.xml",
  6083. "ref/netcore50/it/System.Linq.xml",
  6084. "ref/netcore50/ja/System.Linq.xml",
  6085. "ref/netcore50/ko/System.Linq.xml",
  6086. "ref/netcore50/ru/System.Linq.xml",
  6087. "ref/netcore50/zh-hans/System.Linq.xml",
  6088. "ref/netcore50/zh-hant/System.Linq.xml",
  6089. "ref/netstandard1.0/System.Linq.dll",
  6090. "ref/netstandard1.0/System.Linq.xml",
  6091. "ref/netstandard1.0/de/System.Linq.xml",
  6092. "ref/netstandard1.0/es/System.Linq.xml",
  6093. "ref/netstandard1.0/fr/System.Linq.xml",
  6094. "ref/netstandard1.0/it/System.Linq.xml",
  6095. "ref/netstandard1.0/ja/System.Linq.xml",
  6096. "ref/netstandard1.0/ko/System.Linq.xml",
  6097. "ref/netstandard1.0/ru/System.Linq.xml",
  6098. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6099. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6100. "ref/netstandard1.6/System.Linq.dll",
  6101. "ref/netstandard1.6/System.Linq.xml",
  6102. "ref/netstandard1.6/de/System.Linq.xml",
  6103. "ref/netstandard1.6/es/System.Linq.xml",
  6104. "ref/netstandard1.6/fr/System.Linq.xml",
  6105. "ref/netstandard1.6/it/System.Linq.xml",
  6106. "ref/netstandard1.6/ja/System.Linq.xml",
  6107. "ref/netstandard1.6/ko/System.Linq.xml",
  6108. "ref/netstandard1.6/ru/System.Linq.xml",
  6109. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6110. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6111. "ref/portable-net45+win8+wp8+wpa81/_._",
  6112. "ref/win8/_._",
  6113. "ref/wp80/_._",
  6114. "ref/wpa81/_._",
  6115. "ref/xamarinios10/_._",
  6116. "ref/xamarinmac20/_._",
  6117. "ref/xamarintvos10/_._",
  6118. "ref/xamarinwatchos10/_._",
  6119. "system.linq.4.3.0.nupkg.sha512",
  6120. "system.linq.nuspec"
  6121. ]
  6122. },
  6123. "System.Linq.Expressions/4.3.0": {
  6124. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6125. "type": "package",
  6126. "path": "system.linq.expressions/4.3.0",
  6127. "files": [
  6128. ".nupkg.metadata",
  6129. ".signature.p7s",
  6130. "ThirdPartyNotices.txt",
  6131. "dotnet_library_license.txt",
  6132. "lib/MonoAndroid10/_._",
  6133. "lib/MonoTouch10/_._",
  6134. "lib/net45/_._",
  6135. "lib/net463/System.Linq.Expressions.dll",
  6136. "lib/netcore50/System.Linq.Expressions.dll",
  6137. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6138. "lib/portable-net45+win8+wp8+wpa81/_._",
  6139. "lib/win8/_._",
  6140. "lib/wp80/_._",
  6141. "lib/wpa81/_._",
  6142. "lib/xamarinios10/_._",
  6143. "lib/xamarinmac20/_._",
  6144. "lib/xamarintvos10/_._",
  6145. "lib/xamarinwatchos10/_._",
  6146. "ref/MonoAndroid10/_._",
  6147. "ref/MonoTouch10/_._",
  6148. "ref/net45/_._",
  6149. "ref/net463/System.Linq.Expressions.dll",
  6150. "ref/netcore50/System.Linq.Expressions.dll",
  6151. "ref/netcore50/System.Linq.Expressions.xml",
  6152. "ref/netcore50/de/System.Linq.Expressions.xml",
  6153. "ref/netcore50/es/System.Linq.Expressions.xml",
  6154. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6155. "ref/netcore50/it/System.Linq.Expressions.xml",
  6156. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6157. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6158. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6159. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6160. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6161. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6162. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6163. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6164. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6165. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6166. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6167. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6168. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6169. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6170. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6171. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6172. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6173. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6174. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6175. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6176. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6177. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6178. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6179. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6180. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6181. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6182. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6183. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6184. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6185. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6186. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6187. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6188. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6189. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6190. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6191. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6192. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6193. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6194. "ref/portable-net45+win8+wp8+wpa81/_._",
  6195. "ref/win8/_._",
  6196. "ref/wp80/_._",
  6197. "ref/wpa81/_._",
  6198. "ref/xamarinios10/_._",
  6199. "ref/xamarinmac20/_._",
  6200. "ref/xamarintvos10/_._",
  6201. "ref/xamarinwatchos10/_._",
  6202. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6203. "system.linq.expressions.4.3.0.nupkg.sha512",
  6204. "system.linq.expressions.nuspec"
  6205. ]
  6206. },
  6207. "System.Memory/4.5.5": {
  6208. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6209. "type": "package",
  6210. "path": "system.memory/4.5.5",
  6211. "files": [
  6212. ".nupkg.metadata",
  6213. ".signature.p7s",
  6214. "LICENSE.TXT",
  6215. "THIRD-PARTY-NOTICES.TXT",
  6216. "lib/net461/System.Memory.dll",
  6217. "lib/net461/System.Memory.xml",
  6218. "lib/netcoreapp2.1/_._",
  6219. "lib/netstandard1.1/System.Memory.dll",
  6220. "lib/netstandard1.1/System.Memory.xml",
  6221. "lib/netstandard2.0/System.Memory.dll",
  6222. "lib/netstandard2.0/System.Memory.xml",
  6223. "ref/netcoreapp2.1/_._",
  6224. "system.memory.4.5.5.nupkg.sha512",
  6225. "system.memory.nuspec",
  6226. "useSharedDesignerContext.txt",
  6227. "version.txt"
  6228. ]
  6229. },
  6230. "System.Net.Http/4.3.0": {
  6231. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6232. "type": "package",
  6233. "path": "system.net.http/4.3.0",
  6234. "files": [
  6235. ".nupkg.metadata",
  6236. ".signature.p7s",
  6237. "ThirdPartyNotices.txt",
  6238. "dotnet_library_license.txt",
  6239. "lib/Xamarinmac20/_._",
  6240. "lib/monoandroid10/_._",
  6241. "lib/monotouch10/_._",
  6242. "lib/net45/_._",
  6243. "lib/net46/System.Net.Http.dll",
  6244. "lib/portable-net45+win8+wpa81/_._",
  6245. "lib/win8/_._",
  6246. "lib/wpa81/_._",
  6247. "lib/xamarinios10/_._",
  6248. "lib/xamarintvos10/_._",
  6249. "lib/xamarinwatchos10/_._",
  6250. "ref/Xamarinmac20/_._",
  6251. "ref/monoandroid10/_._",
  6252. "ref/monotouch10/_._",
  6253. "ref/net45/_._",
  6254. "ref/net46/System.Net.Http.dll",
  6255. "ref/net46/System.Net.Http.xml",
  6256. "ref/net46/de/System.Net.Http.xml",
  6257. "ref/net46/es/System.Net.Http.xml",
  6258. "ref/net46/fr/System.Net.Http.xml",
  6259. "ref/net46/it/System.Net.Http.xml",
  6260. "ref/net46/ja/System.Net.Http.xml",
  6261. "ref/net46/ko/System.Net.Http.xml",
  6262. "ref/net46/ru/System.Net.Http.xml",
  6263. "ref/net46/zh-hans/System.Net.Http.xml",
  6264. "ref/net46/zh-hant/System.Net.Http.xml",
  6265. "ref/netcore50/System.Net.Http.dll",
  6266. "ref/netcore50/System.Net.Http.xml",
  6267. "ref/netcore50/de/System.Net.Http.xml",
  6268. "ref/netcore50/es/System.Net.Http.xml",
  6269. "ref/netcore50/fr/System.Net.Http.xml",
  6270. "ref/netcore50/it/System.Net.Http.xml",
  6271. "ref/netcore50/ja/System.Net.Http.xml",
  6272. "ref/netcore50/ko/System.Net.Http.xml",
  6273. "ref/netcore50/ru/System.Net.Http.xml",
  6274. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6275. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6276. "ref/netstandard1.1/System.Net.Http.dll",
  6277. "ref/netstandard1.1/System.Net.Http.xml",
  6278. "ref/netstandard1.1/de/System.Net.Http.xml",
  6279. "ref/netstandard1.1/es/System.Net.Http.xml",
  6280. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6281. "ref/netstandard1.1/it/System.Net.Http.xml",
  6282. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6283. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6284. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6285. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6286. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6287. "ref/netstandard1.3/System.Net.Http.dll",
  6288. "ref/netstandard1.3/System.Net.Http.xml",
  6289. "ref/netstandard1.3/de/System.Net.Http.xml",
  6290. "ref/netstandard1.3/es/System.Net.Http.xml",
  6291. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6292. "ref/netstandard1.3/it/System.Net.Http.xml",
  6293. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6294. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6295. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6296. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6297. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6298. "ref/portable-net45+win8+wpa81/_._",
  6299. "ref/win8/_._",
  6300. "ref/wpa81/_._",
  6301. "ref/xamarinios10/_._",
  6302. "ref/xamarintvos10/_._",
  6303. "ref/xamarinwatchos10/_._",
  6304. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6305. "runtimes/win/lib/net46/System.Net.Http.dll",
  6306. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6307. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6308. "system.net.http.4.3.0.nupkg.sha512",
  6309. "system.net.http.nuspec"
  6310. ]
  6311. },
  6312. "System.Net.NameResolution/4.3.0": {
  6313. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6314. "type": "package",
  6315. "path": "system.net.nameresolution/4.3.0",
  6316. "files": [
  6317. ".nupkg.metadata",
  6318. ".signature.p7s",
  6319. "ThirdPartyNotices.txt",
  6320. "dotnet_library_license.txt",
  6321. "lib/MonoAndroid10/_._",
  6322. "lib/MonoTouch10/_._",
  6323. "lib/net46/System.Net.NameResolution.dll",
  6324. "lib/xamarinios10/_._",
  6325. "lib/xamarinmac20/_._",
  6326. "lib/xamarintvos10/_._",
  6327. "lib/xamarinwatchos10/_._",
  6328. "ref/MonoAndroid10/_._",
  6329. "ref/MonoTouch10/_._",
  6330. "ref/net46/System.Net.NameResolution.dll",
  6331. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6332. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6333. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6334. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6335. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6336. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6337. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6338. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6339. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6340. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6341. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6342. "ref/xamarinios10/_._",
  6343. "ref/xamarinmac20/_._",
  6344. "ref/xamarintvos10/_._",
  6345. "ref/xamarinwatchos10/_._",
  6346. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6347. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6348. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6349. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6350. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6351. "system.net.nameresolution.nuspec"
  6352. ]
  6353. },
  6354. "System.Net.Primitives/4.3.0": {
  6355. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6356. "type": "package",
  6357. "path": "system.net.primitives/4.3.0",
  6358. "files": [
  6359. ".nupkg.metadata",
  6360. ".signature.p7s",
  6361. "ThirdPartyNotices.txt",
  6362. "dotnet_library_license.txt",
  6363. "lib/MonoAndroid10/_._",
  6364. "lib/MonoTouch10/_._",
  6365. "lib/net45/_._",
  6366. "lib/portable-net45+win8+wp8+wpa81/_._",
  6367. "lib/win8/_._",
  6368. "lib/wp80/_._",
  6369. "lib/wpa81/_._",
  6370. "lib/xamarinios10/_._",
  6371. "lib/xamarinmac20/_._",
  6372. "lib/xamarintvos10/_._",
  6373. "lib/xamarinwatchos10/_._",
  6374. "ref/MonoAndroid10/_._",
  6375. "ref/MonoTouch10/_._",
  6376. "ref/net45/_._",
  6377. "ref/netcore50/System.Net.Primitives.dll",
  6378. "ref/netcore50/System.Net.Primitives.xml",
  6379. "ref/netcore50/de/System.Net.Primitives.xml",
  6380. "ref/netcore50/es/System.Net.Primitives.xml",
  6381. "ref/netcore50/fr/System.Net.Primitives.xml",
  6382. "ref/netcore50/it/System.Net.Primitives.xml",
  6383. "ref/netcore50/ja/System.Net.Primitives.xml",
  6384. "ref/netcore50/ko/System.Net.Primitives.xml",
  6385. "ref/netcore50/ru/System.Net.Primitives.xml",
  6386. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6387. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6388. "ref/netstandard1.0/System.Net.Primitives.dll",
  6389. "ref/netstandard1.0/System.Net.Primitives.xml",
  6390. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6391. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6392. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6393. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6394. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6395. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6396. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6397. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6398. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6399. "ref/netstandard1.1/System.Net.Primitives.dll",
  6400. "ref/netstandard1.1/System.Net.Primitives.xml",
  6401. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6402. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6403. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6404. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6405. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6406. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6407. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6408. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6409. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6410. "ref/netstandard1.3/System.Net.Primitives.dll",
  6411. "ref/netstandard1.3/System.Net.Primitives.xml",
  6412. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6413. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6414. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6415. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6416. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6417. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6418. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6419. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6420. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6421. "ref/portable-net45+win8+wp8+wpa81/_._",
  6422. "ref/win8/_._",
  6423. "ref/wp80/_._",
  6424. "ref/wpa81/_._",
  6425. "ref/xamarinios10/_._",
  6426. "ref/xamarinmac20/_._",
  6427. "ref/xamarintvos10/_._",
  6428. "ref/xamarinwatchos10/_._",
  6429. "system.net.primitives.4.3.0.nupkg.sha512",
  6430. "system.net.primitives.nuspec"
  6431. ]
  6432. },
  6433. "System.Net.Security/4.3.0": {
  6434. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6435. "type": "package",
  6436. "path": "system.net.security/4.3.0",
  6437. "files": [
  6438. ".nupkg.metadata",
  6439. ".signature.p7s",
  6440. "ThirdPartyNotices.txt",
  6441. "dotnet_library_license.txt",
  6442. "lib/MonoAndroid10/_._",
  6443. "lib/MonoTouch10/_._",
  6444. "lib/net46/System.Net.Security.dll",
  6445. "lib/xamarinios10/_._",
  6446. "lib/xamarinmac20/_._",
  6447. "lib/xamarintvos10/_._",
  6448. "lib/xamarinwatchos10/_._",
  6449. "ref/MonoAndroid10/_._",
  6450. "ref/MonoTouch10/_._",
  6451. "ref/net46/System.Net.Security.dll",
  6452. "ref/netstandard1.3/System.Net.Security.dll",
  6453. "ref/netstandard1.3/System.Net.Security.xml",
  6454. "ref/netstandard1.3/de/System.Net.Security.xml",
  6455. "ref/netstandard1.3/es/System.Net.Security.xml",
  6456. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6457. "ref/netstandard1.3/it/System.Net.Security.xml",
  6458. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6459. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6460. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6461. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6462. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6463. "ref/xamarinios10/_._",
  6464. "ref/xamarinmac20/_._",
  6465. "ref/xamarintvos10/_._",
  6466. "ref/xamarinwatchos10/_._",
  6467. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6468. "runtimes/win/lib/net46/System.Net.Security.dll",
  6469. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6470. "runtimes/win7/lib/netcore50/_._",
  6471. "system.net.security.4.3.0.nupkg.sha512",
  6472. "system.net.security.nuspec"
  6473. ]
  6474. },
  6475. "System.Net.Sockets/4.3.0": {
  6476. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6477. "type": "package",
  6478. "path": "system.net.sockets/4.3.0",
  6479. "files": [
  6480. ".nupkg.metadata",
  6481. ".signature.p7s",
  6482. "ThirdPartyNotices.txt",
  6483. "dotnet_library_license.txt",
  6484. "lib/MonoAndroid10/_._",
  6485. "lib/MonoTouch10/_._",
  6486. "lib/net46/System.Net.Sockets.dll",
  6487. "lib/xamarinios10/_._",
  6488. "lib/xamarinmac20/_._",
  6489. "lib/xamarintvos10/_._",
  6490. "lib/xamarinwatchos10/_._",
  6491. "ref/MonoAndroid10/_._",
  6492. "ref/MonoTouch10/_._",
  6493. "ref/net46/System.Net.Sockets.dll",
  6494. "ref/netstandard1.3/System.Net.Sockets.dll",
  6495. "ref/netstandard1.3/System.Net.Sockets.xml",
  6496. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6497. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6498. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6499. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6500. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6501. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6502. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6503. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6504. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6505. "ref/xamarinios10/_._",
  6506. "ref/xamarinmac20/_._",
  6507. "ref/xamarintvos10/_._",
  6508. "ref/xamarinwatchos10/_._",
  6509. "system.net.sockets.4.3.0.nupkg.sha512",
  6510. "system.net.sockets.nuspec"
  6511. ]
  6512. },
  6513. "System.ObjectModel/4.3.0": {
  6514. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6515. "type": "package",
  6516. "path": "system.objectmodel/4.3.0",
  6517. "files": [
  6518. ".nupkg.metadata",
  6519. ".signature.p7s",
  6520. "ThirdPartyNotices.txt",
  6521. "dotnet_library_license.txt",
  6522. "lib/MonoAndroid10/_._",
  6523. "lib/MonoTouch10/_._",
  6524. "lib/net45/_._",
  6525. "lib/netcore50/System.ObjectModel.dll",
  6526. "lib/netstandard1.3/System.ObjectModel.dll",
  6527. "lib/portable-net45+win8+wp8+wpa81/_._",
  6528. "lib/win8/_._",
  6529. "lib/wp80/_._",
  6530. "lib/wpa81/_._",
  6531. "lib/xamarinios10/_._",
  6532. "lib/xamarinmac20/_._",
  6533. "lib/xamarintvos10/_._",
  6534. "lib/xamarinwatchos10/_._",
  6535. "ref/MonoAndroid10/_._",
  6536. "ref/MonoTouch10/_._",
  6537. "ref/net45/_._",
  6538. "ref/netcore50/System.ObjectModel.dll",
  6539. "ref/netcore50/System.ObjectModel.xml",
  6540. "ref/netcore50/de/System.ObjectModel.xml",
  6541. "ref/netcore50/es/System.ObjectModel.xml",
  6542. "ref/netcore50/fr/System.ObjectModel.xml",
  6543. "ref/netcore50/it/System.ObjectModel.xml",
  6544. "ref/netcore50/ja/System.ObjectModel.xml",
  6545. "ref/netcore50/ko/System.ObjectModel.xml",
  6546. "ref/netcore50/ru/System.ObjectModel.xml",
  6547. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6548. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6549. "ref/netstandard1.0/System.ObjectModel.dll",
  6550. "ref/netstandard1.0/System.ObjectModel.xml",
  6551. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6552. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6553. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6554. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6555. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6556. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6557. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6558. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6559. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6560. "ref/netstandard1.3/System.ObjectModel.dll",
  6561. "ref/netstandard1.3/System.ObjectModel.xml",
  6562. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6563. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6564. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6565. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6566. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6567. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6568. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6569. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6570. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6571. "ref/portable-net45+win8+wp8+wpa81/_._",
  6572. "ref/win8/_._",
  6573. "ref/wp80/_._",
  6574. "ref/wpa81/_._",
  6575. "ref/xamarinios10/_._",
  6576. "ref/xamarinmac20/_._",
  6577. "ref/xamarintvos10/_._",
  6578. "ref/xamarinwatchos10/_._",
  6579. "system.objectmodel.4.3.0.nupkg.sha512",
  6580. "system.objectmodel.nuspec"
  6581. ]
  6582. },
  6583. "System.Reflection/4.3.0": {
  6584. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6585. "type": "package",
  6586. "path": "system.reflection/4.3.0",
  6587. "files": [
  6588. ".nupkg.metadata",
  6589. ".signature.p7s",
  6590. "ThirdPartyNotices.txt",
  6591. "dotnet_library_license.txt",
  6592. "lib/MonoAndroid10/_._",
  6593. "lib/MonoTouch10/_._",
  6594. "lib/net45/_._",
  6595. "lib/net462/System.Reflection.dll",
  6596. "lib/portable-net45+win8+wp8+wpa81/_._",
  6597. "lib/win8/_._",
  6598. "lib/wp80/_._",
  6599. "lib/wpa81/_._",
  6600. "lib/xamarinios10/_._",
  6601. "lib/xamarinmac20/_._",
  6602. "lib/xamarintvos10/_._",
  6603. "lib/xamarinwatchos10/_._",
  6604. "ref/MonoAndroid10/_._",
  6605. "ref/MonoTouch10/_._",
  6606. "ref/net45/_._",
  6607. "ref/net462/System.Reflection.dll",
  6608. "ref/netcore50/System.Reflection.dll",
  6609. "ref/netcore50/System.Reflection.xml",
  6610. "ref/netcore50/de/System.Reflection.xml",
  6611. "ref/netcore50/es/System.Reflection.xml",
  6612. "ref/netcore50/fr/System.Reflection.xml",
  6613. "ref/netcore50/it/System.Reflection.xml",
  6614. "ref/netcore50/ja/System.Reflection.xml",
  6615. "ref/netcore50/ko/System.Reflection.xml",
  6616. "ref/netcore50/ru/System.Reflection.xml",
  6617. "ref/netcore50/zh-hans/System.Reflection.xml",
  6618. "ref/netcore50/zh-hant/System.Reflection.xml",
  6619. "ref/netstandard1.0/System.Reflection.dll",
  6620. "ref/netstandard1.0/System.Reflection.xml",
  6621. "ref/netstandard1.0/de/System.Reflection.xml",
  6622. "ref/netstandard1.0/es/System.Reflection.xml",
  6623. "ref/netstandard1.0/fr/System.Reflection.xml",
  6624. "ref/netstandard1.0/it/System.Reflection.xml",
  6625. "ref/netstandard1.0/ja/System.Reflection.xml",
  6626. "ref/netstandard1.0/ko/System.Reflection.xml",
  6627. "ref/netstandard1.0/ru/System.Reflection.xml",
  6628. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6629. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6630. "ref/netstandard1.3/System.Reflection.dll",
  6631. "ref/netstandard1.3/System.Reflection.xml",
  6632. "ref/netstandard1.3/de/System.Reflection.xml",
  6633. "ref/netstandard1.3/es/System.Reflection.xml",
  6634. "ref/netstandard1.3/fr/System.Reflection.xml",
  6635. "ref/netstandard1.3/it/System.Reflection.xml",
  6636. "ref/netstandard1.3/ja/System.Reflection.xml",
  6637. "ref/netstandard1.3/ko/System.Reflection.xml",
  6638. "ref/netstandard1.3/ru/System.Reflection.xml",
  6639. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6640. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6641. "ref/netstandard1.5/System.Reflection.dll",
  6642. "ref/netstandard1.5/System.Reflection.xml",
  6643. "ref/netstandard1.5/de/System.Reflection.xml",
  6644. "ref/netstandard1.5/es/System.Reflection.xml",
  6645. "ref/netstandard1.5/fr/System.Reflection.xml",
  6646. "ref/netstandard1.5/it/System.Reflection.xml",
  6647. "ref/netstandard1.5/ja/System.Reflection.xml",
  6648. "ref/netstandard1.5/ko/System.Reflection.xml",
  6649. "ref/netstandard1.5/ru/System.Reflection.xml",
  6650. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6651. "ref/netstandard1.5/zh-hant/System.Reflection.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.reflection.4.3.0.nupkg.sha512",
  6661. "system.reflection.nuspec"
  6662. ]
  6663. },
  6664. "System.Reflection.Emit/4.7.0": {
  6665. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  6666. "type": "package",
  6667. "path": "system.reflection.emit/4.7.0",
  6668. "files": [
  6669. ".nupkg.metadata",
  6670. ".signature.p7s",
  6671. "LICENSE.TXT",
  6672. "THIRD-PARTY-NOTICES.TXT",
  6673. "lib/MonoAndroid10/_._",
  6674. "lib/MonoTouch10/_._",
  6675. "lib/net45/_._",
  6676. "lib/netcore50/System.Reflection.Emit.dll",
  6677. "lib/netcoreapp2.0/_._",
  6678. "lib/netstandard1.1/System.Reflection.Emit.dll",
  6679. "lib/netstandard1.1/System.Reflection.Emit.xml",
  6680. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6681. "lib/netstandard2.0/System.Reflection.Emit.dll",
  6682. "lib/netstandard2.0/System.Reflection.Emit.xml",
  6683. "lib/netstandard2.1/_._",
  6684. "lib/xamarinios10/_._",
  6685. "lib/xamarinmac20/_._",
  6686. "lib/xamarintvos10/_._",
  6687. "lib/xamarinwatchos10/_._",
  6688. "ref/MonoAndroid10/_._",
  6689. "ref/MonoTouch10/_._",
  6690. "ref/net45/_._",
  6691. "ref/netcoreapp2.0/_._",
  6692. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6693. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6694. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6695. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6696. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6697. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6698. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6699. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6700. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6701. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6702. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6703. "ref/netstandard2.0/System.Reflection.Emit.dll",
  6704. "ref/netstandard2.0/System.Reflection.Emit.xml",
  6705. "ref/netstandard2.1/_._",
  6706. "ref/xamarinios10/_._",
  6707. "ref/xamarinmac20/_._",
  6708. "ref/xamarintvos10/_._",
  6709. "ref/xamarinwatchos10/_._",
  6710. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  6711. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  6712. "system.reflection.emit.4.7.0.nupkg.sha512",
  6713. "system.reflection.emit.nuspec",
  6714. "useSharedDesignerContext.txt",
  6715. "version.txt"
  6716. ]
  6717. },
  6718. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6719. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6720. "type": "package",
  6721. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6722. "files": [
  6723. ".nupkg.metadata",
  6724. ".signature.p7s",
  6725. "ThirdPartyNotices.txt",
  6726. "dotnet_library_license.txt",
  6727. "lib/MonoAndroid10/_._",
  6728. "lib/MonoTouch10/_._",
  6729. "lib/net45/_._",
  6730. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6731. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6732. "lib/portable-net45+wp8/_._",
  6733. "lib/wp80/_._",
  6734. "lib/xamarinios10/_._",
  6735. "lib/xamarinmac20/_._",
  6736. "lib/xamarintvos10/_._",
  6737. "lib/xamarinwatchos10/_._",
  6738. "ref/MonoAndroid10/_._",
  6739. "ref/MonoTouch10/_._",
  6740. "ref/net45/_._",
  6741. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6742. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6743. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6744. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6745. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6746. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6747. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6748. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6749. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6750. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6751. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6752. "ref/portable-net45+wp8/_._",
  6753. "ref/wp80/_._",
  6754. "ref/xamarinios10/_._",
  6755. "ref/xamarinmac20/_._",
  6756. "ref/xamarintvos10/_._",
  6757. "ref/xamarinwatchos10/_._",
  6758. "runtimes/aot/lib/netcore50/_._",
  6759. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6760. "system.reflection.emit.ilgeneration.nuspec"
  6761. ]
  6762. },
  6763. "System.Reflection.Emit.Lightweight/4.3.0": {
  6764. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6765. "type": "package",
  6766. "path": "system.reflection.emit.lightweight/4.3.0",
  6767. "files": [
  6768. ".nupkg.metadata",
  6769. ".signature.p7s",
  6770. "ThirdPartyNotices.txt",
  6771. "dotnet_library_license.txt",
  6772. "lib/MonoAndroid10/_._",
  6773. "lib/MonoTouch10/_._",
  6774. "lib/net45/_._",
  6775. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6776. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6777. "lib/portable-net45+wp8/_._",
  6778. "lib/wp80/_._",
  6779. "lib/xamarinios10/_._",
  6780. "lib/xamarinmac20/_._",
  6781. "lib/xamarintvos10/_._",
  6782. "lib/xamarinwatchos10/_._",
  6783. "ref/MonoAndroid10/_._",
  6784. "ref/MonoTouch10/_._",
  6785. "ref/net45/_._",
  6786. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6787. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6788. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6789. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6790. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6791. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6792. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6793. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6794. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6795. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6796. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6797. "ref/portable-net45+wp8/_._",
  6798. "ref/wp80/_._",
  6799. "ref/xamarinios10/_._",
  6800. "ref/xamarinmac20/_._",
  6801. "ref/xamarintvos10/_._",
  6802. "ref/xamarinwatchos10/_._",
  6803. "runtimes/aot/lib/netcore50/_._",
  6804. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6805. "system.reflection.emit.lightweight.nuspec"
  6806. ]
  6807. },
  6808. "System.Reflection.Extensions/4.3.0": {
  6809. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6810. "type": "package",
  6811. "path": "system.reflection.extensions/4.3.0",
  6812. "files": [
  6813. ".nupkg.metadata",
  6814. ".signature.p7s",
  6815. "ThirdPartyNotices.txt",
  6816. "dotnet_library_license.txt",
  6817. "lib/MonoAndroid10/_._",
  6818. "lib/MonoTouch10/_._",
  6819. "lib/net45/_._",
  6820. "lib/portable-net45+win8+wp8+wpa81/_._",
  6821. "lib/win8/_._",
  6822. "lib/wp80/_._",
  6823. "lib/wpa81/_._",
  6824. "lib/xamarinios10/_._",
  6825. "lib/xamarinmac20/_._",
  6826. "lib/xamarintvos10/_._",
  6827. "lib/xamarinwatchos10/_._",
  6828. "ref/MonoAndroid10/_._",
  6829. "ref/MonoTouch10/_._",
  6830. "ref/net45/_._",
  6831. "ref/netcore50/System.Reflection.Extensions.dll",
  6832. "ref/netcore50/System.Reflection.Extensions.xml",
  6833. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6834. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6835. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6836. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6837. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6838. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6839. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6840. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6841. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6842. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6843. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6844. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6845. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6846. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6847. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6848. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6849. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6850. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6851. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6852. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6853. "ref/portable-net45+win8+wp8+wpa81/_._",
  6854. "ref/win8/_._",
  6855. "ref/wp80/_._",
  6856. "ref/wpa81/_._",
  6857. "ref/xamarinios10/_._",
  6858. "ref/xamarinmac20/_._",
  6859. "ref/xamarintvos10/_._",
  6860. "ref/xamarinwatchos10/_._",
  6861. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6862. "system.reflection.extensions.nuspec"
  6863. ]
  6864. },
  6865. "System.Reflection.Primitives/4.3.0": {
  6866. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6867. "type": "package",
  6868. "path": "system.reflection.primitives/4.3.0",
  6869. "files": [
  6870. ".nupkg.metadata",
  6871. ".signature.p7s",
  6872. "ThirdPartyNotices.txt",
  6873. "dotnet_library_license.txt",
  6874. "lib/MonoAndroid10/_._",
  6875. "lib/MonoTouch10/_._",
  6876. "lib/net45/_._",
  6877. "lib/portable-net45+win8+wp8+wpa81/_._",
  6878. "lib/win8/_._",
  6879. "lib/wp80/_._",
  6880. "lib/wpa81/_._",
  6881. "lib/xamarinios10/_._",
  6882. "lib/xamarinmac20/_._",
  6883. "lib/xamarintvos10/_._",
  6884. "lib/xamarinwatchos10/_._",
  6885. "ref/MonoAndroid10/_._",
  6886. "ref/MonoTouch10/_._",
  6887. "ref/net45/_._",
  6888. "ref/netcore50/System.Reflection.Primitives.dll",
  6889. "ref/netcore50/System.Reflection.Primitives.xml",
  6890. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6891. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6892. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6893. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6894. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6895. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6896. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6897. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6898. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6899. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6900. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6901. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6902. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6903. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6904. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6905. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6906. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6907. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6908. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6909. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6910. "ref/portable-net45+win8+wp8+wpa81/_._",
  6911. "ref/win8/_._",
  6912. "ref/wp80/_._",
  6913. "ref/wpa81/_._",
  6914. "ref/xamarinios10/_._",
  6915. "ref/xamarinmac20/_._",
  6916. "ref/xamarintvos10/_._",
  6917. "ref/xamarinwatchos10/_._",
  6918. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6919. "system.reflection.primitives.nuspec"
  6920. ]
  6921. },
  6922. "System.Reflection.TypeExtensions/4.3.0": {
  6923. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6924. "type": "package",
  6925. "path": "system.reflection.typeextensions/4.3.0",
  6926. "files": [
  6927. ".nupkg.metadata",
  6928. ".signature.p7s",
  6929. "ThirdPartyNotices.txt",
  6930. "dotnet_library_license.txt",
  6931. "lib/MonoAndroid10/_._",
  6932. "lib/MonoTouch10/_._",
  6933. "lib/net46/System.Reflection.TypeExtensions.dll",
  6934. "lib/net462/System.Reflection.TypeExtensions.dll",
  6935. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6936. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6937. "lib/xamarinios10/_._",
  6938. "lib/xamarinmac20/_._",
  6939. "lib/xamarintvos10/_._",
  6940. "lib/xamarinwatchos10/_._",
  6941. "ref/MonoAndroid10/_._",
  6942. "ref/MonoTouch10/_._",
  6943. "ref/net46/System.Reflection.TypeExtensions.dll",
  6944. "ref/net462/System.Reflection.TypeExtensions.dll",
  6945. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6946. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6947. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6948. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6949. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6950. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6951. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6952. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6953. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6954. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6955. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6956. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6957. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6958. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6959. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6960. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6961. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6962. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6963. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6964. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6965. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6966. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6967. "ref/xamarinios10/_._",
  6968. "ref/xamarinmac20/_._",
  6969. "ref/xamarintvos10/_._",
  6970. "ref/xamarinwatchos10/_._",
  6971. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6972. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6973. "system.reflection.typeextensions.nuspec"
  6974. ]
  6975. },
  6976. "System.Resources.ResourceManager/4.3.0": {
  6977. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6978. "type": "package",
  6979. "path": "system.resources.resourcemanager/4.3.0",
  6980. "files": [
  6981. ".nupkg.metadata",
  6982. ".signature.p7s",
  6983. "ThirdPartyNotices.txt",
  6984. "dotnet_library_license.txt",
  6985. "lib/MonoAndroid10/_._",
  6986. "lib/MonoTouch10/_._",
  6987. "lib/net45/_._",
  6988. "lib/portable-net45+win8+wp8+wpa81/_._",
  6989. "lib/win8/_._",
  6990. "lib/wp80/_._",
  6991. "lib/wpa81/_._",
  6992. "lib/xamarinios10/_._",
  6993. "lib/xamarinmac20/_._",
  6994. "lib/xamarintvos10/_._",
  6995. "lib/xamarinwatchos10/_._",
  6996. "ref/MonoAndroid10/_._",
  6997. "ref/MonoTouch10/_._",
  6998. "ref/net45/_._",
  6999. "ref/netcore50/System.Resources.ResourceManager.dll",
  7000. "ref/netcore50/System.Resources.ResourceManager.xml",
  7001. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7002. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7003. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7004. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7005. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7006. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7007. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7008. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7009. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7010. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7011. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7012. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7013. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7014. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7015. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7016. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7017. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7018. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7019. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7020. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7021. "ref/portable-net45+win8+wp8+wpa81/_._",
  7022. "ref/win8/_._",
  7023. "ref/wp80/_._",
  7024. "ref/wpa81/_._",
  7025. "ref/xamarinios10/_._",
  7026. "ref/xamarinmac20/_._",
  7027. "ref/xamarintvos10/_._",
  7028. "ref/xamarinwatchos10/_._",
  7029. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7030. "system.resources.resourcemanager.nuspec"
  7031. ]
  7032. },
  7033. "System.Runtime/4.3.0": {
  7034. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7035. "type": "package",
  7036. "path": "system.runtime/4.3.0",
  7037. "files": [
  7038. ".nupkg.metadata",
  7039. ".signature.p7s",
  7040. "ThirdPartyNotices.txt",
  7041. "dotnet_library_license.txt",
  7042. "lib/MonoAndroid10/_._",
  7043. "lib/MonoTouch10/_._",
  7044. "lib/net45/_._",
  7045. "lib/net462/System.Runtime.dll",
  7046. "lib/portable-net45+win8+wp80+wpa81/_._",
  7047. "lib/win8/_._",
  7048. "lib/wp80/_._",
  7049. "lib/wpa81/_._",
  7050. "lib/xamarinios10/_._",
  7051. "lib/xamarinmac20/_._",
  7052. "lib/xamarintvos10/_._",
  7053. "lib/xamarinwatchos10/_._",
  7054. "ref/MonoAndroid10/_._",
  7055. "ref/MonoTouch10/_._",
  7056. "ref/net45/_._",
  7057. "ref/net462/System.Runtime.dll",
  7058. "ref/netcore50/System.Runtime.dll",
  7059. "ref/netcore50/System.Runtime.xml",
  7060. "ref/netcore50/de/System.Runtime.xml",
  7061. "ref/netcore50/es/System.Runtime.xml",
  7062. "ref/netcore50/fr/System.Runtime.xml",
  7063. "ref/netcore50/it/System.Runtime.xml",
  7064. "ref/netcore50/ja/System.Runtime.xml",
  7065. "ref/netcore50/ko/System.Runtime.xml",
  7066. "ref/netcore50/ru/System.Runtime.xml",
  7067. "ref/netcore50/zh-hans/System.Runtime.xml",
  7068. "ref/netcore50/zh-hant/System.Runtime.xml",
  7069. "ref/netstandard1.0/System.Runtime.dll",
  7070. "ref/netstandard1.0/System.Runtime.xml",
  7071. "ref/netstandard1.0/de/System.Runtime.xml",
  7072. "ref/netstandard1.0/es/System.Runtime.xml",
  7073. "ref/netstandard1.0/fr/System.Runtime.xml",
  7074. "ref/netstandard1.0/it/System.Runtime.xml",
  7075. "ref/netstandard1.0/ja/System.Runtime.xml",
  7076. "ref/netstandard1.0/ko/System.Runtime.xml",
  7077. "ref/netstandard1.0/ru/System.Runtime.xml",
  7078. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7079. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7080. "ref/netstandard1.2/System.Runtime.dll",
  7081. "ref/netstandard1.2/System.Runtime.xml",
  7082. "ref/netstandard1.2/de/System.Runtime.xml",
  7083. "ref/netstandard1.2/es/System.Runtime.xml",
  7084. "ref/netstandard1.2/fr/System.Runtime.xml",
  7085. "ref/netstandard1.2/it/System.Runtime.xml",
  7086. "ref/netstandard1.2/ja/System.Runtime.xml",
  7087. "ref/netstandard1.2/ko/System.Runtime.xml",
  7088. "ref/netstandard1.2/ru/System.Runtime.xml",
  7089. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7090. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7091. "ref/netstandard1.3/System.Runtime.dll",
  7092. "ref/netstandard1.3/System.Runtime.xml",
  7093. "ref/netstandard1.3/de/System.Runtime.xml",
  7094. "ref/netstandard1.3/es/System.Runtime.xml",
  7095. "ref/netstandard1.3/fr/System.Runtime.xml",
  7096. "ref/netstandard1.3/it/System.Runtime.xml",
  7097. "ref/netstandard1.3/ja/System.Runtime.xml",
  7098. "ref/netstandard1.3/ko/System.Runtime.xml",
  7099. "ref/netstandard1.3/ru/System.Runtime.xml",
  7100. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7101. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7102. "ref/netstandard1.5/System.Runtime.dll",
  7103. "ref/netstandard1.5/System.Runtime.xml",
  7104. "ref/netstandard1.5/de/System.Runtime.xml",
  7105. "ref/netstandard1.5/es/System.Runtime.xml",
  7106. "ref/netstandard1.5/fr/System.Runtime.xml",
  7107. "ref/netstandard1.5/it/System.Runtime.xml",
  7108. "ref/netstandard1.5/ja/System.Runtime.xml",
  7109. "ref/netstandard1.5/ko/System.Runtime.xml",
  7110. "ref/netstandard1.5/ru/System.Runtime.xml",
  7111. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7112. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7113. "ref/portable-net45+win8+wp80+wpa81/_._",
  7114. "ref/win8/_._",
  7115. "ref/wp80/_._",
  7116. "ref/wpa81/_._",
  7117. "ref/xamarinios10/_._",
  7118. "ref/xamarinmac20/_._",
  7119. "ref/xamarintvos10/_._",
  7120. "ref/xamarinwatchos10/_._",
  7121. "system.runtime.4.3.0.nupkg.sha512",
  7122. "system.runtime.nuspec"
  7123. ]
  7124. },
  7125. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7126. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7127. "type": "package",
  7128. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7129. "files": [
  7130. ".nupkg.metadata",
  7131. ".signature.p7s",
  7132. "Icon.png",
  7133. "LICENSE.TXT",
  7134. "THIRD-PARTY-NOTICES.TXT",
  7135. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7136. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7137. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7138. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7139. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7140. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7141. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7142. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7143. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7144. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7145. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7146. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7147. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7148. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7149. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7150. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7151. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7152. "system.runtime.compilerservices.unsafe.nuspec",
  7153. "useSharedDesignerContext.txt",
  7154. "version.txt"
  7155. ]
  7156. },
  7157. "System.Runtime.Extensions/4.3.0": {
  7158. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7159. "type": "package",
  7160. "path": "system.runtime.extensions/4.3.0",
  7161. "files": [
  7162. ".nupkg.metadata",
  7163. ".signature.p7s",
  7164. "ThirdPartyNotices.txt",
  7165. "dotnet_library_license.txt",
  7166. "lib/MonoAndroid10/_._",
  7167. "lib/MonoTouch10/_._",
  7168. "lib/net45/_._",
  7169. "lib/net462/System.Runtime.Extensions.dll",
  7170. "lib/portable-net45+win8+wp8+wpa81/_._",
  7171. "lib/win8/_._",
  7172. "lib/wp80/_._",
  7173. "lib/wpa81/_._",
  7174. "lib/xamarinios10/_._",
  7175. "lib/xamarinmac20/_._",
  7176. "lib/xamarintvos10/_._",
  7177. "lib/xamarinwatchos10/_._",
  7178. "ref/MonoAndroid10/_._",
  7179. "ref/MonoTouch10/_._",
  7180. "ref/net45/_._",
  7181. "ref/net462/System.Runtime.Extensions.dll",
  7182. "ref/netcore50/System.Runtime.Extensions.dll",
  7183. "ref/netcore50/System.Runtime.Extensions.xml",
  7184. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7185. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7186. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7187. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7188. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7189. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7190. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7191. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7192. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7193. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7194. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7195. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7196. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7197. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7198. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7199. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7200. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7201. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7202. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7203. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7204. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7205. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7206. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7207. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7208. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7209. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7210. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7211. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7212. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7213. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7214. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7215. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7216. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7217. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7218. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7219. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7220. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7221. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7222. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7223. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7224. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7225. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7226. "ref/portable-net45+win8+wp8+wpa81/_._",
  7227. "ref/win8/_._",
  7228. "ref/wp80/_._",
  7229. "ref/wpa81/_._",
  7230. "ref/xamarinios10/_._",
  7231. "ref/xamarinmac20/_._",
  7232. "ref/xamarintvos10/_._",
  7233. "ref/xamarinwatchos10/_._",
  7234. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7235. "system.runtime.extensions.nuspec"
  7236. ]
  7237. },
  7238. "System.Runtime.Handles/4.3.0": {
  7239. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7240. "type": "package",
  7241. "path": "system.runtime.handles/4.3.0",
  7242. "files": [
  7243. ".nupkg.metadata",
  7244. ".signature.p7s",
  7245. "ThirdPartyNotices.txt",
  7246. "dotnet_library_license.txt",
  7247. "lib/MonoAndroid10/_._",
  7248. "lib/MonoTouch10/_._",
  7249. "lib/net46/_._",
  7250. "lib/xamarinios10/_._",
  7251. "lib/xamarinmac20/_._",
  7252. "lib/xamarintvos10/_._",
  7253. "lib/xamarinwatchos10/_._",
  7254. "ref/MonoAndroid10/_._",
  7255. "ref/MonoTouch10/_._",
  7256. "ref/net46/_._",
  7257. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7258. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7259. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7260. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7261. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7262. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7263. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7264. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7265. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7266. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7267. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7268. "ref/xamarinios10/_._",
  7269. "ref/xamarinmac20/_._",
  7270. "ref/xamarintvos10/_._",
  7271. "ref/xamarinwatchos10/_._",
  7272. "system.runtime.handles.4.3.0.nupkg.sha512",
  7273. "system.runtime.handles.nuspec"
  7274. ]
  7275. },
  7276. "System.Runtime.InteropServices/4.3.0": {
  7277. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7278. "type": "package",
  7279. "path": "system.runtime.interopservices/4.3.0",
  7280. "files": [
  7281. ".nupkg.metadata",
  7282. ".signature.p7s",
  7283. "ThirdPartyNotices.txt",
  7284. "dotnet_library_license.txt",
  7285. "lib/MonoAndroid10/_._",
  7286. "lib/MonoTouch10/_._",
  7287. "lib/net45/_._",
  7288. "lib/net462/System.Runtime.InteropServices.dll",
  7289. "lib/net463/System.Runtime.InteropServices.dll",
  7290. "lib/portable-net45+win8+wpa81/_._",
  7291. "lib/win8/_._",
  7292. "lib/wpa81/_._",
  7293. "lib/xamarinios10/_._",
  7294. "lib/xamarinmac20/_._",
  7295. "lib/xamarintvos10/_._",
  7296. "lib/xamarinwatchos10/_._",
  7297. "ref/MonoAndroid10/_._",
  7298. "ref/MonoTouch10/_._",
  7299. "ref/net45/_._",
  7300. "ref/net462/System.Runtime.InteropServices.dll",
  7301. "ref/net463/System.Runtime.InteropServices.dll",
  7302. "ref/netcore50/System.Runtime.InteropServices.dll",
  7303. "ref/netcore50/System.Runtime.InteropServices.xml",
  7304. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7305. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7306. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7307. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7308. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7309. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7310. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7311. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7312. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7313. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7314. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7315. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7316. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7317. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7318. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7319. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7320. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7321. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7322. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7323. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7324. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7325. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7326. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7327. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7328. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7329. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7330. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7331. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7332. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7333. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7334. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7335. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7336. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7337. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7338. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7339. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7340. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7341. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7342. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7343. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7344. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7345. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7346. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7347. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7348. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7349. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7350. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7351. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7352. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7353. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7354. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7355. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7356. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7357. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7358. "ref/portable-net45+win8+wpa81/_._",
  7359. "ref/win8/_._",
  7360. "ref/wpa81/_._",
  7361. "ref/xamarinios10/_._",
  7362. "ref/xamarinmac20/_._",
  7363. "ref/xamarintvos10/_._",
  7364. "ref/xamarinwatchos10/_._",
  7365. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7366. "system.runtime.interopservices.nuspec"
  7367. ]
  7368. },
  7369. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7370. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7371. "type": "package",
  7372. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7373. "files": [
  7374. ".nupkg.metadata",
  7375. ".signature.p7s",
  7376. "ThirdPartyNotices.txt",
  7377. "dotnet_library_license.txt",
  7378. "lib/MonoAndroid10/_._",
  7379. "lib/MonoTouch10/_._",
  7380. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7381. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7382. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7383. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7384. "lib/xamarinios10/_._",
  7385. "lib/xamarinmac20/_._",
  7386. "lib/xamarintvos10/_._",
  7387. "lib/xamarinwatchos10/_._",
  7388. "ref/MonoAndroid10/_._",
  7389. "ref/MonoTouch10/_._",
  7390. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7391. "ref/xamarinios10/_._",
  7392. "ref/xamarinmac20/_._",
  7393. "ref/xamarintvos10/_._",
  7394. "ref/xamarinwatchos10/_._",
  7395. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7396. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7397. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7398. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7399. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7400. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7401. "system.runtime.interopservices.runtimeinformation.nuspec"
  7402. ]
  7403. },
  7404. "System.Runtime.Numerics/4.3.0": {
  7405. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7406. "type": "package",
  7407. "path": "system.runtime.numerics/4.3.0",
  7408. "files": [
  7409. ".nupkg.metadata",
  7410. ".signature.p7s",
  7411. "ThirdPartyNotices.txt",
  7412. "dotnet_library_license.txt",
  7413. "lib/MonoAndroid10/_._",
  7414. "lib/MonoTouch10/_._",
  7415. "lib/net45/_._",
  7416. "lib/netcore50/System.Runtime.Numerics.dll",
  7417. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7418. "lib/portable-net45+win8+wpa81/_._",
  7419. "lib/win8/_._",
  7420. "lib/wpa81/_._",
  7421. "lib/xamarinios10/_._",
  7422. "lib/xamarinmac20/_._",
  7423. "lib/xamarintvos10/_._",
  7424. "lib/xamarinwatchos10/_._",
  7425. "ref/MonoAndroid10/_._",
  7426. "ref/MonoTouch10/_._",
  7427. "ref/net45/_._",
  7428. "ref/netcore50/System.Runtime.Numerics.dll",
  7429. "ref/netcore50/System.Runtime.Numerics.xml",
  7430. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7431. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7432. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7433. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7434. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7435. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7436. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7437. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7438. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7439. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7440. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7441. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7442. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7443. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7444. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7445. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7446. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7447. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7448. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7449. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7450. "ref/portable-net45+win8+wpa81/_._",
  7451. "ref/win8/_._",
  7452. "ref/wpa81/_._",
  7453. "ref/xamarinios10/_._",
  7454. "ref/xamarinmac20/_._",
  7455. "ref/xamarintvos10/_._",
  7456. "ref/xamarinwatchos10/_._",
  7457. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7458. "system.runtime.numerics.nuspec"
  7459. ]
  7460. },
  7461. "System.Security.AccessControl/4.7.0": {
  7462. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7463. "type": "package",
  7464. "path": "system.security.accesscontrol/4.7.0",
  7465. "files": [
  7466. ".nupkg.metadata",
  7467. ".signature.p7s",
  7468. "LICENSE.TXT",
  7469. "THIRD-PARTY-NOTICES.TXT",
  7470. "lib/net46/System.Security.AccessControl.dll",
  7471. "lib/net461/System.Security.AccessControl.dll",
  7472. "lib/net461/System.Security.AccessControl.xml",
  7473. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7474. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7475. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7476. "lib/uap10.0.16299/_._",
  7477. "ref/net46/System.Security.AccessControl.dll",
  7478. "ref/net461/System.Security.AccessControl.dll",
  7479. "ref/net461/System.Security.AccessControl.xml",
  7480. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7481. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7482. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7483. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7484. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7485. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7486. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7487. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7488. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7489. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7490. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7491. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7492. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7493. "ref/uap10.0.16299/_._",
  7494. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7495. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7496. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7497. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7498. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7499. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7500. "runtimes/win/lib/uap10.0.16299/_._",
  7501. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7502. "system.security.accesscontrol.nuspec",
  7503. "useSharedDesignerContext.txt",
  7504. "version.txt"
  7505. ]
  7506. },
  7507. "System.Security.Claims/4.3.0": {
  7508. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7509. "type": "package",
  7510. "path": "system.security.claims/4.3.0",
  7511. "files": [
  7512. ".nupkg.metadata",
  7513. ".signature.p7s",
  7514. "ThirdPartyNotices.txt",
  7515. "dotnet_library_license.txt",
  7516. "lib/MonoAndroid10/_._",
  7517. "lib/MonoTouch10/_._",
  7518. "lib/net46/System.Security.Claims.dll",
  7519. "lib/netstandard1.3/System.Security.Claims.dll",
  7520. "lib/xamarinios10/_._",
  7521. "lib/xamarinmac20/_._",
  7522. "lib/xamarintvos10/_._",
  7523. "lib/xamarinwatchos10/_._",
  7524. "ref/MonoAndroid10/_._",
  7525. "ref/MonoTouch10/_._",
  7526. "ref/net46/System.Security.Claims.dll",
  7527. "ref/netstandard1.3/System.Security.Claims.dll",
  7528. "ref/netstandard1.3/System.Security.Claims.xml",
  7529. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7530. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7531. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7532. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7533. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7534. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7535. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7536. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7537. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7538. "ref/xamarinios10/_._",
  7539. "ref/xamarinmac20/_._",
  7540. "ref/xamarintvos10/_._",
  7541. "ref/xamarinwatchos10/_._",
  7542. "system.security.claims.4.3.0.nupkg.sha512",
  7543. "system.security.claims.nuspec"
  7544. ]
  7545. },
  7546. "System.Security.Cryptography.Algorithms/4.3.0": {
  7547. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7548. "type": "package",
  7549. "path": "system.security.cryptography.algorithms/4.3.0",
  7550. "files": [
  7551. ".nupkg.metadata",
  7552. ".signature.p7s",
  7553. "ThirdPartyNotices.txt",
  7554. "dotnet_library_license.txt",
  7555. "lib/MonoAndroid10/_._",
  7556. "lib/MonoTouch10/_._",
  7557. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7558. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7559. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7560. "lib/xamarinios10/_._",
  7561. "lib/xamarinmac20/_._",
  7562. "lib/xamarintvos10/_._",
  7563. "lib/xamarinwatchos10/_._",
  7564. "ref/MonoAndroid10/_._",
  7565. "ref/MonoTouch10/_._",
  7566. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7567. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7568. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7569. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7570. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7571. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7572. "ref/xamarinios10/_._",
  7573. "ref/xamarinmac20/_._",
  7574. "ref/xamarintvos10/_._",
  7575. "ref/xamarinwatchos10/_._",
  7576. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7577. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7578. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7579. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7580. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7581. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7582. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7583. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7584. "system.security.cryptography.algorithms.nuspec"
  7585. ]
  7586. },
  7587. "System.Security.Cryptography.Cng/4.3.0": {
  7588. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7589. "type": "package",
  7590. "path": "system.security.cryptography.cng/4.3.0",
  7591. "files": [
  7592. ".nupkg.metadata",
  7593. ".signature.p7s",
  7594. "ThirdPartyNotices.txt",
  7595. "dotnet_library_license.txt",
  7596. "lib/net46/System.Security.Cryptography.Cng.dll",
  7597. "lib/net461/System.Security.Cryptography.Cng.dll",
  7598. "lib/net463/System.Security.Cryptography.Cng.dll",
  7599. "ref/net46/System.Security.Cryptography.Cng.dll",
  7600. "ref/net461/System.Security.Cryptography.Cng.dll",
  7601. "ref/net463/System.Security.Cryptography.Cng.dll",
  7602. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7603. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7604. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7605. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7606. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7607. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7608. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  7609. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7610. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7611. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  7612. "system.security.cryptography.cng.nuspec"
  7613. ]
  7614. },
  7615. "System.Security.Cryptography.Csp/4.3.0": {
  7616. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7617. "type": "package",
  7618. "path": "system.security.cryptography.csp/4.3.0",
  7619. "files": [
  7620. ".nupkg.metadata",
  7621. ".signature.p7s",
  7622. "ThirdPartyNotices.txt",
  7623. "dotnet_library_license.txt",
  7624. "lib/MonoAndroid10/_._",
  7625. "lib/MonoTouch10/_._",
  7626. "lib/net46/System.Security.Cryptography.Csp.dll",
  7627. "lib/xamarinios10/_._",
  7628. "lib/xamarinmac20/_._",
  7629. "lib/xamarintvos10/_._",
  7630. "lib/xamarinwatchos10/_._",
  7631. "ref/MonoAndroid10/_._",
  7632. "ref/MonoTouch10/_._",
  7633. "ref/net46/System.Security.Cryptography.Csp.dll",
  7634. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7635. "ref/xamarinios10/_._",
  7636. "ref/xamarinmac20/_._",
  7637. "ref/xamarintvos10/_._",
  7638. "ref/xamarinwatchos10/_._",
  7639. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7640. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7641. "runtimes/win/lib/netcore50/_._",
  7642. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7643. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7644. "system.security.cryptography.csp.nuspec"
  7645. ]
  7646. },
  7647. "System.Security.Cryptography.Encoding/4.3.0": {
  7648. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7649. "type": "package",
  7650. "path": "system.security.cryptography.encoding/4.3.0",
  7651. "files": [
  7652. ".nupkg.metadata",
  7653. ".signature.p7s",
  7654. "ThirdPartyNotices.txt",
  7655. "dotnet_library_license.txt",
  7656. "lib/MonoAndroid10/_._",
  7657. "lib/MonoTouch10/_._",
  7658. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7659. "lib/xamarinios10/_._",
  7660. "lib/xamarinmac20/_._",
  7661. "lib/xamarintvos10/_._",
  7662. "lib/xamarinwatchos10/_._",
  7663. "ref/MonoAndroid10/_._",
  7664. "ref/MonoTouch10/_._",
  7665. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7666. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7667. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7668. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7669. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7670. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7671. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7672. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7673. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7674. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7675. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7676. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7677. "ref/xamarinios10/_._",
  7678. "ref/xamarinmac20/_._",
  7679. "ref/xamarintvos10/_._",
  7680. "ref/xamarinwatchos10/_._",
  7681. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7682. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7683. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7684. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7685. "system.security.cryptography.encoding.nuspec"
  7686. ]
  7687. },
  7688. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7689. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7690. "type": "package",
  7691. "path": "system.security.cryptography.openssl/4.3.0",
  7692. "files": [
  7693. ".nupkg.metadata",
  7694. ".signature.p7s",
  7695. "ThirdPartyNotices.txt",
  7696. "dotnet_library_license.txt",
  7697. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7698. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7699. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7700. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7701. "system.security.cryptography.openssl.nuspec"
  7702. ]
  7703. },
  7704. "System.Security.Cryptography.Primitives/4.3.0": {
  7705. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7706. "type": "package",
  7707. "path": "system.security.cryptography.primitives/4.3.0",
  7708. "files": [
  7709. ".nupkg.metadata",
  7710. ".signature.p7s",
  7711. "ThirdPartyNotices.txt",
  7712. "dotnet_library_license.txt",
  7713. "lib/MonoAndroid10/_._",
  7714. "lib/MonoTouch10/_._",
  7715. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7716. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7717. "lib/xamarinios10/_._",
  7718. "lib/xamarinmac20/_._",
  7719. "lib/xamarintvos10/_._",
  7720. "lib/xamarinwatchos10/_._",
  7721. "ref/MonoAndroid10/_._",
  7722. "ref/MonoTouch10/_._",
  7723. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7724. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7725. "ref/xamarinios10/_._",
  7726. "ref/xamarinmac20/_._",
  7727. "ref/xamarintvos10/_._",
  7728. "ref/xamarinwatchos10/_._",
  7729. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7730. "system.security.cryptography.primitives.nuspec"
  7731. ]
  7732. },
  7733. "System.Security.Cryptography.ProtectedData/4.7.0": {
  7734. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  7735. "type": "package",
  7736. "path": "system.security.cryptography.protecteddata/4.7.0",
  7737. "files": [
  7738. ".nupkg.metadata",
  7739. ".signature.p7s",
  7740. "LICENSE.TXT",
  7741. "THIRD-PARTY-NOTICES.TXT",
  7742. "lib/MonoAndroid10/_._",
  7743. "lib/MonoTouch10/_._",
  7744. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7745. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7746. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7747. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7748. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7749. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7750. "lib/xamarinios10/_._",
  7751. "lib/xamarinmac20/_._",
  7752. "lib/xamarintvos10/_._",
  7753. "lib/xamarinwatchos10/_._",
  7754. "ref/MonoAndroid10/_._",
  7755. "ref/MonoTouch10/_._",
  7756. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7757. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7758. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7759. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7760. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7761. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7762. "ref/xamarinios10/_._",
  7763. "ref/xamarinmac20/_._",
  7764. "ref/xamarintvos10/_._",
  7765. "ref/xamarinwatchos10/_._",
  7766. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7767. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7768. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7769. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7770. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7771. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7772. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  7773. "system.security.cryptography.protecteddata.nuspec",
  7774. "useSharedDesignerContext.txt",
  7775. "version.txt"
  7776. ]
  7777. },
  7778. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7779. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7780. "type": "package",
  7781. "path": "system.security.cryptography.x509certificates/4.3.0",
  7782. "files": [
  7783. ".nupkg.metadata",
  7784. ".signature.p7s",
  7785. "ThirdPartyNotices.txt",
  7786. "dotnet_library_license.txt",
  7787. "lib/MonoAndroid10/_._",
  7788. "lib/MonoTouch10/_._",
  7789. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7790. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7791. "lib/xamarinios10/_._",
  7792. "lib/xamarinmac20/_._",
  7793. "lib/xamarintvos10/_._",
  7794. "lib/xamarinwatchos10/_._",
  7795. "ref/MonoAndroid10/_._",
  7796. "ref/MonoTouch10/_._",
  7797. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7798. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7799. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7800. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7801. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7802. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7803. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7804. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7805. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7806. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7807. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7808. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7809. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7810. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7811. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7812. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7813. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7814. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7815. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7816. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7817. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7818. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7819. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7820. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7821. "ref/xamarinios10/_._",
  7822. "ref/xamarinmac20/_._",
  7823. "ref/xamarintvos10/_._",
  7824. "ref/xamarinwatchos10/_._",
  7825. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7826. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7827. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7828. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7829. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7830. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7831. "system.security.cryptography.x509certificates.nuspec"
  7832. ]
  7833. },
  7834. "System.Security.Permissions/4.7.0": {
  7835. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  7836. "type": "package",
  7837. "path": "system.security.permissions/4.7.0",
  7838. "files": [
  7839. ".nupkg.metadata",
  7840. ".signature.p7s",
  7841. "LICENSE.TXT",
  7842. "THIRD-PARTY-NOTICES.TXT",
  7843. "lib/net461/System.Security.Permissions.dll",
  7844. "lib/net461/System.Security.Permissions.xml",
  7845. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  7846. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  7847. "lib/netstandard2.0/System.Security.Permissions.dll",
  7848. "lib/netstandard2.0/System.Security.Permissions.xml",
  7849. "ref/net461/System.Security.Permissions.dll",
  7850. "ref/net461/System.Security.Permissions.xml",
  7851. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  7852. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  7853. "ref/netstandard2.0/System.Security.Permissions.dll",
  7854. "ref/netstandard2.0/System.Security.Permissions.xml",
  7855. "system.security.permissions.4.7.0.nupkg.sha512",
  7856. "system.security.permissions.nuspec",
  7857. "useSharedDesignerContext.txt",
  7858. "version.txt"
  7859. ]
  7860. },
  7861. "System.Security.Principal/4.3.0": {
  7862. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  7863. "type": "package",
  7864. "path": "system.security.principal/4.3.0",
  7865. "files": [
  7866. ".nupkg.metadata",
  7867. ".signature.p7s",
  7868. "ThirdPartyNotices.txt",
  7869. "dotnet_library_license.txt",
  7870. "lib/MonoAndroid10/_._",
  7871. "lib/MonoTouch10/_._",
  7872. "lib/net45/_._",
  7873. "lib/netcore50/System.Security.Principal.dll",
  7874. "lib/netstandard1.0/System.Security.Principal.dll",
  7875. "lib/portable-net45+win8+wp8+wpa81/_._",
  7876. "lib/win8/_._",
  7877. "lib/wp80/_._",
  7878. "lib/wpa81/_._",
  7879. "lib/xamarinios10/_._",
  7880. "lib/xamarinmac20/_._",
  7881. "lib/xamarintvos10/_._",
  7882. "lib/xamarinwatchos10/_._",
  7883. "ref/MonoAndroid10/_._",
  7884. "ref/MonoTouch10/_._",
  7885. "ref/net45/_._",
  7886. "ref/netcore50/System.Security.Principal.dll",
  7887. "ref/netcore50/System.Security.Principal.xml",
  7888. "ref/netcore50/de/System.Security.Principal.xml",
  7889. "ref/netcore50/es/System.Security.Principal.xml",
  7890. "ref/netcore50/fr/System.Security.Principal.xml",
  7891. "ref/netcore50/it/System.Security.Principal.xml",
  7892. "ref/netcore50/ja/System.Security.Principal.xml",
  7893. "ref/netcore50/ko/System.Security.Principal.xml",
  7894. "ref/netcore50/ru/System.Security.Principal.xml",
  7895. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  7896. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  7897. "ref/netstandard1.0/System.Security.Principal.dll",
  7898. "ref/netstandard1.0/System.Security.Principal.xml",
  7899. "ref/netstandard1.0/de/System.Security.Principal.xml",
  7900. "ref/netstandard1.0/es/System.Security.Principal.xml",
  7901. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  7902. "ref/netstandard1.0/it/System.Security.Principal.xml",
  7903. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  7904. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  7905. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  7906. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  7907. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  7908. "ref/portable-net45+win8+wp8+wpa81/_._",
  7909. "ref/win8/_._",
  7910. "ref/wp80/_._",
  7911. "ref/wpa81/_._",
  7912. "ref/xamarinios10/_._",
  7913. "ref/xamarinmac20/_._",
  7914. "ref/xamarintvos10/_._",
  7915. "ref/xamarinwatchos10/_._",
  7916. "system.security.principal.4.3.0.nupkg.sha512",
  7917. "system.security.principal.nuspec"
  7918. ]
  7919. },
  7920. "System.Security.Principal.Windows/4.7.0": {
  7921. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  7922. "type": "package",
  7923. "path": "system.security.principal.windows/4.7.0",
  7924. "files": [
  7925. ".nupkg.metadata",
  7926. ".signature.p7s",
  7927. "LICENSE.TXT",
  7928. "THIRD-PARTY-NOTICES.TXT",
  7929. "lib/net46/System.Security.Principal.Windows.dll",
  7930. "lib/net461/System.Security.Principal.Windows.dll",
  7931. "lib/net461/System.Security.Principal.Windows.xml",
  7932. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7933. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7934. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7935. "lib/uap10.0.16299/_._",
  7936. "ref/net46/System.Security.Principal.Windows.dll",
  7937. "ref/net461/System.Security.Principal.Windows.dll",
  7938. "ref/net461/System.Security.Principal.Windows.xml",
  7939. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7940. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7941. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7942. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7943. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7944. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7945. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7946. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7947. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7948. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7949. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7950. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7951. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7952. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7953. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7954. "ref/uap10.0.16299/_._",
  7955. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7956. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7957. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7958. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7959. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7960. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7961. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7962. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7963. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7964. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7965. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7966. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7967. "runtimes/win/lib/uap10.0.16299/_._",
  7968. "system.security.principal.windows.4.7.0.nupkg.sha512",
  7969. "system.security.principal.windows.nuspec",
  7970. "useSharedDesignerContext.txt",
  7971. "version.txt"
  7972. ]
  7973. },
  7974. "System.Text.Encoding/4.3.0": {
  7975. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7976. "type": "package",
  7977. "path": "system.text.encoding/4.3.0",
  7978. "files": [
  7979. ".nupkg.metadata",
  7980. ".signature.p7s",
  7981. "ThirdPartyNotices.txt",
  7982. "dotnet_library_license.txt",
  7983. "lib/MonoAndroid10/_._",
  7984. "lib/MonoTouch10/_._",
  7985. "lib/net45/_._",
  7986. "lib/portable-net45+win8+wp8+wpa81/_._",
  7987. "lib/win8/_._",
  7988. "lib/wp80/_._",
  7989. "lib/wpa81/_._",
  7990. "lib/xamarinios10/_._",
  7991. "lib/xamarinmac20/_._",
  7992. "lib/xamarintvos10/_._",
  7993. "lib/xamarinwatchos10/_._",
  7994. "ref/MonoAndroid10/_._",
  7995. "ref/MonoTouch10/_._",
  7996. "ref/net45/_._",
  7997. "ref/netcore50/System.Text.Encoding.dll",
  7998. "ref/netcore50/System.Text.Encoding.xml",
  7999. "ref/netcore50/de/System.Text.Encoding.xml",
  8000. "ref/netcore50/es/System.Text.Encoding.xml",
  8001. "ref/netcore50/fr/System.Text.Encoding.xml",
  8002. "ref/netcore50/it/System.Text.Encoding.xml",
  8003. "ref/netcore50/ja/System.Text.Encoding.xml",
  8004. "ref/netcore50/ko/System.Text.Encoding.xml",
  8005. "ref/netcore50/ru/System.Text.Encoding.xml",
  8006. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8007. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8008. "ref/netstandard1.0/System.Text.Encoding.dll",
  8009. "ref/netstandard1.0/System.Text.Encoding.xml",
  8010. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8011. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8012. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8013. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8014. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8015. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8016. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8017. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8018. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8019. "ref/netstandard1.3/System.Text.Encoding.dll",
  8020. "ref/netstandard1.3/System.Text.Encoding.xml",
  8021. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8022. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8023. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8024. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8025. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8026. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8027. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8028. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8029. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8030. "ref/portable-net45+win8+wp8+wpa81/_._",
  8031. "ref/win8/_._",
  8032. "ref/wp80/_._",
  8033. "ref/wpa81/_._",
  8034. "ref/xamarinios10/_._",
  8035. "ref/xamarinmac20/_._",
  8036. "ref/xamarintvos10/_._",
  8037. "ref/xamarinwatchos10/_._",
  8038. "system.text.encoding.4.3.0.nupkg.sha512",
  8039. "system.text.encoding.nuspec"
  8040. ]
  8041. },
  8042. "System.Text.Encoding.CodePages/5.0.0": {
  8043. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8044. "type": "package",
  8045. "path": "system.text.encoding.codepages/5.0.0",
  8046. "files": [
  8047. ".nupkg.metadata",
  8048. ".signature.p7s",
  8049. "Icon.png",
  8050. "LICENSE.TXT",
  8051. "THIRD-PARTY-NOTICES.TXT",
  8052. "lib/MonoAndroid10/_._",
  8053. "lib/MonoTouch10/_._",
  8054. "lib/net46/System.Text.Encoding.CodePages.dll",
  8055. "lib/net461/System.Text.Encoding.CodePages.dll",
  8056. "lib/net461/System.Text.Encoding.CodePages.xml",
  8057. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8058. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8059. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8060. "lib/xamarinios10/_._",
  8061. "lib/xamarinmac20/_._",
  8062. "lib/xamarintvos10/_._",
  8063. "lib/xamarinwatchos10/_._",
  8064. "ref/MonoAndroid10/_._",
  8065. "ref/MonoTouch10/_._",
  8066. "ref/xamarinios10/_._",
  8067. "ref/xamarinmac20/_._",
  8068. "ref/xamarintvos10/_._",
  8069. "ref/xamarinwatchos10/_._",
  8070. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8071. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8072. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8073. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8074. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8075. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8076. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8077. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8078. "system.text.encoding.codepages.nuspec",
  8079. "useSharedDesignerContext.txt",
  8080. "version.txt"
  8081. ]
  8082. },
  8083. "System.Text.Encoding.Extensions/4.3.0": {
  8084. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8085. "type": "package",
  8086. "path": "system.text.encoding.extensions/4.3.0",
  8087. "files": [
  8088. ".nupkg.metadata",
  8089. ".signature.p7s",
  8090. "ThirdPartyNotices.txt",
  8091. "dotnet_library_license.txt",
  8092. "lib/MonoAndroid10/_._",
  8093. "lib/MonoTouch10/_._",
  8094. "lib/net45/_._",
  8095. "lib/portable-net45+win8+wp8+wpa81/_._",
  8096. "lib/win8/_._",
  8097. "lib/wp80/_._",
  8098. "lib/wpa81/_._",
  8099. "lib/xamarinios10/_._",
  8100. "lib/xamarinmac20/_._",
  8101. "lib/xamarintvos10/_._",
  8102. "lib/xamarinwatchos10/_._",
  8103. "ref/MonoAndroid10/_._",
  8104. "ref/MonoTouch10/_._",
  8105. "ref/net45/_._",
  8106. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8107. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8108. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8109. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8110. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8111. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8112. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8113. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8114. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8115. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8116. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8117. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8118. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8119. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8120. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8121. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8122. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8123. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8124. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8125. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8126. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8127. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8128. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8129. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8130. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8131. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8132. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8133. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8134. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8135. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8136. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8137. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8138. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8139. "ref/portable-net45+win8+wp8+wpa81/_._",
  8140. "ref/win8/_._",
  8141. "ref/wp80/_._",
  8142. "ref/wpa81/_._",
  8143. "ref/xamarinios10/_._",
  8144. "ref/xamarinmac20/_._",
  8145. "ref/xamarintvos10/_._",
  8146. "ref/xamarinwatchos10/_._",
  8147. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8148. "system.text.encoding.extensions.nuspec"
  8149. ]
  8150. },
  8151. "System.Text.Encodings.Web/4.5.0": {
  8152. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8153. "type": "package",
  8154. "path": "system.text.encodings.web/4.5.0",
  8155. "files": [
  8156. ".nupkg.metadata",
  8157. ".signature.p7s",
  8158. "LICENSE.TXT",
  8159. "THIRD-PARTY-NOTICES.TXT",
  8160. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8161. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8162. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8163. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8164. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8165. "system.text.encodings.web.nuspec",
  8166. "useSharedDesignerContext.txt",
  8167. "version.txt"
  8168. ]
  8169. },
  8170. "System.Text.RegularExpressions/4.3.0": {
  8171. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8172. "type": "package",
  8173. "path": "system.text.regularexpressions/4.3.0",
  8174. "files": [
  8175. ".nupkg.metadata",
  8176. ".signature.p7s",
  8177. "ThirdPartyNotices.txt",
  8178. "dotnet_library_license.txt",
  8179. "lib/MonoAndroid10/_._",
  8180. "lib/MonoTouch10/_._",
  8181. "lib/net45/_._",
  8182. "lib/net463/System.Text.RegularExpressions.dll",
  8183. "lib/netcore50/System.Text.RegularExpressions.dll",
  8184. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8185. "lib/portable-net45+win8+wp8+wpa81/_._",
  8186. "lib/win8/_._",
  8187. "lib/wp80/_._",
  8188. "lib/wpa81/_._",
  8189. "lib/xamarinios10/_._",
  8190. "lib/xamarinmac20/_._",
  8191. "lib/xamarintvos10/_._",
  8192. "lib/xamarinwatchos10/_._",
  8193. "ref/MonoAndroid10/_._",
  8194. "ref/MonoTouch10/_._",
  8195. "ref/net45/_._",
  8196. "ref/net463/System.Text.RegularExpressions.dll",
  8197. "ref/netcore50/System.Text.RegularExpressions.dll",
  8198. "ref/netcore50/System.Text.RegularExpressions.xml",
  8199. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8200. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8201. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8202. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8203. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8204. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8205. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8206. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8207. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8208. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8209. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8210. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8211. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8212. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8213. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8214. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8215. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8216. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8217. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8218. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8219. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8220. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8221. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8222. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8223. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8224. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8225. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8226. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8227. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8228. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8229. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8230. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8231. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8232. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8233. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8234. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8235. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8236. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8237. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8238. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8239. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8240. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8241. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8242. "ref/portable-net45+win8+wp8+wpa81/_._",
  8243. "ref/win8/_._",
  8244. "ref/wp80/_._",
  8245. "ref/wpa81/_._",
  8246. "ref/xamarinios10/_._",
  8247. "ref/xamarinmac20/_._",
  8248. "ref/xamarintvos10/_._",
  8249. "ref/xamarinwatchos10/_._",
  8250. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8251. "system.text.regularexpressions.nuspec"
  8252. ]
  8253. },
  8254. "System.Threading/4.3.0": {
  8255. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8256. "type": "package",
  8257. "path": "system.threading/4.3.0",
  8258. "files": [
  8259. ".nupkg.metadata",
  8260. ".signature.p7s",
  8261. "ThirdPartyNotices.txt",
  8262. "dotnet_library_license.txt",
  8263. "lib/MonoAndroid10/_._",
  8264. "lib/MonoTouch10/_._",
  8265. "lib/net45/_._",
  8266. "lib/netcore50/System.Threading.dll",
  8267. "lib/netstandard1.3/System.Threading.dll",
  8268. "lib/portable-net45+win8+wp8+wpa81/_._",
  8269. "lib/win8/_._",
  8270. "lib/wp80/_._",
  8271. "lib/wpa81/_._",
  8272. "lib/xamarinios10/_._",
  8273. "lib/xamarinmac20/_._",
  8274. "lib/xamarintvos10/_._",
  8275. "lib/xamarinwatchos10/_._",
  8276. "ref/MonoAndroid10/_._",
  8277. "ref/MonoTouch10/_._",
  8278. "ref/net45/_._",
  8279. "ref/netcore50/System.Threading.dll",
  8280. "ref/netcore50/System.Threading.xml",
  8281. "ref/netcore50/de/System.Threading.xml",
  8282. "ref/netcore50/es/System.Threading.xml",
  8283. "ref/netcore50/fr/System.Threading.xml",
  8284. "ref/netcore50/it/System.Threading.xml",
  8285. "ref/netcore50/ja/System.Threading.xml",
  8286. "ref/netcore50/ko/System.Threading.xml",
  8287. "ref/netcore50/ru/System.Threading.xml",
  8288. "ref/netcore50/zh-hans/System.Threading.xml",
  8289. "ref/netcore50/zh-hant/System.Threading.xml",
  8290. "ref/netstandard1.0/System.Threading.dll",
  8291. "ref/netstandard1.0/System.Threading.xml",
  8292. "ref/netstandard1.0/de/System.Threading.xml",
  8293. "ref/netstandard1.0/es/System.Threading.xml",
  8294. "ref/netstandard1.0/fr/System.Threading.xml",
  8295. "ref/netstandard1.0/it/System.Threading.xml",
  8296. "ref/netstandard1.0/ja/System.Threading.xml",
  8297. "ref/netstandard1.0/ko/System.Threading.xml",
  8298. "ref/netstandard1.0/ru/System.Threading.xml",
  8299. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8300. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8301. "ref/netstandard1.3/System.Threading.dll",
  8302. "ref/netstandard1.3/System.Threading.xml",
  8303. "ref/netstandard1.3/de/System.Threading.xml",
  8304. "ref/netstandard1.3/es/System.Threading.xml",
  8305. "ref/netstandard1.3/fr/System.Threading.xml",
  8306. "ref/netstandard1.3/it/System.Threading.xml",
  8307. "ref/netstandard1.3/ja/System.Threading.xml",
  8308. "ref/netstandard1.3/ko/System.Threading.xml",
  8309. "ref/netstandard1.3/ru/System.Threading.xml",
  8310. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8311. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8312. "ref/portable-net45+win8+wp8+wpa81/_._",
  8313. "ref/win8/_._",
  8314. "ref/wp80/_._",
  8315. "ref/wpa81/_._",
  8316. "ref/xamarinios10/_._",
  8317. "ref/xamarinmac20/_._",
  8318. "ref/xamarintvos10/_._",
  8319. "ref/xamarinwatchos10/_._",
  8320. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8321. "system.threading.4.3.0.nupkg.sha512",
  8322. "system.threading.nuspec"
  8323. ]
  8324. },
  8325. "System.Threading.Channels/7.0.0": {
  8326. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8327. "type": "package",
  8328. "path": "system.threading.channels/7.0.0",
  8329. "files": [
  8330. ".nupkg.metadata",
  8331. ".signature.p7s",
  8332. "Icon.png",
  8333. "LICENSE.TXT",
  8334. "THIRD-PARTY-NOTICES.TXT",
  8335. "buildTransitive/net461/System.Threading.Channels.targets",
  8336. "buildTransitive/net462/_._",
  8337. "buildTransitive/net6.0/_._",
  8338. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8339. "lib/net462/System.Threading.Channels.dll",
  8340. "lib/net462/System.Threading.Channels.xml",
  8341. "lib/net6.0/System.Threading.Channels.dll",
  8342. "lib/net6.0/System.Threading.Channels.xml",
  8343. "lib/net7.0/System.Threading.Channels.dll",
  8344. "lib/net7.0/System.Threading.Channels.xml",
  8345. "lib/netstandard2.0/System.Threading.Channels.dll",
  8346. "lib/netstandard2.0/System.Threading.Channels.xml",
  8347. "lib/netstandard2.1/System.Threading.Channels.dll",
  8348. "lib/netstandard2.1/System.Threading.Channels.xml",
  8349. "system.threading.channels.7.0.0.nupkg.sha512",
  8350. "system.threading.channels.nuspec",
  8351. "useSharedDesignerContext.txt"
  8352. ]
  8353. },
  8354. "System.Threading.Tasks/4.3.0": {
  8355. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8356. "type": "package",
  8357. "path": "system.threading.tasks/4.3.0",
  8358. "files": [
  8359. ".nupkg.metadata",
  8360. ".signature.p7s",
  8361. "ThirdPartyNotices.txt",
  8362. "dotnet_library_license.txt",
  8363. "lib/MonoAndroid10/_._",
  8364. "lib/MonoTouch10/_._",
  8365. "lib/net45/_._",
  8366. "lib/portable-net45+win8+wp8+wpa81/_._",
  8367. "lib/win8/_._",
  8368. "lib/wp80/_._",
  8369. "lib/wpa81/_._",
  8370. "lib/xamarinios10/_._",
  8371. "lib/xamarinmac20/_._",
  8372. "lib/xamarintvos10/_._",
  8373. "lib/xamarinwatchos10/_._",
  8374. "ref/MonoAndroid10/_._",
  8375. "ref/MonoTouch10/_._",
  8376. "ref/net45/_._",
  8377. "ref/netcore50/System.Threading.Tasks.dll",
  8378. "ref/netcore50/System.Threading.Tasks.xml",
  8379. "ref/netcore50/de/System.Threading.Tasks.xml",
  8380. "ref/netcore50/es/System.Threading.Tasks.xml",
  8381. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8382. "ref/netcore50/it/System.Threading.Tasks.xml",
  8383. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8384. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8385. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8386. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8387. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8388. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8389. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8390. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8391. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8392. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8393. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8394. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8395. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8396. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8397. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8398. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8399. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8400. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8401. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8402. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8403. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8404. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8405. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8406. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8407. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8408. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8409. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8410. "ref/portable-net45+win8+wp8+wpa81/_._",
  8411. "ref/win8/_._",
  8412. "ref/wp80/_._",
  8413. "ref/wpa81/_._",
  8414. "ref/xamarinios10/_._",
  8415. "ref/xamarinmac20/_._",
  8416. "ref/xamarintvos10/_._",
  8417. "ref/xamarinwatchos10/_._",
  8418. "system.threading.tasks.4.3.0.nupkg.sha512",
  8419. "system.threading.tasks.nuspec"
  8420. ]
  8421. },
  8422. "System.Threading.Tasks.Extensions/4.3.0": {
  8423. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8424. "type": "package",
  8425. "path": "system.threading.tasks.extensions/4.3.0",
  8426. "files": [
  8427. ".nupkg.metadata",
  8428. ".signature.p7s",
  8429. "ThirdPartyNotices.txt",
  8430. "dotnet_library_license.txt",
  8431. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8432. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8433. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8434. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8435. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8436. "system.threading.tasks.extensions.nuspec"
  8437. ]
  8438. },
  8439. "System.Threading.Thread/4.3.0": {
  8440. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8441. "type": "package",
  8442. "path": "system.threading.thread/4.3.0",
  8443. "files": [
  8444. ".nupkg.metadata",
  8445. ".signature.p7s",
  8446. "ThirdPartyNotices.txt",
  8447. "dotnet_library_license.txt",
  8448. "lib/MonoAndroid10/_._",
  8449. "lib/MonoTouch10/_._",
  8450. "lib/net46/System.Threading.Thread.dll",
  8451. "lib/netcore50/_._",
  8452. "lib/netstandard1.3/System.Threading.Thread.dll",
  8453. "lib/xamarinios10/_._",
  8454. "lib/xamarinmac20/_._",
  8455. "lib/xamarintvos10/_._",
  8456. "lib/xamarinwatchos10/_._",
  8457. "ref/MonoAndroid10/_._",
  8458. "ref/MonoTouch10/_._",
  8459. "ref/net46/System.Threading.Thread.dll",
  8460. "ref/netstandard1.3/System.Threading.Thread.dll",
  8461. "ref/netstandard1.3/System.Threading.Thread.xml",
  8462. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8463. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8464. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8465. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8466. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8467. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8468. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8469. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8470. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8471. "ref/xamarinios10/_._",
  8472. "ref/xamarinmac20/_._",
  8473. "ref/xamarintvos10/_._",
  8474. "ref/xamarinwatchos10/_._",
  8475. "system.threading.thread.4.3.0.nupkg.sha512",
  8476. "system.threading.thread.nuspec"
  8477. ]
  8478. },
  8479. "System.Threading.ThreadPool/4.3.0": {
  8480. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8481. "type": "package",
  8482. "path": "system.threading.threadpool/4.3.0",
  8483. "files": [
  8484. ".nupkg.metadata",
  8485. ".signature.p7s",
  8486. "ThirdPartyNotices.txt",
  8487. "dotnet_library_license.txt",
  8488. "lib/MonoAndroid10/_._",
  8489. "lib/MonoTouch10/_._",
  8490. "lib/net46/System.Threading.ThreadPool.dll",
  8491. "lib/netcore50/_._",
  8492. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8493. "lib/xamarinios10/_._",
  8494. "lib/xamarinmac20/_._",
  8495. "lib/xamarintvos10/_._",
  8496. "lib/xamarinwatchos10/_._",
  8497. "ref/MonoAndroid10/_._",
  8498. "ref/MonoTouch10/_._",
  8499. "ref/net46/System.Threading.ThreadPool.dll",
  8500. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8501. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8502. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8503. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8504. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8505. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8506. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8507. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8508. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8509. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8510. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8511. "ref/xamarinios10/_._",
  8512. "ref/xamarinmac20/_._",
  8513. "ref/xamarintvos10/_._",
  8514. "ref/xamarinwatchos10/_._",
  8515. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8516. "system.threading.threadpool.nuspec"
  8517. ]
  8518. },
  8519. "System.Threading.Timer/4.3.0": {
  8520. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8521. "type": "package",
  8522. "path": "system.threading.timer/4.3.0",
  8523. "files": [
  8524. ".nupkg.metadata",
  8525. ".signature.p7s",
  8526. "ThirdPartyNotices.txt",
  8527. "dotnet_library_license.txt",
  8528. "lib/MonoAndroid10/_._",
  8529. "lib/MonoTouch10/_._",
  8530. "lib/net451/_._",
  8531. "lib/portable-net451+win81+wpa81/_._",
  8532. "lib/win81/_._",
  8533. "lib/wpa81/_._",
  8534. "lib/xamarinios10/_._",
  8535. "lib/xamarinmac20/_._",
  8536. "lib/xamarintvos10/_._",
  8537. "lib/xamarinwatchos10/_._",
  8538. "ref/MonoAndroid10/_._",
  8539. "ref/MonoTouch10/_._",
  8540. "ref/net451/_._",
  8541. "ref/netcore50/System.Threading.Timer.dll",
  8542. "ref/netcore50/System.Threading.Timer.xml",
  8543. "ref/netcore50/de/System.Threading.Timer.xml",
  8544. "ref/netcore50/es/System.Threading.Timer.xml",
  8545. "ref/netcore50/fr/System.Threading.Timer.xml",
  8546. "ref/netcore50/it/System.Threading.Timer.xml",
  8547. "ref/netcore50/ja/System.Threading.Timer.xml",
  8548. "ref/netcore50/ko/System.Threading.Timer.xml",
  8549. "ref/netcore50/ru/System.Threading.Timer.xml",
  8550. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8551. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8552. "ref/netstandard1.2/System.Threading.Timer.dll",
  8553. "ref/netstandard1.2/System.Threading.Timer.xml",
  8554. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8555. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8556. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8557. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8558. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8559. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8560. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8561. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8562. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8563. "ref/portable-net451+win81+wpa81/_._",
  8564. "ref/win81/_._",
  8565. "ref/wpa81/_._",
  8566. "ref/xamarinios10/_._",
  8567. "ref/xamarinmac20/_._",
  8568. "ref/xamarintvos10/_._",
  8569. "ref/xamarinwatchos10/_._",
  8570. "system.threading.timer.4.3.0.nupkg.sha512",
  8571. "system.threading.timer.nuspec"
  8572. ]
  8573. },
  8574. "System.Windows.Extensions/4.7.0": {
  8575. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8576. "type": "package",
  8577. "path": "system.windows.extensions/4.7.0",
  8578. "files": [
  8579. ".nupkg.metadata",
  8580. ".signature.p7s",
  8581. "LICENSE.TXT",
  8582. "THIRD-PARTY-NOTICES.TXT",
  8583. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8584. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8585. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8586. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8587. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8588. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8589. "system.windows.extensions.4.7.0.nupkg.sha512",
  8590. "system.windows.extensions.nuspec",
  8591. "useSharedDesignerContext.txt",
  8592. "version.txt"
  8593. ]
  8594. },
  8595. "System.Xml.ReaderWriter/4.3.0": {
  8596. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8597. "type": "package",
  8598. "path": "system.xml.readerwriter/4.3.0",
  8599. "files": [
  8600. ".nupkg.metadata",
  8601. ".signature.p7s",
  8602. "ThirdPartyNotices.txt",
  8603. "dotnet_library_license.txt",
  8604. "lib/MonoAndroid10/_._",
  8605. "lib/MonoTouch10/_._",
  8606. "lib/net45/_._",
  8607. "lib/net46/System.Xml.ReaderWriter.dll",
  8608. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8609. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8610. "lib/portable-net45+win8+wp8+wpa81/_._",
  8611. "lib/win8/_._",
  8612. "lib/wp80/_._",
  8613. "lib/wpa81/_._",
  8614. "lib/xamarinios10/_._",
  8615. "lib/xamarinmac20/_._",
  8616. "lib/xamarintvos10/_._",
  8617. "lib/xamarinwatchos10/_._",
  8618. "ref/MonoAndroid10/_._",
  8619. "ref/MonoTouch10/_._",
  8620. "ref/net45/_._",
  8621. "ref/net46/System.Xml.ReaderWriter.dll",
  8622. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8623. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8624. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8625. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8626. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8627. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8628. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8629. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8630. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8631. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8632. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8633. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8634. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8635. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8636. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8637. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8638. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8639. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8640. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8641. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8642. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8643. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8644. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8645. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8646. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8647. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8648. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8649. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8650. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8651. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8652. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8653. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8654. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8655. "ref/portable-net45+win8+wp8+wpa81/_._",
  8656. "ref/win8/_._",
  8657. "ref/wp80/_._",
  8658. "ref/wpa81/_._",
  8659. "ref/xamarinios10/_._",
  8660. "ref/xamarinmac20/_._",
  8661. "ref/xamarintvos10/_._",
  8662. "ref/xamarinwatchos10/_._",
  8663. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8664. "system.xml.readerwriter.nuspec"
  8665. ]
  8666. },
  8667. "System.Xml.XDocument/4.3.0": {
  8668. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8669. "type": "package",
  8670. "path": "system.xml.xdocument/4.3.0",
  8671. "files": [
  8672. ".nupkg.metadata",
  8673. ".signature.p7s",
  8674. "ThirdPartyNotices.txt",
  8675. "dotnet_library_license.txt",
  8676. "lib/MonoAndroid10/_._",
  8677. "lib/MonoTouch10/_._",
  8678. "lib/net45/_._",
  8679. "lib/netcore50/System.Xml.XDocument.dll",
  8680. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8681. "lib/portable-net45+win8+wp8+wpa81/_._",
  8682. "lib/win8/_._",
  8683. "lib/wp80/_._",
  8684. "lib/wpa81/_._",
  8685. "lib/xamarinios10/_._",
  8686. "lib/xamarinmac20/_._",
  8687. "lib/xamarintvos10/_._",
  8688. "lib/xamarinwatchos10/_._",
  8689. "ref/MonoAndroid10/_._",
  8690. "ref/MonoTouch10/_._",
  8691. "ref/net45/_._",
  8692. "ref/netcore50/System.Xml.XDocument.dll",
  8693. "ref/netcore50/System.Xml.XDocument.xml",
  8694. "ref/netcore50/de/System.Xml.XDocument.xml",
  8695. "ref/netcore50/es/System.Xml.XDocument.xml",
  8696. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8697. "ref/netcore50/it/System.Xml.XDocument.xml",
  8698. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8699. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8700. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8701. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8702. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8703. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8704. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8705. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8706. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8707. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8708. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8709. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8710. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8711. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8712. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8713. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8714. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8715. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8716. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8717. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8718. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8719. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8720. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8721. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8722. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8723. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8724. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8725. "ref/portable-net45+win8+wp8+wpa81/_._",
  8726. "ref/win8/_._",
  8727. "ref/wp80/_._",
  8728. "ref/wpa81/_._",
  8729. "ref/xamarinios10/_._",
  8730. "ref/xamarinmac20/_._",
  8731. "ref/xamarintvos10/_._",
  8732. "ref/xamarinwatchos10/_._",
  8733. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8734. "system.xml.xdocument.nuspec"
  8735. ]
  8736. },
  8737. "System.Xml.XmlDocument/4.3.0": {
  8738. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8739. "type": "package",
  8740. "path": "system.xml.xmldocument/4.3.0",
  8741. "files": [
  8742. ".nupkg.metadata",
  8743. ".signature.p7s",
  8744. "ThirdPartyNotices.txt",
  8745. "dotnet_library_license.txt",
  8746. "lib/MonoAndroid10/_._",
  8747. "lib/MonoTouch10/_._",
  8748. "lib/net46/System.Xml.XmlDocument.dll",
  8749. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8750. "lib/xamarinios10/_._",
  8751. "lib/xamarinmac20/_._",
  8752. "lib/xamarintvos10/_._",
  8753. "lib/xamarinwatchos10/_._",
  8754. "ref/MonoAndroid10/_._",
  8755. "ref/MonoTouch10/_._",
  8756. "ref/net46/System.Xml.XmlDocument.dll",
  8757. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8758. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8759. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8760. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8761. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8762. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8763. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8764. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8765. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8766. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8767. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8768. "ref/xamarinios10/_._",
  8769. "ref/xamarinmac20/_._",
  8770. "ref/xamarintvos10/_._",
  8771. "ref/xamarinwatchos10/_._",
  8772. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8773. "system.xml.xmldocument.nuspec"
  8774. ]
  8775. },
  8776. "ZXing.Net/0.16.9": {
  8777. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  8778. "type": "package",
  8779. "path": "zxing.net/0.16.9",
  8780. "files": [
  8781. ".nupkg.metadata",
  8782. ".signature.p7s",
  8783. "lib/native/zxing.XML",
  8784. "lib/native/zxing.pri",
  8785. "lib/native/zxing.winmd",
  8786. "lib/net20-cf/zxing.ce2.0.dll",
  8787. "lib/net20-cf/zxing.ce2.0.xml",
  8788. "lib/net20/zxing.XML",
  8789. "lib/net20/zxing.dll",
  8790. "lib/net35-cf/zxing.ce3.5.dll",
  8791. "lib/net35-cf/zxing.ce3.5.xml",
  8792. "lib/net35/zxing.XML",
  8793. "lib/net35/zxing.dll",
  8794. "lib/net40/zxing.XML",
  8795. "lib/net40/zxing.dll",
  8796. "lib/net40/zxing.presentation.XML",
  8797. "lib/net40/zxing.presentation.dll",
  8798. "lib/net45/zxing.XML",
  8799. "lib/net45/zxing.dll",
  8800. "lib/net45/zxing.presentation.XML",
  8801. "lib/net45/zxing.presentation.dll",
  8802. "lib/net461/zxing.XML",
  8803. "lib/net461/zxing.dll",
  8804. "lib/net461/zxing.presentation.XML",
  8805. "lib/net461/zxing.presentation.dll",
  8806. "lib/net47/zxing.XML",
  8807. "lib/net47/zxing.dll",
  8808. "lib/net47/zxing.presentation.XML",
  8809. "lib/net47/zxing.presentation.dll",
  8810. "lib/net48/zxing.XML",
  8811. "lib/net48/zxing.dll",
  8812. "lib/net48/zxing.presentation.XML",
  8813. "lib/net48/zxing.presentation.dll",
  8814. "lib/net5.0/zxing.XML",
  8815. "lib/net5.0/zxing.dll",
  8816. "lib/net6.0/zxing.XML",
  8817. "lib/net6.0/zxing.dll",
  8818. "lib/net7.0/zxing.XML",
  8819. "lib/net7.0/zxing.dll",
  8820. "lib/netcoreapp3.0/zxing.dll",
  8821. "lib/netcoreapp3.0/zxing.xml",
  8822. "lib/netcoreapp3.1/zxing.dll",
  8823. "lib/netcoreapp3.1/zxing.xml",
  8824. "lib/netstandard1.0/zxing.dll",
  8825. "lib/netstandard1.0/zxing.xml",
  8826. "lib/netstandard1.1/zxing.dll",
  8827. "lib/netstandard1.1/zxing.xml",
  8828. "lib/netstandard1.3/zxing.dll",
  8829. "lib/netstandard1.3/zxing.xml",
  8830. "lib/netstandard2.0/zxing.dll",
  8831. "lib/netstandard2.0/zxing.xml",
  8832. "lib/netstandard2.1/zxing.dll",
  8833. "lib/netstandard2.1/zxing.xml",
  8834. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  8835. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  8836. "lib/sl3-wp/zxing.wp7.0.XML",
  8837. "lib/sl3-wp/zxing.wp7.0.dll",
  8838. "lib/sl4-wp71/zxing.wp7.1.XML",
  8839. "lib/sl4-wp71/zxing.wp7.1.dll",
  8840. "lib/sl4/zxing.sl4.XML",
  8841. "lib/sl4/zxing.sl4.dll",
  8842. "lib/sl5/zxing.sl5.XML",
  8843. "lib/sl5/zxing.sl5.dll",
  8844. "lib/uap10/zxing.dll",
  8845. "lib/uap10/zxing.pri",
  8846. "lib/uap10/zxing.xml",
  8847. "lib/windows8-managed/zxing.winrt.XML",
  8848. "lib/windows8-managed/zxing.winrt.dll",
  8849. "lib/windows8/zxing.XML",
  8850. "lib/windows8/zxing.pri",
  8851. "lib/windows8/zxing.winmd",
  8852. "lib/wp8/zxing.wp8.0.XML",
  8853. "lib/wp8/zxing.wp8.0.dll",
  8854. "logo.jpg",
  8855. "zxing.net.0.16.9.nupkg.sha512",
  8856. "zxing.net.nuspec"
  8857. ]
  8858. },
  8859. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  8860. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  8861. "type": "package",
  8862. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  8863. "files": [
  8864. ".nupkg.metadata",
  8865. ".signature.p7s",
  8866. "lib/net472/ZXing.ImageSharp.V2.dll",
  8867. "lib/net472/ZXing.ImageSharp.V2.pdb",
  8868. "lib/net472/ZXing.ImageSharp.V2.xml",
  8869. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  8870. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  8871. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  8872. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  8873. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  8874. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  8875. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  8876. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  8877. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  8878. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  8879. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  8880. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  8881. "logo.jpg",
  8882. "readme.md",
  8883. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  8884. "zxing.net.bindings.imagesharp.v2.nuspec"
  8885. ]
  8886. },
  8887. "Ropin.Core.Common/1.0.0": {
  8888. "type": "project",
  8889. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  8890. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  8891. },
  8892. "Ropin.Inspection.Common/1.0.0": {
  8893. "type": "project",
  8894. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  8895. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  8896. },
  8897. "Ropin.Inspection.Model/1.0.0": {
  8898. "type": "project",
  8899. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  8900. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  8901. },
  8902. "Ropin.Inspection.Repository/1.0.0": {
  8903. "type": "project",
  8904. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  8905. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  8906. },
  8907. "Ropin.Inspection.Service/1.0.0": {
  8908. "type": "project",
  8909. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  8910. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  8911. },
  8912. "Ropin.Inspection.Tasks/1.0.0": {
  8913. "type": "project",
  8914. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  8915. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  8916. }
  8917. },
  8918. "projectFileDependencyGroups": {
  8919. "net5.0": [
  8920. "Autofac >= 6.2.0",
  8921. "Autofac.Extras.DynamicProxy >= 6.0.0",
  8922. "Microsoft.AspNetCore.Http.Abstractions >= 2.2.0",
  8923. "Ropin.Core.Common >= 1.0.0",
  8924. "Ropin.Inspection.Common >= 1.0.0",
  8925. "Ropin.Inspection.Service >= 1.0.0",
  8926. "Ropin.Inspection.Tasks >= 1.0.0",
  8927. "StackExchange.Redis >= 1.2.4",
  8928. "log4net >= 2.0.17"
  8929. ]
  8930. },
  8931. "packageFolders": {
  8932. "D:\\.nuget\\packages": {},
  8933. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  8934. },
  8935. "project": {
  8936. "version": "1.0.0",
  8937. "restore": {
  8938. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj",
  8939. "projectName": "Ropin.Core.Extensions",
  8940. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj",
  8941. "packagesPath": "D:\\.nuget\\packages",
  8942. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\obj\\",
  8943. "projectStyle": "PackageReference",
  8944. "fallbackFolders": [
  8945. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  8946. ],
  8947. "configFilePaths": [
  8948. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8949. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8950. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8951. ],
  8952. "originalTargetFrameworks": [
  8953. "net5.0"
  8954. ],
  8955. "sources": {
  8956. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8957. "C:\\Program Files\\dotnet\\library-packs": {},
  8958. "https://api.nuget.org/v3/index.json": {}
  8959. },
  8960. "frameworks": {
  8961. "net5.0": {
  8962. "targetAlias": "net5.0",
  8963. "projectReferences": {
  8964. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  8965. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  8966. },
  8967. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  8968. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  8969. },
  8970. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  8971. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  8972. },
  8973. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj": {
  8974. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj"
  8975. }
  8976. }
  8977. }
  8978. },
  8979. "warningProperties": {
  8980. "warnAsError": [
  8981. "NU1605"
  8982. ]
  8983. }
  8984. },
  8985. "frameworks": {
  8986. "net5.0": {
  8987. "targetAlias": "net5.0",
  8988. "dependencies": {
  8989. "Autofac": {
  8990. "target": "Package",
  8991. "version": "[6.2.0, )"
  8992. },
  8993. "Autofac.Extras.DynamicProxy": {
  8994. "target": "Package",
  8995. "version": "[6.0.0, )"
  8996. },
  8997. "Microsoft.AspNetCore.Http.Abstractions": {
  8998. "target": "Package",
  8999. "version": "[2.2.0, )"
  9000. },
  9001. "StackExchange.Redis": {
  9002. "target": "Package",
  9003. "version": "[1.2.4, )"
  9004. },
  9005. "log4net": {
  9006. "target": "Package",
  9007. "version": "[2.0.17, )"
  9008. }
  9009. },
  9010. "imports": [
  9011. "net461",
  9012. "net462",
  9013. "net47",
  9014. "net471",
  9015. "net472",
  9016. "net48",
  9017. "net481"
  9018. ],
  9019. "assetTargetFallback": true,
  9020. "warn": true,
  9021. "frameworkReferences": {
  9022. "Microsoft.NETCore.App": {
  9023. "privateAssets": "all"
  9024. }
  9025. },
  9026. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9027. }
  9028. }
  9029. }
  9030. }