No Description

project.assets.json 310KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/10.1.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0",
  9. "System.Reflection.Emit": "4.7.0"
  10. },
  11. "compile": {
  12. "lib/netstandard2.0/AutoMapper.dll": {}
  13. },
  14. "runtime": {
  15. "lib/netstandard2.0/AutoMapper.dll": {}
  16. }
  17. },
  18. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  19. "type": "package",
  20. "dependencies": {
  21. "AutoMapper": "[10.1.1, 11.0.0)",
  22. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  23. "Microsoft.Extensions.Options": "3.0.0"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  30. }
  31. },
  32. "BouncyCastle.NetCore/1.8.3": {
  33. "type": "package",
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.0",
  36. "System.Reflection": "4.3.0",
  37. "System.Reflection.TypeExtensions": "4.1.0"
  38. },
  39. "compile": {
  40. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  41. },
  42. "runtime": {
  43. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  44. }
  45. },
  46. "EntityFramework/6.1.0": {
  47. "type": "package",
  48. "compile": {
  49. "lib/net45/EntityFramework.SqlServer.dll": {},
  50. "lib/net45/EntityFramework.dll": {}
  51. },
  52. "runtime": {
  53. "lib/net45/EntityFramework.SqlServer.dll": {},
  54. "lib/net45/EntityFramework.dll": {}
  55. }
  56. },
  57. "Google.Protobuf/3.11.4": {
  58. "type": "package",
  59. "dependencies": {
  60. "System.Memory": "4.5.2"
  61. },
  62. "compile": {
  63. "lib/netstandard2.0/Google.Protobuf.dll": {}
  64. },
  65. "runtime": {
  66. "lib/netstandard2.0/Google.Protobuf.dll": {}
  67. }
  68. },
  69. "Humanizer.Core/2.8.26": {
  70. "type": "package",
  71. "compile": {
  72. "lib/netstandard2.0/_._": {}
  73. },
  74. "runtime": {
  75. "lib/netstandard2.0/Humanizer.dll": {}
  76. }
  77. },
  78. "K4os.Compression.LZ4/1.1.11": {
  79. "type": "package",
  80. "dependencies": {
  81. "System.Memory": "4.5.3"
  82. },
  83. "compile": {
  84. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  85. },
  86. "runtime": {
  87. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  88. }
  89. },
  90. "K4os.Compression.LZ4.Streams/1.1.11": {
  91. "type": "package",
  92. "dependencies": {
  93. "K4os.Compression.LZ4": "1.1.11",
  94. "K4os.Hash.xxHash": "1.0.6"
  95. },
  96. "compile": {
  97. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  98. },
  99. "runtime": {
  100. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  101. }
  102. },
  103. "K4os.Hash.xxHash/1.0.6": {
  104. "type": "package",
  105. "dependencies": {
  106. "System.Memory": "4.5.3"
  107. },
  108. "compile": {
  109. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  110. },
  111. "runtime": {
  112. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  113. }
  114. },
  115. "MediatR/7.0.0": {
  116. "type": "package",
  117. "compile": {
  118. "lib/netstandard2.0/MediatR.dll": {}
  119. },
  120. "runtime": {
  121. "lib/netstandard2.0/MediatR.dll": {}
  122. }
  123. },
  124. "MediatR.Extensions.Microsoft.DependencyInjection/7.0.0": {
  125. "type": "package",
  126. "dependencies": {
  127. "MediatR": "7.0.0",
  128. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
  129. },
  130. "compile": {
  131. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll": {}
  132. },
  133. "runtime": {
  134. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll": {}
  135. }
  136. },
  137. "Microsoft.AspNet.Identity.Core/2.2.3": {
  138. "type": "package",
  139. "compile": {
  140. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  141. },
  142. "runtime": {
  143. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  144. }
  145. },
  146. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  147. "type": "package",
  148. "dependencies": {
  149. "EntityFramework": "6.1.0",
  150. "Microsoft.AspNet.Identity.Core": "2.2.3"
  151. },
  152. "compile": {
  153. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  154. },
  155. "runtime": {
  156. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  157. }
  158. },
  159. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  160. "type": "package",
  161. "compile": {
  162. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  163. },
  164. "runtime": {
  165. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  166. }
  167. },
  168. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  169. "type": "package",
  170. "dependencies": {
  171. "Microsoft.AspNetCore.Cryptography.Internal": "5.0.10"
  172. },
  173. "compile": {
  174. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  175. },
  176. "runtime": {
  177. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  178. }
  179. },
  180. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  181. "type": "package",
  182. "dependencies": {
  183. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  184. "System.Text.Encodings.Web": "4.5.0"
  185. },
  186. "compile": {
  187. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  191. }
  192. },
  193. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  194. "type": "package",
  195. "dependencies": {
  196. "Microsoft.Extensions.Primitives": "2.2.0"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  200. },
  201. "runtime": {
  202. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  203. }
  204. },
  205. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  206. "type": "package",
  207. "dependencies": {
  208. "Microsoft.EntityFrameworkCore.Relational": "5.0.10",
  209. "Microsoft.Extensions.Identity.Stores": "5.0.10"
  210. },
  211. "compile": {
  212. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  213. },
  214. "runtime": {
  215. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  216. }
  217. },
  218. "Microsoft.CSharp/4.7.0": {
  219. "type": "package",
  220. "compile": {
  221. "ref/netcoreapp2.0/_._": {}
  222. },
  223. "runtime": {
  224. "lib/netcoreapp2.0/_._": {}
  225. }
  226. },
  227. "Microsoft.EntityFrameworkCore/5.0.13": {
  228. "type": "package",
  229. "dependencies": {
  230. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.13",
  231. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.13",
  232. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  233. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  234. "Microsoft.Extensions.Logging": "5.0.0",
  235. "System.Collections.Immutable": "5.0.0",
  236. "System.ComponentModel.Annotations": "5.0.0",
  237. "System.Diagnostics.DiagnosticSource": "5.0.1"
  238. },
  239. "compile": {
  240. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  241. },
  242. "runtime": {
  243. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  244. }
  245. },
  246. "Microsoft.EntityFrameworkCore.Abstractions/5.0.13": {
  247. "type": "package",
  248. "compile": {
  249. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  250. },
  251. "runtime": {
  252. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  253. }
  254. },
  255. "Microsoft.EntityFrameworkCore.Analyzers/5.0.13": {
  256. "type": "package",
  257. "compile": {
  258. "lib/netstandard2.0/_._": {}
  259. },
  260. "runtime": {
  261. "lib/netstandard2.0/_._": {}
  262. }
  263. },
  264. "Microsoft.EntityFrameworkCore.Design/5.0.13": {
  265. "type": "package",
  266. "dependencies": {
  267. "Humanizer.Core": "2.8.26",
  268. "Microsoft.CSharp": "4.7.0",
  269. "Microsoft.EntityFrameworkCore.Relational": "5.0.13"
  270. },
  271. "compile": {
  272. "lib/netstandard2.1/_._": {}
  273. },
  274. "runtime": {
  275. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {}
  276. },
  277. "build": {
  278. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {}
  279. }
  280. },
  281. "Microsoft.EntityFrameworkCore.Relational/5.0.13": {
  282. "type": "package",
  283. "dependencies": {
  284. "Microsoft.EntityFrameworkCore": "5.0.13",
  285. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  286. },
  287. "compile": {
  288. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  289. },
  290. "runtime": {
  291. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  292. }
  293. },
  294. "Microsoft.EntityFrameworkCore.Tools/5.0.13": {
  295. "type": "package",
  296. "dependencies": {
  297. "Microsoft.EntityFrameworkCore.Design": "5.0.13"
  298. },
  299. "compile": {
  300. "lib/netstandard2.1/_._": {}
  301. },
  302. "runtime": {
  303. "lib/netstandard2.1/_._": {}
  304. }
  305. },
  306. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  307. "type": "package",
  308. "dependencies": {
  309. "Microsoft.Extensions.Primitives": "5.0.0"
  310. },
  311. "compile": {
  312. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  313. },
  314. "runtime": {
  315. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  316. }
  317. },
  318. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  319. "type": "package",
  320. "dependencies": {
  321. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  322. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  323. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  324. "Microsoft.Extensions.Options": "5.0.0",
  325. "Microsoft.Extensions.Primitives": "5.0.0"
  326. },
  327. "compile": {
  328. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  329. },
  330. "runtime": {
  331. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  332. }
  333. },
  334. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  335. "type": "package",
  336. "dependencies": {
  337. "Microsoft.Extensions.Primitives": "6.0.0"
  338. },
  339. "compile": {
  340. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  341. },
  342. "runtime": {
  343. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  344. }
  345. },
  346. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  347. "type": "package",
  348. "dependencies": {
  349. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  350. },
  351. "compile": {
  352. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  353. },
  354. "runtime": {
  355. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  356. }
  357. },
  358. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  359. "type": "package",
  360. "compile": {
  361. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  362. },
  363. "runtime": {
  364. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  365. }
  366. },
  367. "Microsoft.Extensions.Identity.Core/5.0.10": {
  368. "type": "package",
  369. "dependencies": {
  370. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.10",
  371. "Microsoft.Extensions.Logging": "5.0.0",
  372. "Microsoft.Extensions.Options": "5.0.0",
  373. "System.ComponentModel.Annotations": "5.0.0"
  374. },
  375. "compile": {
  376. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  377. },
  378. "runtime": {
  379. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  380. }
  381. },
  382. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  383. "type": "package",
  384. "dependencies": {
  385. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  386. "Microsoft.Extensions.Identity.Core": "5.0.10",
  387. "Microsoft.Extensions.Logging": "5.0.0"
  388. },
  389. "compile": {
  390. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  391. },
  392. "runtime": {
  393. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  394. }
  395. },
  396. "Microsoft.Extensions.Logging/5.0.0": {
  397. "type": "package",
  398. "dependencies": {
  399. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  400. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  401. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  402. "Microsoft.Extensions.Options": "5.0.0",
  403. "System.Diagnostics.DiagnosticSource": "5.0.0"
  404. },
  405. "compile": {
  406. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  407. },
  408. "runtime": {
  409. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  410. }
  411. },
  412. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  413. "type": "package",
  414. "compile": {
  415. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  416. },
  417. "runtime": {
  418. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  419. }
  420. },
  421. "Microsoft.Extensions.Options/5.0.0": {
  422. "type": "package",
  423. "dependencies": {
  424. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  425. "Microsoft.Extensions.Primitives": "5.0.0"
  426. },
  427. "compile": {
  428. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  429. },
  430. "runtime": {
  431. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  432. }
  433. },
  434. "Microsoft.Extensions.Primitives/6.0.0": {
  435. "type": "package",
  436. "dependencies": {
  437. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  438. },
  439. "compile": {
  440. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  441. },
  442. "runtime": {
  443. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  444. },
  445. "build": {
  446. "buildTransitive/netcoreapp3.1/_._": {}
  447. }
  448. },
  449. "Microsoft.NETCore.Platforms/3.1.0": {
  450. "type": "package",
  451. "compile": {
  452. "lib/netstandard1.0/_._": {}
  453. },
  454. "runtime": {
  455. "lib/netstandard1.0/_._": {}
  456. }
  457. },
  458. "Microsoft.NETCore.Targets/1.1.0": {
  459. "type": "package",
  460. "compile": {
  461. "lib/netstandard1.0/_._": {}
  462. },
  463. "runtime": {
  464. "lib/netstandard1.0/_._": {}
  465. }
  466. },
  467. "Microsoft.OpenApi/1.2.3": {
  468. "type": "package",
  469. "compile": {
  470. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  471. },
  472. "runtime": {
  473. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  474. }
  475. },
  476. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.11.1": {
  477. "type": "package",
  478. "build": {
  479. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  480. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  481. }
  482. },
  483. "Microsoft.Win32.Primitives/4.0.1": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.NETCore.Platforms": "1.0.1",
  487. "Microsoft.NETCore.Targets": "1.0.1",
  488. "System.Runtime": "4.1.0"
  489. },
  490. "compile": {
  491. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  492. }
  493. },
  494. "Microsoft.Win32.Registry/4.7.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "System.Security.AccessControl": "4.7.0",
  498. "System.Security.Principal.Windows": "4.7.0"
  499. },
  500. "compile": {
  501. "ref/netstandard2.0/_._": {}
  502. },
  503. "runtime": {
  504. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  505. },
  506. "runtimeTargets": {
  507. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  508. "assetType": "runtime",
  509. "rid": "unix"
  510. },
  511. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  512. "assetType": "runtime",
  513. "rid": "win"
  514. }
  515. }
  516. },
  517. "Microsoft.Win32.SystemEvents/4.7.0": {
  518. "type": "package",
  519. "dependencies": {
  520. "Microsoft.NETCore.Platforms": "3.1.0"
  521. },
  522. "compile": {
  523. "ref/netstandard2.0/_._": {}
  524. },
  525. "runtime": {
  526. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  527. },
  528. "runtimeTargets": {
  529. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  530. "assetType": "runtime",
  531. "rid": "win"
  532. }
  533. }
  534. },
  535. "MySql.Data/8.0.22": {
  536. "type": "package",
  537. "dependencies": {
  538. "BouncyCastle.NetCore": "1.8.3",
  539. "Google.Protobuf": "3.11.4",
  540. "K4os.Compression.LZ4": "1.1.11",
  541. "K4os.Compression.LZ4.Streams": "1.1.11",
  542. "K4os.Hash.xxHash": "1.0.6",
  543. "SSH.NET": "2016.1.0",
  544. "System.Buffers": "4.5.1",
  545. "System.Configuration.ConfigurationManager": "4.4.1",
  546. "System.Security.Permissions": "4.7.0",
  547. "System.Text.Encoding.CodePages": "4.4.0"
  548. },
  549. "compile": {
  550. "lib/netstandard2.1/MySql.Data.dll": {},
  551. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  552. "lib/netstandard2.1/Zstandard.Net.dll": {}
  553. },
  554. "runtime": {
  555. "lib/netstandard2.1/MySql.Data.dll": {},
  556. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  557. "lib/netstandard2.1/Zstandard.Net.dll": {}
  558. }
  559. },
  560. "MySql.Data.EntityFrameworkCore/8.0.22": {
  561. "type": "package",
  562. "dependencies": {
  563. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  564. "MySql.Data": "8.0.22"
  565. },
  566. "compile": {
  567. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  568. },
  569. "runtime": {
  570. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  571. }
  572. },
  573. "MySqlConnector/1.1.0": {
  574. "type": "package",
  575. "compile": {
  576. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  577. },
  578. "runtime": {
  579. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  580. }
  581. },
  582. "NETStandard.Library/1.6.0": {
  583. "type": "package",
  584. "dependencies": {
  585. "Microsoft.NETCore.Platforms": "1.0.1",
  586. "Microsoft.Win32.Primitives": "4.0.1",
  587. "System.AppContext": "4.1.0",
  588. "System.Collections": "4.0.11",
  589. "System.Collections.Concurrent": "4.0.12",
  590. "System.Console": "4.0.0",
  591. "System.Diagnostics.Debug": "4.0.11",
  592. "System.Diagnostics.Tools": "4.0.1",
  593. "System.Diagnostics.Tracing": "4.1.0",
  594. "System.Globalization": "4.0.11",
  595. "System.Globalization.Calendars": "4.0.1",
  596. "System.IO": "4.1.0",
  597. "System.IO.Compression": "4.1.0",
  598. "System.IO.Compression.ZipFile": "4.0.1",
  599. "System.IO.FileSystem": "4.0.1",
  600. "System.IO.FileSystem.Primitives": "4.0.1",
  601. "System.Linq": "4.1.0",
  602. "System.Linq.Expressions": "4.1.0",
  603. "System.Net.Http": "4.1.0",
  604. "System.Net.Primitives": "4.0.11",
  605. "System.Net.Sockets": "4.1.0",
  606. "System.ObjectModel": "4.0.12",
  607. "System.Reflection": "4.1.0",
  608. "System.Reflection.Extensions": "4.0.1",
  609. "System.Reflection.Primitives": "4.0.1",
  610. "System.Resources.ResourceManager": "4.0.1",
  611. "System.Runtime": "4.1.0",
  612. "System.Runtime.Extensions": "4.1.0",
  613. "System.Runtime.Handles": "4.0.1",
  614. "System.Runtime.InteropServices": "4.1.0",
  615. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  616. "System.Runtime.Numerics": "4.0.1",
  617. "System.Security.Cryptography.Algorithms": "4.2.0",
  618. "System.Security.Cryptography.Encoding": "4.0.0",
  619. "System.Security.Cryptography.Primitives": "4.0.0",
  620. "System.Security.Cryptography.X509Certificates": "4.1.0",
  621. "System.Text.Encoding": "4.0.11",
  622. "System.Text.Encoding.Extensions": "4.0.11",
  623. "System.Text.RegularExpressions": "4.1.0",
  624. "System.Threading": "4.0.11",
  625. "System.Threading.Tasks": "4.0.11",
  626. "System.Threading.Timer": "4.0.1",
  627. "System.Xml.ReaderWriter": "4.0.11",
  628. "System.Xml.XDocument": "4.0.11"
  629. }
  630. },
  631. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  632. "type": "package",
  633. "dependencies": {
  634. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  635. "MySqlConnector": "1.1.0"
  636. },
  637. "compile": {
  638. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  639. },
  640. "runtime": {
  641. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  642. }
  643. },
  644. "runtime.native.System/4.0.0": {
  645. "type": "package",
  646. "dependencies": {
  647. "Microsoft.NETCore.Platforms": "1.0.1",
  648. "Microsoft.NETCore.Targets": "1.0.1"
  649. },
  650. "compile": {
  651. "lib/netstandard1.0/_._": {}
  652. },
  653. "runtime": {
  654. "lib/netstandard1.0/_._": {}
  655. }
  656. },
  657. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  658. "type": "package",
  659. "dependencies": {
  660. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  661. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  662. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  663. }
  664. },
  665. "runtime.native.System.IO.Compression/4.1.0": {
  666. "type": "package",
  667. "dependencies": {
  668. "Microsoft.NETCore.Platforms": "1.0.1",
  669. "Microsoft.NETCore.Targets": "1.0.1"
  670. },
  671. "compile": {
  672. "lib/netstandard1.0/_._": {}
  673. },
  674. "runtime": {
  675. "lib/netstandard1.0/_._": {}
  676. }
  677. },
  678. "runtime.native.System.Net.Http/4.0.1": {
  679. "type": "package",
  680. "dependencies": {
  681. "Microsoft.NETCore.Platforms": "1.0.1",
  682. "Microsoft.NETCore.Targets": "1.0.1"
  683. },
  684. "compile": {
  685. "lib/netstandard1.0/_._": {}
  686. },
  687. "runtime": {
  688. "lib/netstandard1.0/_._": {}
  689. }
  690. },
  691. "runtime.native.System.Security.Cryptography/4.0.0": {
  692. "type": "package",
  693. "dependencies": {
  694. "Microsoft.NETCore.Platforms": "1.0.1",
  695. "Microsoft.NETCore.Targets": "1.0.1"
  696. },
  697. "compile": {
  698. "lib/netstandard1.0/_._": {}
  699. },
  700. "runtime": {
  701. "lib/netstandard1.0/_._": {}
  702. }
  703. },
  704. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  705. "type": "package",
  706. "runtimeTargets": {
  707. "runtimes/win-arm64/native/sni.dll": {
  708. "assetType": "native",
  709. "rid": "win-arm64"
  710. }
  711. }
  712. },
  713. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  714. "type": "package",
  715. "runtimeTargets": {
  716. "runtimes/win-x64/native/sni.dll": {
  717. "assetType": "native",
  718. "rid": "win-x64"
  719. }
  720. }
  721. },
  722. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  723. "type": "package",
  724. "runtimeTargets": {
  725. "runtimes/win-x86/native/sni.dll": {
  726. "assetType": "native",
  727. "rid": "win-x86"
  728. }
  729. }
  730. },
  731. "SSH.NET/2016.1.0": {
  732. "type": "package",
  733. "dependencies": {
  734. "Microsoft.CSharp": "4.0.1",
  735. "SshNet.Security.Cryptography": "[1.2.0]",
  736. "System.Diagnostics.Debug": "4.0.11",
  737. "System.Diagnostics.Tools": "4.0.1",
  738. "System.Diagnostics.TraceSource": "4.0.0",
  739. "System.Globalization": "4.0.11",
  740. "System.IO": "4.1.0",
  741. "System.IO.FileSystem": "4.0.1",
  742. "System.IO.FileSystem.Primitives": "4.0.1",
  743. "System.Linq": "4.1.0",
  744. "System.Net.NameResolution": "4.0.0",
  745. "System.Net.Sockets": "4.1.0",
  746. "System.Reflection.Extensions": "4.0.1",
  747. "System.Runtime.Extensions": "4.1.0",
  748. "System.Security.Cryptography.Algorithms": "4.2.0",
  749. "System.Text.RegularExpressions": "4.1.0",
  750. "System.Threading": "4.0.11",
  751. "System.Threading.Thread": "4.0.0",
  752. "System.Threading.ThreadPool": "4.0.10",
  753. "System.Threading.Timer": "4.0.1",
  754. "System.Xml.XPath.XmlDocument": "4.0.1",
  755. "System.Xml.XmlDocument": "4.0.1"
  756. },
  757. "compile": {
  758. "lib/netstandard1.3/Renci.SshNet.dll": {}
  759. },
  760. "runtime": {
  761. "lib/netstandard1.3/Renci.SshNet.dll": {}
  762. }
  763. },
  764. "SshNet.Security.Cryptography/1.2.0": {
  765. "type": "package",
  766. "dependencies": {
  767. "System.IO": "4.1.0",
  768. "System.Security.Cryptography.Primitives": "4.0.0"
  769. },
  770. "compile": {
  771. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  772. },
  773. "runtime": {
  774. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  775. }
  776. },
  777. "Swashbuckle.AspNetCore.Swagger/6.2.3": {
  778. "type": "package",
  779. "dependencies": {
  780. "Microsoft.OpenApi": "1.2.3"
  781. },
  782. "compile": {
  783. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  784. },
  785. "runtime": {
  786. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  787. },
  788. "frameworkReferences": [
  789. "Microsoft.AspNetCore.App"
  790. ]
  791. },
  792. "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {
  793. "type": "package",
  794. "dependencies": {
  795. "Swashbuckle.AspNetCore.Swagger": "6.2.3"
  796. },
  797. "compile": {
  798. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  799. },
  800. "runtime": {
  801. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  802. }
  803. },
  804. "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {
  805. "type": "package",
  806. "compile": {
  807. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  808. },
  809. "runtime": {
  810. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  811. },
  812. "frameworkReferences": [
  813. "Microsoft.AspNetCore.App"
  814. ]
  815. },
  816. "System.AppContext/4.1.0": {
  817. "type": "package",
  818. "dependencies": {
  819. "System.Runtime": "4.1.0"
  820. },
  821. "compile": {
  822. "ref/netstandard1.6/System.AppContext.dll": {}
  823. },
  824. "runtime": {
  825. "lib/netstandard1.6/System.AppContext.dll": {}
  826. }
  827. },
  828. "System.Buffers/4.5.1": {
  829. "type": "package",
  830. "compile": {
  831. "ref/netcoreapp2.0/_._": {}
  832. },
  833. "runtime": {
  834. "lib/netcoreapp2.0/_._": {}
  835. }
  836. },
  837. "System.Collections/4.0.11": {
  838. "type": "package",
  839. "dependencies": {
  840. "Microsoft.NETCore.Platforms": "1.0.1",
  841. "Microsoft.NETCore.Targets": "1.0.1",
  842. "System.Runtime": "4.1.0"
  843. },
  844. "compile": {
  845. "ref/netstandard1.3/System.Collections.dll": {}
  846. }
  847. },
  848. "System.Collections.Concurrent/4.0.12": {
  849. "type": "package",
  850. "dependencies": {
  851. "System.Collections": "4.0.11",
  852. "System.Diagnostics.Debug": "4.0.11",
  853. "System.Diagnostics.Tracing": "4.1.0",
  854. "System.Globalization": "4.0.11",
  855. "System.Reflection": "4.1.0",
  856. "System.Resources.ResourceManager": "4.0.1",
  857. "System.Runtime": "4.1.0",
  858. "System.Runtime.Extensions": "4.1.0",
  859. "System.Threading": "4.0.11",
  860. "System.Threading.Tasks": "4.0.11"
  861. },
  862. "compile": {
  863. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  864. },
  865. "runtime": {
  866. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  867. }
  868. },
  869. "System.Collections.Immutable/5.0.0": {
  870. "type": "package",
  871. "compile": {
  872. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  873. },
  874. "runtime": {
  875. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  876. }
  877. },
  878. "System.ComponentModel.Annotations/5.0.0": {
  879. "type": "package",
  880. "compile": {
  881. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  882. },
  883. "runtime": {
  884. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  885. }
  886. },
  887. "System.Configuration.ConfigurationManager/4.4.1": {
  888. "type": "package",
  889. "dependencies": {
  890. "System.Security.Cryptography.ProtectedData": "4.4.0"
  891. },
  892. "compile": {
  893. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  894. },
  895. "runtime": {
  896. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  897. }
  898. },
  899. "System.Console/4.0.0": {
  900. "type": "package",
  901. "dependencies": {
  902. "Microsoft.NETCore.Platforms": "1.0.1",
  903. "Microsoft.NETCore.Targets": "1.0.1",
  904. "System.IO": "4.1.0",
  905. "System.Runtime": "4.1.0",
  906. "System.Text.Encoding": "4.0.11"
  907. },
  908. "compile": {
  909. "ref/netstandard1.3/System.Console.dll": {}
  910. }
  911. },
  912. "System.Data.SqlClient/4.8.3": {
  913. "type": "package",
  914. "dependencies": {
  915. "Microsoft.Win32.Registry": "4.7.0",
  916. "System.Security.Principal.Windows": "4.7.0",
  917. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  918. },
  919. "compile": {
  920. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
  921. },
  922. "runtime": {
  923. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
  924. },
  925. "runtimeTargets": {
  926. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  927. "assetType": "runtime",
  928. "rid": "unix"
  929. },
  930. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  931. "assetType": "runtime",
  932. "rid": "win"
  933. }
  934. }
  935. },
  936. "System.Diagnostics.Debug/4.0.11": {
  937. "type": "package",
  938. "dependencies": {
  939. "Microsoft.NETCore.Platforms": "1.0.1",
  940. "Microsoft.NETCore.Targets": "1.0.1",
  941. "System.Runtime": "4.1.0"
  942. },
  943. "compile": {
  944. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  945. }
  946. },
  947. "System.Diagnostics.DiagnosticSource/5.0.1": {
  948. "type": "package",
  949. "compile": {
  950. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  951. },
  952. "runtime": {
  953. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  954. }
  955. },
  956. "System.Diagnostics.Tools/4.0.1": {
  957. "type": "package",
  958. "dependencies": {
  959. "Microsoft.NETCore.Platforms": "1.0.1",
  960. "Microsoft.NETCore.Targets": "1.0.1",
  961. "System.Runtime": "4.1.0"
  962. },
  963. "compile": {
  964. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  965. }
  966. },
  967. "System.Diagnostics.TraceSource/4.0.0": {
  968. "type": "package",
  969. "dependencies": {
  970. "Microsoft.NETCore.Platforms": "1.0.1",
  971. "System.Collections": "4.0.11",
  972. "System.Diagnostics.Debug": "4.0.11",
  973. "System.Globalization": "4.0.11",
  974. "System.Resources.ResourceManager": "4.0.1",
  975. "System.Runtime": "4.1.0",
  976. "System.Runtime.Extensions": "4.1.0",
  977. "System.Threading": "4.0.11",
  978. "runtime.native.System": "4.0.0"
  979. },
  980. "compile": {
  981. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  982. },
  983. "runtimeTargets": {
  984. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  985. "assetType": "runtime",
  986. "rid": "unix"
  987. },
  988. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  989. "assetType": "runtime",
  990. "rid": "win"
  991. }
  992. }
  993. },
  994. "System.Diagnostics.Tracing/4.1.0": {
  995. "type": "package",
  996. "dependencies": {
  997. "Microsoft.NETCore.Platforms": "1.0.1",
  998. "Microsoft.NETCore.Targets": "1.0.1",
  999. "System.Runtime": "4.1.0"
  1000. },
  1001. "compile": {
  1002. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1003. }
  1004. },
  1005. "System.Drawing.Common/4.7.0": {
  1006. "type": "package",
  1007. "dependencies": {
  1008. "Microsoft.NETCore.Platforms": "3.1.0",
  1009. "Microsoft.Win32.SystemEvents": "4.7.0"
  1010. },
  1011. "compile": {
  1012. "ref/netcoreapp3.0/_._": {}
  1013. },
  1014. "runtime": {
  1015. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1016. },
  1017. "runtimeTargets": {
  1018. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1019. "assetType": "runtime",
  1020. "rid": "unix"
  1021. },
  1022. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1023. "assetType": "runtime",
  1024. "rid": "win"
  1025. }
  1026. }
  1027. },
  1028. "System.Globalization/4.0.11": {
  1029. "type": "package",
  1030. "dependencies": {
  1031. "Microsoft.NETCore.Platforms": "1.0.1",
  1032. "Microsoft.NETCore.Targets": "1.0.1",
  1033. "System.Runtime": "4.1.0"
  1034. },
  1035. "compile": {
  1036. "ref/netstandard1.3/System.Globalization.dll": {}
  1037. }
  1038. },
  1039. "System.Globalization.Calendars/4.0.1": {
  1040. "type": "package",
  1041. "dependencies": {
  1042. "Microsoft.NETCore.Platforms": "1.0.1",
  1043. "Microsoft.NETCore.Targets": "1.0.1",
  1044. "System.Globalization": "4.0.11",
  1045. "System.Runtime": "4.1.0"
  1046. },
  1047. "compile": {
  1048. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1049. }
  1050. },
  1051. "System.Globalization.Extensions/4.0.1": {
  1052. "type": "package",
  1053. "dependencies": {
  1054. "Microsoft.NETCore.Platforms": "1.0.1",
  1055. "System.Globalization": "4.0.11",
  1056. "System.Resources.ResourceManager": "4.0.1",
  1057. "System.Runtime": "4.1.0",
  1058. "System.Runtime.Extensions": "4.1.0",
  1059. "System.Runtime.InteropServices": "4.1.0"
  1060. },
  1061. "compile": {
  1062. "ref/netstandard1.3/_._": {}
  1063. },
  1064. "runtimeTargets": {
  1065. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1066. "assetType": "runtime",
  1067. "rid": "unix"
  1068. },
  1069. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1070. "assetType": "runtime",
  1071. "rid": "win"
  1072. }
  1073. }
  1074. },
  1075. "System.IO/4.3.0": {
  1076. "type": "package",
  1077. "dependencies": {
  1078. "Microsoft.NETCore.Platforms": "1.1.0",
  1079. "Microsoft.NETCore.Targets": "1.1.0",
  1080. "System.Runtime": "4.3.0",
  1081. "System.Text.Encoding": "4.3.0",
  1082. "System.Threading.Tasks": "4.3.0"
  1083. },
  1084. "compile": {
  1085. "ref/netstandard1.5/System.IO.dll": {}
  1086. }
  1087. },
  1088. "System.IO.Compression/4.1.0": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "Microsoft.NETCore.Platforms": "1.0.1",
  1092. "System.Collections": "4.0.11",
  1093. "System.Diagnostics.Debug": "4.0.11",
  1094. "System.IO": "4.1.0",
  1095. "System.Resources.ResourceManager": "4.0.1",
  1096. "System.Runtime": "4.1.0",
  1097. "System.Runtime.Extensions": "4.1.0",
  1098. "System.Runtime.Handles": "4.0.1",
  1099. "System.Runtime.InteropServices": "4.1.0",
  1100. "System.Text.Encoding": "4.0.11",
  1101. "System.Threading": "4.0.11",
  1102. "System.Threading.Tasks": "4.0.11",
  1103. "runtime.native.System": "4.0.0",
  1104. "runtime.native.System.IO.Compression": "4.1.0"
  1105. },
  1106. "compile": {
  1107. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1108. },
  1109. "runtimeTargets": {
  1110. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1111. "assetType": "runtime",
  1112. "rid": "unix"
  1113. },
  1114. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1115. "assetType": "runtime",
  1116. "rid": "win"
  1117. }
  1118. }
  1119. },
  1120. "System.IO.Compression.ZipFile/4.0.1": {
  1121. "type": "package",
  1122. "dependencies": {
  1123. "System.Buffers": "4.0.0",
  1124. "System.IO": "4.1.0",
  1125. "System.IO.Compression": "4.1.0",
  1126. "System.IO.FileSystem": "4.0.1",
  1127. "System.IO.FileSystem.Primitives": "4.0.1",
  1128. "System.Resources.ResourceManager": "4.0.1",
  1129. "System.Runtime": "4.1.0",
  1130. "System.Runtime.Extensions": "4.1.0",
  1131. "System.Text.Encoding": "4.0.11"
  1132. },
  1133. "compile": {
  1134. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1135. },
  1136. "runtime": {
  1137. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1138. }
  1139. },
  1140. "System.IO.FileSystem/4.0.1": {
  1141. "type": "package",
  1142. "dependencies": {
  1143. "Microsoft.NETCore.Platforms": "1.0.1",
  1144. "Microsoft.NETCore.Targets": "1.0.1",
  1145. "System.IO": "4.1.0",
  1146. "System.IO.FileSystem.Primitives": "4.0.1",
  1147. "System.Runtime": "4.1.0",
  1148. "System.Runtime.Handles": "4.0.1",
  1149. "System.Text.Encoding": "4.0.11",
  1150. "System.Threading.Tasks": "4.0.11"
  1151. },
  1152. "compile": {
  1153. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1154. }
  1155. },
  1156. "System.IO.FileSystem.Primitives/4.0.1": {
  1157. "type": "package",
  1158. "dependencies": {
  1159. "System.Runtime": "4.1.0"
  1160. },
  1161. "compile": {
  1162. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1163. },
  1164. "runtime": {
  1165. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1166. }
  1167. },
  1168. "System.Linq/4.1.0": {
  1169. "type": "package",
  1170. "dependencies": {
  1171. "System.Collections": "4.0.11",
  1172. "System.Diagnostics.Debug": "4.0.11",
  1173. "System.Resources.ResourceManager": "4.0.1",
  1174. "System.Runtime": "4.1.0",
  1175. "System.Runtime.Extensions": "4.1.0"
  1176. },
  1177. "compile": {
  1178. "ref/netstandard1.6/System.Linq.dll": {}
  1179. },
  1180. "runtime": {
  1181. "lib/netstandard1.6/System.Linq.dll": {}
  1182. }
  1183. },
  1184. "System.Linq.Expressions/4.1.0": {
  1185. "type": "package",
  1186. "dependencies": {
  1187. "System.Collections": "4.0.11",
  1188. "System.Diagnostics.Debug": "4.0.11",
  1189. "System.Globalization": "4.0.11",
  1190. "System.IO": "4.1.0",
  1191. "System.Linq": "4.1.0",
  1192. "System.ObjectModel": "4.0.12",
  1193. "System.Reflection": "4.1.0",
  1194. "System.Reflection.Emit": "4.0.1",
  1195. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1196. "System.Reflection.Emit.Lightweight": "4.0.1",
  1197. "System.Reflection.Extensions": "4.0.1",
  1198. "System.Reflection.Primitives": "4.0.1",
  1199. "System.Reflection.TypeExtensions": "4.1.0",
  1200. "System.Resources.ResourceManager": "4.0.1",
  1201. "System.Runtime": "4.1.0",
  1202. "System.Runtime.Extensions": "4.1.0",
  1203. "System.Threading": "4.0.11"
  1204. },
  1205. "compile": {
  1206. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1207. },
  1208. "runtime": {
  1209. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1210. }
  1211. },
  1212. "System.Memory/4.5.3": {
  1213. "type": "package",
  1214. "compile": {
  1215. "ref/netcoreapp2.1/_._": {}
  1216. },
  1217. "runtime": {
  1218. "lib/netcoreapp2.1/_._": {}
  1219. }
  1220. },
  1221. "System.Net.Http/4.1.0": {
  1222. "type": "package",
  1223. "dependencies": {
  1224. "Microsoft.NETCore.Platforms": "1.0.1",
  1225. "System.Collections": "4.0.11",
  1226. "System.Diagnostics.Debug": "4.0.11",
  1227. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1228. "System.Diagnostics.Tracing": "4.1.0",
  1229. "System.Globalization": "4.0.11",
  1230. "System.Globalization.Extensions": "4.0.1",
  1231. "System.IO": "4.1.0",
  1232. "System.IO.FileSystem": "4.0.1",
  1233. "System.Net.Primitives": "4.0.11",
  1234. "System.Resources.ResourceManager": "4.0.1",
  1235. "System.Runtime": "4.1.0",
  1236. "System.Runtime.Extensions": "4.1.0",
  1237. "System.Runtime.Handles": "4.0.1",
  1238. "System.Runtime.InteropServices": "4.1.0",
  1239. "System.Security.Cryptography.Algorithms": "4.2.0",
  1240. "System.Security.Cryptography.Encoding": "4.0.0",
  1241. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1242. "System.Security.Cryptography.Primitives": "4.0.0",
  1243. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1244. "System.Text.Encoding": "4.0.11",
  1245. "System.Threading": "4.0.11",
  1246. "System.Threading.Tasks": "4.0.11",
  1247. "runtime.native.System": "4.0.0",
  1248. "runtime.native.System.Net.Http": "4.0.1",
  1249. "runtime.native.System.Security.Cryptography": "4.0.0"
  1250. },
  1251. "compile": {
  1252. "ref/netstandard1.3/System.Net.Http.dll": {}
  1253. },
  1254. "runtimeTargets": {
  1255. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1256. "assetType": "runtime",
  1257. "rid": "unix"
  1258. },
  1259. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1260. "assetType": "runtime",
  1261. "rid": "win"
  1262. }
  1263. }
  1264. },
  1265. "System.Net.NameResolution/4.0.0": {
  1266. "type": "package",
  1267. "dependencies": {
  1268. "Microsoft.NETCore.Platforms": "1.0.1",
  1269. "System.Collections": "4.0.11",
  1270. "System.Diagnostics.Tracing": "4.1.0",
  1271. "System.Globalization": "4.0.11",
  1272. "System.Net.Primitives": "4.0.11",
  1273. "System.Resources.ResourceManager": "4.0.1",
  1274. "System.Runtime": "4.1.0",
  1275. "System.Runtime.Extensions": "4.1.0",
  1276. "System.Runtime.Handles": "4.0.1",
  1277. "System.Runtime.InteropServices": "4.1.0",
  1278. "System.Security.Principal.Windows": "4.0.0",
  1279. "System.Threading": "4.0.11",
  1280. "System.Threading.Tasks": "4.0.11",
  1281. "runtime.native.System": "4.0.0"
  1282. },
  1283. "compile": {
  1284. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1285. },
  1286. "runtimeTargets": {
  1287. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1288. "assetType": "runtime",
  1289. "rid": "unix"
  1290. },
  1291. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1292. "assetType": "runtime",
  1293. "rid": "win"
  1294. }
  1295. }
  1296. },
  1297. "System.Net.Primitives/4.0.11": {
  1298. "type": "package",
  1299. "dependencies": {
  1300. "Microsoft.NETCore.Platforms": "1.0.1",
  1301. "Microsoft.NETCore.Targets": "1.0.1",
  1302. "System.Runtime": "4.1.0",
  1303. "System.Runtime.Handles": "4.0.1"
  1304. },
  1305. "compile": {
  1306. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1307. }
  1308. },
  1309. "System.Net.Sockets/4.1.0": {
  1310. "type": "package",
  1311. "dependencies": {
  1312. "Microsoft.NETCore.Platforms": "1.0.1",
  1313. "Microsoft.NETCore.Targets": "1.0.1",
  1314. "System.IO": "4.1.0",
  1315. "System.Net.Primitives": "4.0.11",
  1316. "System.Runtime": "4.1.0",
  1317. "System.Threading.Tasks": "4.0.11"
  1318. },
  1319. "compile": {
  1320. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1321. }
  1322. },
  1323. "System.ObjectModel/4.0.12": {
  1324. "type": "package",
  1325. "dependencies": {
  1326. "System.Collections": "4.0.11",
  1327. "System.Diagnostics.Debug": "4.0.11",
  1328. "System.Resources.ResourceManager": "4.0.1",
  1329. "System.Runtime": "4.1.0",
  1330. "System.Threading": "4.0.11"
  1331. },
  1332. "compile": {
  1333. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1334. },
  1335. "runtime": {
  1336. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1337. }
  1338. },
  1339. "System.Reflection/4.3.0": {
  1340. "type": "package",
  1341. "dependencies": {
  1342. "Microsoft.NETCore.Platforms": "1.1.0",
  1343. "Microsoft.NETCore.Targets": "1.1.0",
  1344. "System.IO": "4.3.0",
  1345. "System.Reflection.Primitives": "4.3.0",
  1346. "System.Runtime": "4.3.0"
  1347. },
  1348. "compile": {
  1349. "ref/netstandard1.5/System.Reflection.dll": {}
  1350. }
  1351. },
  1352. "System.Reflection.Emit/4.7.0": {
  1353. "type": "package",
  1354. "compile": {
  1355. "ref/netcoreapp2.0/_._": {}
  1356. },
  1357. "runtime": {
  1358. "lib/netcoreapp2.0/_._": {}
  1359. }
  1360. },
  1361. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1362. "type": "package",
  1363. "dependencies": {
  1364. "System.Reflection": "4.1.0",
  1365. "System.Reflection.Primitives": "4.0.1",
  1366. "System.Runtime": "4.1.0"
  1367. },
  1368. "compile": {
  1369. "ref/netstandard1.0/_._": {}
  1370. },
  1371. "runtime": {
  1372. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1373. }
  1374. },
  1375. "System.Reflection.Emit.Lightweight/4.0.1": {
  1376. "type": "package",
  1377. "dependencies": {
  1378. "System.Reflection": "4.1.0",
  1379. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1380. "System.Reflection.Primitives": "4.0.1",
  1381. "System.Runtime": "4.1.0"
  1382. },
  1383. "compile": {
  1384. "ref/netstandard1.0/_._": {}
  1385. },
  1386. "runtime": {
  1387. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1388. }
  1389. },
  1390. "System.Reflection.Extensions/4.0.1": {
  1391. "type": "package",
  1392. "dependencies": {
  1393. "Microsoft.NETCore.Platforms": "1.0.1",
  1394. "Microsoft.NETCore.Targets": "1.0.1",
  1395. "System.Reflection": "4.1.0",
  1396. "System.Runtime": "4.1.0"
  1397. },
  1398. "compile": {
  1399. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1400. }
  1401. },
  1402. "System.Reflection.Primitives/4.3.0": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "Microsoft.NETCore.Platforms": "1.1.0",
  1406. "Microsoft.NETCore.Targets": "1.1.0",
  1407. "System.Runtime": "4.3.0"
  1408. },
  1409. "compile": {
  1410. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1411. }
  1412. },
  1413. "System.Reflection.TypeExtensions/4.1.0": {
  1414. "type": "package",
  1415. "dependencies": {
  1416. "System.Reflection": "4.1.0",
  1417. "System.Runtime": "4.1.0"
  1418. },
  1419. "compile": {
  1420. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1421. },
  1422. "runtime": {
  1423. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1424. }
  1425. },
  1426. "System.Resources.ResourceManager/4.0.1": {
  1427. "type": "package",
  1428. "dependencies": {
  1429. "Microsoft.NETCore.Platforms": "1.0.1",
  1430. "Microsoft.NETCore.Targets": "1.0.1",
  1431. "System.Globalization": "4.0.11",
  1432. "System.Reflection": "4.1.0",
  1433. "System.Runtime": "4.1.0"
  1434. },
  1435. "compile": {
  1436. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1437. }
  1438. },
  1439. "System.Runtime/4.3.0": {
  1440. "type": "package",
  1441. "dependencies": {
  1442. "Microsoft.NETCore.Platforms": "1.1.0",
  1443. "Microsoft.NETCore.Targets": "1.1.0"
  1444. },
  1445. "compile": {
  1446. "ref/netstandard1.5/System.Runtime.dll": {}
  1447. }
  1448. },
  1449. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1450. "type": "package",
  1451. "compile": {
  1452. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1453. },
  1454. "runtime": {
  1455. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1456. },
  1457. "build": {
  1458. "buildTransitive/netcoreapp3.1/_._": {}
  1459. }
  1460. },
  1461. "System.Runtime.Extensions/4.1.0": {
  1462. "type": "package",
  1463. "dependencies": {
  1464. "Microsoft.NETCore.Platforms": "1.0.1",
  1465. "Microsoft.NETCore.Targets": "1.0.1",
  1466. "System.Runtime": "4.1.0"
  1467. },
  1468. "compile": {
  1469. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1470. }
  1471. },
  1472. "System.Runtime.Handles/4.0.1": {
  1473. "type": "package",
  1474. "dependencies": {
  1475. "Microsoft.NETCore.Platforms": "1.0.1",
  1476. "Microsoft.NETCore.Targets": "1.0.1",
  1477. "System.Runtime": "4.1.0"
  1478. },
  1479. "compile": {
  1480. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1481. }
  1482. },
  1483. "System.Runtime.InteropServices/4.1.0": {
  1484. "type": "package",
  1485. "dependencies": {
  1486. "Microsoft.NETCore.Platforms": "1.0.1",
  1487. "Microsoft.NETCore.Targets": "1.0.1",
  1488. "System.Reflection": "4.1.0",
  1489. "System.Reflection.Primitives": "4.0.1",
  1490. "System.Runtime": "4.1.0",
  1491. "System.Runtime.Handles": "4.0.1"
  1492. },
  1493. "compile": {
  1494. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1495. }
  1496. },
  1497. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "Microsoft.NETCore.Platforms": "1.0.1",
  1501. "System.Reflection": "4.1.0",
  1502. "System.Resources.ResourceManager": "4.0.1",
  1503. "System.Runtime": "4.1.0",
  1504. "System.Runtime.InteropServices": "4.1.0",
  1505. "System.Threading": "4.0.11",
  1506. "runtime.native.System": "4.0.0"
  1507. },
  1508. "compile": {
  1509. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1510. },
  1511. "runtimeTargets": {
  1512. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1513. "assetType": "runtime",
  1514. "rid": "unix"
  1515. },
  1516. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1517. "assetType": "runtime",
  1518. "rid": "win"
  1519. }
  1520. }
  1521. },
  1522. "System.Runtime.Numerics/4.0.1": {
  1523. "type": "package",
  1524. "dependencies": {
  1525. "System.Globalization": "4.0.11",
  1526. "System.Resources.ResourceManager": "4.0.1",
  1527. "System.Runtime": "4.1.0",
  1528. "System.Runtime.Extensions": "4.1.0"
  1529. },
  1530. "compile": {
  1531. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1532. },
  1533. "runtime": {
  1534. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1535. }
  1536. },
  1537. "System.Security.AccessControl/4.7.0": {
  1538. "type": "package",
  1539. "dependencies": {
  1540. "Microsoft.NETCore.Platforms": "3.1.0",
  1541. "System.Security.Principal.Windows": "4.7.0"
  1542. },
  1543. "compile": {
  1544. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1545. },
  1546. "runtime": {
  1547. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1548. },
  1549. "runtimeTargets": {
  1550. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1551. "assetType": "runtime",
  1552. "rid": "win"
  1553. }
  1554. }
  1555. },
  1556. "System.Security.Cryptography.Algorithms/4.2.0": {
  1557. "type": "package",
  1558. "dependencies": {
  1559. "Microsoft.NETCore.Platforms": "1.0.1",
  1560. "System.Collections": "4.0.11",
  1561. "System.IO": "4.1.0",
  1562. "System.Resources.ResourceManager": "4.0.1",
  1563. "System.Runtime": "4.1.0",
  1564. "System.Runtime.Extensions": "4.1.0",
  1565. "System.Runtime.Handles": "4.0.1",
  1566. "System.Runtime.InteropServices": "4.1.0",
  1567. "System.Runtime.Numerics": "4.0.1",
  1568. "System.Security.Cryptography.Encoding": "4.0.0",
  1569. "System.Security.Cryptography.Primitives": "4.0.0",
  1570. "System.Text.Encoding": "4.0.11",
  1571. "runtime.native.System.Security.Cryptography": "4.0.0"
  1572. },
  1573. "compile": {
  1574. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1575. },
  1576. "runtimeTargets": {
  1577. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1578. "assetType": "runtime",
  1579. "rid": "unix"
  1580. },
  1581. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1582. "assetType": "runtime",
  1583. "rid": "win"
  1584. }
  1585. }
  1586. },
  1587. "System.Security.Cryptography.Cng/4.2.0": {
  1588. "type": "package",
  1589. "dependencies": {
  1590. "Microsoft.NETCore.Platforms": "1.0.1",
  1591. "System.IO": "4.1.0",
  1592. "System.Resources.ResourceManager": "4.0.1",
  1593. "System.Runtime": "4.1.0",
  1594. "System.Runtime.Extensions": "4.1.0",
  1595. "System.Runtime.Handles": "4.0.1",
  1596. "System.Runtime.InteropServices": "4.1.0",
  1597. "System.Security.Cryptography.Algorithms": "4.2.0",
  1598. "System.Security.Cryptography.Encoding": "4.0.0",
  1599. "System.Security.Cryptography.Primitives": "4.0.0",
  1600. "System.Text.Encoding": "4.0.11"
  1601. },
  1602. "compile": {
  1603. "ref/netstandard1.6/_._": {}
  1604. },
  1605. "runtimeTargets": {
  1606. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1607. "assetType": "runtime",
  1608. "rid": "unix"
  1609. },
  1610. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1611. "assetType": "runtime",
  1612. "rid": "win"
  1613. }
  1614. }
  1615. },
  1616. "System.Security.Cryptography.Csp/4.0.0": {
  1617. "type": "package",
  1618. "dependencies": {
  1619. "Microsoft.NETCore.Platforms": "1.0.1",
  1620. "System.IO": "4.1.0",
  1621. "System.Reflection": "4.1.0",
  1622. "System.Resources.ResourceManager": "4.0.1",
  1623. "System.Runtime": "4.1.0",
  1624. "System.Runtime.Extensions": "4.1.0",
  1625. "System.Runtime.Handles": "4.0.1",
  1626. "System.Runtime.InteropServices": "4.1.0",
  1627. "System.Security.Cryptography.Algorithms": "4.2.0",
  1628. "System.Security.Cryptography.Encoding": "4.0.0",
  1629. "System.Security.Cryptography.Primitives": "4.0.0",
  1630. "System.Text.Encoding": "4.0.11",
  1631. "System.Threading": "4.0.11"
  1632. },
  1633. "compile": {
  1634. "ref/netstandard1.3/_._": {}
  1635. },
  1636. "runtimeTargets": {
  1637. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1638. "assetType": "runtime",
  1639. "rid": "unix"
  1640. },
  1641. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1642. "assetType": "runtime",
  1643. "rid": "win"
  1644. }
  1645. }
  1646. },
  1647. "System.Security.Cryptography.Encoding/4.0.0": {
  1648. "type": "package",
  1649. "dependencies": {
  1650. "Microsoft.NETCore.Platforms": "1.0.1",
  1651. "System.Collections": "4.0.11",
  1652. "System.Collections.Concurrent": "4.0.12",
  1653. "System.Linq": "4.1.0",
  1654. "System.Resources.ResourceManager": "4.0.1",
  1655. "System.Runtime": "4.1.0",
  1656. "System.Runtime.Extensions": "4.1.0",
  1657. "System.Runtime.Handles": "4.0.1",
  1658. "System.Runtime.InteropServices": "4.1.0",
  1659. "System.Security.Cryptography.Primitives": "4.0.0",
  1660. "System.Text.Encoding": "4.0.11",
  1661. "runtime.native.System.Security.Cryptography": "4.0.0"
  1662. },
  1663. "compile": {
  1664. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1665. },
  1666. "runtimeTargets": {
  1667. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1668. "assetType": "runtime",
  1669. "rid": "unix"
  1670. },
  1671. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1672. "assetType": "runtime",
  1673. "rid": "win"
  1674. }
  1675. }
  1676. },
  1677. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1678. "type": "package",
  1679. "dependencies": {
  1680. "System.Collections": "4.0.11",
  1681. "System.IO": "4.1.0",
  1682. "System.Resources.ResourceManager": "4.0.1",
  1683. "System.Runtime": "4.1.0",
  1684. "System.Runtime.Extensions": "4.1.0",
  1685. "System.Runtime.Handles": "4.0.1",
  1686. "System.Runtime.InteropServices": "4.1.0",
  1687. "System.Runtime.Numerics": "4.0.1",
  1688. "System.Security.Cryptography.Algorithms": "4.2.0",
  1689. "System.Security.Cryptography.Encoding": "4.0.0",
  1690. "System.Security.Cryptography.Primitives": "4.0.0",
  1691. "System.Text.Encoding": "4.0.11",
  1692. "runtime.native.System.Security.Cryptography": "4.0.0"
  1693. },
  1694. "compile": {
  1695. "ref/netstandard1.6/_._": {}
  1696. },
  1697. "runtime": {
  1698. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1699. },
  1700. "runtimeTargets": {
  1701. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1702. "assetType": "runtime",
  1703. "rid": "unix"
  1704. }
  1705. }
  1706. },
  1707. "System.Security.Cryptography.Primitives/4.0.0": {
  1708. "type": "package",
  1709. "dependencies": {
  1710. "System.Diagnostics.Debug": "4.0.11",
  1711. "System.Globalization": "4.0.11",
  1712. "System.IO": "4.1.0",
  1713. "System.Resources.ResourceManager": "4.0.1",
  1714. "System.Runtime": "4.1.0",
  1715. "System.Threading": "4.0.11",
  1716. "System.Threading.Tasks": "4.0.11"
  1717. },
  1718. "compile": {
  1719. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1720. },
  1721. "runtime": {
  1722. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1723. }
  1724. },
  1725. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1726. "type": "package",
  1727. "compile": {
  1728. "ref/netstandard2.0/_._": {}
  1729. },
  1730. "runtime": {
  1731. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  1732. },
  1733. "runtimeTargets": {
  1734. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1735. "assetType": "runtime",
  1736. "rid": "win"
  1737. }
  1738. }
  1739. },
  1740. "System.Security.Cryptography.X509Certificates/4.1.0": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "Microsoft.NETCore.Platforms": "1.0.1",
  1744. "System.Collections": "4.0.11",
  1745. "System.Diagnostics.Debug": "4.0.11",
  1746. "System.Globalization": "4.0.11",
  1747. "System.Globalization.Calendars": "4.0.1",
  1748. "System.IO": "4.1.0",
  1749. "System.IO.FileSystem": "4.0.1",
  1750. "System.IO.FileSystem.Primitives": "4.0.1",
  1751. "System.Resources.ResourceManager": "4.0.1",
  1752. "System.Runtime": "4.1.0",
  1753. "System.Runtime.Extensions": "4.1.0",
  1754. "System.Runtime.Handles": "4.0.1",
  1755. "System.Runtime.InteropServices": "4.1.0",
  1756. "System.Runtime.Numerics": "4.0.1",
  1757. "System.Security.Cryptography.Algorithms": "4.2.0",
  1758. "System.Security.Cryptography.Cng": "4.2.0",
  1759. "System.Security.Cryptography.Csp": "4.0.0",
  1760. "System.Security.Cryptography.Encoding": "4.0.0",
  1761. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1762. "System.Security.Cryptography.Primitives": "4.0.0",
  1763. "System.Text.Encoding": "4.0.11",
  1764. "System.Threading": "4.0.11",
  1765. "runtime.native.System": "4.0.0",
  1766. "runtime.native.System.Net.Http": "4.0.1",
  1767. "runtime.native.System.Security.Cryptography": "4.0.0"
  1768. },
  1769. "compile": {
  1770. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  1771. },
  1772. "runtimeTargets": {
  1773. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1774. "assetType": "runtime",
  1775. "rid": "unix"
  1776. },
  1777. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1778. "assetType": "runtime",
  1779. "rid": "win"
  1780. }
  1781. }
  1782. },
  1783. "System.Security.Permissions/4.7.0": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "System.Security.AccessControl": "4.7.0",
  1787. "System.Windows.Extensions": "4.7.0"
  1788. },
  1789. "compile": {
  1790. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  1791. },
  1792. "runtime": {
  1793. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  1794. }
  1795. },
  1796. "System.Security.Principal.Windows/4.7.0": {
  1797. "type": "package",
  1798. "compile": {
  1799. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  1800. },
  1801. "runtime": {
  1802. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  1803. },
  1804. "runtimeTargets": {
  1805. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1806. "assetType": "runtime",
  1807. "rid": "unix"
  1808. },
  1809. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1810. "assetType": "runtime",
  1811. "rid": "win"
  1812. }
  1813. }
  1814. },
  1815. "System.Text.Encoding/4.3.0": {
  1816. "type": "package",
  1817. "dependencies": {
  1818. "Microsoft.NETCore.Platforms": "1.1.0",
  1819. "Microsoft.NETCore.Targets": "1.1.0",
  1820. "System.Runtime": "4.3.0"
  1821. },
  1822. "compile": {
  1823. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  1824. }
  1825. },
  1826. "System.Text.Encoding.CodePages/4.4.0": {
  1827. "type": "package",
  1828. "dependencies": {
  1829. "Microsoft.NETCore.Platforms": "2.0.0"
  1830. },
  1831. "compile": {
  1832. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1833. },
  1834. "runtime": {
  1835. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1836. },
  1837. "runtimeTargets": {
  1838. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1839. "assetType": "runtime",
  1840. "rid": "win"
  1841. }
  1842. }
  1843. },
  1844. "System.Text.Encoding.Extensions/4.0.11": {
  1845. "type": "package",
  1846. "dependencies": {
  1847. "Microsoft.NETCore.Platforms": "1.0.1",
  1848. "Microsoft.NETCore.Targets": "1.0.1",
  1849. "System.Runtime": "4.1.0",
  1850. "System.Text.Encoding": "4.0.11"
  1851. },
  1852. "compile": {
  1853. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  1854. }
  1855. },
  1856. "System.Text.Encodings.Web/4.5.0": {
  1857. "type": "package",
  1858. "compile": {
  1859. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1860. },
  1861. "runtime": {
  1862. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1863. }
  1864. },
  1865. "System.Text.RegularExpressions/4.1.0": {
  1866. "type": "package",
  1867. "dependencies": {
  1868. "System.Collections": "4.0.11",
  1869. "System.Globalization": "4.0.11",
  1870. "System.Resources.ResourceManager": "4.0.1",
  1871. "System.Runtime": "4.1.0",
  1872. "System.Runtime.Extensions": "4.1.0",
  1873. "System.Threading": "4.0.11"
  1874. },
  1875. "compile": {
  1876. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1877. },
  1878. "runtime": {
  1879. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1880. }
  1881. },
  1882. "System.Threading/4.0.11": {
  1883. "type": "package",
  1884. "dependencies": {
  1885. "System.Runtime": "4.1.0",
  1886. "System.Threading.Tasks": "4.0.11"
  1887. },
  1888. "compile": {
  1889. "ref/netstandard1.3/System.Threading.dll": {}
  1890. },
  1891. "runtime": {
  1892. "lib/netstandard1.3/System.Threading.dll": {}
  1893. }
  1894. },
  1895. "System.Threading.Tasks/4.3.0": {
  1896. "type": "package",
  1897. "dependencies": {
  1898. "Microsoft.NETCore.Platforms": "1.1.0",
  1899. "Microsoft.NETCore.Targets": "1.1.0",
  1900. "System.Runtime": "4.3.0"
  1901. },
  1902. "compile": {
  1903. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  1904. }
  1905. },
  1906. "System.Threading.Tasks.Extensions/4.0.0": {
  1907. "type": "package",
  1908. "dependencies": {
  1909. "System.Collections": "4.0.11",
  1910. "System.Runtime": "4.1.0",
  1911. "System.Threading.Tasks": "4.0.11"
  1912. },
  1913. "compile": {
  1914. "lib/netstandard1.0/_._": {}
  1915. },
  1916. "runtime": {
  1917. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  1918. }
  1919. },
  1920. "System.Threading.Thread/4.0.0": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "System.Runtime": "4.1.0"
  1924. },
  1925. "compile": {
  1926. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  1927. },
  1928. "runtime": {
  1929. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  1930. }
  1931. },
  1932. "System.Threading.ThreadPool/4.0.10": {
  1933. "type": "package",
  1934. "dependencies": {
  1935. "System.Runtime": "4.1.0",
  1936. "System.Runtime.Handles": "4.0.1"
  1937. },
  1938. "compile": {
  1939. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  1940. },
  1941. "runtime": {
  1942. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  1943. }
  1944. },
  1945. "System.Threading.Timer/4.0.1": {
  1946. "type": "package",
  1947. "dependencies": {
  1948. "Microsoft.NETCore.Platforms": "1.0.1",
  1949. "Microsoft.NETCore.Targets": "1.0.1",
  1950. "System.Runtime": "4.1.0"
  1951. },
  1952. "compile": {
  1953. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  1954. }
  1955. },
  1956. "System.Windows.Extensions/4.7.0": {
  1957. "type": "package",
  1958. "dependencies": {
  1959. "System.Drawing.Common": "4.7.0"
  1960. },
  1961. "compile": {
  1962. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  1963. },
  1964. "runtime": {
  1965. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  1966. },
  1967. "runtimeTargets": {
  1968. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1969. "assetType": "runtime",
  1970. "rid": "win"
  1971. }
  1972. }
  1973. },
  1974. "System.Xml.ReaderWriter/4.0.11": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "System.Collections": "4.0.11",
  1978. "System.Diagnostics.Debug": "4.0.11",
  1979. "System.Globalization": "4.0.11",
  1980. "System.IO": "4.1.0",
  1981. "System.IO.FileSystem": "4.0.1",
  1982. "System.IO.FileSystem.Primitives": "4.0.1",
  1983. "System.Resources.ResourceManager": "4.0.1",
  1984. "System.Runtime": "4.1.0",
  1985. "System.Runtime.Extensions": "4.1.0",
  1986. "System.Runtime.InteropServices": "4.1.0",
  1987. "System.Text.Encoding": "4.0.11",
  1988. "System.Text.Encoding.Extensions": "4.0.11",
  1989. "System.Text.RegularExpressions": "4.1.0",
  1990. "System.Threading.Tasks": "4.0.11",
  1991. "System.Threading.Tasks.Extensions": "4.0.0"
  1992. },
  1993. "compile": {
  1994. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1995. },
  1996. "runtime": {
  1997. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1998. }
  1999. },
  2000. "System.Xml.XDocument/4.0.11": {
  2001. "type": "package",
  2002. "dependencies": {
  2003. "System.Collections": "4.0.11",
  2004. "System.Diagnostics.Debug": "4.0.11",
  2005. "System.Diagnostics.Tools": "4.0.1",
  2006. "System.Globalization": "4.0.11",
  2007. "System.IO": "4.1.0",
  2008. "System.Reflection": "4.1.0",
  2009. "System.Resources.ResourceManager": "4.0.1",
  2010. "System.Runtime": "4.1.0",
  2011. "System.Runtime.Extensions": "4.1.0",
  2012. "System.Text.Encoding": "4.0.11",
  2013. "System.Threading": "4.0.11",
  2014. "System.Xml.ReaderWriter": "4.0.11"
  2015. },
  2016. "compile": {
  2017. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2018. },
  2019. "runtime": {
  2020. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2021. }
  2022. },
  2023. "System.Xml.XmlDocument/4.0.1": {
  2024. "type": "package",
  2025. "dependencies": {
  2026. "System.Collections": "4.0.11",
  2027. "System.Diagnostics.Debug": "4.0.11",
  2028. "System.Globalization": "4.0.11",
  2029. "System.IO": "4.1.0",
  2030. "System.Resources.ResourceManager": "4.0.1",
  2031. "System.Runtime": "4.1.0",
  2032. "System.Runtime.Extensions": "4.1.0",
  2033. "System.Text.Encoding": "4.0.11",
  2034. "System.Threading": "4.0.11",
  2035. "System.Xml.ReaderWriter": "4.0.11"
  2036. },
  2037. "compile": {
  2038. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2039. },
  2040. "runtime": {
  2041. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2042. }
  2043. },
  2044. "System.Xml.XPath/4.0.1": {
  2045. "type": "package",
  2046. "dependencies": {
  2047. "System.Collections": "4.0.11",
  2048. "System.Diagnostics.Debug": "4.0.11",
  2049. "System.Globalization": "4.0.11",
  2050. "System.IO": "4.1.0",
  2051. "System.Resources.ResourceManager": "4.0.1",
  2052. "System.Runtime": "4.1.0",
  2053. "System.Runtime.Extensions": "4.1.0",
  2054. "System.Threading": "4.0.11",
  2055. "System.Xml.ReaderWriter": "4.0.11"
  2056. },
  2057. "compile": {
  2058. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2059. },
  2060. "runtime": {
  2061. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2062. }
  2063. },
  2064. "System.Xml.XPath.XmlDocument/4.0.1": {
  2065. "type": "package",
  2066. "dependencies": {
  2067. "System.Collections": "4.0.11",
  2068. "System.Globalization": "4.0.11",
  2069. "System.IO": "4.1.0",
  2070. "System.Resources.ResourceManager": "4.0.1",
  2071. "System.Runtime": "4.1.0",
  2072. "System.Runtime.Extensions": "4.1.0",
  2073. "System.Threading": "4.0.11",
  2074. "System.Xml.ReaderWriter": "4.0.11",
  2075. "System.Xml.XPath": "4.0.1",
  2076. "System.Xml.XmlDocument": "4.0.1"
  2077. },
  2078. "compile": {
  2079. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2080. },
  2081. "runtime": {
  2082. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2083. }
  2084. },
  2085. "Backend.Common/1.0.0": {
  2086. "type": "project",
  2087. "framework": ".NETCoreApp,Version=v3.1",
  2088. "compile": {
  2089. "bin/placeholder/Backend.Common.dll": {}
  2090. },
  2091. "runtime": {
  2092. "bin/placeholder/Backend.Common.dll": {}
  2093. }
  2094. },
  2095. "Backend.Data/1.0.0": {
  2096. "type": "project",
  2097. "framework": ".NETCoreApp,Version=v3.1",
  2098. "dependencies": {
  2099. "Microsoft.AspNet.Identity.EntityFramework": "2.2.3",
  2100. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2101. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.10",
  2102. "Microsoft.EntityFrameworkCore": "5.0.10",
  2103. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  2104. "MySql.Data.EntityFrameworkCore": "8.0.22",
  2105. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  2106. "System.Data.SqlClient": "4.8.3"
  2107. },
  2108. "compile": {
  2109. "bin/placeholder/Backend.Data.dll": {}
  2110. },
  2111. "runtime": {
  2112. "bin/placeholder/Backend.Data.dll": {}
  2113. }
  2114. },
  2115. "Backend.Models/1.0.0": {
  2116. "type": "project",
  2117. "framework": ".NETCoreApp,Version=v3.1",
  2118. "compile": {
  2119. "bin/placeholder/Backend.Models.dll": {}
  2120. },
  2121. "runtime": {
  2122. "bin/placeholder/Backend.Models.dll": {}
  2123. }
  2124. },
  2125. "Backend.Services/1.0.0": {
  2126. "type": "project",
  2127. "framework": ".NETCoreApp,Version=v3.1",
  2128. "dependencies": {
  2129. "AutoMapper": "10.1.1",
  2130. "Backend.Common": "1.0.0",
  2131. "Backend.Data": "1.0.0",
  2132. "Backend.Models": "1.0.0"
  2133. },
  2134. "compile": {
  2135. "bin/placeholder/Backend.Services.dll": {}
  2136. },
  2137. "runtime": {
  2138. "bin/placeholder/Backend.Services.dll": {}
  2139. }
  2140. },
  2141. "Mediator/1.0.0": {
  2142. "type": "project",
  2143. "framework": ".NETCoreApp,Version=v3.1",
  2144. "dependencies": {
  2145. "Backend.Common": "1.0.0",
  2146. "Backend.Models": "1.0.0",
  2147. "Backend.Services": "1.0.0",
  2148. "MediatR": "7.0.0",
  2149. "MediatR.Extensions.Microsoft.DependencyInjection": "7.0.0"
  2150. },
  2151. "compile": {
  2152. "bin/placeholder/Mediator.dll": {}
  2153. },
  2154. "runtime": {
  2155. "bin/placeholder/Mediator.dll": {}
  2156. }
  2157. }
  2158. }
  2159. },
  2160. "libraries": {
  2161. "AutoMapper/10.1.1": {
  2162. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  2163. "type": "package",
  2164. "path": "automapper/10.1.1",
  2165. "files": [
  2166. ".nupkg.metadata",
  2167. ".signature.p7s",
  2168. "automapper.10.1.1.nupkg.sha512",
  2169. "automapper.nuspec",
  2170. "icon.png",
  2171. "lib/net461/AutoMapper.dll",
  2172. "lib/net461/AutoMapper.xml",
  2173. "lib/netstandard2.0/AutoMapper.dll",
  2174. "lib/netstandard2.0/AutoMapper.xml"
  2175. ]
  2176. },
  2177. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  2178. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  2179. "type": "package",
  2180. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  2181. "files": [
  2182. ".nupkg.metadata",
  2183. ".signature.p7s",
  2184. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  2185. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2186. "icon.png",
  2187. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2188. ]
  2189. },
  2190. "BouncyCastle.NetCore/1.8.3": {
  2191. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2192. "type": "package",
  2193. "path": "bouncycastle.netcore/1.8.3",
  2194. "files": [
  2195. ".nupkg.metadata",
  2196. ".signature.p7s",
  2197. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2198. "bouncycastle.netcore.nuspec",
  2199. "lib/Mono/BouncyCastle.Crypto.dll",
  2200. "lib/Mono/BouncyCastle.Crypto.xml",
  2201. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2202. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2203. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2204. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2205. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2206. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2207. "lib/net20/BouncyCastle.Crypto.dll",
  2208. "lib/net20/BouncyCastle.Crypto.xml",
  2209. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2210. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2211. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2212. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2213. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2214. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2215. ]
  2216. },
  2217. "EntityFramework/6.1.0": {
  2218. "sha512": "u/M0OEfqxTUsL5BwzD66eBGm278/ozqdLK3JvMO6QwUxxc+z7ZUkTYm4suDhWRqzkc6mOhvXDQY5dZUwbldxyQ==",
  2219. "type": "package",
  2220. "path": "entityframework/6.1.0",
  2221. "hasTools": true,
  2222. "files": [
  2223. ".nupkg.metadata",
  2224. ".signature.p7s",
  2225. "content/App.config.transform",
  2226. "content/Web.config.transform",
  2227. "entityframework.6.1.0.nupkg.sha512",
  2228. "entityframework.nuspec",
  2229. "lib/net40/EntityFramework.SqlServer.dll",
  2230. "lib/net40/EntityFramework.SqlServer.xml",
  2231. "lib/net40/EntityFramework.dll",
  2232. "lib/net40/EntityFramework.xml",
  2233. "lib/net45/EntityFramework.SqlServer.dll",
  2234. "lib/net45/EntityFramework.SqlServer.xml",
  2235. "lib/net45/EntityFramework.dll",
  2236. "lib/net45/EntityFramework.xml",
  2237. "tools/EntityFramework.PowerShell.Utility.dll",
  2238. "tools/EntityFramework.PowerShell.dll",
  2239. "tools/EntityFramework.psd1",
  2240. "tools/EntityFramework.psm1",
  2241. "tools/about_EntityFramework.help.txt",
  2242. "tools/init.ps1",
  2243. "tools/install.ps1",
  2244. "tools/migrate.exe"
  2245. ]
  2246. },
  2247. "Google.Protobuf/3.11.4": {
  2248. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  2249. "type": "package",
  2250. "path": "google.protobuf/3.11.4",
  2251. "files": [
  2252. ".nupkg.metadata",
  2253. ".signature.p7s",
  2254. "google.protobuf.3.11.4.nupkg.sha512",
  2255. "google.protobuf.nuspec",
  2256. "lib/net45/Google.Protobuf.dll",
  2257. "lib/net45/Google.Protobuf.pdb",
  2258. "lib/net45/Google.Protobuf.xml",
  2259. "lib/netstandard1.0/Google.Protobuf.dll",
  2260. "lib/netstandard1.0/Google.Protobuf.pdb",
  2261. "lib/netstandard1.0/Google.Protobuf.xml",
  2262. "lib/netstandard2.0/Google.Protobuf.dll",
  2263. "lib/netstandard2.0/Google.Protobuf.pdb",
  2264. "lib/netstandard2.0/Google.Protobuf.xml"
  2265. ]
  2266. },
  2267. "Humanizer.Core/2.8.26": {
  2268. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  2269. "type": "package",
  2270. "path": "humanizer.core/2.8.26",
  2271. "files": [
  2272. ".nupkg.metadata",
  2273. ".signature.p7s",
  2274. "humanizer.core.2.8.26.nupkg.sha512",
  2275. "humanizer.core.nuspec",
  2276. "lib/netstandard1.0/Humanizer.dll",
  2277. "lib/netstandard1.0/Humanizer.xml",
  2278. "lib/netstandard2.0/Humanizer.dll",
  2279. "lib/netstandard2.0/Humanizer.xml",
  2280. "logo.png"
  2281. ]
  2282. },
  2283. "K4os.Compression.LZ4/1.1.11": {
  2284. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  2285. "type": "package",
  2286. "path": "k4os.compression.lz4/1.1.11",
  2287. "files": [
  2288. ".nupkg.metadata",
  2289. ".signature.p7s",
  2290. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  2291. "k4os.compression.lz4.nuspec",
  2292. "lib/net45/K4os.Compression.LZ4.dll",
  2293. "lib/net45/K4os.Compression.LZ4.xml",
  2294. "lib/net46/K4os.Compression.LZ4.dll",
  2295. "lib/net46/K4os.Compression.LZ4.xml",
  2296. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2297. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2298. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2299. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2300. ]
  2301. },
  2302. "K4os.Compression.LZ4.Streams/1.1.11": {
  2303. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  2304. "type": "package",
  2305. "path": "k4os.compression.lz4.streams/1.1.11",
  2306. "files": [
  2307. ".nupkg.metadata",
  2308. ".signature.p7s",
  2309. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  2310. "k4os.compression.lz4.streams.nuspec",
  2311. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2312. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2313. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2314. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2315. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2316. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2317. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2318. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  2319. ]
  2320. },
  2321. "K4os.Hash.xxHash/1.0.6": {
  2322. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2323. "type": "package",
  2324. "path": "k4os.hash.xxhash/1.0.6",
  2325. "files": [
  2326. ".nupkg.metadata",
  2327. ".signature.p7s",
  2328. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2329. "k4os.hash.xxhash.nuspec",
  2330. "lib/net45/K4os.Hash.xxHash.dll",
  2331. "lib/net45/K4os.Hash.xxHash.xml",
  2332. "lib/net46/K4os.Hash.xxHash.dll",
  2333. "lib/net46/K4os.Hash.xxHash.xml",
  2334. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2335. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2336. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2337. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2338. ]
  2339. },
  2340. "MediatR/7.0.0": {
  2341. "sha512": "sgfHxkBsmMlHOD564SnLqTvSbAuGlFiZfc6ybxBSI1wYV/2u+Y5TXtFoIhCISFg5/s/6aMvB338QC2JseHsjTA==",
  2342. "type": "package",
  2343. "path": "mediatr/7.0.0",
  2344. "files": [
  2345. ".nupkg.metadata",
  2346. ".signature.p7s",
  2347. "lib/net461/MediatR.dll",
  2348. "lib/netstandard2.0/MediatR.dll",
  2349. "mediatr.7.0.0.nupkg.sha512",
  2350. "mediatr.nuspec"
  2351. ]
  2352. },
  2353. "MediatR.Extensions.Microsoft.DependencyInjection/7.0.0": {
  2354. "sha512": "DRf8jBnjBg84da1L1L0YmwqkhCV+UJTg7bTBHOhleWrLfrtSK5h5aNeE1HOofs1Afisq03B6H2C10NmS47gmqA==",
  2355. "type": "package",
  2356. "path": "mediatr.extensions.microsoft.dependencyinjection/7.0.0",
  2357. "files": [
  2358. ".nupkg.metadata",
  2359. ".signature.p7s",
  2360. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll",
  2361. "mediatr.extensions.microsoft.dependencyinjection.7.0.0.nupkg.sha512",
  2362. "mediatr.extensions.microsoft.dependencyinjection.nuspec"
  2363. ]
  2364. },
  2365. "Microsoft.AspNet.Identity.Core/2.2.3": {
  2366. "sha512": "Mv5FpoaxspE8hlWLE4r1IdZtovg/OyFgVRhxQbx47J4sqdLImN1hnM1lnwCj+/wLmqtqFk/RYMoZ5GAcwm/00g==",
  2367. "type": "package",
  2368. "path": "microsoft.aspnet.identity.core/2.2.3",
  2369. "files": [
  2370. ".nupkg.metadata",
  2371. ".signature.p7s",
  2372. "lib/net45/Microsoft.AspNet.Identity.Core.dll",
  2373. "lib/net45/Microsoft.AspNet.Identity.Core.xml",
  2374. "microsoft.aspnet.identity.core.2.2.3.nupkg.sha512",
  2375. "microsoft.aspnet.identity.core.nuspec"
  2376. ]
  2377. },
  2378. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  2379. "sha512": "dt4XZChjw3a6jE66Yd6LkF9omspxi0A9lJpwBZz8Wl1sabOS6dlLP1OOTVuUjtPaoAshjoIzvS6DFRQdPyq55g==",
  2380. "type": "package",
  2381. "path": "microsoft.aspnet.identity.entityframework/2.2.3",
  2382. "files": [
  2383. ".nupkg.metadata",
  2384. ".signature.p7s",
  2385. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll",
  2386. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml",
  2387. "microsoft.aspnet.identity.entityframework.2.2.3.nupkg.sha512",
  2388. "microsoft.aspnet.identity.entityframework.nuspec"
  2389. ]
  2390. },
  2391. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  2392. "sha512": "xqdkq+lsWeVBxGq0bwgQeT1inqdFErG/McEBNqFVw0hnNQKxWaGPuBDFc8JBQC82Qn6+V1utI3lWvFmUMGEc8Q==",
  2393. "type": "package",
  2394. "path": "microsoft.aspnetcore.cryptography.internal/5.0.10",
  2395. "files": [
  2396. ".nupkg.metadata",
  2397. ".signature.p7s",
  2398. "Icon.png",
  2399. "THIRD-PARTY-NOTICES.TXT",
  2400. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2401. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2402. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2403. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2404. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2405. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2406. "microsoft.aspnetcore.cryptography.internal.5.0.10.nupkg.sha512",
  2407. "microsoft.aspnetcore.cryptography.internal.nuspec"
  2408. ]
  2409. },
  2410. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  2411. "sha512": "iXsPFNrM6cVGx/zCkz88nDP/pUKn/ni13B6JQhLwOoqI+tsA1x6fVfPp0MKnQtx5AZngGzuNMx+AYR1ED9ZVeg==",
  2412. "type": "package",
  2413. "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.10",
  2414. "files": [
  2415. ".nupkg.metadata",
  2416. ".signature.p7s",
  2417. "Icon.png",
  2418. "THIRD-PARTY-NOTICES.TXT",
  2419. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2420. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2421. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2422. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2423. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2424. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2425. "microsoft.aspnetcore.cryptography.keyderivation.5.0.10.nupkg.sha512",
  2426. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  2427. ]
  2428. },
  2429. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  2430. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2431. "type": "package",
  2432. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2433. "files": [
  2434. ".nupkg.metadata",
  2435. ".signature.p7s",
  2436. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  2437. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  2438. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  2439. "microsoft.aspnetcore.http.abstractions.nuspec"
  2440. ]
  2441. },
  2442. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2443. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2444. "type": "package",
  2445. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2446. "files": [
  2447. ".nupkg.metadata",
  2448. ".signature.p7s",
  2449. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  2450. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  2451. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  2452. "microsoft.aspnetcore.http.features.nuspec"
  2453. ]
  2454. },
  2455. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  2456. "sha512": "L9Tavjj82A9Ybo6Uedxu5CDie7DXXjx5tXLy3P0Ade2LXcrQwC4bJcdj8+QvBHqMnsd9ZsGZfO/T6tqxTYpAJg==",
  2457. "type": "package",
  2458. "path": "microsoft.aspnetcore.identity.entityframeworkcore/5.0.10",
  2459. "files": [
  2460. ".nupkg.metadata",
  2461. ".signature.p7s",
  2462. "Icon.png",
  2463. "THIRD-PARTY-NOTICES.TXT",
  2464. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2465. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2466. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2467. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2468. "microsoft.aspnetcore.identity.entityframeworkcore.5.0.10.nupkg.sha512",
  2469. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  2470. ]
  2471. },
  2472. "Microsoft.CSharp/4.7.0": {
  2473. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2474. "type": "package",
  2475. "path": "microsoft.csharp/4.7.0",
  2476. "files": [
  2477. ".nupkg.metadata",
  2478. ".signature.p7s",
  2479. "LICENSE.TXT",
  2480. "THIRD-PARTY-NOTICES.TXT",
  2481. "lib/MonoAndroid10/_._",
  2482. "lib/MonoTouch10/_._",
  2483. "lib/net45/_._",
  2484. "lib/netcore50/Microsoft.CSharp.dll",
  2485. "lib/netcoreapp2.0/_._",
  2486. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2487. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2488. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2489. "lib/portable-net45+win8+wp8+wpa81/_._",
  2490. "lib/uap10.0.16299/_._",
  2491. "lib/win8/_._",
  2492. "lib/wp80/_._",
  2493. "lib/wpa81/_._",
  2494. "lib/xamarinios10/_._",
  2495. "lib/xamarinmac20/_._",
  2496. "lib/xamarintvos10/_._",
  2497. "lib/xamarinwatchos10/_._",
  2498. "microsoft.csharp.4.7.0.nupkg.sha512",
  2499. "microsoft.csharp.nuspec",
  2500. "ref/MonoAndroid10/_._",
  2501. "ref/MonoTouch10/_._",
  2502. "ref/net45/_._",
  2503. "ref/netcore50/Microsoft.CSharp.dll",
  2504. "ref/netcore50/Microsoft.CSharp.xml",
  2505. "ref/netcore50/de/Microsoft.CSharp.xml",
  2506. "ref/netcore50/es/Microsoft.CSharp.xml",
  2507. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2508. "ref/netcore50/it/Microsoft.CSharp.xml",
  2509. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2510. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2511. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2512. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2513. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2514. "ref/netcoreapp2.0/_._",
  2515. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2516. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2517. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2518. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2519. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2520. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2521. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2522. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2523. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2524. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2525. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2526. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2527. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2528. "ref/portable-net45+win8+wp8+wpa81/_._",
  2529. "ref/uap10.0.16299/_._",
  2530. "ref/win8/_._",
  2531. "ref/wp80/_._",
  2532. "ref/wpa81/_._",
  2533. "ref/xamarinios10/_._",
  2534. "ref/xamarinmac20/_._",
  2535. "ref/xamarintvos10/_._",
  2536. "ref/xamarinwatchos10/_._",
  2537. "useSharedDesignerContext.txt",
  2538. "version.txt"
  2539. ]
  2540. },
  2541. "Microsoft.EntityFrameworkCore/5.0.13": {
  2542. "sha512": "Q5dVSbK5Id01xuAvm2xzrzEUNgO0fFD8mD/qFkD2F4Q23rs5YnrHH+/Wr9PAGNLdKqYWmkB0yTxKBL/0nLgr3g==",
  2543. "type": "package",
  2544. "path": "microsoft.entityframeworkcore/5.0.13",
  2545. "files": [
  2546. ".nupkg.metadata",
  2547. ".signature.p7s",
  2548. "Icon.png",
  2549. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  2550. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  2551. "microsoft.entityframeworkcore.5.0.13.nupkg.sha512",
  2552. "microsoft.entityframeworkcore.nuspec"
  2553. ]
  2554. },
  2555. "Microsoft.EntityFrameworkCore.Abstractions/5.0.13": {
  2556. "sha512": "TdnEXtDpm3o9s6RzUX0Mjgfgms4BD04uyvyxM9Xg8tQPOqqh7ZO6fWy+xJTj+wTcYuY5pYSkfPNGvtJ5FRmqWQ==",
  2557. "type": "package",
  2558. "path": "microsoft.entityframeworkcore.abstractions/5.0.13",
  2559. "files": [
  2560. ".nupkg.metadata",
  2561. ".signature.p7s",
  2562. "Icon.png",
  2563. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2564. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2565. "microsoft.entityframeworkcore.abstractions.5.0.13.nupkg.sha512",
  2566. "microsoft.entityframeworkcore.abstractions.nuspec"
  2567. ]
  2568. },
  2569. "Microsoft.EntityFrameworkCore.Analyzers/5.0.13": {
  2570. "sha512": "torTg+dQC/vOlFI5FZsRmOAA5pKtr8cJNJ5SWsl0RVYmhb5I7s/V3T1NsIzSqJTYzGBssHl5mFbiBODeBdQpnQ==",
  2571. "type": "package",
  2572. "path": "microsoft.entityframeworkcore.analyzers/5.0.13",
  2573. "files": [
  2574. ".nupkg.metadata",
  2575. ".signature.p7s",
  2576. "Icon.png",
  2577. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2578. "lib/netstandard2.0/_._",
  2579. "microsoft.entityframeworkcore.analyzers.5.0.13.nupkg.sha512",
  2580. "microsoft.entityframeworkcore.analyzers.nuspec"
  2581. ]
  2582. },
  2583. "Microsoft.EntityFrameworkCore.Design/5.0.13": {
  2584. "sha512": "T9Qq5RebYkx2EEU7ahHNediObrIE5dsRKt6mTkVwqrVqX1Kp+/HD02T1ZMdI1H62WLHH4QIdcCfjgsKgenTQFg==",
  2585. "type": "package",
  2586. "path": "microsoft.entityframeworkcore.design/5.0.13",
  2587. "files": [
  2588. ".nupkg.metadata",
  2589. ".signature.p7s",
  2590. "Icon.png",
  2591. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props",
  2592. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll",
  2593. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml",
  2594. "microsoft.entityframeworkcore.design.5.0.13.nupkg.sha512",
  2595. "microsoft.entityframeworkcore.design.nuspec"
  2596. ]
  2597. },
  2598. "Microsoft.EntityFrameworkCore.Relational/5.0.13": {
  2599. "sha512": "Qs7N0HFemByf04PZHvn2ZFytveLZyZKCmuNcMus1f53uNarypvWifrOC7L/wYylm/j8vs3qcc7jgb/yox1sbtg==",
  2600. "type": "package",
  2601. "path": "microsoft.entityframeworkcore.relational/5.0.13",
  2602. "files": [
  2603. ".nupkg.metadata",
  2604. ".signature.p7s",
  2605. "Icon.png",
  2606. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  2607. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  2608. "microsoft.entityframeworkcore.relational.5.0.13.nupkg.sha512",
  2609. "microsoft.entityframeworkcore.relational.nuspec"
  2610. ]
  2611. },
  2612. "Microsoft.EntityFrameworkCore.Tools/5.0.13": {
  2613. "sha512": "i/46k4pfCBMb2LVjLqHAbBO8WsAaB+CKbe8oF9ZBTtjVqyEJAxSpn8IZcvajY2KJmM7lc3zgyUdaommvxH2ClA==",
  2614. "type": "package",
  2615. "path": "microsoft.entityframeworkcore.tools/5.0.13",
  2616. "hasTools": true,
  2617. "files": [
  2618. ".nupkg.metadata",
  2619. ".signature.p7s",
  2620. "Icon.png",
  2621. "lib/netstandard2.1/_._",
  2622. "microsoft.entityframeworkcore.tools.5.0.13.nupkg.sha512",
  2623. "microsoft.entityframeworkcore.tools.nuspec",
  2624. "tools/EntityFrameworkCore.PS2.psd1",
  2625. "tools/EntityFrameworkCore.PS2.psm1",
  2626. "tools/EntityFrameworkCore.psd1",
  2627. "tools/EntityFrameworkCore.psm1",
  2628. "tools/about_EntityFrameworkCore.help.txt",
  2629. "tools/init.ps1",
  2630. "tools/net461/any/ef.exe",
  2631. "tools/net461/win-x86/ef.exe",
  2632. "tools/netcoreapp2.0/any/ef.dll",
  2633. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  2634. ]
  2635. },
  2636. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  2637. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  2638. "type": "package",
  2639. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  2640. "files": [
  2641. ".nupkg.metadata",
  2642. ".signature.p7s",
  2643. "Icon.png",
  2644. "LICENSE.TXT",
  2645. "THIRD-PARTY-NOTICES.TXT",
  2646. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  2647. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  2648. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2649. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2650. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  2651. "microsoft.extensions.caching.abstractions.nuspec",
  2652. "useSharedDesignerContext.txt",
  2653. "version.txt"
  2654. ]
  2655. },
  2656. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  2657. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  2658. "type": "package",
  2659. "path": "microsoft.extensions.caching.memory/5.0.0",
  2660. "files": [
  2661. ".nupkg.metadata",
  2662. ".signature.p7s",
  2663. "Icon.png",
  2664. "LICENSE.TXT",
  2665. "THIRD-PARTY-NOTICES.TXT",
  2666. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  2667. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  2668. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2669. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2670. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  2671. "microsoft.extensions.caching.memory.nuspec",
  2672. "useSharedDesignerContext.txt",
  2673. "version.txt"
  2674. ]
  2675. },
  2676. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  2677. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  2678. "type": "package",
  2679. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  2680. "files": [
  2681. ".nupkg.metadata",
  2682. ".signature.p7s",
  2683. "Icon.png",
  2684. "LICENSE.TXT",
  2685. "THIRD-PARTY-NOTICES.TXT",
  2686. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  2687. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  2688. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2689. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2690. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  2691. "microsoft.extensions.configuration.abstractions.nuspec",
  2692. "useSharedDesignerContext.txt"
  2693. ]
  2694. },
  2695. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  2696. "sha512": "xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==",
  2697. "type": "package",
  2698. "path": "microsoft.extensions.dependencyinjection/5.0.2",
  2699. "files": [
  2700. ".nupkg.metadata",
  2701. ".signature.p7s",
  2702. "Icon.png",
  2703. "LICENSE.TXT",
  2704. "THIRD-PARTY-NOTICES.TXT",
  2705. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2706. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2707. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  2708. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  2709. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2710. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2711. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2712. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2713. "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512",
  2714. "microsoft.extensions.dependencyinjection.nuspec",
  2715. "useSharedDesignerContext.txt",
  2716. "version.txt"
  2717. ]
  2718. },
  2719. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  2720. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  2721. "type": "package",
  2722. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  2723. "files": [
  2724. ".nupkg.metadata",
  2725. ".signature.p7s",
  2726. "Icon.png",
  2727. "LICENSE.TXT",
  2728. "THIRD-PARTY-NOTICES.TXT",
  2729. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2730. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2731. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2732. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2733. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  2734. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2735. "useSharedDesignerContext.txt",
  2736. "version.txt"
  2737. ]
  2738. },
  2739. "Microsoft.Extensions.Identity.Core/5.0.10": {
  2740. "sha512": "WKl22APvpTy+wIqvUd1Gvp8FOs7nTHCZDMeMNNC6fDVfzVKWQF55vOJXbkw7dU70sC6GewE/zsqmwyJAHXgDJw==",
  2741. "type": "package",
  2742. "path": "microsoft.extensions.identity.core/5.0.10",
  2743. "files": [
  2744. ".nupkg.metadata",
  2745. ".signature.p7s",
  2746. "Icon.png",
  2747. "THIRD-PARTY-NOTICES.TXT",
  2748. "lib/net461/Microsoft.Extensions.Identity.Core.dll",
  2749. "lib/net461/Microsoft.Extensions.Identity.Core.xml",
  2750. "lib/net5.0/Microsoft.Extensions.Identity.Core.dll",
  2751. "lib/net5.0/Microsoft.Extensions.Identity.Core.xml",
  2752. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  2753. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  2754. "microsoft.extensions.identity.core.5.0.10.nupkg.sha512",
  2755. "microsoft.extensions.identity.core.nuspec"
  2756. ]
  2757. },
  2758. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  2759. "sha512": "fZDlK8G+jzV9ld0jiO2eQ5JQbOmpiND92gX7bP6rcTZ7YJHzIxCw7Hx8+yf4Ex9f6q7v2LJymkmsUz1k7o5nPg==",
  2760. "type": "package",
  2761. "path": "microsoft.extensions.identity.stores/5.0.10",
  2762. "files": [
  2763. ".nupkg.metadata",
  2764. ".signature.p7s",
  2765. "Icon.png",
  2766. "THIRD-PARTY-NOTICES.TXT",
  2767. "lib/net461/Microsoft.Extensions.Identity.Stores.dll",
  2768. "lib/net461/Microsoft.Extensions.Identity.Stores.xml",
  2769. "lib/net5.0/Microsoft.Extensions.Identity.Stores.dll",
  2770. "lib/net5.0/Microsoft.Extensions.Identity.Stores.xml",
  2771. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  2772. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  2773. "microsoft.extensions.identity.stores.5.0.10.nupkg.sha512",
  2774. "microsoft.extensions.identity.stores.nuspec"
  2775. ]
  2776. },
  2777. "Microsoft.Extensions.Logging/5.0.0": {
  2778. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  2779. "type": "package",
  2780. "path": "microsoft.extensions.logging/5.0.0",
  2781. "files": [
  2782. ".nupkg.metadata",
  2783. ".signature.p7s",
  2784. "Icon.png",
  2785. "LICENSE.TXT",
  2786. "THIRD-PARTY-NOTICES.TXT",
  2787. "lib/net461/Microsoft.Extensions.Logging.dll",
  2788. "lib/net461/Microsoft.Extensions.Logging.xml",
  2789. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2790. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2791. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2792. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2793. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  2794. "microsoft.extensions.logging.nuspec",
  2795. "useSharedDesignerContext.txt",
  2796. "version.txt"
  2797. ]
  2798. },
  2799. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  2800. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  2801. "type": "package",
  2802. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  2803. "files": [
  2804. ".nupkg.metadata",
  2805. ".signature.p7s",
  2806. "Icon.png",
  2807. "LICENSE.TXT",
  2808. "THIRD-PARTY-NOTICES.TXT",
  2809. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  2810. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  2811. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2812. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2813. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  2814. "microsoft.extensions.logging.abstractions.nuspec",
  2815. "useSharedDesignerContext.txt",
  2816. "version.txt"
  2817. ]
  2818. },
  2819. "Microsoft.Extensions.Options/5.0.0": {
  2820. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  2821. "type": "package",
  2822. "path": "microsoft.extensions.options/5.0.0",
  2823. "files": [
  2824. ".nupkg.metadata",
  2825. ".signature.p7s",
  2826. "Icon.png",
  2827. "LICENSE.TXT",
  2828. "THIRD-PARTY-NOTICES.TXT",
  2829. "lib/net461/Microsoft.Extensions.Options.dll",
  2830. "lib/net461/Microsoft.Extensions.Options.xml",
  2831. "lib/net5.0/Microsoft.Extensions.Options.dll",
  2832. "lib/net5.0/Microsoft.Extensions.Options.xml",
  2833. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2834. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2835. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  2836. "microsoft.extensions.options.nuspec",
  2837. "useSharedDesignerContext.txt",
  2838. "version.txt"
  2839. ]
  2840. },
  2841. "Microsoft.Extensions.Primitives/6.0.0": {
  2842. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2843. "type": "package",
  2844. "path": "microsoft.extensions.primitives/6.0.0",
  2845. "files": [
  2846. ".nupkg.metadata",
  2847. ".signature.p7s",
  2848. "Icon.png",
  2849. "LICENSE.TXT",
  2850. "THIRD-PARTY-NOTICES.TXT",
  2851. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2852. "buildTransitive/netcoreapp3.1/_._",
  2853. "lib/net461/Microsoft.Extensions.Primitives.dll",
  2854. "lib/net461/Microsoft.Extensions.Primitives.xml",
  2855. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2856. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2857. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2858. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2859. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2860. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2861. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  2862. "microsoft.extensions.primitives.nuspec",
  2863. "useSharedDesignerContext.txt"
  2864. ]
  2865. },
  2866. "Microsoft.NETCore.Platforms/3.1.0": {
  2867. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  2868. "type": "package",
  2869. "path": "microsoft.netcore.platforms/3.1.0",
  2870. "files": [
  2871. ".nupkg.metadata",
  2872. ".signature.p7s",
  2873. "LICENSE.TXT",
  2874. "THIRD-PARTY-NOTICES.TXT",
  2875. "lib/netstandard1.0/_._",
  2876. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  2877. "microsoft.netcore.platforms.nuspec",
  2878. "runtime.json",
  2879. "useSharedDesignerContext.txt",
  2880. "version.txt"
  2881. ]
  2882. },
  2883. "Microsoft.NETCore.Targets/1.1.0": {
  2884. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2885. "type": "package",
  2886. "path": "microsoft.netcore.targets/1.1.0",
  2887. "files": [
  2888. ".nupkg.metadata",
  2889. ".signature.p7s",
  2890. "ThirdPartyNotices.txt",
  2891. "dotnet_library_license.txt",
  2892. "lib/netstandard1.0/_._",
  2893. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2894. "microsoft.netcore.targets.nuspec",
  2895. "runtime.json"
  2896. ]
  2897. },
  2898. "Microsoft.OpenApi/1.2.3": {
  2899. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  2900. "type": "package",
  2901. "path": "microsoft.openapi/1.2.3",
  2902. "files": [
  2903. ".nupkg.metadata",
  2904. ".signature.p7s",
  2905. "lib/net46/Microsoft.OpenApi.dll",
  2906. "lib/net46/Microsoft.OpenApi.pdb",
  2907. "lib/net46/Microsoft.OpenApi.xml",
  2908. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  2909. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  2910. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  2911. "microsoft.openapi.1.2.3.nupkg.sha512",
  2912. "microsoft.openapi.nuspec"
  2913. ]
  2914. },
  2915. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.11.1": {
  2916. "sha512": "1jHxWlSi6/ryWODk6SUjsZPHk/BdsucxqhIi1szEzwc84e8nvZWF45qRXcT2gWPISJ3Ybbyg2LsNG6yX8r7VuA==",
  2917. "type": "package",
  2918. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.11.1",
  2919. "hasTools": true,
  2920. "files": [
  2921. ".nupkg.metadata",
  2922. ".signature.p7s",
  2923. "EULA.md",
  2924. "ThirdPartyNotices.txt",
  2925. "build/Container.props",
  2926. "build/Container.targets",
  2927. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  2928. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  2929. "build/Rules/GeneralBrowseObject.xaml",
  2930. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  2931. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  2932. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  2933. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  2934. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  2935. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  2936. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  2937. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  2938. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  2939. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  2940. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  2941. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  2942. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  2943. "build/ToolsTarget.props",
  2944. "build/ToolsTarget.targets",
  2945. "icon.png",
  2946. "microsoft.visualstudio.azure.containers.tools.targets.1.11.1.nupkg.sha512",
  2947. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  2948. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  2949. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  2950. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  2951. "tools/Newtonsoft.Json.dll",
  2952. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2953. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2954. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2955. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2956. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2957. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2958. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2959. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2960. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2961. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2962. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2963. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2964. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2965. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2966. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2967. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2968. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2969. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2970. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2971. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2972. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2973. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2974. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2975. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2976. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2977. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2978. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2979. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2980. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2981. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2982. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2983. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2984. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2985. "tools/utils/KillProcess.exe",
  2986. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2987. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2988. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  2989. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  2990. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  2991. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  2992. ]
  2993. },
  2994. "Microsoft.Win32.Primitives/4.0.1": {
  2995. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  2996. "type": "package",
  2997. "path": "microsoft.win32.primitives/4.0.1",
  2998. "files": [
  2999. ".nupkg.metadata",
  3000. "ThirdPartyNotices.txt",
  3001. "dotnet_library_license.txt",
  3002. "lib/MonoAndroid10/_._",
  3003. "lib/MonoTouch10/_._",
  3004. "lib/net46/Microsoft.Win32.Primitives.dll",
  3005. "lib/xamarinios10/_._",
  3006. "lib/xamarinmac20/_._",
  3007. "lib/xamarintvos10/_._",
  3008. "lib/xamarinwatchos10/_._",
  3009. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  3010. "microsoft.win32.primitives.nuspec",
  3011. "ref/MonoAndroid10/_._",
  3012. "ref/MonoTouch10/_._",
  3013. "ref/net46/Microsoft.Win32.Primitives.dll",
  3014. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3015. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3016. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3017. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3018. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3019. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3020. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3021. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3022. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3023. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3024. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3025. "ref/xamarinios10/_._",
  3026. "ref/xamarinmac20/_._",
  3027. "ref/xamarintvos10/_._",
  3028. "ref/xamarinwatchos10/_._"
  3029. ]
  3030. },
  3031. "Microsoft.Win32.Registry/4.7.0": {
  3032. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3033. "type": "package",
  3034. "path": "microsoft.win32.registry/4.7.0",
  3035. "files": [
  3036. ".nupkg.metadata",
  3037. ".signature.p7s",
  3038. "LICENSE.TXT",
  3039. "THIRD-PARTY-NOTICES.TXT",
  3040. "lib/net46/Microsoft.Win32.Registry.dll",
  3041. "lib/net461/Microsoft.Win32.Registry.dll",
  3042. "lib/net461/Microsoft.Win32.Registry.xml",
  3043. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3044. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3045. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3046. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3047. "microsoft.win32.registry.nuspec",
  3048. "ref/net46/Microsoft.Win32.Registry.dll",
  3049. "ref/net461/Microsoft.Win32.Registry.dll",
  3050. "ref/net461/Microsoft.Win32.Registry.xml",
  3051. "ref/net472/Microsoft.Win32.Registry.dll",
  3052. "ref/net472/Microsoft.Win32.Registry.xml",
  3053. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3054. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3055. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3056. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3057. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3058. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3059. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3060. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3061. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3062. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3063. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3064. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3065. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3066. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3067. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3068. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3069. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3070. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3071. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3072. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3073. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3074. "useSharedDesignerContext.txt",
  3075. "version.txt"
  3076. ]
  3077. },
  3078. "Microsoft.Win32.SystemEvents/4.7.0": {
  3079. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3080. "type": "package",
  3081. "path": "microsoft.win32.systemevents/4.7.0",
  3082. "files": [
  3083. ".nupkg.metadata",
  3084. ".signature.p7s",
  3085. "LICENSE.TXT",
  3086. "THIRD-PARTY-NOTICES.TXT",
  3087. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3088. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3089. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3090. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3091. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3092. "microsoft.win32.systemevents.nuspec",
  3093. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3094. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3095. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3096. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3097. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3098. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3099. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3100. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3101. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3102. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3103. "useSharedDesignerContext.txt",
  3104. "version.txt"
  3105. ]
  3106. },
  3107. "MySql.Data/8.0.22": {
  3108. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  3109. "type": "package",
  3110. "path": "mysql.data/8.0.22",
  3111. "files": [
  3112. ".nupkg.metadata",
  3113. ".signature.p7s",
  3114. "lib/net452/MySql.Data.dll",
  3115. "lib/net452/MySql.Data.xml",
  3116. "lib/net452/Ubiety.Dns.Core.dll",
  3117. "lib/net452/Zstandard.Net.dll",
  3118. "lib/net48/MySql.Data.dll",
  3119. "lib/net48/MySql.Data.xml",
  3120. "lib/net48/Ubiety.Dns.Core.dll",
  3121. "lib/net48/Zstandard.Net.dll",
  3122. "lib/net5.0/MySql.Data.dll",
  3123. "lib/net5.0/MySql.Data.xml",
  3124. "lib/net5.0/Ubiety.Dns.Core.dll",
  3125. "lib/net5.0/Zstandard.Net.dll",
  3126. "lib/netstandard2.0/MySql.Data.dll",
  3127. "lib/netstandard2.0/MySql.Data.xml",
  3128. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  3129. "lib/netstandard2.0/Zstandard.Net.dll",
  3130. "lib/netstandard2.1/MySql.Data.dll",
  3131. "lib/netstandard2.1/MySql.Data.xml",
  3132. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  3133. "lib/netstandard2.1/Zstandard.Net.dll",
  3134. "mysql.data.8.0.22.nupkg.sha512",
  3135. "mysql.data.nuspec"
  3136. ]
  3137. },
  3138. "MySql.Data.EntityFrameworkCore/8.0.22": {
  3139. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  3140. "type": "package",
  3141. "path": "mysql.data.entityframeworkcore/8.0.22",
  3142. "files": [
  3143. ".nupkg.metadata",
  3144. ".signature.p7s",
  3145. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  3146. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  3147. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  3148. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  3149. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  3150. "mysql.data.entityframeworkcore.nuspec"
  3151. ]
  3152. },
  3153. "MySqlConnector/1.1.0": {
  3154. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  3155. "type": "package",
  3156. "path": "mysqlconnector/1.1.0",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "lib/net45/MySqlConnector.dll",
  3161. "lib/net45/MySqlConnector.xml",
  3162. "lib/net461/MySqlConnector.dll",
  3163. "lib/net461/MySqlConnector.xml",
  3164. "lib/net471/MySqlConnector.dll",
  3165. "lib/net471/MySqlConnector.xml",
  3166. "lib/net5.0/MySqlConnector.dll",
  3167. "lib/net5.0/MySqlConnector.xml",
  3168. "lib/netcoreapp2.1/MySqlConnector.dll",
  3169. "lib/netcoreapp2.1/MySqlConnector.xml",
  3170. "lib/netcoreapp3.1/MySqlConnector.dll",
  3171. "lib/netcoreapp3.1/MySqlConnector.xml",
  3172. "lib/netstandard1.3/MySqlConnector.dll",
  3173. "lib/netstandard1.3/MySqlConnector.xml",
  3174. "lib/netstandard2.0/MySqlConnector.dll",
  3175. "lib/netstandard2.0/MySqlConnector.xml",
  3176. "lib/netstandard2.1/MySqlConnector.dll",
  3177. "lib/netstandard2.1/MySqlConnector.xml",
  3178. "logo.png",
  3179. "mysqlconnector.1.1.0.nupkg.sha512",
  3180. "mysqlconnector.nuspec"
  3181. ]
  3182. },
  3183. "NETStandard.Library/1.6.0": {
  3184. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  3185. "type": "package",
  3186. "path": "netstandard.library/1.6.0",
  3187. "files": [
  3188. ".nupkg.metadata",
  3189. "ThirdPartyNotices.txt",
  3190. "dotnet_library_license.txt",
  3191. "netstandard.library.1.6.0.nupkg.sha512",
  3192. "netstandard.library.nuspec"
  3193. ]
  3194. },
  3195. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  3196. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  3197. "type": "package",
  3198. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  3199. "files": [
  3200. ".nupkg.metadata",
  3201. ".signature.p7s",
  3202. "icon.png",
  3203. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  3204. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  3205. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  3206. "pomelo.entityframeworkcore.mysql.nuspec"
  3207. ]
  3208. },
  3209. "runtime.native.System/4.0.0": {
  3210. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  3211. "type": "package",
  3212. "path": "runtime.native.system/4.0.0",
  3213. "files": [
  3214. ".nupkg.metadata",
  3215. "ThirdPartyNotices.txt",
  3216. "dotnet_library_license.txt",
  3217. "lib/netstandard1.0/_._",
  3218. "runtime.native.system.4.0.0.nupkg.sha512",
  3219. "runtime.native.system.nuspec"
  3220. ]
  3221. },
  3222. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  3223. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  3224. "type": "package",
  3225. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  3226. "files": [
  3227. ".nupkg.metadata",
  3228. ".signature.p7s",
  3229. "LICENSE.TXT",
  3230. "THIRD-PARTY-NOTICES.TXT",
  3231. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  3232. "runtime.native.system.data.sqlclient.sni.nuspec",
  3233. "useSharedDesignerContext.txt",
  3234. "version.txt"
  3235. ]
  3236. },
  3237. "runtime.native.System.IO.Compression/4.1.0": {
  3238. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  3239. "type": "package",
  3240. "path": "runtime.native.system.io.compression/4.1.0",
  3241. "files": [
  3242. ".nupkg.metadata",
  3243. "ThirdPartyNotices.txt",
  3244. "dotnet_library_license.txt",
  3245. "lib/netstandard1.0/_._",
  3246. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  3247. "runtime.native.system.io.compression.nuspec"
  3248. ]
  3249. },
  3250. "runtime.native.System.Net.Http/4.0.1": {
  3251. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  3252. "type": "package",
  3253. "path": "runtime.native.system.net.http/4.0.1",
  3254. "files": [
  3255. ".nupkg.metadata",
  3256. "ThirdPartyNotices.txt",
  3257. "dotnet_library_license.txt",
  3258. "lib/netstandard1.0/_._",
  3259. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  3260. "runtime.native.system.net.http.nuspec"
  3261. ]
  3262. },
  3263. "runtime.native.System.Security.Cryptography/4.0.0": {
  3264. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  3265. "type": "package",
  3266. "path": "runtime.native.system.security.cryptography/4.0.0",
  3267. "files": [
  3268. ".nupkg.metadata",
  3269. "ThirdPartyNotices.txt",
  3270. "dotnet_library_license.txt",
  3271. "lib/netstandard1.0/_._",
  3272. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  3273. "runtime.native.system.security.cryptography.nuspec"
  3274. ]
  3275. },
  3276. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3277. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  3278. "type": "package",
  3279. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  3280. "files": [
  3281. ".nupkg.metadata",
  3282. ".signature.p7s",
  3283. "ThirdPartyNotices.txt",
  3284. "dotnet_library_license.txt",
  3285. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3286. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  3287. "runtimes/win-arm64/native/sni.dll",
  3288. "useSharedDesignerContext.txt",
  3289. "version.txt"
  3290. ]
  3291. },
  3292. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3293. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  3294. "type": "package",
  3295. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  3296. "files": [
  3297. ".nupkg.metadata",
  3298. ".signature.p7s",
  3299. "ThirdPartyNotices.txt",
  3300. "dotnet_library_license.txt",
  3301. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3302. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  3303. "runtimes/win-x64/native/sni.dll",
  3304. "useSharedDesignerContext.txt",
  3305. "version.txt"
  3306. ]
  3307. },
  3308. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3309. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  3310. "type": "package",
  3311. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  3312. "files": [
  3313. ".nupkg.metadata",
  3314. ".signature.p7s",
  3315. "ThirdPartyNotices.txt",
  3316. "dotnet_library_license.txt",
  3317. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3318. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  3319. "runtimes/win-x86/native/sni.dll",
  3320. "useSharedDesignerContext.txt",
  3321. "version.txt"
  3322. ]
  3323. },
  3324. "SSH.NET/2016.1.0": {
  3325. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  3326. "type": "package",
  3327. "path": "ssh.net/2016.1.0",
  3328. "files": [
  3329. ".nupkg.metadata",
  3330. ".signature.p7s",
  3331. "lib/net35/Renci.SshNet.dll",
  3332. "lib/net35/Renci.SshNet.xml",
  3333. "lib/net40/Renci.SshNet.dll",
  3334. "lib/net40/Renci.SshNet.xml",
  3335. "lib/netstandard1.3/Renci.SshNet.dll",
  3336. "lib/netstandard1.3/Renci.SshNet.xml",
  3337. "lib/sl4/Renci.SshNet.dll",
  3338. "lib/sl4/Renci.SshNet.xml",
  3339. "lib/sl5/Renci.SshNet.dll",
  3340. "lib/sl5/Renci.SshNet.xml",
  3341. "lib/uap10/Renci.SshNet.dll",
  3342. "lib/uap10/Renci.SshNet.xml",
  3343. "lib/wp71/Renci.SshNet.dll",
  3344. "lib/wp71/Renci.SshNet.xml",
  3345. "lib/wp8/Renci.SshNet.dll",
  3346. "lib/wp8/Renci.SshNet.xml",
  3347. "ssh.net.2016.1.0.nupkg.sha512",
  3348. "ssh.net.nuspec"
  3349. ]
  3350. },
  3351. "SshNet.Security.Cryptography/1.2.0": {
  3352. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  3353. "type": "package",
  3354. "path": "sshnet.security.cryptography/1.2.0",
  3355. "files": [
  3356. ".nupkg.metadata",
  3357. ".signature.p7s",
  3358. "lib/net20/SshNet.Security.Cryptography.dll",
  3359. "lib/net20/SshNet.Security.Cryptography.xml",
  3360. "lib/net40/SshNet.Security.Cryptography.dll",
  3361. "lib/net40/SshNet.Security.Cryptography.xml",
  3362. "lib/net45/SshNet.Security.Cryptography.dll",
  3363. "lib/net45/SshNet.Security.Cryptography.xml",
  3364. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  3365. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  3366. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  3367. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  3368. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  3369. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  3370. "lib/sl4/SshNet.Security.Cryptography.dll",
  3371. "lib/sl4/SshNet.Security.Cryptography.xml",
  3372. "lib/sl5/SshNet.Security.Cryptography.dll",
  3373. "lib/sl5/SshNet.Security.Cryptography.xml",
  3374. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  3375. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  3376. "lib/wp71/SshNet.Security.Cryptography.dll",
  3377. "lib/wp71/SshNet.Security.Cryptography.xml",
  3378. "lib/wp8/SshNet.Security.Cryptography.dll",
  3379. "lib/wp8/SshNet.Security.Cryptography.xml",
  3380. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3381. "sshnet.security.cryptography.nuspec"
  3382. ]
  3383. },
  3384. "Swashbuckle.AspNetCore.Swagger/6.2.3": {
  3385. "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==",
  3386. "type": "package",
  3387. "path": "swashbuckle.aspnetcore.swagger/6.2.3",
  3388. "files": [
  3389. ".nupkg.metadata",
  3390. ".signature.p7s",
  3391. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  3392. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3393. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  3394. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  3395. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3396. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  3397. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  3398. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3399. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  3400. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  3401. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3402. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  3403. "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512",
  3404. "swashbuckle.aspnetcore.swagger.nuspec"
  3405. ]
  3406. },
  3407. "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {
  3408. "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==",
  3409. "type": "package",
  3410. "path": "swashbuckle.aspnetcore.swaggergen/6.2.3",
  3411. "files": [
  3412. ".nupkg.metadata",
  3413. ".signature.p7s",
  3414. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3415. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3416. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3417. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3418. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3419. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3420. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3421. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3422. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3423. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3424. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3425. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3426. "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512",
  3427. "swashbuckle.aspnetcore.swaggergen.nuspec"
  3428. ]
  3429. },
  3430. "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {
  3431. "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==",
  3432. "type": "package",
  3433. "path": "swashbuckle.aspnetcore.swaggerui/6.2.3",
  3434. "files": [
  3435. ".nupkg.metadata",
  3436. ".signature.p7s",
  3437. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3438. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3439. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3440. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3441. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3442. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3443. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3444. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3445. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3446. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3447. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3448. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3449. "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512",
  3450. "swashbuckle.aspnetcore.swaggerui.nuspec"
  3451. ]
  3452. },
  3453. "System.AppContext/4.1.0": {
  3454. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  3455. "type": "package",
  3456. "path": "system.appcontext/4.1.0",
  3457. "files": [
  3458. ".nupkg.metadata",
  3459. "ThirdPartyNotices.txt",
  3460. "dotnet_library_license.txt",
  3461. "lib/MonoAndroid10/_._",
  3462. "lib/MonoTouch10/_._",
  3463. "lib/net46/System.AppContext.dll",
  3464. "lib/net463/System.AppContext.dll",
  3465. "lib/netcore50/System.AppContext.dll",
  3466. "lib/netstandard1.6/System.AppContext.dll",
  3467. "lib/xamarinios10/_._",
  3468. "lib/xamarinmac20/_._",
  3469. "lib/xamarintvos10/_._",
  3470. "lib/xamarinwatchos10/_._",
  3471. "ref/MonoAndroid10/_._",
  3472. "ref/MonoTouch10/_._",
  3473. "ref/net46/System.AppContext.dll",
  3474. "ref/net463/System.AppContext.dll",
  3475. "ref/netstandard/_._",
  3476. "ref/netstandard1.3/System.AppContext.dll",
  3477. "ref/netstandard1.3/System.AppContext.xml",
  3478. "ref/netstandard1.3/de/System.AppContext.xml",
  3479. "ref/netstandard1.3/es/System.AppContext.xml",
  3480. "ref/netstandard1.3/fr/System.AppContext.xml",
  3481. "ref/netstandard1.3/it/System.AppContext.xml",
  3482. "ref/netstandard1.3/ja/System.AppContext.xml",
  3483. "ref/netstandard1.3/ko/System.AppContext.xml",
  3484. "ref/netstandard1.3/ru/System.AppContext.xml",
  3485. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3486. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3487. "ref/netstandard1.6/System.AppContext.dll",
  3488. "ref/netstandard1.6/System.AppContext.xml",
  3489. "ref/netstandard1.6/de/System.AppContext.xml",
  3490. "ref/netstandard1.6/es/System.AppContext.xml",
  3491. "ref/netstandard1.6/fr/System.AppContext.xml",
  3492. "ref/netstandard1.6/it/System.AppContext.xml",
  3493. "ref/netstandard1.6/ja/System.AppContext.xml",
  3494. "ref/netstandard1.6/ko/System.AppContext.xml",
  3495. "ref/netstandard1.6/ru/System.AppContext.xml",
  3496. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3497. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3498. "ref/xamarinios10/_._",
  3499. "ref/xamarinmac20/_._",
  3500. "ref/xamarintvos10/_._",
  3501. "ref/xamarinwatchos10/_._",
  3502. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3503. "system.appcontext.4.1.0.nupkg.sha512",
  3504. "system.appcontext.nuspec"
  3505. ]
  3506. },
  3507. "System.Buffers/4.5.1": {
  3508. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  3509. "type": "package",
  3510. "path": "system.buffers/4.5.1",
  3511. "files": [
  3512. ".nupkg.metadata",
  3513. ".signature.p7s",
  3514. "LICENSE.TXT",
  3515. "THIRD-PARTY-NOTICES.TXT",
  3516. "lib/net461/System.Buffers.dll",
  3517. "lib/net461/System.Buffers.xml",
  3518. "lib/netcoreapp2.0/_._",
  3519. "lib/netstandard1.1/System.Buffers.dll",
  3520. "lib/netstandard1.1/System.Buffers.xml",
  3521. "lib/netstandard2.0/System.Buffers.dll",
  3522. "lib/netstandard2.0/System.Buffers.xml",
  3523. "lib/uap10.0.16299/_._",
  3524. "ref/net45/System.Buffers.dll",
  3525. "ref/net45/System.Buffers.xml",
  3526. "ref/netcoreapp2.0/_._",
  3527. "ref/netstandard1.1/System.Buffers.dll",
  3528. "ref/netstandard1.1/System.Buffers.xml",
  3529. "ref/netstandard2.0/System.Buffers.dll",
  3530. "ref/netstandard2.0/System.Buffers.xml",
  3531. "ref/uap10.0.16299/_._",
  3532. "system.buffers.4.5.1.nupkg.sha512",
  3533. "system.buffers.nuspec",
  3534. "useSharedDesignerContext.txt",
  3535. "version.txt"
  3536. ]
  3537. },
  3538. "System.Collections/4.0.11": {
  3539. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  3540. "type": "package",
  3541. "path": "system.collections/4.0.11",
  3542. "files": [
  3543. ".nupkg.metadata",
  3544. "ThirdPartyNotices.txt",
  3545. "dotnet_library_license.txt",
  3546. "lib/MonoAndroid10/_._",
  3547. "lib/MonoTouch10/_._",
  3548. "lib/net45/_._",
  3549. "lib/portable-net45+win8+wp8+wpa81/_._",
  3550. "lib/win8/_._",
  3551. "lib/wp80/_._",
  3552. "lib/wpa81/_._",
  3553. "lib/xamarinios10/_._",
  3554. "lib/xamarinmac20/_._",
  3555. "lib/xamarintvos10/_._",
  3556. "lib/xamarinwatchos10/_._",
  3557. "ref/MonoAndroid10/_._",
  3558. "ref/MonoTouch10/_._",
  3559. "ref/net45/_._",
  3560. "ref/netcore50/System.Collections.dll",
  3561. "ref/netcore50/System.Collections.xml",
  3562. "ref/netcore50/de/System.Collections.xml",
  3563. "ref/netcore50/es/System.Collections.xml",
  3564. "ref/netcore50/fr/System.Collections.xml",
  3565. "ref/netcore50/it/System.Collections.xml",
  3566. "ref/netcore50/ja/System.Collections.xml",
  3567. "ref/netcore50/ko/System.Collections.xml",
  3568. "ref/netcore50/ru/System.Collections.xml",
  3569. "ref/netcore50/zh-hans/System.Collections.xml",
  3570. "ref/netcore50/zh-hant/System.Collections.xml",
  3571. "ref/netstandard1.0/System.Collections.dll",
  3572. "ref/netstandard1.0/System.Collections.xml",
  3573. "ref/netstandard1.0/de/System.Collections.xml",
  3574. "ref/netstandard1.0/es/System.Collections.xml",
  3575. "ref/netstandard1.0/fr/System.Collections.xml",
  3576. "ref/netstandard1.0/it/System.Collections.xml",
  3577. "ref/netstandard1.0/ja/System.Collections.xml",
  3578. "ref/netstandard1.0/ko/System.Collections.xml",
  3579. "ref/netstandard1.0/ru/System.Collections.xml",
  3580. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3581. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3582. "ref/netstandard1.3/System.Collections.dll",
  3583. "ref/netstandard1.3/System.Collections.xml",
  3584. "ref/netstandard1.3/de/System.Collections.xml",
  3585. "ref/netstandard1.3/es/System.Collections.xml",
  3586. "ref/netstandard1.3/fr/System.Collections.xml",
  3587. "ref/netstandard1.3/it/System.Collections.xml",
  3588. "ref/netstandard1.3/ja/System.Collections.xml",
  3589. "ref/netstandard1.3/ko/System.Collections.xml",
  3590. "ref/netstandard1.3/ru/System.Collections.xml",
  3591. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3592. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3593. "ref/portable-net45+win8+wp8+wpa81/_._",
  3594. "ref/win8/_._",
  3595. "ref/wp80/_._",
  3596. "ref/wpa81/_._",
  3597. "ref/xamarinios10/_._",
  3598. "ref/xamarinmac20/_._",
  3599. "ref/xamarintvos10/_._",
  3600. "ref/xamarinwatchos10/_._",
  3601. "system.collections.4.0.11.nupkg.sha512",
  3602. "system.collections.nuspec"
  3603. ]
  3604. },
  3605. "System.Collections.Concurrent/4.0.12": {
  3606. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  3607. "type": "package",
  3608. "path": "system.collections.concurrent/4.0.12",
  3609. "files": [
  3610. ".nupkg.metadata",
  3611. "ThirdPartyNotices.txt",
  3612. "dotnet_library_license.txt",
  3613. "lib/MonoAndroid10/_._",
  3614. "lib/MonoTouch10/_._",
  3615. "lib/net45/_._",
  3616. "lib/netcore50/System.Collections.Concurrent.dll",
  3617. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3618. "lib/portable-net45+win8+wpa81/_._",
  3619. "lib/win8/_._",
  3620. "lib/wpa81/_._",
  3621. "lib/xamarinios10/_._",
  3622. "lib/xamarinmac20/_._",
  3623. "lib/xamarintvos10/_._",
  3624. "lib/xamarinwatchos10/_._",
  3625. "ref/MonoAndroid10/_._",
  3626. "ref/MonoTouch10/_._",
  3627. "ref/net45/_._",
  3628. "ref/netcore50/System.Collections.Concurrent.dll",
  3629. "ref/netcore50/System.Collections.Concurrent.xml",
  3630. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3631. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3632. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3633. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3634. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3635. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3636. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3637. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3638. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3639. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3640. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3641. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3642. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3643. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3644. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3645. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3646. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3647. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3648. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3649. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3650. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3651. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3652. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3653. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3654. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3655. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3656. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3657. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3658. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3659. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3660. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3661. "ref/portable-net45+win8+wpa81/_._",
  3662. "ref/win8/_._",
  3663. "ref/wpa81/_._",
  3664. "ref/xamarinios10/_._",
  3665. "ref/xamarinmac20/_._",
  3666. "ref/xamarintvos10/_._",
  3667. "ref/xamarinwatchos10/_._",
  3668. "system.collections.concurrent.4.0.12.nupkg.sha512",
  3669. "system.collections.concurrent.nuspec"
  3670. ]
  3671. },
  3672. "System.Collections.Immutable/5.0.0": {
  3673. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  3674. "type": "package",
  3675. "path": "system.collections.immutable/5.0.0",
  3676. "files": [
  3677. ".nupkg.metadata",
  3678. ".signature.p7s",
  3679. "Icon.png",
  3680. "LICENSE.TXT",
  3681. "THIRD-PARTY-NOTICES.TXT",
  3682. "lib/net461/System.Collections.Immutable.dll",
  3683. "lib/net461/System.Collections.Immutable.xml",
  3684. "lib/netstandard1.0/System.Collections.Immutable.dll",
  3685. "lib/netstandard1.0/System.Collections.Immutable.xml",
  3686. "lib/netstandard1.3/System.Collections.Immutable.dll",
  3687. "lib/netstandard1.3/System.Collections.Immutable.xml",
  3688. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3689. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3690. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  3691. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  3692. "system.collections.immutable.5.0.0.nupkg.sha512",
  3693. "system.collections.immutable.nuspec",
  3694. "useSharedDesignerContext.txt",
  3695. "version.txt"
  3696. ]
  3697. },
  3698. "System.ComponentModel.Annotations/5.0.0": {
  3699. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  3700. "type": "package",
  3701. "path": "system.componentmodel.annotations/5.0.0",
  3702. "files": [
  3703. ".nupkg.metadata",
  3704. ".signature.p7s",
  3705. "Icon.png",
  3706. "LICENSE.TXT",
  3707. "THIRD-PARTY-NOTICES.TXT",
  3708. "lib/MonoAndroid10/_._",
  3709. "lib/MonoTouch10/_._",
  3710. "lib/net45/_._",
  3711. "lib/net461/System.ComponentModel.Annotations.dll",
  3712. "lib/netcore50/System.ComponentModel.Annotations.dll",
  3713. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  3714. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  3715. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  3716. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  3717. "lib/portable-net45+win8/_._",
  3718. "lib/win8/_._",
  3719. "lib/xamarinios10/_._",
  3720. "lib/xamarinmac20/_._",
  3721. "lib/xamarintvos10/_._",
  3722. "lib/xamarinwatchos10/_._",
  3723. "ref/MonoAndroid10/_._",
  3724. "ref/MonoTouch10/_._",
  3725. "ref/net45/_._",
  3726. "ref/net461/System.ComponentModel.Annotations.dll",
  3727. "ref/net461/System.ComponentModel.Annotations.xml",
  3728. "ref/netcore50/System.ComponentModel.Annotations.dll",
  3729. "ref/netcore50/System.ComponentModel.Annotations.xml",
  3730. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  3731. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  3732. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  3733. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  3734. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  3735. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  3736. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  3737. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  3738. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  3739. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  3740. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  3741. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  3742. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  3743. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  3744. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  3745. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  3746. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  3747. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  3748. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  3749. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  3750. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  3751. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  3752. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  3753. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  3754. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  3755. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  3756. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  3757. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  3758. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  3759. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  3760. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  3761. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  3762. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  3763. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  3764. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  3765. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  3766. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  3767. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  3768. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  3769. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  3770. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  3771. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  3772. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  3773. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  3774. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  3775. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  3776. "ref/portable-net45+win8/_._",
  3777. "ref/win8/_._",
  3778. "ref/xamarinios10/_._",
  3779. "ref/xamarinmac20/_._",
  3780. "ref/xamarintvos10/_._",
  3781. "ref/xamarinwatchos10/_._",
  3782. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  3783. "system.componentmodel.annotations.nuspec",
  3784. "useSharedDesignerContext.txt",
  3785. "version.txt"
  3786. ]
  3787. },
  3788. "System.Configuration.ConfigurationManager/4.4.1": {
  3789. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  3790. "type": "package",
  3791. "path": "system.configuration.configurationmanager/4.4.1",
  3792. "files": [
  3793. ".nupkg.metadata",
  3794. ".signature.p7s",
  3795. "LICENSE.TXT",
  3796. "THIRD-PARTY-NOTICES.TXT",
  3797. "lib/net461/System.Configuration.ConfigurationManager.dll",
  3798. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3799. "ref/net461/System.Configuration.ConfigurationManager.dll",
  3800. "ref/net461/System.Configuration.ConfigurationManager.xml",
  3801. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3802. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  3803. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  3804. "system.configuration.configurationmanager.nuspec",
  3805. "useSharedDesignerContext.txt",
  3806. "version.txt"
  3807. ]
  3808. },
  3809. "System.Console/4.0.0": {
  3810. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  3811. "type": "package",
  3812. "path": "system.console/4.0.0",
  3813. "files": [
  3814. ".nupkg.metadata",
  3815. "ThirdPartyNotices.txt",
  3816. "dotnet_library_license.txt",
  3817. "lib/MonoAndroid10/_._",
  3818. "lib/MonoTouch10/_._",
  3819. "lib/net46/System.Console.dll",
  3820. "lib/xamarinios10/_._",
  3821. "lib/xamarinmac20/_._",
  3822. "lib/xamarintvos10/_._",
  3823. "lib/xamarinwatchos10/_._",
  3824. "ref/MonoAndroid10/_._",
  3825. "ref/MonoTouch10/_._",
  3826. "ref/net46/System.Console.dll",
  3827. "ref/netstandard1.3/System.Console.dll",
  3828. "ref/netstandard1.3/System.Console.xml",
  3829. "ref/netstandard1.3/de/System.Console.xml",
  3830. "ref/netstandard1.3/es/System.Console.xml",
  3831. "ref/netstandard1.3/fr/System.Console.xml",
  3832. "ref/netstandard1.3/it/System.Console.xml",
  3833. "ref/netstandard1.3/ja/System.Console.xml",
  3834. "ref/netstandard1.3/ko/System.Console.xml",
  3835. "ref/netstandard1.3/ru/System.Console.xml",
  3836. "ref/netstandard1.3/zh-hans/System.Console.xml",
  3837. "ref/netstandard1.3/zh-hant/System.Console.xml",
  3838. "ref/xamarinios10/_._",
  3839. "ref/xamarinmac20/_._",
  3840. "ref/xamarintvos10/_._",
  3841. "ref/xamarinwatchos10/_._",
  3842. "system.console.4.0.0.nupkg.sha512",
  3843. "system.console.nuspec"
  3844. ]
  3845. },
  3846. "System.Data.SqlClient/4.8.3": {
  3847. "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
  3848. "type": "package",
  3849. "path": "system.data.sqlclient/4.8.3",
  3850. "files": [
  3851. ".nupkg.metadata",
  3852. ".signature.p7s",
  3853. "Icon.png",
  3854. "LICENSE.TXT",
  3855. "THIRD-PARTY-NOTICES.TXT",
  3856. "lib/MonoAndroid10/_._",
  3857. "lib/MonoTouch10/_._",
  3858. "lib/net451/System.Data.SqlClient.dll",
  3859. "lib/net46/System.Data.SqlClient.dll",
  3860. "lib/net461/System.Data.SqlClient.dll",
  3861. "lib/net461/System.Data.SqlClient.xml",
  3862. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3863. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3864. "lib/netstandard1.2/System.Data.SqlClient.dll",
  3865. "lib/netstandard1.2/System.Data.SqlClient.xml",
  3866. "lib/netstandard1.3/System.Data.SqlClient.dll",
  3867. "lib/netstandard1.3/System.Data.SqlClient.xml",
  3868. "lib/netstandard2.0/System.Data.SqlClient.dll",
  3869. "lib/netstandard2.0/System.Data.SqlClient.xml",
  3870. "lib/xamarinios10/_._",
  3871. "lib/xamarinmac20/_._",
  3872. "lib/xamarintvos10/_._",
  3873. "lib/xamarinwatchos10/_._",
  3874. "ref/MonoAndroid10/_._",
  3875. "ref/MonoTouch10/_._",
  3876. "ref/net451/System.Data.SqlClient.dll",
  3877. "ref/net46/System.Data.SqlClient.dll",
  3878. "ref/net461/System.Data.SqlClient.dll",
  3879. "ref/net461/System.Data.SqlClient.xml",
  3880. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  3881. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  3882. "ref/netstandard1.2/System.Data.SqlClient.dll",
  3883. "ref/netstandard1.2/System.Data.SqlClient.xml",
  3884. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  3885. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  3886. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  3887. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  3888. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  3889. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  3890. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  3891. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  3892. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  3893. "ref/netstandard1.3/System.Data.SqlClient.dll",
  3894. "ref/netstandard1.3/System.Data.SqlClient.xml",
  3895. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  3896. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  3897. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  3898. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  3899. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  3900. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  3901. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  3902. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  3903. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  3904. "ref/netstandard2.0/System.Data.SqlClient.dll",
  3905. "ref/netstandard2.0/System.Data.SqlClient.xml",
  3906. "ref/xamarinios10/_._",
  3907. "ref/xamarinmac20/_._",
  3908. "ref/xamarintvos10/_._",
  3909. "ref/xamarinwatchos10/_._",
  3910. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3911. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3912. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  3913. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  3914. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  3915. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  3916. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  3917. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  3918. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  3919. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  3920. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  3921. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  3922. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  3923. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  3924. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  3925. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  3926. "system.data.sqlclient.4.8.3.nupkg.sha512",
  3927. "system.data.sqlclient.nuspec",
  3928. "useSharedDesignerContext.txt",
  3929. "version.txt"
  3930. ]
  3931. },
  3932. "System.Diagnostics.Debug/4.0.11": {
  3933. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  3934. "type": "package",
  3935. "path": "system.diagnostics.debug/4.0.11",
  3936. "files": [
  3937. ".nupkg.metadata",
  3938. "ThirdPartyNotices.txt",
  3939. "dotnet_library_license.txt",
  3940. "lib/MonoAndroid10/_._",
  3941. "lib/MonoTouch10/_._",
  3942. "lib/net45/_._",
  3943. "lib/portable-net45+win8+wp8+wpa81/_._",
  3944. "lib/win8/_._",
  3945. "lib/wp80/_._",
  3946. "lib/wpa81/_._",
  3947. "lib/xamarinios10/_._",
  3948. "lib/xamarinmac20/_._",
  3949. "lib/xamarintvos10/_._",
  3950. "lib/xamarinwatchos10/_._",
  3951. "ref/MonoAndroid10/_._",
  3952. "ref/MonoTouch10/_._",
  3953. "ref/net45/_._",
  3954. "ref/netcore50/System.Diagnostics.Debug.dll",
  3955. "ref/netcore50/System.Diagnostics.Debug.xml",
  3956. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  3957. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  3958. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  3959. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  3960. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  3961. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  3962. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  3963. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  3964. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  3965. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  3966. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  3967. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  3968. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  3969. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  3970. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  3971. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  3972. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  3973. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  3974. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  3975. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  3976. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  3977. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  3978. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  3979. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  3980. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  3981. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  3982. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  3983. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  3984. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  3985. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  3986. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  3987. "ref/portable-net45+win8+wp8+wpa81/_._",
  3988. "ref/win8/_._",
  3989. "ref/wp80/_._",
  3990. "ref/wpa81/_._",
  3991. "ref/xamarinios10/_._",
  3992. "ref/xamarinmac20/_._",
  3993. "ref/xamarintvos10/_._",
  3994. "ref/xamarinwatchos10/_._",
  3995. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  3996. "system.diagnostics.debug.nuspec"
  3997. ]
  3998. },
  3999. "System.Diagnostics.DiagnosticSource/5.0.1": {
  4000. "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  4001. "type": "package",
  4002. "path": "system.diagnostics.diagnosticsource/5.0.1",
  4003. "files": [
  4004. ".nupkg.metadata",
  4005. ".signature.p7s",
  4006. "Icon.png",
  4007. "LICENSE.TXT",
  4008. "THIRD-PARTY-NOTICES.TXT",
  4009. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4010. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4011. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4012. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4013. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  4014. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  4015. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4016. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4017. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4018. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4019. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4020. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4021. "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
  4022. "system.diagnostics.diagnosticsource.nuspec",
  4023. "useSharedDesignerContext.txt",
  4024. "version.txt"
  4025. ]
  4026. },
  4027. "System.Diagnostics.Tools/4.0.1": {
  4028. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  4029. "type": "package",
  4030. "path": "system.diagnostics.tools/4.0.1",
  4031. "files": [
  4032. ".nupkg.metadata",
  4033. "ThirdPartyNotices.txt",
  4034. "dotnet_library_license.txt",
  4035. "lib/MonoAndroid10/_._",
  4036. "lib/MonoTouch10/_._",
  4037. "lib/net45/_._",
  4038. "lib/portable-net45+win8+wp8+wpa81/_._",
  4039. "lib/win8/_._",
  4040. "lib/wp80/_._",
  4041. "lib/wpa81/_._",
  4042. "lib/xamarinios10/_._",
  4043. "lib/xamarinmac20/_._",
  4044. "lib/xamarintvos10/_._",
  4045. "lib/xamarinwatchos10/_._",
  4046. "ref/MonoAndroid10/_._",
  4047. "ref/MonoTouch10/_._",
  4048. "ref/net45/_._",
  4049. "ref/netcore50/System.Diagnostics.Tools.dll",
  4050. "ref/netcore50/System.Diagnostics.Tools.xml",
  4051. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4052. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4053. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4054. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4055. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4056. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4057. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4058. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4059. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4060. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4061. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4062. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4063. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4064. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4065. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4066. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4067. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4068. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4069. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4070. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4071. "ref/portable-net45+win8+wp8+wpa81/_._",
  4072. "ref/win8/_._",
  4073. "ref/wp80/_._",
  4074. "ref/wpa81/_._",
  4075. "ref/xamarinios10/_._",
  4076. "ref/xamarinmac20/_._",
  4077. "ref/xamarintvos10/_._",
  4078. "ref/xamarinwatchos10/_._",
  4079. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  4080. "system.diagnostics.tools.nuspec"
  4081. ]
  4082. },
  4083. "System.Diagnostics.TraceSource/4.0.0": {
  4084. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  4085. "type": "package",
  4086. "path": "system.diagnostics.tracesource/4.0.0",
  4087. "files": [
  4088. ".nupkg.metadata",
  4089. ".signature.p7s",
  4090. "ThirdPartyNotices.txt",
  4091. "dotnet_library_license.txt",
  4092. "lib/MonoAndroid10/_._",
  4093. "lib/MonoTouch10/_._",
  4094. "lib/net46/System.Diagnostics.TraceSource.dll",
  4095. "lib/xamarinios10/_._",
  4096. "lib/xamarinmac20/_._",
  4097. "lib/xamarintvos10/_._",
  4098. "lib/xamarinwatchos10/_._",
  4099. "ref/MonoAndroid10/_._",
  4100. "ref/MonoTouch10/_._",
  4101. "ref/net46/System.Diagnostics.TraceSource.dll",
  4102. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4103. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  4104. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  4105. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  4106. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  4107. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  4108. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  4109. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  4110. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  4111. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  4112. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  4113. "ref/xamarinios10/_._",
  4114. "ref/xamarinmac20/_._",
  4115. "ref/xamarintvos10/_._",
  4116. "ref/xamarinwatchos10/_._",
  4117. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4118. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  4119. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4120. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  4121. "system.diagnostics.tracesource.nuspec"
  4122. ]
  4123. },
  4124. "System.Diagnostics.Tracing/4.1.0": {
  4125. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  4126. "type": "package",
  4127. "path": "system.diagnostics.tracing/4.1.0",
  4128. "files": [
  4129. ".nupkg.metadata",
  4130. "ThirdPartyNotices.txt",
  4131. "dotnet_library_license.txt",
  4132. "lib/MonoAndroid10/_._",
  4133. "lib/MonoTouch10/_._",
  4134. "lib/net45/_._",
  4135. "lib/net462/System.Diagnostics.Tracing.dll",
  4136. "lib/portable-net45+win8+wpa81/_._",
  4137. "lib/win8/_._",
  4138. "lib/wpa81/_._",
  4139. "lib/xamarinios10/_._",
  4140. "lib/xamarinmac20/_._",
  4141. "lib/xamarintvos10/_._",
  4142. "lib/xamarinwatchos10/_._",
  4143. "ref/MonoAndroid10/_._",
  4144. "ref/MonoTouch10/_._",
  4145. "ref/net45/_._",
  4146. "ref/net462/System.Diagnostics.Tracing.dll",
  4147. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4148. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4149. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4150. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4151. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4152. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4153. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4154. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4155. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4156. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4157. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4158. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4159. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4160. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4161. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4162. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4163. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4164. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4165. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4166. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4167. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4168. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4169. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4170. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4171. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4172. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4173. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4174. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4175. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4176. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4177. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4178. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4179. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4180. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4181. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4182. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4183. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4184. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4185. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4186. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4187. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4188. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4189. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4190. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4191. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4192. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4193. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4194. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4195. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4196. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4197. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4198. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4199. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4200. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4201. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4202. "ref/portable-net45+win8+wpa81/_._",
  4203. "ref/win8/_._",
  4204. "ref/wpa81/_._",
  4205. "ref/xamarinios10/_._",
  4206. "ref/xamarinmac20/_._",
  4207. "ref/xamarintvos10/_._",
  4208. "ref/xamarinwatchos10/_._",
  4209. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  4210. "system.diagnostics.tracing.nuspec"
  4211. ]
  4212. },
  4213. "System.Drawing.Common/4.7.0": {
  4214. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4215. "type": "package",
  4216. "path": "system.drawing.common/4.7.0",
  4217. "files": [
  4218. ".nupkg.metadata",
  4219. ".signature.p7s",
  4220. "LICENSE.TXT",
  4221. "THIRD-PARTY-NOTICES.TXT",
  4222. "lib/MonoAndroid10/_._",
  4223. "lib/MonoTouch10/_._",
  4224. "lib/net461/System.Drawing.Common.dll",
  4225. "lib/netstandard2.0/System.Drawing.Common.dll",
  4226. "lib/xamarinios10/_._",
  4227. "lib/xamarinmac20/_._",
  4228. "lib/xamarintvos10/_._",
  4229. "lib/xamarinwatchos10/_._",
  4230. "ref/MonoAndroid10/_._",
  4231. "ref/MonoTouch10/_._",
  4232. "ref/net461/System.Drawing.Common.dll",
  4233. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4234. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4235. "ref/netstandard2.0/System.Drawing.Common.dll",
  4236. "ref/xamarinios10/_._",
  4237. "ref/xamarinmac20/_._",
  4238. "ref/xamarintvos10/_._",
  4239. "ref/xamarinwatchos10/_._",
  4240. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4241. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4242. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4243. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4244. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4245. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4246. "system.drawing.common.4.7.0.nupkg.sha512",
  4247. "system.drawing.common.nuspec",
  4248. "useSharedDesignerContext.txt",
  4249. "version.txt"
  4250. ]
  4251. },
  4252. "System.Globalization/4.0.11": {
  4253. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  4254. "type": "package",
  4255. "path": "system.globalization/4.0.11",
  4256. "files": [
  4257. ".nupkg.metadata",
  4258. "ThirdPartyNotices.txt",
  4259. "dotnet_library_license.txt",
  4260. "lib/MonoAndroid10/_._",
  4261. "lib/MonoTouch10/_._",
  4262. "lib/net45/_._",
  4263. "lib/portable-net45+win8+wp8+wpa81/_._",
  4264. "lib/win8/_._",
  4265. "lib/wp80/_._",
  4266. "lib/wpa81/_._",
  4267. "lib/xamarinios10/_._",
  4268. "lib/xamarinmac20/_._",
  4269. "lib/xamarintvos10/_._",
  4270. "lib/xamarinwatchos10/_._",
  4271. "ref/MonoAndroid10/_._",
  4272. "ref/MonoTouch10/_._",
  4273. "ref/net45/_._",
  4274. "ref/netcore50/System.Globalization.dll",
  4275. "ref/netcore50/System.Globalization.xml",
  4276. "ref/netcore50/de/System.Globalization.xml",
  4277. "ref/netcore50/es/System.Globalization.xml",
  4278. "ref/netcore50/fr/System.Globalization.xml",
  4279. "ref/netcore50/it/System.Globalization.xml",
  4280. "ref/netcore50/ja/System.Globalization.xml",
  4281. "ref/netcore50/ko/System.Globalization.xml",
  4282. "ref/netcore50/ru/System.Globalization.xml",
  4283. "ref/netcore50/zh-hans/System.Globalization.xml",
  4284. "ref/netcore50/zh-hant/System.Globalization.xml",
  4285. "ref/netstandard1.0/System.Globalization.dll",
  4286. "ref/netstandard1.0/System.Globalization.xml",
  4287. "ref/netstandard1.0/de/System.Globalization.xml",
  4288. "ref/netstandard1.0/es/System.Globalization.xml",
  4289. "ref/netstandard1.0/fr/System.Globalization.xml",
  4290. "ref/netstandard1.0/it/System.Globalization.xml",
  4291. "ref/netstandard1.0/ja/System.Globalization.xml",
  4292. "ref/netstandard1.0/ko/System.Globalization.xml",
  4293. "ref/netstandard1.0/ru/System.Globalization.xml",
  4294. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4295. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4296. "ref/netstandard1.3/System.Globalization.dll",
  4297. "ref/netstandard1.3/System.Globalization.xml",
  4298. "ref/netstandard1.3/de/System.Globalization.xml",
  4299. "ref/netstandard1.3/es/System.Globalization.xml",
  4300. "ref/netstandard1.3/fr/System.Globalization.xml",
  4301. "ref/netstandard1.3/it/System.Globalization.xml",
  4302. "ref/netstandard1.3/ja/System.Globalization.xml",
  4303. "ref/netstandard1.3/ko/System.Globalization.xml",
  4304. "ref/netstandard1.3/ru/System.Globalization.xml",
  4305. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4306. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4307. "ref/portable-net45+win8+wp8+wpa81/_._",
  4308. "ref/win8/_._",
  4309. "ref/wp80/_._",
  4310. "ref/wpa81/_._",
  4311. "ref/xamarinios10/_._",
  4312. "ref/xamarinmac20/_._",
  4313. "ref/xamarintvos10/_._",
  4314. "ref/xamarinwatchos10/_._",
  4315. "system.globalization.4.0.11.nupkg.sha512",
  4316. "system.globalization.nuspec"
  4317. ]
  4318. },
  4319. "System.Globalization.Calendars/4.0.1": {
  4320. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  4321. "type": "package",
  4322. "path": "system.globalization.calendars/4.0.1",
  4323. "files": [
  4324. ".nupkg.metadata",
  4325. "ThirdPartyNotices.txt",
  4326. "dotnet_library_license.txt",
  4327. "lib/MonoAndroid10/_._",
  4328. "lib/MonoTouch10/_._",
  4329. "lib/net46/System.Globalization.Calendars.dll",
  4330. "lib/xamarinios10/_._",
  4331. "lib/xamarinmac20/_._",
  4332. "lib/xamarintvos10/_._",
  4333. "lib/xamarinwatchos10/_._",
  4334. "ref/MonoAndroid10/_._",
  4335. "ref/MonoTouch10/_._",
  4336. "ref/net46/System.Globalization.Calendars.dll",
  4337. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4338. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4339. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4340. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4341. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4342. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4343. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4344. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4345. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4346. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4347. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4348. "ref/xamarinios10/_._",
  4349. "ref/xamarinmac20/_._",
  4350. "ref/xamarintvos10/_._",
  4351. "ref/xamarinwatchos10/_._",
  4352. "system.globalization.calendars.4.0.1.nupkg.sha512",
  4353. "system.globalization.calendars.nuspec"
  4354. ]
  4355. },
  4356. "System.Globalization.Extensions/4.0.1": {
  4357. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  4358. "type": "package",
  4359. "path": "system.globalization.extensions/4.0.1",
  4360. "files": [
  4361. ".nupkg.metadata",
  4362. "ThirdPartyNotices.txt",
  4363. "dotnet_library_license.txt",
  4364. "lib/MonoAndroid10/_._",
  4365. "lib/MonoTouch10/_._",
  4366. "lib/net46/System.Globalization.Extensions.dll",
  4367. "lib/xamarinios10/_._",
  4368. "lib/xamarinmac20/_._",
  4369. "lib/xamarintvos10/_._",
  4370. "lib/xamarinwatchos10/_._",
  4371. "ref/MonoAndroid10/_._",
  4372. "ref/MonoTouch10/_._",
  4373. "ref/net46/System.Globalization.Extensions.dll",
  4374. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4375. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4376. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4377. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4378. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4379. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4380. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4381. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4382. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4383. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4384. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4385. "ref/xamarinios10/_._",
  4386. "ref/xamarinmac20/_._",
  4387. "ref/xamarintvos10/_._",
  4388. "ref/xamarinwatchos10/_._",
  4389. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4390. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4391. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4392. "system.globalization.extensions.4.0.1.nupkg.sha512",
  4393. "system.globalization.extensions.nuspec"
  4394. ]
  4395. },
  4396. "System.IO/4.3.0": {
  4397. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4398. "type": "package",
  4399. "path": "system.io/4.3.0",
  4400. "files": [
  4401. ".nupkg.metadata",
  4402. ".signature.p7s",
  4403. "ThirdPartyNotices.txt",
  4404. "dotnet_library_license.txt",
  4405. "lib/MonoAndroid10/_._",
  4406. "lib/MonoTouch10/_._",
  4407. "lib/net45/_._",
  4408. "lib/net462/System.IO.dll",
  4409. "lib/portable-net45+win8+wp8+wpa81/_._",
  4410. "lib/win8/_._",
  4411. "lib/wp80/_._",
  4412. "lib/wpa81/_._",
  4413. "lib/xamarinios10/_._",
  4414. "lib/xamarinmac20/_._",
  4415. "lib/xamarintvos10/_._",
  4416. "lib/xamarinwatchos10/_._",
  4417. "ref/MonoAndroid10/_._",
  4418. "ref/MonoTouch10/_._",
  4419. "ref/net45/_._",
  4420. "ref/net462/System.IO.dll",
  4421. "ref/netcore50/System.IO.dll",
  4422. "ref/netcore50/System.IO.xml",
  4423. "ref/netcore50/de/System.IO.xml",
  4424. "ref/netcore50/es/System.IO.xml",
  4425. "ref/netcore50/fr/System.IO.xml",
  4426. "ref/netcore50/it/System.IO.xml",
  4427. "ref/netcore50/ja/System.IO.xml",
  4428. "ref/netcore50/ko/System.IO.xml",
  4429. "ref/netcore50/ru/System.IO.xml",
  4430. "ref/netcore50/zh-hans/System.IO.xml",
  4431. "ref/netcore50/zh-hant/System.IO.xml",
  4432. "ref/netstandard1.0/System.IO.dll",
  4433. "ref/netstandard1.0/System.IO.xml",
  4434. "ref/netstandard1.0/de/System.IO.xml",
  4435. "ref/netstandard1.0/es/System.IO.xml",
  4436. "ref/netstandard1.0/fr/System.IO.xml",
  4437. "ref/netstandard1.0/it/System.IO.xml",
  4438. "ref/netstandard1.0/ja/System.IO.xml",
  4439. "ref/netstandard1.0/ko/System.IO.xml",
  4440. "ref/netstandard1.0/ru/System.IO.xml",
  4441. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4442. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4443. "ref/netstandard1.3/System.IO.dll",
  4444. "ref/netstandard1.3/System.IO.xml",
  4445. "ref/netstandard1.3/de/System.IO.xml",
  4446. "ref/netstandard1.3/es/System.IO.xml",
  4447. "ref/netstandard1.3/fr/System.IO.xml",
  4448. "ref/netstandard1.3/it/System.IO.xml",
  4449. "ref/netstandard1.3/ja/System.IO.xml",
  4450. "ref/netstandard1.3/ko/System.IO.xml",
  4451. "ref/netstandard1.3/ru/System.IO.xml",
  4452. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4453. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4454. "ref/netstandard1.5/System.IO.dll",
  4455. "ref/netstandard1.5/System.IO.xml",
  4456. "ref/netstandard1.5/de/System.IO.xml",
  4457. "ref/netstandard1.5/es/System.IO.xml",
  4458. "ref/netstandard1.5/fr/System.IO.xml",
  4459. "ref/netstandard1.5/it/System.IO.xml",
  4460. "ref/netstandard1.5/ja/System.IO.xml",
  4461. "ref/netstandard1.5/ko/System.IO.xml",
  4462. "ref/netstandard1.5/ru/System.IO.xml",
  4463. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4464. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4465. "ref/portable-net45+win8+wp8+wpa81/_._",
  4466. "ref/win8/_._",
  4467. "ref/wp80/_._",
  4468. "ref/wpa81/_._",
  4469. "ref/xamarinios10/_._",
  4470. "ref/xamarinmac20/_._",
  4471. "ref/xamarintvos10/_._",
  4472. "ref/xamarinwatchos10/_._",
  4473. "system.io.4.3.0.nupkg.sha512",
  4474. "system.io.nuspec"
  4475. ]
  4476. },
  4477. "System.IO.Compression/4.1.0": {
  4478. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  4479. "type": "package",
  4480. "path": "system.io.compression/4.1.0",
  4481. "files": [
  4482. ".nupkg.metadata",
  4483. "ThirdPartyNotices.txt",
  4484. "dotnet_library_license.txt",
  4485. "lib/MonoAndroid10/_._",
  4486. "lib/MonoTouch10/_._",
  4487. "lib/net45/_._",
  4488. "lib/net46/System.IO.Compression.dll",
  4489. "lib/portable-net45+win8+wpa81/_._",
  4490. "lib/win8/_._",
  4491. "lib/wpa81/_._",
  4492. "lib/xamarinios10/_._",
  4493. "lib/xamarinmac20/_._",
  4494. "lib/xamarintvos10/_._",
  4495. "lib/xamarinwatchos10/_._",
  4496. "ref/MonoAndroid10/_._",
  4497. "ref/MonoTouch10/_._",
  4498. "ref/net45/_._",
  4499. "ref/net46/System.IO.Compression.dll",
  4500. "ref/netcore50/System.IO.Compression.dll",
  4501. "ref/netcore50/System.IO.Compression.xml",
  4502. "ref/netcore50/de/System.IO.Compression.xml",
  4503. "ref/netcore50/es/System.IO.Compression.xml",
  4504. "ref/netcore50/fr/System.IO.Compression.xml",
  4505. "ref/netcore50/it/System.IO.Compression.xml",
  4506. "ref/netcore50/ja/System.IO.Compression.xml",
  4507. "ref/netcore50/ko/System.IO.Compression.xml",
  4508. "ref/netcore50/ru/System.IO.Compression.xml",
  4509. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  4510. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  4511. "ref/netstandard1.1/System.IO.Compression.dll",
  4512. "ref/netstandard1.1/System.IO.Compression.xml",
  4513. "ref/netstandard1.1/de/System.IO.Compression.xml",
  4514. "ref/netstandard1.1/es/System.IO.Compression.xml",
  4515. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  4516. "ref/netstandard1.1/it/System.IO.Compression.xml",
  4517. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  4518. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  4519. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  4520. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  4521. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  4522. "ref/netstandard1.3/System.IO.Compression.dll",
  4523. "ref/netstandard1.3/System.IO.Compression.xml",
  4524. "ref/netstandard1.3/de/System.IO.Compression.xml",
  4525. "ref/netstandard1.3/es/System.IO.Compression.xml",
  4526. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  4527. "ref/netstandard1.3/it/System.IO.Compression.xml",
  4528. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  4529. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  4530. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  4531. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  4532. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  4533. "ref/portable-net45+win8+wpa81/_._",
  4534. "ref/win8/_._",
  4535. "ref/wpa81/_._",
  4536. "ref/xamarinios10/_._",
  4537. "ref/xamarinmac20/_._",
  4538. "ref/xamarintvos10/_._",
  4539. "ref/xamarinwatchos10/_._",
  4540. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  4541. "runtimes/win/lib/net46/System.IO.Compression.dll",
  4542. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  4543. "system.io.compression.4.1.0.nupkg.sha512",
  4544. "system.io.compression.nuspec"
  4545. ]
  4546. },
  4547. "System.IO.Compression.ZipFile/4.0.1": {
  4548. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  4549. "type": "package",
  4550. "path": "system.io.compression.zipfile/4.0.1",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. "ThirdPartyNotices.txt",
  4554. "dotnet_library_license.txt",
  4555. "lib/MonoAndroid10/_._",
  4556. "lib/MonoTouch10/_._",
  4557. "lib/net46/System.IO.Compression.ZipFile.dll",
  4558. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4559. "lib/xamarinios10/_._",
  4560. "lib/xamarinmac20/_._",
  4561. "lib/xamarintvos10/_._",
  4562. "lib/xamarinwatchos10/_._",
  4563. "ref/MonoAndroid10/_._",
  4564. "ref/MonoTouch10/_._",
  4565. "ref/net46/System.IO.Compression.ZipFile.dll",
  4566. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4567. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  4568. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  4569. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  4570. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  4571. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  4572. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  4573. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  4574. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  4575. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  4576. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  4577. "ref/xamarinios10/_._",
  4578. "ref/xamarinmac20/_._",
  4579. "ref/xamarintvos10/_._",
  4580. "ref/xamarinwatchos10/_._",
  4581. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  4582. "system.io.compression.zipfile.nuspec"
  4583. ]
  4584. },
  4585. "System.IO.FileSystem/4.0.1": {
  4586. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  4587. "type": "package",
  4588. "path": "system.io.filesystem/4.0.1",
  4589. "files": [
  4590. ".nupkg.metadata",
  4591. "ThirdPartyNotices.txt",
  4592. "dotnet_library_license.txt",
  4593. "lib/MonoAndroid10/_._",
  4594. "lib/MonoTouch10/_._",
  4595. "lib/net46/System.IO.FileSystem.dll",
  4596. "lib/xamarinios10/_._",
  4597. "lib/xamarinmac20/_._",
  4598. "lib/xamarintvos10/_._",
  4599. "lib/xamarinwatchos10/_._",
  4600. "ref/MonoAndroid10/_._",
  4601. "ref/MonoTouch10/_._",
  4602. "ref/net46/System.IO.FileSystem.dll",
  4603. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4604. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4605. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4606. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4607. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4608. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4609. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4610. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4611. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4612. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4613. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4614. "ref/xamarinios10/_._",
  4615. "ref/xamarinmac20/_._",
  4616. "ref/xamarintvos10/_._",
  4617. "ref/xamarinwatchos10/_._",
  4618. "system.io.filesystem.4.0.1.nupkg.sha512",
  4619. "system.io.filesystem.nuspec"
  4620. ]
  4621. },
  4622. "System.IO.FileSystem.Primitives/4.0.1": {
  4623. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  4624. "type": "package",
  4625. "path": "system.io.filesystem.primitives/4.0.1",
  4626. "files": [
  4627. ".nupkg.metadata",
  4628. "ThirdPartyNotices.txt",
  4629. "dotnet_library_license.txt",
  4630. "lib/MonoAndroid10/_._",
  4631. "lib/MonoTouch10/_._",
  4632. "lib/net46/System.IO.FileSystem.Primitives.dll",
  4633. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4634. "lib/xamarinios10/_._",
  4635. "lib/xamarinmac20/_._",
  4636. "lib/xamarintvos10/_._",
  4637. "lib/xamarinwatchos10/_._",
  4638. "ref/MonoAndroid10/_._",
  4639. "ref/MonoTouch10/_._",
  4640. "ref/net46/System.IO.FileSystem.Primitives.dll",
  4641. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4642. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  4643. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  4644. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  4645. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  4646. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  4647. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  4648. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  4649. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  4650. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  4651. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  4652. "ref/xamarinios10/_._",
  4653. "ref/xamarinmac20/_._",
  4654. "ref/xamarintvos10/_._",
  4655. "ref/xamarinwatchos10/_._",
  4656. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  4657. "system.io.filesystem.primitives.nuspec"
  4658. ]
  4659. },
  4660. "System.Linq/4.1.0": {
  4661. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  4662. "type": "package",
  4663. "path": "system.linq/4.1.0",
  4664. "files": [
  4665. ".nupkg.metadata",
  4666. "ThirdPartyNotices.txt",
  4667. "dotnet_library_license.txt",
  4668. "lib/MonoAndroid10/_._",
  4669. "lib/MonoTouch10/_._",
  4670. "lib/net45/_._",
  4671. "lib/net463/System.Linq.dll",
  4672. "lib/netcore50/System.Linq.dll",
  4673. "lib/netstandard1.6/System.Linq.dll",
  4674. "lib/portable-net45+win8+wp8+wpa81/_._",
  4675. "lib/win8/_._",
  4676. "lib/wp80/_._",
  4677. "lib/wpa81/_._",
  4678. "lib/xamarinios10/_._",
  4679. "lib/xamarinmac20/_._",
  4680. "lib/xamarintvos10/_._",
  4681. "lib/xamarinwatchos10/_._",
  4682. "ref/MonoAndroid10/_._",
  4683. "ref/MonoTouch10/_._",
  4684. "ref/net45/_._",
  4685. "ref/net463/System.Linq.dll",
  4686. "ref/netcore50/System.Linq.dll",
  4687. "ref/netcore50/System.Linq.xml",
  4688. "ref/netcore50/de/System.Linq.xml",
  4689. "ref/netcore50/es/System.Linq.xml",
  4690. "ref/netcore50/fr/System.Linq.xml",
  4691. "ref/netcore50/it/System.Linq.xml",
  4692. "ref/netcore50/ja/System.Linq.xml",
  4693. "ref/netcore50/ko/System.Linq.xml",
  4694. "ref/netcore50/ru/System.Linq.xml",
  4695. "ref/netcore50/zh-hans/System.Linq.xml",
  4696. "ref/netcore50/zh-hant/System.Linq.xml",
  4697. "ref/netstandard1.0/System.Linq.dll",
  4698. "ref/netstandard1.0/System.Linq.xml",
  4699. "ref/netstandard1.0/de/System.Linq.xml",
  4700. "ref/netstandard1.0/es/System.Linq.xml",
  4701. "ref/netstandard1.0/fr/System.Linq.xml",
  4702. "ref/netstandard1.0/it/System.Linq.xml",
  4703. "ref/netstandard1.0/ja/System.Linq.xml",
  4704. "ref/netstandard1.0/ko/System.Linq.xml",
  4705. "ref/netstandard1.0/ru/System.Linq.xml",
  4706. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  4707. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  4708. "ref/netstandard1.6/System.Linq.dll",
  4709. "ref/netstandard1.6/System.Linq.xml",
  4710. "ref/netstandard1.6/de/System.Linq.xml",
  4711. "ref/netstandard1.6/es/System.Linq.xml",
  4712. "ref/netstandard1.6/fr/System.Linq.xml",
  4713. "ref/netstandard1.6/it/System.Linq.xml",
  4714. "ref/netstandard1.6/ja/System.Linq.xml",
  4715. "ref/netstandard1.6/ko/System.Linq.xml",
  4716. "ref/netstandard1.6/ru/System.Linq.xml",
  4717. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  4718. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  4719. "ref/portable-net45+win8+wp8+wpa81/_._",
  4720. "ref/win8/_._",
  4721. "ref/wp80/_._",
  4722. "ref/wpa81/_._",
  4723. "ref/xamarinios10/_._",
  4724. "ref/xamarinmac20/_._",
  4725. "ref/xamarintvos10/_._",
  4726. "ref/xamarinwatchos10/_._",
  4727. "system.linq.4.1.0.nupkg.sha512",
  4728. "system.linq.nuspec"
  4729. ]
  4730. },
  4731. "System.Linq.Expressions/4.1.0": {
  4732. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  4733. "type": "package",
  4734. "path": "system.linq.expressions/4.1.0",
  4735. "files": [
  4736. ".nupkg.metadata",
  4737. "ThirdPartyNotices.txt",
  4738. "dotnet_library_license.txt",
  4739. "lib/MonoAndroid10/_._",
  4740. "lib/MonoTouch10/_._",
  4741. "lib/net45/_._",
  4742. "lib/net463/System.Linq.Expressions.dll",
  4743. "lib/netcore50/System.Linq.Expressions.dll",
  4744. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4745. "lib/portable-net45+win8+wp8+wpa81/_._",
  4746. "lib/win8/_._",
  4747. "lib/wp80/_._",
  4748. "lib/wpa81/_._",
  4749. "lib/xamarinios10/_._",
  4750. "lib/xamarinmac20/_._",
  4751. "lib/xamarintvos10/_._",
  4752. "lib/xamarinwatchos10/_._",
  4753. "ref/MonoAndroid10/_._",
  4754. "ref/MonoTouch10/_._",
  4755. "ref/net45/_._",
  4756. "ref/net463/System.Linq.Expressions.dll",
  4757. "ref/netcore50/System.Linq.Expressions.dll",
  4758. "ref/netcore50/System.Linq.Expressions.xml",
  4759. "ref/netcore50/de/System.Linq.Expressions.xml",
  4760. "ref/netcore50/es/System.Linq.Expressions.xml",
  4761. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4762. "ref/netcore50/it/System.Linq.Expressions.xml",
  4763. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4764. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4765. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4766. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4767. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4768. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4769. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4770. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4771. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4772. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4773. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4774. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4775. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4776. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4777. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4778. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4779. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4780. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4781. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4782. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4783. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4784. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4785. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4786. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4787. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4788. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4789. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4790. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4791. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4792. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4793. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4794. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4795. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4796. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4797. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4798. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4799. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4800. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4801. "ref/portable-net45+win8+wp8+wpa81/_._",
  4802. "ref/win8/_._",
  4803. "ref/wp80/_._",
  4804. "ref/wpa81/_._",
  4805. "ref/xamarinios10/_._",
  4806. "ref/xamarinmac20/_._",
  4807. "ref/xamarintvos10/_._",
  4808. "ref/xamarinwatchos10/_._",
  4809. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4810. "system.linq.expressions.4.1.0.nupkg.sha512",
  4811. "system.linq.expressions.nuspec"
  4812. ]
  4813. },
  4814. "System.Memory/4.5.3": {
  4815. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  4816. "type": "package",
  4817. "path": "system.memory/4.5.3",
  4818. "files": [
  4819. ".nupkg.metadata",
  4820. ".signature.p7s",
  4821. "LICENSE.TXT",
  4822. "THIRD-PARTY-NOTICES.TXT",
  4823. "lib/netcoreapp2.1/_._",
  4824. "lib/netstandard1.1/System.Memory.dll",
  4825. "lib/netstandard1.1/System.Memory.xml",
  4826. "lib/netstandard2.0/System.Memory.dll",
  4827. "lib/netstandard2.0/System.Memory.xml",
  4828. "ref/netcoreapp2.1/_._",
  4829. "system.memory.4.5.3.nupkg.sha512",
  4830. "system.memory.nuspec",
  4831. "useSharedDesignerContext.txt",
  4832. "version.txt"
  4833. ]
  4834. },
  4835. "System.Net.Http/4.1.0": {
  4836. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  4837. "type": "package",
  4838. "path": "system.net.http/4.1.0",
  4839. "files": [
  4840. ".nupkg.metadata",
  4841. "ThirdPartyNotices.txt",
  4842. "dotnet_library_license.txt",
  4843. "lib/Xamarinmac20/_._",
  4844. "lib/monoandroid10/_._",
  4845. "lib/monotouch10/_._",
  4846. "lib/net45/_._",
  4847. "lib/net46/System.Net.Http.dll",
  4848. "lib/portable-net45+win8+wpa81/_._",
  4849. "lib/win8/_._",
  4850. "lib/wpa81/_._",
  4851. "lib/xamarinios10/_._",
  4852. "lib/xamarintvos10/_._",
  4853. "lib/xamarinwatchos10/_._",
  4854. "ref/Xamarinmac20/_._",
  4855. "ref/monoandroid10/_._",
  4856. "ref/monotouch10/_._",
  4857. "ref/net45/_._",
  4858. "ref/net46/System.Net.Http.dll",
  4859. "ref/net46/System.Net.Http.xml",
  4860. "ref/net46/de/System.Net.Http.xml",
  4861. "ref/net46/es/System.Net.Http.xml",
  4862. "ref/net46/fr/System.Net.Http.xml",
  4863. "ref/net46/it/System.Net.Http.xml",
  4864. "ref/net46/ja/System.Net.Http.xml",
  4865. "ref/net46/ko/System.Net.Http.xml",
  4866. "ref/net46/ru/System.Net.Http.xml",
  4867. "ref/net46/zh-hans/System.Net.Http.xml",
  4868. "ref/net46/zh-hant/System.Net.Http.xml",
  4869. "ref/netcore50/System.Net.Http.dll",
  4870. "ref/netcore50/System.Net.Http.xml",
  4871. "ref/netcore50/de/System.Net.Http.xml",
  4872. "ref/netcore50/es/System.Net.Http.xml",
  4873. "ref/netcore50/fr/System.Net.Http.xml",
  4874. "ref/netcore50/it/System.Net.Http.xml",
  4875. "ref/netcore50/ja/System.Net.Http.xml",
  4876. "ref/netcore50/ko/System.Net.Http.xml",
  4877. "ref/netcore50/ru/System.Net.Http.xml",
  4878. "ref/netcore50/zh-hans/System.Net.Http.xml",
  4879. "ref/netcore50/zh-hant/System.Net.Http.xml",
  4880. "ref/netstandard1.1/System.Net.Http.dll",
  4881. "ref/netstandard1.1/System.Net.Http.xml",
  4882. "ref/netstandard1.1/de/System.Net.Http.xml",
  4883. "ref/netstandard1.1/es/System.Net.Http.xml",
  4884. "ref/netstandard1.1/fr/System.Net.Http.xml",
  4885. "ref/netstandard1.1/it/System.Net.Http.xml",
  4886. "ref/netstandard1.1/ja/System.Net.Http.xml",
  4887. "ref/netstandard1.1/ko/System.Net.Http.xml",
  4888. "ref/netstandard1.1/ru/System.Net.Http.xml",
  4889. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  4890. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  4891. "ref/netstandard1.3/System.Net.Http.dll",
  4892. "ref/netstandard1.3/System.Net.Http.xml",
  4893. "ref/netstandard1.3/de/System.Net.Http.xml",
  4894. "ref/netstandard1.3/es/System.Net.Http.xml",
  4895. "ref/netstandard1.3/fr/System.Net.Http.xml",
  4896. "ref/netstandard1.3/it/System.Net.Http.xml",
  4897. "ref/netstandard1.3/ja/System.Net.Http.xml",
  4898. "ref/netstandard1.3/ko/System.Net.Http.xml",
  4899. "ref/netstandard1.3/ru/System.Net.Http.xml",
  4900. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  4901. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  4902. "ref/portable-net45+win8+wpa81/_._",
  4903. "ref/win8/_._",
  4904. "ref/wpa81/_._",
  4905. "ref/xamarinios10/_._",
  4906. "ref/xamarintvos10/_._",
  4907. "ref/xamarinwatchos10/_._",
  4908. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  4909. "runtimes/win/lib/net46/System.Net.Http.dll",
  4910. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  4911. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  4912. "system.net.http.4.1.0.nupkg.sha512",
  4913. "system.net.http.nuspec"
  4914. ]
  4915. },
  4916. "System.Net.NameResolution/4.0.0": {
  4917. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  4918. "type": "package",
  4919. "path": "system.net.nameresolution/4.0.0",
  4920. "files": [
  4921. ".nupkg.metadata",
  4922. ".signature.p7s",
  4923. "ThirdPartyNotices.txt",
  4924. "dotnet_library_license.txt",
  4925. "lib/MonoAndroid10/_._",
  4926. "lib/MonoTouch10/_._",
  4927. "lib/net46/System.Net.NameResolution.dll",
  4928. "lib/xamarinios10/_._",
  4929. "lib/xamarinmac20/_._",
  4930. "lib/xamarintvos10/_._",
  4931. "lib/xamarinwatchos10/_._",
  4932. "ref/MonoAndroid10/_._",
  4933. "ref/MonoTouch10/_._",
  4934. "ref/net46/System.Net.NameResolution.dll",
  4935. "ref/netstandard1.3/System.Net.NameResolution.dll",
  4936. "ref/netstandard1.3/System.Net.NameResolution.xml",
  4937. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  4938. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  4939. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  4940. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  4941. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  4942. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  4943. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  4944. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  4945. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  4946. "ref/xamarinios10/_._",
  4947. "ref/xamarinmac20/_._",
  4948. "ref/xamarintvos10/_._",
  4949. "ref/xamarinwatchos10/_._",
  4950. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  4951. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  4952. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  4953. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  4954. "system.net.nameresolution.4.0.0.nupkg.sha512",
  4955. "system.net.nameresolution.nuspec"
  4956. ]
  4957. },
  4958. "System.Net.Primitives/4.0.11": {
  4959. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  4960. "type": "package",
  4961. "path": "system.net.primitives/4.0.11",
  4962. "files": [
  4963. ".nupkg.metadata",
  4964. "ThirdPartyNotices.txt",
  4965. "dotnet_library_license.txt",
  4966. "lib/MonoAndroid10/_._",
  4967. "lib/MonoTouch10/_._",
  4968. "lib/net45/_._",
  4969. "lib/portable-net45+win8+wp8+wpa81/_._",
  4970. "lib/win8/_._",
  4971. "lib/wp80/_._",
  4972. "lib/wpa81/_._",
  4973. "lib/xamarinios10/_._",
  4974. "lib/xamarinmac20/_._",
  4975. "lib/xamarintvos10/_._",
  4976. "lib/xamarinwatchos10/_._",
  4977. "ref/MonoAndroid10/_._",
  4978. "ref/MonoTouch10/_._",
  4979. "ref/net45/_._",
  4980. "ref/netcore50/System.Net.Primitives.dll",
  4981. "ref/netcore50/System.Net.Primitives.xml",
  4982. "ref/netcore50/de/System.Net.Primitives.xml",
  4983. "ref/netcore50/es/System.Net.Primitives.xml",
  4984. "ref/netcore50/fr/System.Net.Primitives.xml",
  4985. "ref/netcore50/it/System.Net.Primitives.xml",
  4986. "ref/netcore50/ja/System.Net.Primitives.xml",
  4987. "ref/netcore50/ko/System.Net.Primitives.xml",
  4988. "ref/netcore50/ru/System.Net.Primitives.xml",
  4989. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  4990. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  4991. "ref/netstandard1.0/System.Net.Primitives.dll",
  4992. "ref/netstandard1.0/System.Net.Primitives.xml",
  4993. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  4994. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  4995. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  4996. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  4997. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  4998. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  4999. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5000. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5001. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5002. "ref/netstandard1.1/System.Net.Primitives.dll",
  5003. "ref/netstandard1.1/System.Net.Primitives.xml",
  5004. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5005. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5006. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5007. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5008. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5009. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5010. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5011. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5012. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5013. "ref/netstandard1.3/System.Net.Primitives.dll",
  5014. "ref/netstandard1.3/System.Net.Primitives.xml",
  5015. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5016. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5017. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5018. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5019. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5020. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5021. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5022. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5023. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5024. "ref/portable-net45+win8+wp8+wpa81/_._",
  5025. "ref/win8/_._",
  5026. "ref/wp80/_._",
  5027. "ref/wpa81/_._",
  5028. "ref/xamarinios10/_._",
  5029. "ref/xamarinmac20/_._",
  5030. "ref/xamarintvos10/_._",
  5031. "ref/xamarinwatchos10/_._",
  5032. "system.net.primitives.4.0.11.nupkg.sha512",
  5033. "system.net.primitives.nuspec"
  5034. ]
  5035. },
  5036. "System.Net.Sockets/4.1.0": {
  5037. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  5038. "type": "package",
  5039. "path": "system.net.sockets/4.1.0",
  5040. "files": [
  5041. ".nupkg.metadata",
  5042. "ThirdPartyNotices.txt",
  5043. "dotnet_library_license.txt",
  5044. "lib/MonoAndroid10/_._",
  5045. "lib/MonoTouch10/_._",
  5046. "lib/net46/System.Net.Sockets.dll",
  5047. "lib/xamarinios10/_._",
  5048. "lib/xamarinmac20/_._",
  5049. "lib/xamarintvos10/_._",
  5050. "lib/xamarinwatchos10/_._",
  5051. "ref/MonoAndroid10/_._",
  5052. "ref/MonoTouch10/_._",
  5053. "ref/net46/System.Net.Sockets.dll",
  5054. "ref/netstandard1.3/System.Net.Sockets.dll",
  5055. "ref/netstandard1.3/System.Net.Sockets.xml",
  5056. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5057. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5058. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5059. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5060. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5061. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5062. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5063. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5064. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5065. "ref/xamarinios10/_._",
  5066. "ref/xamarinmac20/_._",
  5067. "ref/xamarintvos10/_._",
  5068. "ref/xamarinwatchos10/_._",
  5069. "system.net.sockets.4.1.0.nupkg.sha512",
  5070. "system.net.sockets.nuspec"
  5071. ]
  5072. },
  5073. "System.ObjectModel/4.0.12": {
  5074. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  5075. "type": "package",
  5076. "path": "system.objectmodel/4.0.12",
  5077. "files": [
  5078. ".nupkg.metadata",
  5079. "ThirdPartyNotices.txt",
  5080. "dotnet_library_license.txt",
  5081. "lib/MonoAndroid10/_._",
  5082. "lib/MonoTouch10/_._",
  5083. "lib/net45/_._",
  5084. "lib/netcore50/System.ObjectModel.dll",
  5085. "lib/netstandard1.3/System.ObjectModel.dll",
  5086. "lib/portable-net45+win8+wp8+wpa81/_._",
  5087. "lib/win8/_._",
  5088. "lib/wp80/_._",
  5089. "lib/wpa81/_._",
  5090. "lib/xamarinios10/_._",
  5091. "lib/xamarinmac20/_._",
  5092. "lib/xamarintvos10/_._",
  5093. "lib/xamarinwatchos10/_._",
  5094. "ref/MonoAndroid10/_._",
  5095. "ref/MonoTouch10/_._",
  5096. "ref/net45/_._",
  5097. "ref/netcore50/System.ObjectModel.dll",
  5098. "ref/netcore50/System.ObjectModel.xml",
  5099. "ref/netcore50/de/System.ObjectModel.xml",
  5100. "ref/netcore50/es/System.ObjectModel.xml",
  5101. "ref/netcore50/fr/System.ObjectModel.xml",
  5102. "ref/netcore50/it/System.ObjectModel.xml",
  5103. "ref/netcore50/ja/System.ObjectModel.xml",
  5104. "ref/netcore50/ko/System.ObjectModel.xml",
  5105. "ref/netcore50/ru/System.ObjectModel.xml",
  5106. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5107. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5108. "ref/netstandard1.0/System.ObjectModel.dll",
  5109. "ref/netstandard1.0/System.ObjectModel.xml",
  5110. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5111. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5112. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5113. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5114. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5115. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5116. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5117. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5118. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5119. "ref/netstandard1.3/System.ObjectModel.dll",
  5120. "ref/netstandard1.3/System.ObjectModel.xml",
  5121. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5122. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5123. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5124. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5125. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5126. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5127. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5128. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5129. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5130. "ref/portable-net45+win8+wp8+wpa81/_._",
  5131. "ref/win8/_._",
  5132. "ref/wp80/_._",
  5133. "ref/wpa81/_._",
  5134. "ref/xamarinios10/_._",
  5135. "ref/xamarinmac20/_._",
  5136. "ref/xamarintvos10/_._",
  5137. "ref/xamarinwatchos10/_._",
  5138. "system.objectmodel.4.0.12.nupkg.sha512",
  5139. "system.objectmodel.nuspec"
  5140. ]
  5141. },
  5142. "System.Reflection/4.3.0": {
  5143. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5144. "type": "package",
  5145. "path": "system.reflection/4.3.0",
  5146. "files": [
  5147. ".nupkg.metadata",
  5148. ".signature.p7s",
  5149. "ThirdPartyNotices.txt",
  5150. "dotnet_library_license.txt",
  5151. "lib/MonoAndroid10/_._",
  5152. "lib/MonoTouch10/_._",
  5153. "lib/net45/_._",
  5154. "lib/net462/System.Reflection.dll",
  5155. "lib/portable-net45+win8+wp8+wpa81/_._",
  5156. "lib/win8/_._",
  5157. "lib/wp80/_._",
  5158. "lib/wpa81/_._",
  5159. "lib/xamarinios10/_._",
  5160. "lib/xamarinmac20/_._",
  5161. "lib/xamarintvos10/_._",
  5162. "lib/xamarinwatchos10/_._",
  5163. "ref/MonoAndroid10/_._",
  5164. "ref/MonoTouch10/_._",
  5165. "ref/net45/_._",
  5166. "ref/net462/System.Reflection.dll",
  5167. "ref/netcore50/System.Reflection.dll",
  5168. "ref/netcore50/System.Reflection.xml",
  5169. "ref/netcore50/de/System.Reflection.xml",
  5170. "ref/netcore50/es/System.Reflection.xml",
  5171. "ref/netcore50/fr/System.Reflection.xml",
  5172. "ref/netcore50/it/System.Reflection.xml",
  5173. "ref/netcore50/ja/System.Reflection.xml",
  5174. "ref/netcore50/ko/System.Reflection.xml",
  5175. "ref/netcore50/ru/System.Reflection.xml",
  5176. "ref/netcore50/zh-hans/System.Reflection.xml",
  5177. "ref/netcore50/zh-hant/System.Reflection.xml",
  5178. "ref/netstandard1.0/System.Reflection.dll",
  5179. "ref/netstandard1.0/System.Reflection.xml",
  5180. "ref/netstandard1.0/de/System.Reflection.xml",
  5181. "ref/netstandard1.0/es/System.Reflection.xml",
  5182. "ref/netstandard1.0/fr/System.Reflection.xml",
  5183. "ref/netstandard1.0/it/System.Reflection.xml",
  5184. "ref/netstandard1.0/ja/System.Reflection.xml",
  5185. "ref/netstandard1.0/ko/System.Reflection.xml",
  5186. "ref/netstandard1.0/ru/System.Reflection.xml",
  5187. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5188. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5189. "ref/netstandard1.3/System.Reflection.dll",
  5190. "ref/netstandard1.3/System.Reflection.xml",
  5191. "ref/netstandard1.3/de/System.Reflection.xml",
  5192. "ref/netstandard1.3/es/System.Reflection.xml",
  5193. "ref/netstandard1.3/fr/System.Reflection.xml",
  5194. "ref/netstandard1.3/it/System.Reflection.xml",
  5195. "ref/netstandard1.3/ja/System.Reflection.xml",
  5196. "ref/netstandard1.3/ko/System.Reflection.xml",
  5197. "ref/netstandard1.3/ru/System.Reflection.xml",
  5198. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5199. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5200. "ref/netstandard1.5/System.Reflection.dll",
  5201. "ref/netstandard1.5/System.Reflection.xml",
  5202. "ref/netstandard1.5/de/System.Reflection.xml",
  5203. "ref/netstandard1.5/es/System.Reflection.xml",
  5204. "ref/netstandard1.5/fr/System.Reflection.xml",
  5205. "ref/netstandard1.5/it/System.Reflection.xml",
  5206. "ref/netstandard1.5/ja/System.Reflection.xml",
  5207. "ref/netstandard1.5/ko/System.Reflection.xml",
  5208. "ref/netstandard1.5/ru/System.Reflection.xml",
  5209. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5210. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5211. "ref/portable-net45+win8+wp8+wpa81/_._",
  5212. "ref/win8/_._",
  5213. "ref/wp80/_._",
  5214. "ref/wpa81/_._",
  5215. "ref/xamarinios10/_._",
  5216. "ref/xamarinmac20/_._",
  5217. "ref/xamarintvos10/_._",
  5218. "ref/xamarinwatchos10/_._",
  5219. "system.reflection.4.3.0.nupkg.sha512",
  5220. "system.reflection.nuspec"
  5221. ]
  5222. },
  5223. "System.Reflection.Emit/4.7.0": {
  5224. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  5225. "type": "package",
  5226. "path": "system.reflection.emit/4.7.0",
  5227. "files": [
  5228. ".nupkg.metadata",
  5229. ".signature.p7s",
  5230. "LICENSE.TXT",
  5231. "THIRD-PARTY-NOTICES.TXT",
  5232. "lib/MonoAndroid10/_._",
  5233. "lib/MonoTouch10/_._",
  5234. "lib/net45/_._",
  5235. "lib/netcore50/System.Reflection.Emit.dll",
  5236. "lib/netcoreapp2.0/_._",
  5237. "lib/netstandard1.1/System.Reflection.Emit.dll",
  5238. "lib/netstandard1.1/System.Reflection.Emit.xml",
  5239. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5240. "lib/netstandard2.0/System.Reflection.Emit.dll",
  5241. "lib/netstandard2.0/System.Reflection.Emit.xml",
  5242. "lib/netstandard2.1/_._",
  5243. "lib/xamarinios10/_._",
  5244. "lib/xamarinmac20/_._",
  5245. "lib/xamarintvos10/_._",
  5246. "lib/xamarinwatchos10/_._",
  5247. "ref/MonoAndroid10/_._",
  5248. "ref/MonoTouch10/_._",
  5249. "ref/net45/_._",
  5250. "ref/netcoreapp2.0/_._",
  5251. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5252. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5253. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5254. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5255. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5256. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5257. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5258. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5259. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5260. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5261. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5262. "ref/netstandard2.0/System.Reflection.Emit.dll",
  5263. "ref/netstandard2.0/System.Reflection.Emit.xml",
  5264. "ref/netstandard2.1/_._",
  5265. "ref/xamarinios10/_._",
  5266. "ref/xamarinmac20/_._",
  5267. "ref/xamarintvos10/_._",
  5268. "ref/xamarinwatchos10/_._",
  5269. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  5270. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  5271. "system.reflection.emit.4.7.0.nupkg.sha512",
  5272. "system.reflection.emit.nuspec",
  5273. "useSharedDesignerContext.txt",
  5274. "version.txt"
  5275. ]
  5276. },
  5277. "System.Reflection.Emit.ILGeneration/4.0.1": {
  5278. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  5279. "type": "package",
  5280. "path": "system.reflection.emit.ilgeneration/4.0.1",
  5281. "files": [
  5282. ".nupkg.metadata",
  5283. "ThirdPartyNotices.txt",
  5284. "dotnet_library_license.txt",
  5285. "lib/net45/_._",
  5286. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5287. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5288. "lib/portable-net45+wp8/_._",
  5289. "lib/wp80/_._",
  5290. "ref/net45/_._",
  5291. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5292. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5293. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5294. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5295. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5296. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5297. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5298. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5299. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5300. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5301. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5302. "ref/portable-net45+wp8/_._",
  5303. "ref/wp80/_._",
  5304. "runtimes/aot/lib/netcore50/_._",
  5305. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  5306. "system.reflection.emit.ilgeneration.nuspec"
  5307. ]
  5308. },
  5309. "System.Reflection.Emit.Lightweight/4.0.1": {
  5310. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  5311. "type": "package",
  5312. "path": "system.reflection.emit.lightweight/4.0.1",
  5313. "files": [
  5314. ".nupkg.metadata",
  5315. "ThirdPartyNotices.txt",
  5316. "dotnet_library_license.txt",
  5317. "lib/net45/_._",
  5318. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5319. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5320. "lib/portable-net45+wp8/_._",
  5321. "lib/wp80/_._",
  5322. "ref/net45/_._",
  5323. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5324. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5325. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5326. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5327. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5328. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5329. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5330. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5331. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5332. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5333. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5334. "ref/portable-net45+wp8/_._",
  5335. "ref/wp80/_._",
  5336. "runtimes/aot/lib/netcore50/_._",
  5337. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  5338. "system.reflection.emit.lightweight.nuspec"
  5339. ]
  5340. },
  5341. "System.Reflection.Extensions/4.0.1": {
  5342. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  5343. "type": "package",
  5344. "path": "system.reflection.extensions/4.0.1",
  5345. "files": [
  5346. ".nupkg.metadata",
  5347. "ThirdPartyNotices.txt",
  5348. "dotnet_library_license.txt",
  5349. "lib/MonoAndroid10/_._",
  5350. "lib/MonoTouch10/_._",
  5351. "lib/net45/_._",
  5352. "lib/portable-net45+win8+wp8+wpa81/_._",
  5353. "lib/win8/_._",
  5354. "lib/wp80/_._",
  5355. "lib/wpa81/_._",
  5356. "lib/xamarinios10/_._",
  5357. "lib/xamarinmac20/_._",
  5358. "lib/xamarintvos10/_._",
  5359. "lib/xamarinwatchos10/_._",
  5360. "ref/MonoAndroid10/_._",
  5361. "ref/MonoTouch10/_._",
  5362. "ref/net45/_._",
  5363. "ref/netcore50/System.Reflection.Extensions.dll",
  5364. "ref/netcore50/System.Reflection.Extensions.xml",
  5365. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5366. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5367. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5368. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5369. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5370. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5371. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5372. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5373. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5374. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5375. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5376. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5377. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5378. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5379. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5380. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5381. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5382. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5383. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5384. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5385. "ref/portable-net45+win8+wp8+wpa81/_._",
  5386. "ref/win8/_._",
  5387. "ref/wp80/_._",
  5388. "ref/wpa81/_._",
  5389. "ref/xamarinios10/_._",
  5390. "ref/xamarinmac20/_._",
  5391. "ref/xamarintvos10/_._",
  5392. "ref/xamarinwatchos10/_._",
  5393. "system.reflection.extensions.4.0.1.nupkg.sha512",
  5394. "system.reflection.extensions.nuspec"
  5395. ]
  5396. },
  5397. "System.Reflection.Primitives/4.3.0": {
  5398. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5399. "type": "package",
  5400. "path": "system.reflection.primitives/4.3.0",
  5401. "files": [
  5402. ".nupkg.metadata",
  5403. ".signature.p7s",
  5404. "ThirdPartyNotices.txt",
  5405. "dotnet_library_license.txt",
  5406. "lib/MonoAndroid10/_._",
  5407. "lib/MonoTouch10/_._",
  5408. "lib/net45/_._",
  5409. "lib/portable-net45+win8+wp8+wpa81/_._",
  5410. "lib/win8/_._",
  5411. "lib/wp80/_._",
  5412. "lib/wpa81/_._",
  5413. "lib/xamarinios10/_._",
  5414. "lib/xamarinmac20/_._",
  5415. "lib/xamarintvos10/_._",
  5416. "lib/xamarinwatchos10/_._",
  5417. "ref/MonoAndroid10/_._",
  5418. "ref/MonoTouch10/_._",
  5419. "ref/net45/_._",
  5420. "ref/netcore50/System.Reflection.Primitives.dll",
  5421. "ref/netcore50/System.Reflection.Primitives.xml",
  5422. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5423. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5424. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5425. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5426. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5427. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5428. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5429. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5430. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5431. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5432. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5433. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5434. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5435. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5436. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5437. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5438. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5439. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5440. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5441. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5442. "ref/portable-net45+win8+wp8+wpa81/_._",
  5443. "ref/win8/_._",
  5444. "ref/wp80/_._",
  5445. "ref/wpa81/_._",
  5446. "ref/xamarinios10/_._",
  5447. "ref/xamarinmac20/_._",
  5448. "ref/xamarintvos10/_._",
  5449. "ref/xamarinwatchos10/_._",
  5450. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5451. "system.reflection.primitives.nuspec"
  5452. ]
  5453. },
  5454. "System.Reflection.TypeExtensions/4.1.0": {
  5455. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  5456. "type": "package",
  5457. "path": "system.reflection.typeextensions/4.1.0",
  5458. "files": [
  5459. ".nupkg.metadata",
  5460. "ThirdPartyNotices.txt",
  5461. "dotnet_library_license.txt",
  5462. "lib/MonoAndroid10/_._",
  5463. "lib/MonoTouch10/_._",
  5464. "lib/net46/System.Reflection.TypeExtensions.dll",
  5465. "lib/net462/System.Reflection.TypeExtensions.dll",
  5466. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5467. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5468. "lib/xamarinios10/_._",
  5469. "lib/xamarinmac20/_._",
  5470. "lib/xamarintvos10/_._",
  5471. "lib/xamarinwatchos10/_._",
  5472. "ref/MonoAndroid10/_._",
  5473. "ref/MonoTouch10/_._",
  5474. "ref/net46/System.Reflection.TypeExtensions.dll",
  5475. "ref/net462/System.Reflection.TypeExtensions.dll",
  5476. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5477. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5478. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5479. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5480. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5481. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5482. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5483. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5484. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5485. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5486. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5487. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5488. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5489. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5490. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5491. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5492. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5493. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5494. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5495. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5496. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5497. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5498. "ref/xamarinios10/_._",
  5499. "ref/xamarinmac20/_._",
  5500. "ref/xamarintvos10/_._",
  5501. "ref/xamarinwatchos10/_._",
  5502. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5503. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  5504. "system.reflection.typeextensions.nuspec"
  5505. ]
  5506. },
  5507. "System.Resources.ResourceManager/4.0.1": {
  5508. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  5509. "type": "package",
  5510. "path": "system.resources.resourcemanager/4.0.1",
  5511. "files": [
  5512. ".nupkg.metadata",
  5513. "ThirdPartyNotices.txt",
  5514. "dotnet_library_license.txt",
  5515. "lib/MonoAndroid10/_._",
  5516. "lib/MonoTouch10/_._",
  5517. "lib/net45/_._",
  5518. "lib/portable-net45+win8+wp8+wpa81/_._",
  5519. "lib/win8/_._",
  5520. "lib/wp80/_._",
  5521. "lib/wpa81/_._",
  5522. "lib/xamarinios10/_._",
  5523. "lib/xamarinmac20/_._",
  5524. "lib/xamarintvos10/_._",
  5525. "lib/xamarinwatchos10/_._",
  5526. "ref/MonoAndroid10/_._",
  5527. "ref/MonoTouch10/_._",
  5528. "ref/net45/_._",
  5529. "ref/netcore50/System.Resources.ResourceManager.dll",
  5530. "ref/netcore50/System.Resources.ResourceManager.xml",
  5531. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5532. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5533. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5534. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5535. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5536. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5537. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5538. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5539. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5540. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5541. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5542. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5543. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5544. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5545. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5546. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5547. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5548. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5549. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5550. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5551. "ref/portable-net45+win8+wp8+wpa81/_._",
  5552. "ref/win8/_._",
  5553. "ref/wp80/_._",
  5554. "ref/wpa81/_._",
  5555. "ref/xamarinios10/_._",
  5556. "ref/xamarinmac20/_._",
  5557. "ref/xamarintvos10/_._",
  5558. "ref/xamarinwatchos10/_._",
  5559. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  5560. "system.resources.resourcemanager.nuspec"
  5561. ]
  5562. },
  5563. "System.Runtime/4.3.0": {
  5564. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5565. "type": "package",
  5566. "path": "system.runtime/4.3.0",
  5567. "files": [
  5568. ".nupkg.metadata",
  5569. ".signature.p7s",
  5570. "ThirdPartyNotices.txt",
  5571. "dotnet_library_license.txt",
  5572. "lib/MonoAndroid10/_._",
  5573. "lib/MonoTouch10/_._",
  5574. "lib/net45/_._",
  5575. "lib/net462/System.Runtime.dll",
  5576. "lib/portable-net45+win8+wp80+wpa81/_._",
  5577. "lib/win8/_._",
  5578. "lib/wp80/_._",
  5579. "lib/wpa81/_._",
  5580. "lib/xamarinios10/_._",
  5581. "lib/xamarinmac20/_._",
  5582. "lib/xamarintvos10/_._",
  5583. "lib/xamarinwatchos10/_._",
  5584. "ref/MonoAndroid10/_._",
  5585. "ref/MonoTouch10/_._",
  5586. "ref/net45/_._",
  5587. "ref/net462/System.Runtime.dll",
  5588. "ref/netcore50/System.Runtime.dll",
  5589. "ref/netcore50/System.Runtime.xml",
  5590. "ref/netcore50/de/System.Runtime.xml",
  5591. "ref/netcore50/es/System.Runtime.xml",
  5592. "ref/netcore50/fr/System.Runtime.xml",
  5593. "ref/netcore50/it/System.Runtime.xml",
  5594. "ref/netcore50/ja/System.Runtime.xml",
  5595. "ref/netcore50/ko/System.Runtime.xml",
  5596. "ref/netcore50/ru/System.Runtime.xml",
  5597. "ref/netcore50/zh-hans/System.Runtime.xml",
  5598. "ref/netcore50/zh-hant/System.Runtime.xml",
  5599. "ref/netstandard1.0/System.Runtime.dll",
  5600. "ref/netstandard1.0/System.Runtime.xml",
  5601. "ref/netstandard1.0/de/System.Runtime.xml",
  5602. "ref/netstandard1.0/es/System.Runtime.xml",
  5603. "ref/netstandard1.0/fr/System.Runtime.xml",
  5604. "ref/netstandard1.0/it/System.Runtime.xml",
  5605. "ref/netstandard1.0/ja/System.Runtime.xml",
  5606. "ref/netstandard1.0/ko/System.Runtime.xml",
  5607. "ref/netstandard1.0/ru/System.Runtime.xml",
  5608. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5609. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5610. "ref/netstandard1.2/System.Runtime.dll",
  5611. "ref/netstandard1.2/System.Runtime.xml",
  5612. "ref/netstandard1.2/de/System.Runtime.xml",
  5613. "ref/netstandard1.2/es/System.Runtime.xml",
  5614. "ref/netstandard1.2/fr/System.Runtime.xml",
  5615. "ref/netstandard1.2/it/System.Runtime.xml",
  5616. "ref/netstandard1.2/ja/System.Runtime.xml",
  5617. "ref/netstandard1.2/ko/System.Runtime.xml",
  5618. "ref/netstandard1.2/ru/System.Runtime.xml",
  5619. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  5620. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  5621. "ref/netstandard1.3/System.Runtime.dll",
  5622. "ref/netstandard1.3/System.Runtime.xml",
  5623. "ref/netstandard1.3/de/System.Runtime.xml",
  5624. "ref/netstandard1.3/es/System.Runtime.xml",
  5625. "ref/netstandard1.3/fr/System.Runtime.xml",
  5626. "ref/netstandard1.3/it/System.Runtime.xml",
  5627. "ref/netstandard1.3/ja/System.Runtime.xml",
  5628. "ref/netstandard1.3/ko/System.Runtime.xml",
  5629. "ref/netstandard1.3/ru/System.Runtime.xml",
  5630. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  5631. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  5632. "ref/netstandard1.5/System.Runtime.dll",
  5633. "ref/netstandard1.5/System.Runtime.xml",
  5634. "ref/netstandard1.5/de/System.Runtime.xml",
  5635. "ref/netstandard1.5/es/System.Runtime.xml",
  5636. "ref/netstandard1.5/fr/System.Runtime.xml",
  5637. "ref/netstandard1.5/it/System.Runtime.xml",
  5638. "ref/netstandard1.5/ja/System.Runtime.xml",
  5639. "ref/netstandard1.5/ko/System.Runtime.xml",
  5640. "ref/netstandard1.5/ru/System.Runtime.xml",
  5641. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  5642. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  5643. "ref/portable-net45+win8+wp80+wpa81/_._",
  5644. "ref/win8/_._",
  5645. "ref/wp80/_._",
  5646. "ref/wpa81/_._",
  5647. "ref/xamarinios10/_._",
  5648. "ref/xamarinmac20/_._",
  5649. "ref/xamarintvos10/_._",
  5650. "ref/xamarinwatchos10/_._",
  5651. "system.runtime.4.3.0.nupkg.sha512",
  5652. "system.runtime.nuspec"
  5653. ]
  5654. },
  5655. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5656. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  5657. "type": "package",
  5658. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  5659. "files": [
  5660. ".nupkg.metadata",
  5661. ".signature.p7s",
  5662. "Icon.png",
  5663. "LICENSE.TXT",
  5664. "THIRD-PARTY-NOTICES.TXT",
  5665. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  5666. "buildTransitive/netcoreapp3.1/_._",
  5667. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5668. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5669. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  5670. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  5671. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  5672. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  5673. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5674. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5675. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  5676. "system.runtime.compilerservices.unsafe.nuspec",
  5677. "useSharedDesignerContext.txt"
  5678. ]
  5679. },
  5680. "System.Runtime.Extensions/4.1.0": {
  5681. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  5682. "type": "package",
  5683. "path": "system.runtime.extensions/4.1.0",
  5684. "files": [
  5685. ".nupkg.metadata",
  5686. "ThirdPartyNotices.txt",
  5687. "dotnet_library_license.txt",
  5688. "lib/MonoAndroid10/_._",
  5689. "lib/MonoTouch10/_._",
  5690. "lib/net45/_._",
  5691. "lib/net462/System.Runtime.Extensions.dll",
  5692. "lib/portable-net45+win8+wp8+wpa81/_._",
  5693. "lib/win8/_._",
  5694. "lib/wp80/_._",
  5695. "lib/wpa81/_._",
  5696. "lib/xamarinios10/_._",
  5697. "lib/xamarinmac20/_._",
  5698. "lib/xamarintvos10/_._",
  5699. "lib/xamarinwatchos10/_._",
  5700. "ref/MonoAndroid10/_._",
  5701. "ref/MonoTouch10/_._",
  5702. "ref/net45/_._",
  5703. "ref/net462/System.Runtime.Extensions.dll",
  5704. "ref/netcore50/System.Runtime.Extensions.dll",
  5705. "ref/netcore50/System.Runtime.Extensions.xml",
  5706. "ref/netcore50/de/System.Runtime.Extensions.xml",
  5707. "ref/netcore50/es/System.Runtime.Extensions.xml",
  5708. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  5709. "ref/netcore50/it/System.Runtime.Extensions.xml",
  5710. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  5711. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  5712. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  5713. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  5714. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  5715. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  5716. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  5717. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  5718. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  5719. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  5720. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  5721. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  5722. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  5723. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  5724. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  5725. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  5726. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  5727. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  5728. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  5729. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  5730. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  5731. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  5732. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  5733. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  5734. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  5735. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  5736. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  5737. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  5738. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  5739. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  5740. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  5741. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  5742. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  5743. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  5744. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  5745. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  5746. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  5747. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  5748. "ref/portable-net45+win8+wp8+wpa81/_._",
  5749. "ref/win8/_._",
  5750. "ref/wp80/_._",
  5751. "ref/wpa81/_._",
  5752. "ref/xamarinios10/_._",
  5753. "ref/xamarinmac20/_._",
  5754. "ref/xamarintvos10/_._",
  5755. "ref/xamarinwatchos10/_._",
  5756. "system.runtime.extensions.4.1.0.nupkg.sha512",
  5757. "system.runtime.extensions.nuspec"
  5758. ]
  5759. },
  5760. "System.Runtime.Handles/4.0.1": {
  5761. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  5762. "type": "package",
  5763. "path": "system.runtime.handles/4.0.1",
  5764. "files": [
  5765. ".nupkg.metadata",
  5766. "ThirdPartyNotices.txt",
  5767. "dotnet_library_license.txt",
  5768. "lib/MonoAndroid10/_._",
  5769. "lib/MonoTouch10/_._",
  5770. "lib/net46/_._",
  5771. "lib/xamarinios10/_._",
  5772. "lib/xamarinmac20/_._",
  5773. "lib/xamarintvos10/_._",
  5774. "lib/xamarinwatchos10/_._",
  5775. "ref/MonoAndroid10/_._",
  5776. "ref/MonoTouch10/_._",
  5777. "ref/net46/_._",
  5778. "ref/netstandard1.3/System.Runtime.Handles.dll",
  5779. "ref/netstandard1.3/System.Runtime.Handles.xml",
  5780. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  5781. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  5782. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  5783. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  5784. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  5785. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  5786. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  5787. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  5788. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  5789. "ref/xamarinios10/_._",
  5790. "ref/xamarinmac20/_._",
  5791. "ref/xamarintvos10/_._",
  5792. "ref/xamarinwatchos10/_._",
  5793. "system.runtime.handles.4.0.1.nupkg.sha512",
  5794. "system.runtime.handles.nuspec"
  5795. ]
  5796. },
  5797. "System.Runtime.InteropServices/4.1.0": {
  5798. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  5799. "type": "package",
  5800. "path": "system.runtime.interopservices/4.1.0",
  5801. "files": [
  5802. ".nupkg.metadata",
  5803. "ThirdPartyNotices.txt",
  5804. "dotnet_library_license.txt",
  5805. "lib/MonoAndroid10/_._",
  5806. "lib/MonoTouch10/_._",
  5807. "lib/net45/_._",
  5808. "lib/net462/System.Runtime.InteropServices.dll",
  5809. "lib/portable-net45+win8+wpa81/_._",
  5810. "lib/win8/_._",
  5811. "lib/wpa81/_._",
  5812. "lib/xamarinios10/_._",
  5813. "lib/xamarinmac20/_._",
  5814. "lib/xamarintvos10/_._",
  5815. "lib/xamarinwatchos10/_._",
  5816. "ref/MonoAndroid10/_._",
  5817. "ref/MonoTouch10/_._",
  5818. "ref/net45/_._",
  5819. "ref/net462/System.Runtime.InteropServices.dll",
  5820. "ref/netcore50/System.Runtime.InteropServices.dll",
  5821. "ref/netcore50/System.Runtime.InteropServices.xml",
  5822. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  5823. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  5824. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  5825. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  5826. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  5827. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  5828. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  5829. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  5830. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  5831. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  5832. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  5833. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  5834. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  5835. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  5836. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  5837. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  5838. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  5839. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  5840. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  5841. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  5842. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  5843. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  5844. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  5845. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  5846. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  5847. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  5848. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  5849. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  5850. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  5851. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  5852. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  5853. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  5854. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  5855. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  5856. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  5857. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  5858. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  5859. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  5860. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  5861. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  5862. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  5863. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  5864. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  5865. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  5866. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  5867. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  5868. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  5869. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  5870. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  5871. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  5872. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  5873. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  5874. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  5875. "ref/portable-net45+win8+wpa81/_._",
  5876. "ref/win8/_._",
  5877. "ref/wpa81/_._",
  5878. "ref/xamarinios10/_._",
  5879. "ref/xamarinmac20/_._",
  5880. "ref/xamarintvos10/_._",
  5881. "ref/xamarinwatchos10/_._",
  5882. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  5883. "system.runtime.interopservices.nuspec"
  5884. ]
  5885. },
  5886. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  5887. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  5888. "type": "package",
  5889. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  5890. "files": [
  5891. ".nupkg.metadata",
  5892. "ThirdPartyNotices.txt",
  5893. "dotnet_library_license.txt",
  5894. "lib/MonoAndroid10/_._",
  5895. "lib/MonoTouch10/_._",
  5896. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5897. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  5898. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  5899. "lib/xamarinios10/_._",
  5900. "lib/xamarinmac20/_._",
  5901. "lib/xamarintvos10/_._",
  5902. "lib/xamarinwatchos10/_._",
  5903. "ref/MonoAndroid10/_._",
  5904. "ref/MonoTouch10/_._",
  5905. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5906. "ref/xamarinios10/_._",
  5907. "ref/xamarinmac20/_._",
  5908. "ref/xamarintvos10/_._",
  5909. "ref/xamarinwatchos10/_._",
  5910. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5911. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5912. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5913. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5914. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5915. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  5916. "system.runtime.interopservices.runtimeinformation.nuspec"
  5917. ]
  5918. },
  5919. "System.Runtime.Numerics/4.0.1": {
  5920. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  5921. "type": "package",
  5922. "path": "system.runtime.numerics/4.0.1",
  5923. "files": [
  5924. ".nupkg.metadata",
  5925. "ThirdPartyNotices.txt",
  5926. "dotnet_library_license.txt",
  5927. "lib/MonoAndroid10/_._",
  5928. "lib/MonoTouch10/_._",
  5929. "lib/net45/_._",
  5930. "lib/netcore50/System.Runtime.Numerics.dll",
  5931. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  5932. "lib/portable-net45+win8+wpa81/_._",
  5933. "lib/win8/_._",
  5934. "lib/wpa81/_._",
  5935. "lib/xamarinios10/_._",
  5936. "lib/xamarinmac20/_._",
  5937. "lib/xamarintvos10/_._",
  5938. "lib/xamarinwatchos10/_._",
  5939. "ref/MonoAndroid10/_._",
  5940. "ref/MonoTouch10/_._",
  5941. "ref/net45/_._",
  5942. "ref/netcore50/System.Runtime.Numerics.dll",
  5943. "ref/netcore50/System.Runtime.Numerics.xml",
  5944. "ref/netcore50/de/System.Runtime.Numerics.xml",
  5945. "ref/netcore50/es/System.Runtime.Numerics.xml",
  5946. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  5947. "ref/netcore50/it/System.Runtime.Numerics.xml",
  5948. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  5949. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  5950. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  5951. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  5952. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  5953. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  5954. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  5955. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  5956. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  5957. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  5958. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  5959. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  5960. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  5961. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  5962. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  5963. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  5964. "ref/portable-net45+win8+wpa81/_._",
  5965. "ref/win8/_._",
  5966. "ref/wpa81/_._",
  5967. "ref/xamarinios10/_._",
  5968. "ref/xamarinmac20/_._",
  5969. "ref/xamarintvos10/_._",
  5970. "ref/xamarinwatchos10/_._",
  5971. "system.runtime.numerics.4.0.1.nupkg.sha512",
  5972. "system.runtime.numerics.nuspec"
  5973. ]
  5974. },
  5975. "System.Security.AccessControl/4.7.0": {
  5976. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  5977. "type": "package",
  5978. "path": "system.security.accesscontrol/4.7.0",
  5979. "files": [
  5980. ".nupkg.metadata",
  5981. ".signature.p7s",
  5982. "LICENSE.TXT",
  5983. "THIRD-PARTY-NOTICES.TXT",
  5984. "lib/net46/System.Security.AccessControl.dll",
  5985. "lib/net461/System.Security.AccessControl.dll",
  5986. "lib/net461/System.Security.AccessControl.xml",
  5987. "lib/netstandard1.3/System.Security.AccessControl.dll",
  5988. "lib/netstandard2.0/System.Security.AccessControl.dll",
  5989. "lib/netstandard2.0/System.Security.AccessControl.xml",
  5990. "lib/uap10.0.16299/_._",
  5991. "ref/net46/System.Security.AccessControl.dll",
  5992. "ref/net461/System.Security.AccessControl.dll",
  5993. "ref/net461/System.Security.AccessControl.xml",
  5994. "ref/netstandard1.3/System.Security.AccessControl.dll",
  5995. "ref/netstandard1.3/System.Security.AccessControl.xml",
  5996. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  5997. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  5998. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  5999. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6000. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6001. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6002. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6003. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6004. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6005. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6006. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6007. "ref/uap10.0.16299/_._",
  6008. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6009. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6010. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6011. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6012. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6013. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6014. "runtimes/win/lib/uap10.0.16299/_._",
  6015. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  6016. "system.security.accesscontrol.nuspec",
  6017. "useSharedDesignerContext.txt",
  6018. "version.txt"
  6019. ]
  6020. },
  6021. "System.Security.Cryptography.Algorithms/4.2.0": {
  6022. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  6023. "type": "package",
  6024. "path": "system.security.cryptography.algorithms/4.2.0",
  6025. "files": [
  6026. ".nupkg.metadata",
  6027. "ThirdPartyNotices.txt",
  6028. "dotnet_library_license.txt",
  6029. "lib/MonoAndroid10/_._",
  6030. "lib/MonoTouch10/_._",
  6031. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6032. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6033. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6034. "lib/xamarinios10/_._",
  6035. "lib/xamarinmac20/_._",
  6036. "lib/xamarintvos10/_._",
  6037. "lib/xamarinwatchos10/_._",
  6038. "ref/MonoAndroid10/_._",
  6039. "ref/MonoTouch10/_._",
  6040. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6041. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6042. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6043. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6044. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6045. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6046. "ref/xamarinios10/_._",
  6047. "ref/xamarinmac20/_._",
  6048. "ref/xamarintvos10/_._",
  6049. "ref/xamarinwatchos10/_._",
  6050. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6051. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6052. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6053. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6054. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6055. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6056. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  6057. "system.security.cryptography.algorithms.nuspec"
  6058. ]
  6059. },
  6060. "System.Security.Cryptography.Cng/4.2.0": {
  6061. "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
  6062. "type": "package",
  6063. "path": "system.security.cryptography.cng/4.2.0",
  6064. "files": [
  6065. ".nupkg.metadata",
  6066. "ThirdPartyNotices.txt",
  6067. "dotnet_library_license.txt",
  6068. "lib/net46/System.Security.Cryptography.Cng.dll",
  6069. "lib/net461/System.Security.Cryptography.Cng.dll",
  6070. "lib/net463/System.Security.Cryptography.Cng.dll",
  6071. "ref/net46/System.Security.Cryptography.Cng.dll",
  6072. "ref/net461/System.Security.Cryptography.Cng.dll",
  6073. "ref/net463/System.Security.Cryptography.Cng.dll",
  6074. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6075. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6076. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6077. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6078. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6079. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6080. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  6081. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6082. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6083. "system.security.cryptography.cng.4.2.0.nupkg.sha512",
  6084. "system.security.cryptography.cng.nuspec"
  6085. ]
  6086. },
  6087. "System.Security.Cryptography.Csp/4.0.0": {
  6088. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  6089. "type": "package",
  6090. "path": "system.security.cryptography.csp/4.0.0",
  6091. "files": [
  6092. ".nupkg.metadata",
  6093. "ThirdPartyNotices.txt",
  6094. "dotnet_library_license.txt",
  6095. "lib/MonoAndroid10/_._",
  6096. "lib/MonoTouch10/_._",
  6097. "lib/net46/System.Security.Cryptography.Csp.dll",
  6098. "lib/xamarinios10/_._",
  6099. "lib/xamarinmac20/_._",
  6100. "lib/xamarintvos10/_._",
  6101. "lib/xamarinwatchos10/_._",
  6102. "ref/MonoAndroid10/_._",
  6103. "ref/MonoTouch10/_._",
  6104. "ref/net46/System.Security.Cryptography.Csp.dll",
  6105. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6106. "ref/xamarinios10/_._",
  6107. "ref/xamarinmac20/_._",
  6108. "ref/xamarintvos10/_._",
  6109. "ref/xamarinwatchos10/_._",
  6110. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6111. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6112. "runtimes/win/lib/netcore50/_._",
  6113. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6114. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  6115. "system.security.cryptography.csp.nuspec"
  6116. ]
  6117. },
  6118. "System.Security.Cryptography.Encoding/4.0.0": {
  6119. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  6120. "type": "package",
  6121. "path": "system.security.cryptography.encoding/4.0.0",
  6122. "files": [
  6123. ".nupkg.metadata",
  6124. "ThirdPartyNotices.txt",
  6125. "dotnet_library_license.txt",
  6126. "lib/MonoAndroid10/_._",
  6127. "lib/MonoTouch10/_._",
  6128. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6129. "lib/xamarinios10/_._",
  6130. "lib/xamarinmac20/_._",
  6131. "lib/xamarintvos10/_._",
  6132. "lib/xamarinwatchos10/_._",
  6133. "ref/MonoAndroid10/_._",
  6134. "ref/MonoTouch10/_._",
  6135. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6136. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6137. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6138. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6139. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6140. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6141. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6142. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6143. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6144. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6145. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6146. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6147. "ref/xamarinios10/_._",
  6148. "ref/xamarinmac20/_._",
  6149. "ref/xamarintvos10/_._",
  6150. "ref/xamarinwatchos10/_._",
  6151. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6152. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6153. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6154. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  6155. "system.security.cryptography.encoding.nuspec"
  6156. ]
  6157. },
  6158. "System.Security.Cryptography.OpenSsl/4.0.0": {
  6159. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  6160. "type": "package",
  6161. "path": "system.security.cryptography.openssl/4.0.0",
  6162. "files": [
  6163. ".nupkg.metadata",
  6164. "ThirdPartyNotices.txt",
  6165. "dotnet_library_license.txt",
  6166. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6167. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6168. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6169. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  6170. "system.security.cryptography.openssl.nuspec"
  6171. ]
  6172. },
  6173. "System.Security.Cryptography.Primitives/4.0.0": {
  6174. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  6175. "type": "package",
  6176. "path": "system.security.cryptography.primitives/4.0.0",
  6177. "files": [
  6178. ".nupkg.metadata",
  6179. "ThirdPartyNotices.txt",
  6180. "dotnet_library_license.txt",
  6181. "lib/MonoAndroid10/_._",
  6182. "lib/MonoTouch10/_._",
  6183. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6184. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6185. "lib/xamarinios10/_._",
  6186. "lib/xamarinmac20/_._",
  6187. "lib/xamarintvos10/_._",
  6188. "lib/xamarinwatchos10/_._",
  6189. "ref/MonoAndroid10/_._",
  6190. "ref/MonoTouch10/_._",
  6191. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6192. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6193. "ref/xamarinios10/_._",
  6194. "ref/xamarinmac20/_._",
  6195. "ref/xamarintvos10/_._",
  6196. "ref/xamarinwatchos10/_._",
  6197. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  6198. "system.security.cryptography.primitives.nuspec"
  6199. ]
  6200. },
  6201. "System.Security.Cryptography.ProtectedData/4.4.0": {
  6202. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  6203. "type": "package",
  6204. "path": "system.security.cryptography.protecteddata/4.4.0",
  6205. "files": [
  6206. ".nupkg.metadata",
  6207. ".signature.p7s",
  6208. "LICENSE.TXT",
  6209. "THIRD-PARTY-NOTICES.TXT",
  6210. "lib/MonoAndroid10/_._",
  6211. "lib/MonoTouch10/_._",
  6212. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6213. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6214. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6215. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6216. "lib/xamarinios10/_._",
  6217. "lib/xamarinmac20/_._",
  6218. "lib/xamarintvos10/_._",
  6219. "lib/xamarinwatchos10/_._",
  6220. "ref/MonoAndroid10/_._",
  6221. "ref/MonoTouch10/_._",
  6222. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  6223. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  6224. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  6225. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6226. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6227. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6228. "ref/xamarinios10/_._",
  6229. "ref/xamarinmac20/_._",
  6230. "ref/xamarintvos10/_._",
  6231. "ref/xamarinwatchos10/_._",
  6232. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6233. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6234. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6235. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6236. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  6237. "system.security.cryptography.protecteddata.nuspec",
  6238. "useSharedDesignerContext.txt",
  6239. "version.txt"
  6240. ]
  6241. },
  6242. "System.Security.Cryptography.X509Certificates/4.1.0": {
  6243. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  6244. "type": "package",
  6245. "path": "system.security.cryptography.x509certificates/4.1.0",
  6246. "files": [
  6247. ".nupkg.metadata",
  6248. "ThirdPartyNotices.txt",
  6249. "dotnet_library_license.txt",
  6250. "lib/MonoAndroid10/_._",
  6251. "lib/MonoTouch10/_._",
  6252. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6253. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6254. "lib/xamarinios10/_._",
  6255. "lib/xamarinmac20/_._",
  6256. "lib/xamarintvos10/_._",
  6257. "lib/xamarinwatchos10/_._",
  6258. "ref/MonoAndroid10/_._",
  6259. "ref/MonoTouch10/_._",
  6260. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  6261. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  6262. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  6263. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  6264. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  6265. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  6266. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  6267. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  6268. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  6269. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  6270. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  6271. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6272. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6273. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  6274. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  6275. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  6276. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  6277. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  6278. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  6279. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  6280. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  6281. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  6282. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6283. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6284. "ref/xamarinios10/_._",
  6285. "ref/xamarinmac20/_._",
  6286. "ref/xamarintvos10/_._",
  6287. "ref/xamarinwatchos10/_._",
  6288. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6289. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6290. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6291. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  6292. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6293. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  6294. "system.security.cryptography.x509certificates.nuspec"
  6295. ]
  6296. },
  6297. "System.Security.Permissions/4.7.0": {
  6298. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  6299. "type": "package",
  6300. "path": "system.security.permissions/4.7.0",
  6301. "files": [
  6302. ".nupkg.metadata",
  6303. ".signature.p7s",
  6304. "LICENSE.TXT",
  6305. "THIRD-PARTY-NOTICES.TXT",
  6306. "lib/net461/System.Security.Permissions.dll",
  6307. "lib/net461/System.Security.Permissions.xml",
  6308. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  6309. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  6310. "lib/netstandard2.0/System.Security.Permissions.dll",
  6311. "lib/netstandard2.0/System.Security.Permissions.xml",
  6312. "ref/net461/System.Security.Permissions.dll",
  6313. "ref/net461/System.Security.Permissions.xml",
  6314. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  6315. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  6316. "ref/netstandard2.0/System.Security.Permissions.dll",
  6317. "ref/netstandard2.0/System.Security.Permissions.xml",
  6318. "system.security.permissions.4.7.0.nupkg.sha512",
  6319. "system.security.permissions.nuspec",
  6320. "useSharedDesignerContext.txt",
  6321. "version.txt"
  6322. ]
  6323. },
  6324. "System.Security.Principal.Windows/4.7.0": {
  6325. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  6326. "type": "package",
  6327. "path": "system.security.principal.windows/4.7.0",
  6328. "files": [
  6329. ".nupkg.metadata",
  6330. ".signature.p7s",
  6331. "LICENSE.TXT",
  6332. "THIRD-PARTY-NOTICES.TXT",
  6333. "lib/net46/System.Security.Principal.Windows.dll",
  6334. "lib/net461/System.Security.Principal.Windows.dll",
  6335. "lib/net461/System.Security.Principal.Windows.xml",
  6336. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6337. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  6338. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  6339. "lib/uap10.0.16299/_._",
  6340. "ref/net46/System.Security.Principal.Windows.dll",
  6341. "ref/net461/System.Security.Principal.Windows.dll",
  6342. "ref/net461/System.Security.Principal.Windows.xml",
  6343. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  6344. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  6345. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  6346. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  6347. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  6348. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  6349. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  6350. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  6351. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  6352. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  6353. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  6354. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  6355. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  6356. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  6357. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  6358. "ref/uap10.0.16299/_._",
  6359. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6360. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6361. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6362. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6363. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  6364. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  6365. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  6366. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6367. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6368. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6369. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6370. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6371. "runtimes/win/lib/uap10.0.16299/_._",
  6372. "system.security.principal.windows.4.7.0.nupkg.sha512",
  6373. "system.security.principal.windows.nuspec",
  6374. "useSharedDesignerContext.txt",
  6375. "version.txt"
  6376. ]
  6377. },
  6378. "System.Text.Encoding/4.3.0": {
  6379. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  6380. "type": "package",
  6381. "path": "system.text.encoding/4.3.0",
  6382. "files": [
  6383. ".nupkg.metadata",
  6384. ".signature.p7s",
  6385. "ThirdPartyNotices.txt",
  6386. "dotnet_library_license.txt",
  6387. "lib/MonoAndroid10/_._",
  6388. "lib/MonoTouch10/_._",
  6389. "lib/net45/_._",
  6390. "lib/portable-net45+win8+wp8+wpa81/_._",
  6391. "lib/win8/_._",
  6392. "lib/wp80/_._",
  6393. "lib/wpa81/_._",
  6394. "lib/xamarinios10/_._",
  6395. "lib/xamarinmac20/_._",
  6396. "lib/xamarintvos10/_._",
  6397. "lib/xamarinwatchos10/_._",
  6398. "ref/MonoAndroid10/_._",
  6399. "ref/MonoTouch10/_._",
  6400. "ref/net45/_._",
  6401. "ref/netcore50/System.Text.Encoding.dll",
  6402. "ref/netcore50/System.Text.Encoding.xml",
  6403. "ref/netcore50/de/System.Text.Encoding.xml",
  6404. "ref/netcore50/es/System.Text.Encoding.xml",
  6405. "ref/netcore50/fr/System.Text.Encoding.xml",
  6406. "ref/netcore50/it/System.Text.Encoding.xml",
  6407. "ref/netcore50/ja/System.Text.Encoding.xml",
  6408. "ref/netcore50/ko/System.Text.Encoding.xml",
  6409. "ref/netcore50/ru/System.Text.Encoding.xml",
  6410. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  6411. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  6412. "ref/netstandard1.0/System.Text.Encoding.dll",
  6413. "ref/netstandard1.0/System.Text.Encoding.xml",
  6414. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  6415. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  6416. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  6417. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  6418. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  6419. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  6420. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  6421. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  6422. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  6423. "ref/netstandard1.3/System.Text.Encoding.dll",
  6424. "ref/netstandard1.3/System.Text.Encoding.xml",
  6425. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  6426. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  6427. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  6428. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  6429. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  6430. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  6431. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  6432. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  6433. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  6434. "ref/portable-net45+win8+wp8+wpa81/_._",
  6435. "ref/win8/_._",
  6436. "ref/wp80/_._",
  6437. "ref/wpa81/_._",
  6438. "ref/xamarinios10/_._",
  6439. "ref/xamarinmac20/_._",
  6440. "ref/xamarintvos10/_._",
  6441. "ref/xamarinwatchos10/_._",
  6442. "system.text.encoding.4.3.0.nupkg.sha512",
  6443. "system.text.encoding.nuspec"
  6444. ]
  6445. },
  6446. "System.Text.Encoding.CodePages/4.4.0": {
  6447. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  6448. "type": "package",
  6449. "path": "system.text.encoding.codepages/4.4.0",
  6450. "files": [
  6451. ".nupkg.metadata",
  6452. ".signature.p7s",
  6453. "LICENSE.TXT",
  6454. "THIRD-PARTY-NOTICES.TXT",
  6455. "lib/MonoAndroid10/_._",
  6456. "lib/MonoTouch10/_._",
  6457. "lib/net46/System.Text.Encoding.CodePages.dll",
  6458. "lib/net461/System.Text.Encoding.CodePages.dll",
  6459. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6460. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6461. "lib/xamarinios10/_._",
  6462. "lib/xamarinmac20/_._",
  6463. "lib/xamarintvos10/_._",
  6464. "lib/xamarinwatchos10/_._",
  6465. "ref/MonoAndroid10/_._",
  6466. "ref/MonoTouch10/_._",
  6467. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6468. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  6469. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  6470. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  6471. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  6472. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  6473. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  6474. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  6475. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  6476. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  6477. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  6478. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6479. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6480. "ref/xamarinios10/_._",
  6481. "ref/xamarinmac20/_._",
  6482. "ref/xamarintvos10/_._",
  6483. "ref/xamarinwatchos10/_._",
  6484. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  6485. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  6486. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6487. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6488. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  6489. "system.text.encoding.codepages.nuspec",
  6490. "useSharedDesignerContext.txt",
  6491. "version.txt"
  6492. ]
  6493. },
  6494. "System.Text.Encoding.Extensions/4.0.11": {
  6495. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  6496. "type": "package",
  6497. "path": "system.text.encoding.extensions/4.0.11",
  6498. "files": [
  6499. ".nupkg.metadata",
  6500. "ThirdPartyNotices.txt",
  6501. "dotnet_library_license.txt",
  6502. "lib/MonoAndroid10/_._",
  6503. "lib/MonoTouch10/_._",
  6504. "lib/net45/_._",
  6505. "lib/portable-net45+win8+wp8+wpa81/_._",
  6506. "lib/win8/_._",
  6507. "lib/wp80/_._",
  6508. "lib/wpa81/_._",
  6509. "lib/xamarinios10/_._",
  6510. "lib/xamarinmac20/_._",
  6511. "lib/xamarintvos10/_._",
  6512. "lib/xamarinwatchos10/_._",
  6513. "ref/MonoAndroid10/_._",
  6514. "ref/MonoTouch10/_._",
  6515. "ref/net45/_._",
  6516. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  6517. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  6518. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  6519. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  6520. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  6521. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  6522. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  6523. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  6524. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  6525. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  6526. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  6527. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  6528. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  6529. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  6530. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  6531. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  6532. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  6533. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  6534. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  6535. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  6536. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  6537. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  6538. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  6539. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  6540. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  6541. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  6542. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  6543. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  6544. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  6545. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  6546. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  6547. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  6548. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  6549. "ref/portable-net45+win8+wp8+wpa81/_._",
  6550. "ref/win8/_._",
  6551. "ref/wp80/_._",
  6552. "ref/wpa81/_._",
  6553. "ref/xamarinios10/_._",
  6554. "ref/xamarinmac20/_._",
  6555. "ref/xamarintvos10/_._",
  6556. "ref/xamarinwatchos10/_._",
  6557. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  6558. "system.text.encoding.extensions.nuspec"
  6559. ]
  6560. },
  6561. "System.Text.Encodings.Web/4.5.0": {
  6562. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  6563. "type": "package",
  6564. "path": "system.text.encodings.web/4.5.0",
  6565. "files": [
  6566. ".nupkg.metadata",
  6567. ".signature.p7s",
  6568. "LICENSE.TXT",
  6569. "THIRD-PARTY-NOTICES.TXT",
  6570. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  6571. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  6572. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  6573. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  6574. "system.text.encodings.web.4.5.0.nupkg.sha512",
  6575. "system.text.encodings.web.nuspec",
  6576. "useSharedDesignerContext.txt",
  6577. "version.txt"
  6578. ]
  6579. },
  6580. "System.Text.RegularExpressions/4.1.0": {
  6581. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  6582. "type": "package",
  6583. "path": "system.text.regularexpressions/4.1.0",
  6584. "files": [
  6585. ".nupkg.metadata",
  6586. "ThirdPartyNotices.txt",
  6587. "dotnet_library_license.txt",
  6588. "lib/MonoAndroid10/_._",
  6589. "lib/MonoTouch10/_._",
  6590. "lib/net45/_._",
  6591. "lib/net463/System.Text.RegularExpressions.dll",
  6592. "lib/netcore50/System.Text.RegularExpressions.dll",
  6593. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  6594. "lib/portable-net45+win8+wp8+wpa81/_._",
  6595. "lib/win8/_._",
  6596. "lib/wp80/_._",
  6597. "lib/wpa81/_._",
  6598. "lib/xamarinios10/_._",
  6599. "lib/xamarinmac20/_._",
  6600. "lib/xamarintvos10/_._",
  6601. "lib/xamarinwatchos10/_._",
  6602. "ref/MonoAndroid10/_._",
  6603. "ref/MonoTouch10/_._",
  6604. "ref/net45/_._",
  6605. "ref/net463/System.Text.RegularExpressions.dll",
  6606. "ref/netcore50/System.Text.RegularExpressions.dll",
  6607. "ref/netcore50/System.Text.RegularExpressions.xml",
  6608. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  6609. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  6610. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  6611. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  6612. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  6613. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  6614. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  6615. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  6616. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  6617. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  6618. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  6619. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  6620. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  6621. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  6622. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  6623. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  6624. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  6625. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  6626. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  6627. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  6628. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  6629. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  6630. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  6631. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  6632. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  6633. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  6634. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  6635. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  6636. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  6637. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  6638. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  6639. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  6640. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  6641. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  6642. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  6643. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  6644. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  6645. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  6646. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  6647. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  6648. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  6649. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  6650. "ref/portable-net45+win8+wp8+wpa81/_._",
  6651. "ref/win8/_._",
  6652. "ref/wp80/_._",
  6653. "ref/wpa81/_._",
  6654. "ref/xamarinios10/_._",
  6655. "ref/xamarinmac20/_._",
  6656. "ref/xamarintvos10/_._",
  6657. "ref/xamarinwatchos10/_._",
  6658. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  6659. "system.text.regularexpressions.nuspec"
  6660. ]
  6661. },
  6662. "System.Threading/4.0.11": {
  6663. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  6664. "type": "package",
  6665. "path": "system.threading/4.0.11",
  6666. "files": [
  6667. ".nupkg.metadata",
  6668. "ThirdPartyNotices.txt",
  6669. "dotnet_library_license.txt",
  6670. "lib/MonoAndroid10/_._",
  6671. "lib/MonoTouch10/_._",
  6672. "lib/net45/_._",
  6673. "lib/netcore50/System.Threading.dll",
  6674. "lib/netstandard1.3/System.Threading.dll",
  6675. "lib/portable-net45+win8+wp8+wpa81/_._",
  6676. "lib/win8/_._",
  6677. "lib/wp80/_._",
  6678. "lib/wpa81/_._",
  6679. "lib/xamarinios10/_._",
  6680. "lib/xamarinmac20/_._",
  6681. "lib/xamarintvos10/_._",
  6682. "lib/xamarinwatchos10/_._",
  6683. "ref/MonoAndroid10/_._",
  6684. "ref/MonoTouch10/_._",
  6685. "ref/net45/_._",
  6686. "ref/netcore50/System.Threading.dll",
  6687. "ref/netcore50/System.Threading.xml",
  6688. "ref/netcore50/de/System.Threading.xml",
  6689. "ref/netcore50/es/System.Threading.xml",
  6690. "ref/netcore50/fr/System.Threading.xml",
  6691. "ref/netcore50/it/System.Threading.xml",
  6692. "ref/netcore50/ja/System.Threading.xml",
  6693. "ref/netcore50/ko/System.Threading.xml",
  6694. "ref/netcore50/ru/System.Threading.xml",
  6695. "ref/netcore50/zh-hans/System.Threading.xml",
  6696. "ref/netcore50/zh-hant/System.Threading.xml",
  6697. "ref/netstandard1.0/System.Threading.dll",
  6698. "ref/netstandard1.0/System.Threading.xml",
  6699. "ref/netstandard1.0/de/System.Threading.xml",
  6700. "ref/netstandard1.0/es/System.Threading.xml",
  6701. "ref/netstandard1.0/fr/System.Threading.xml",
  6702. "ref/netstandard1.0/it/System.Threading.xml",
  6703. "ref/netstandard1.0/ja/System.Threading.xml",
  6704. "ref/netstandard1.0/ko/System.Threading.xml",
  6705. "ref/netstandard1.0/ru/System.Threading.xml",
  6706. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  6707. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  6708. "ref/netstandard1.3/System.Threading.dll",
  6709. "ref/netstandard1.3/System.Threading.xml",
  6710. "ref/netstandard1.3/de/System.Threading.xml",
  6711. "ref/netstandard1.3/es/System.Threading.xml",
  6712. "ref/netstandard1.3/fr/System.Threading.xml",
  6713. "ref/netstandard1.3/it/System.Threading.xml",
  6714. "ref/netstandard1.3/ja/System.Threading.xml",
  6715. "ref/netstandard1.3/ko/System.Threading.xml",
  6716. "ref/netstandard1.3/ru/System.Threading.xml",
  6717. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  6718. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  6719. "ref/portable-net45+win8+wp8+wpa81/_._",
  6720. "ref/win8/_._",
  6721. "ref/wp80/_._",
  6722. "ref/wpa81/_._",
  6723. "ref/xamarinios10/_._",
  6724. "ref/xamarinmac20/_._",
  6725. "ref/xamarintvos10/_._",
  6726. "ref/xamarinwatchos10/_._",
  6727. "runtimes/aot/lib/netcore50/System.Threading.dll",
  6728. "system.threading.4.0.11.nupkg.sha512",
  6729. "system.threading.nuspec"
  6730. ]
  6731. },
  6732. "System.Threading.Tasks/4.3.0": {
  6733. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  6734. "type": "package",
  6735. "path": "system.threading.tasks/4.3.0",
  6736. "files": [
  6737. ".nupkg.metadata",
  6738. ".signature.p7s",
  6739. "ThirdPartyNotices.txt",
  6740. "dotnet_library_license.txt",
  6741. "lib/MonoAndroid10/_._",
  6742. "lib/MonoTouch10/_._",
  6743. "lib/net45/_._",
  6744. "lib/portable-net45+win8+wp8+wpa81/_._",
  6745. "lib/win8/_._",
  6746. "lib/wp80/_._",
  6747. "lib/wpa81/_._",
  6748. "lib/xamarinios10/_._",
  6749. "lib/xamarinmac20/_._",
  6750. "lib/xamarintvos10/_._",
  6751. "lib/xamarinwatchos10/_._",
  6752. "ref/MonoAndroid10/_._",
  6753. "ref/MonoTouch10/_._",
  6754. "ref/net45/_._",
  6755. "ref/netcore50/System.Threading.Tasks.dll",
  6756. "ref/netcore50/System.Threading.Tasks.xml",
  6757. "ref/netcore50/de/System.Threading.Tasks.xml",
  6758. "ref/netcore50/es/System.Threading.Tasks.xml",
  6759. "ref/netcore50/fr/System.Threading.Tasks.xml",
  6760. "ref/netcore50/it/System.Threading.Tasks.xml",
  6761. "ref/netcore50/ja/System.Threading.Tasks.xml",
  6762. "ref/netcore50/ko/System.Threading.Tasks.xml",
  6763. "ref/netcore50/ru/System.Threading.Tasks.xml",
  6764. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  6765. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  6766. "ref/netstandard1.0/System.Threading.Tasks.dll",
  6767. "ref/netstandard1.0/System.Threading.Tasks.xml",
  6768. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  6769. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  6770. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  6771. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  6772. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  6773. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  6774. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  6775. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  6776. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  6777. "ref/netstandard1.3/System.Threading.Tasks.dll",
  6778. "ref/netstandard1.3/System.Threading.Tasks.xml",
  6779. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  6780. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  6781. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  6782. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  6783. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  6784. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  6785. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  6786. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  6787. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  6788. "ref/portable-net45+win8+wp8+wpa81/_._",
  6789. "ref/win8/_._",
  6790. "ref/wp80/_._",
  6791. "ref/wpa81/_._",
  6792. "ref/xamarinios10/_._",
  6793. "ref/xamarinmac20/_._",
  6794. "ref/xamarintvos10/_._",
  6795. "ref/xamarinwatchos10/_._",
  6796. "system.threading.tasks.4.3.0.nupkg.sha512",
  6797. "system.threading.tasks.nuspec"
  6798. ]
  6799. },
  6800. "System.Threading.Tasks.Extensions/4.0.0": {
  6801. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  6802. "type": "package",
  6803. "path": "system.threading.tasks.extensions/4.0.0",
  6804. "files": [
  6805. ".nupkg.metadata",
  6806. "ThirdPartyNotices.txt",
  6807. "dotnet_library_license.txt",
  6808. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  6809. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  6810. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  6811. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  6812. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  6813. "system.threading.tasks.extensions.nuspec"
  6814. ]
  6815. },
  6816. "System.Threading.Thread/4.0.0": {
  6817. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  6818. "type": "package",
  6819. "path": "system.threading.thread/4.0.0",
  6820. "files": [
  6821. ".nupkg.metadata",
  6822. ".signature.p7s",
  6823. "ThirdPartyNotices.txt",
  6824. "dotnet_library_license.txt",
  6825. "lib/MonoAndroid10/_._",
  6826. "lib/MonoTouch10/_._",
  6827. "lib/net46/System.Threading.Thread.dll",
  6828. "lib/netcore50/_._",
  6829. "lib/netstandard1.3/System.Threading.Thread.dll",
  6830. "lib/xamarinios10/_._",
  6831. "lib/xamarinmac20/_._",
  6832. "lib/xamarintvos10/_._",
  6833. "lib/xamarinwatchos10/_._",
  6834. "ref/MonoAndroid10/_._",
  6835. "ref/MonoTouch10/_._",
  6836. "ref/net46/System.Threading.Thread.dll",
  6837. "ref/netstandard1.3/System.Threading.Thread.dll",
  6838. "ref/netstandard1.3/System.Threading.Thread.xml",
  6839. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  6840. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  6841. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  6842. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  6843. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  6844. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  6845. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  6846. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  6847. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  6848. "ref/xamarinios10/_._",
  6849. "ref/xamarinmac20/_._",
  6850. "ref/xamarintvos10/_._",
  6851. "ref/xamarinwatchos10/_._",
  6852. "system.threading.thread.4.0.0.nupkg.sha512",
  6853. "system.threading.thread.nuspec"
  6854. ]
  6855. },
  6856. "System.Threading.ThreadPool/4.0.10": {
  6857. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  6858. "type": "package",
  6859. "path": "system.threading.threadpool/4.0.10",
  6860. "files": [
  6861. ".nupkg.metadata",
  6862. ".signature.p7s",
  6863. "ThirdPartyNotices.txt",
  6864. "dotnet_library_license.txt",
  6865. "lib/MonoAndroid10/_._",
  6866. "lib/MonoTouch10/_._",
  6867. "lib/net46/System.Threading.ThreadPool.dll",
  6868. "lib/netcore50/_._",
  6869. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  6870. "lib/xamarinios10/_._",
  6871. "lib/xamarinmac20/_._",
  6872. "lib/xamarintvos10/_._",
  6873. "lib/xamarinwatchos10/_._",
  6874. "ref/MonoAndroid10/_._",
  6875. "ref/MonoTouch10/_._",
  6876. "ref/net46/System.Threading.ThreadPool.dll",
  6877. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  6878. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  6879. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  6880. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  6881. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  6882. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  6883. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  6884. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  6885. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  6886. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  6887. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  6888. "ref/xamarinios10/_._",
  6889. "ref/xamarinmac20/_._",
  6890. "ref/xamarintvos10/_._",
  6891. "ref/xamarinwatchos10/_._",
  6892. "system.threading.threadpool.4.0.10.nupkg.sha512",
  6893. "system.threading.threadpool.nuspec"
  6894. ]
  6895. },
  6896. "System.Threading.Timer/4.0.1": {
  6897. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  6898. "type": "package",
  6899. "path": "system.threading.timer/4.0.1",
  6900. "files": [
  6901. ".nupkg.metadata",
  6902. "ThirdPartyNotices.txt",
  6903. "dotnet_library_license.txt",
  6904. "lib/MonoAndroid10/_._",
  6905. "lib/MonoTouch10/_._",
  6906. "lib/net451/_._",
  6907. "lib/portable-net451+win81+wpa81/_._",
  6908. "lib/win81/_._",
  6909. "lib/wpa81/_._",
  6910. "lib/xamarinios10/_._",
  6911. "lib/xamarinmac20/_._",
  6912. "lib/xamarintvos10/_._",
  6913. "lib/xamarinwatchos10/_._",
  6914. "ref/MonoAndroid10/_._",
  6915. "ref/MonoTouch10/_._",
  6916. "ref/net451/_._",
  6917. "ref/netcore50/System.Threading.Timer.dll",
  6918. "ref/netcore50/System.Threading.Timer.xml",
  6919. "ref/netcore50/de/System.Threading.Timer.xml",
  6920. "ref/netcore50/es/System.Threading.Timer.xml",
  6921. "ref/netcore50/fr/System.Threading.Timer.xml",
  6922. "ref/netcore50/it/System.Threading.Timer.xml",
  6923. "ref/netcore50/ja/System.Threading.Timer.xml",
  6924. "ref/netcore50/ko/System.Threading.Timer.xml",
  6925. "ref/netcore50/ru/System.Threading.Timer.xml",
  6926. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  6927. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  6928. "ref/netstandard1.2/System.Threading.Timer.dll",
  6929. "ref/netstandard1.2/System.Threading.Timer.xml",
  6930. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  6931. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  6932. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  6933. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  6934. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  6935. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  6936. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  6937. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  6938. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  6939. "ref/portable-net451+win81+wpa81/_._",
  6940. "ref/win81/_._",
  6941. "ref/wpa81/_._",
  6942. "ref/xamarinios10/_._",
  6943. "ref/xamarinmac20/_._",
  6944. "ref/xamarintvos10/_._",
  6945. "ref/xamarinwatchos10/_._",
  6946. "system.threading.timer.4.0.1.nupkg.sha512",
  6947. "system.threading.timer.nuspec"
  6948. ]
  6949. },
  6950. "System.Windows.Extensions/4.7.0": {
  6951. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  6952. "type": "package",
  6953. "path": "system.windows.extensions/4.7.0",
  6954. "files": [
  6955. ".nupkg.metadata",
  6956. ".signature.p7s",
  6957. "LICENSE.TXT",
  6958. "THIRD-PARTY-NOTICES.TXT",
  6959. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6960. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6961. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  6962. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  6963. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6964. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6965. "system.windows.extensions.4.7.0.nupkg.sha512",
  6966. "system.windows.extensions.nuspec",
  6967. "useSharedDesignerContext.txt",
  6968. "version.txt"
  6969. ]
  6970. },
  6971. "System.Xml.ReaderWriter/4.0.11": {
  6972. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  6973. "type": "package",
  6974. "path": "system.xml.readerwriter/4.0.11",
  6975. "files": [
  6976. ".nupkg.metadata",
  6977. "ThirdPartyNotices.txt",
  6978. "dotnet_library_license.txt",
  6979. "lib/MonoAndroid10/_._",
  6980. "lib/MonoTouch10/_._",
  6981. "lib/net45/_._",
  6982. "lib/netcore50/System.Xml.ReaderWriter.dll",
  6983. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  6984. "lib/portable-net45+win8+wp8+wpa81/_._",
  6985. "lib/win8/_._",
  6986. "lib/wp80/_._",
  6987. "lib/wpa81/_._",
  6988. "lib/xamarinios10/_._",
  6989. "lib/xamarinmac20/_._",
  6990. "lib/xamarintvos10/_._",
  6991. "lib/xamarinwatchos10/_._",
  6992. "ref/MonoAndroid10/_._",
  6993. "ref/MonoTouch10/_._",
  6994. "ref/net45/_._",
  6995. "ref/netcore50/System.Xml.ReaderWriter.dll",
  6996. "ref/netcore50/System.Xml.ReaderWriter.xml",
  6997. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  6998. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  6999. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7000. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7001. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7002. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7003. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7004. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7005. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7006. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7007. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7008. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7009. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7010. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7011. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7012. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7013. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7014. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7015. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7016. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7017. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7018. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7019. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7020. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7021. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7022. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7023. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7024. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7025. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7026. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7027. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7028. "ref/portable-net45+win8+wp8+wpa81/_._",
  7029. "ref/win8/_._",
  7030. "ref/wp80/_._",
  7031. "ref/wpa81/_._",
  7032. "ref/xamarinios10/_._",
  7033. "ref/xamarinmac20/_._",
  7034. "ref/xamarintvos10/_._",
  7035. "ref/xamarinwatchos10/_._",
  7036. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  7037. "system.xml.readerwriter.nuspec"
  7038. ]
  7039. },
  7040. "System.Xml.XDocument/4.0.11": {
  7041. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  7042. "type": "package",
  7043. "path": "system.xml.xdocument/4.0.11",
  7044. "files": [
  7045. ".nupkg.metadata",
  7046. "ThirdPartyNotices.txt",
  7047. "dotnet_library_license.txt",
  7048. "lib/MonoAndroid10/_._",
  7049. "lib/MonoTouch10/_._",
  7050. "lib/net45/_._",
  7051. "lib/netcore50/System.Xml.XDocument.dll",
  7052. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7053. "lib/portable-net45+win8+wp8+wpa81/_._",
  7054. "lib/win8/_._",
  7055. "lib/wp80/_._",
  7056. "lib/wpa81/_._",
  7057. "lib/xamarinios10/_._",
  7058. "lib/xamarinmac20/_._",
  7059. "lib/xamarintvos10/_._",
  7060. "lib/xamarinwatchos10/_._",
  7061. "ref/MonoAndroid10/_._",
  7062. "ref/MonoTouch10/_._",
  7063. "ref/net45/_._",
  7064. "ref/netcore50/System.Xml.XDocument.dll",
  7065. "ref/netcore50/System.Xml.XDocument.xml",
  7066. "ref/netcore50/de/System.Xml.XDocument.xml",
  7067. "ref/netcore50/es/System.Xml.XDocument.xml",
  7068. "ref/netcore50/fr/System.Xml.XDocument.xml",
  7069. "ref/netcore50/it/System.Xml.XDocument.xml",
  7070. "ref/netcore50/ja/System.Xml.XDocument.xml",
  7071. "ref/netcore50/ko/System.Xml.XDocument.xml",
  7072. "ref/netcore50/ru/System.Xml.XDocument.xml",
  7073. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  7074. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  7075. "ref/netstandard1.0/System.Xml.XDocument.dll",
  7076. "ref/netstandard1.0/System.Xml.XDocument.xml",
  7077. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  7078. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  7079. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  7080. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  7081. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  7082. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  7083. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  7084. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  7085. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  7086. "ref/netstandard1.3/System.Xml.XDocument.dll",
  7087. "ref/netstandard1.3/System.Xml.XDocument.xml",
  7088. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  7089. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  7090. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  7091. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  7092. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  7093. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  7094. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  7095. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  7096. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  7097. "ref/portable-net45+win8+wp8+wpa81/_._",
  7098. "ref/win8/_._",
  7099. "ref/wp80/_._",
  7100. "ref/wpa81/_._",
  7101. "ref/xamarinios10/_._",
  7102. "ref/xamarinmac20/_._",
  7103. "ref/xamarintvos10/_._",
  7104. "ref/xamarinwatchos10/_._",
  7105. "system.xml.xdocument.4.0.11.nupkg.sha512",
  7106. "system.xml.xdocument.nuspec"
  7107. ]
  7108. },
  7109. "System.Xml.XmlDocument/4.0.1": {
  7110. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  7111. "type": "package",
  7112. "path": "system.xml.xmldocument/4.0.1",
  7113. "files": [
  7114. ".nupkg.metadata",
  7115. ".signature.p7s",
  7116. "ThirdPartyNotices.txt",
  7117. "dotnet_library_license.txt",
  7118. "lib/MonoAndroid10/_._",
  7119. "lib/MonoTouch10/_._",
  7120. "lib/net46/System.Xml.XmlDocument.dll",
  7121. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  7122. "lib/xamarinios10/_._",
  7123. "lib/xamarinmac20/_._",
  7124. "lib/xamarintvos10/_._",
  7125. "lib/xamarinwatchos10/_._",
  7126. "ref/MonoAndroid10/_._",
  7127. "ref/MonoTouch10/_._",
  7128. "ref/net46/System.Xml.XmlDocument.dll",
  7129. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  7130. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  7131. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  7132. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  7133. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  7134. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  7135. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  7136. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  7137. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  7138. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  7139. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  7140. "ref/xamarinios10/_._",
  7141. "ref/xamarinmac20/_._",
  7142. "ref/xamarintvos10/_._",
  7143. "ref/xamarinwatchos10/_._",
  7144. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  7145. "system.xml.xmldocument.nuspec"
  7146. ]
  7147. },
  7148. "System.Xml.XPath/4.0.1": {
  7149. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  7150. "type": "package",
  7151. "path": "system.xml.xpath/4.0.1",
  7152. "files": [
  7153. ".nupkg.metadata",
  7154. ".signature.p7s",
  7155. "ThirdPartyNotices.txt",
  7156. "dotnet_library_license.txt",
  7157. "lib/MonoAndroid10/_._",
  7158. "lib/MonoTouch10/_._",
  7159. "lib/net46/System.Xml.XPath.dll",
  7160. "lib/netstandard1.3/System.Xml.XPath.dll",
  7161. "lib/xamarinios10/_._",
  7162. "lib/xamarinmac20/_._",
  7163. "lib/xamarintvos10/_._",
  7164. "lib/xamarinwatchos10/_._",
  7165. "ref/MonoAndroid10/_._",
  7166. "ref/MonoTouch10/_._",
  7167. "ref/net46/System.Xml.XPath.dll",
  7168. "ref/netstandard1.3/System.Xml.XPath.dll",
  7169. "ref/netstandard1.3/System.Xml.XPath.xml",
  7170. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  7171. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  7172. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  7173. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  7174. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  7175. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  7176. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  7177. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  7178. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  7179. "ref/xamarinios10/_._",
  7180. "ref/xamarinmac20/_._",
  7181. "ref/xamarintvos10/_._",
  7182. "ref/xamarinwatchos10/_._",
  7183. "system.xml.xpath.4.0.1.nupkg.sha512",
  7184. "system.xml.xpath.nuspec"
  7185. ]
  7186. },
  7187. "System.Xml.XPath.XmlDocument/4.0.1": {
  7188. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  7189. "type": "package",
  7190. "path": "system.xml.xpath.xmldocument/4.0.1",
  7191. "files": [
  7192. ".nupkg.metadata",
  7193. ".signature.p7s",
  7194. "ThirdPartyNotices.txt",
  7195. "dotnet_library_license.txt",
  7196. "lib/MonoAndroid10/_._",
  7197. "lib/MonoTouch10/_._",
  7198. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7199. "lib/xamarinios10/_._",
  7200. "lib/xamarinmac20/_._",
  7201. "lib/xamarintvos10/_._",
  7202. "lib/xamarinwatchos10/_._",
  7203. "ref/MonoAndroid10/_._",
  7204. "ref/MonoTouch10/_._",
  7205. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7206. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  7207. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  7208. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  7209. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  7210. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  7211. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  7212. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  7213. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  7214. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  7215. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  7216. "ref/xamarinios10/_._",
  7217. "ref/xamarinmac20/_._",
  7218. "ref/xamarintvos10/_._",
  7219. "ref/xamarinwatchos10/_._",
  7220. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  7221. "system.xml.xpath.xmldocument.nuspec"
  7222. ]
  7223. },
  7224. "Backend.Common/1.0.0": {
  7225. "type": "project",
  7226. "path": "../Backend.Common/Backend.Common.csproj",
  7227. "msbuildProject": "../Backend.Common/Backend.Common.csproj"
  7228. },
  7229. "Backend.Data/1.0.0": {
  7230. "type": "project",
  7231. "path": "../Backend.Data/Backend.Data.csproj",
  7232. "msbuildProject": "../Backend.Data/Backend.Data.csproj"
  7233. },
  7234. "Backend.Models/1.0.0": {
  7235. "type": "project",
  7236. "path": "../Backend.Models/Backend.Models.csproj",
  7237. "msbuildProject": "../Backend.Models/Backend.Models.csproj"
  7238. },
  7239. "Backend.Services/1.0.0": {
  7240. "type": "project",
  7241. "path": "../Backend.Services/Backend.Services.csproj",
  7242. "msbuildProject": "../Backend.Services/Backend.Services.csproj"
  7243. },
  7244. "Mediator/1.0.0": {
  7245. "type": "project",
  7246. "path": "../Mediator/Mediator.csproj",
  7247. "msbuildProject": "../Mediator/Mediator.csproj"
  7248. }
  7249. },
  7250. "projectFileDependencyGroups": {
  7251. ".NETCoreApp,Version=v3.1": [
  7252. "AutoMapper >= 10.1.1",
  7253. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  7254. "Backend.Common >= 1.0.0",
  7255. "MediatR.Extensions.Microsoft.DependencyInjection >= 7.0.0",
  7256. "Mediator >= 1.0.0",
  7257. "Microsoft.EntityFrameworkCore >= 5.0.13",
  7258. "Microsoft.EntityFrameworkCore.Tools >= 5.0.13",
  7259. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.11.1",
  7260. "Pomelo.EntityFrameworkCore.MySql >= 5.0.0-alpha.2",
  7261. "Swashbuckle.AspNetCore.Swagger >= 6.2.3",
  7262. "Swashbuckle.AspNetCore.SwaggerGen >= 6.2.3",
  7263. "Swashbuckle.AspNetCore.SwaggerUI >= 6.2.3"
  7264. ]
  7265. },
  7266. "packageFolders": {
  7267. "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\": {}
  7268. },
  7269. "project": {
  7270. "version": "1.0.0",
  7271. "restore": {
  7272. "projectUniqueName": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.API\\Backend.API.csproj",
  7273. "projectName": "Backend.API",
  7274. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.API\\Backend.API.csproj",
  7275. "packagesPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\",
  7276. "outputPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.API\\obj\\",
  7277. "projectStyle": "PackageReference",
  7278. "configFilePaths": [
  7279. "C:\\Users\\Alex ONDOA BALEGNAMA\\AppData\\Roaming\\NuGet\\NuGet.Config",
  7280. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  7281. ],
  7282. "originalTargetFrameworks": [
  7283. "netcoreapp3.1"
  7284. ],
  7285. "sources": {
  7286. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  7287. "https://api.nuget.org/v3/index.json": {},
  7288. "https://packagesource": {}
  7289. },
  7290. "frameworks": {
  7291. "netcoreapp3.1": {
  7292. "targetAlias": "netcoreapp3.1",
  7293. "projectReferences": {
  7294. "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Common\\Backend.Common.csproj": {
  7295. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Common\\Backend.Common.csproj"
  7296. },
  7297. "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Mediator\\Mediator.csproj": {
  7298. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Mediator\\Mediator.csproj"
  7299. }
  7300. }
  7301. }
  7302. },
  7303. "warningProperties": {
  7304. "warnAsError": [
  7305. "NU1605"
  7306. ]
  7307. }
  7308. },
  7309. "frameworks": {
  7310. "netcoreapp3.1": {
  7311. "targetAlias": "netcoreapp3.1",
  7312. "dependencies": {
  7313. "AutoMapper": {
  7314. "target": "Package",
  7315. "version": "[10.1.1, )"
  7316. },
  7317. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  7318. "target": "Package",
  7319. "version": "[8.1.1, )"
  7320. },
  7321. "MediatR.Extensions.Microsoft.DependencyInjection": {
  7322. "target": "Package",
  7323. "version": "[7.0.0, )"
  7324. },
  7325. "Microsoft.EntityFrameworkCore": {
  7326. "target": "Package",
  7327. "version": "[5.0.13, )"
  7328. },
  7329. "Microsoft.EntityFrameworkCore.Tools": {
  7330. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  7331. "suppressParent": "All",
  7332. "target": "Package",
  7333. "version": "[5.0.13, )"
  7334. },
  7335. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  7336. "target": "Package",
  7337. "version": "[1.11.1, )"
  7338. },
  7339. "Pomelo.EntityFrameworkCore.MySql": {
  7340. "target": "Package",
  7341. "version": "[5.0.0-alpha.2, )"
  7342. },
  7343. "Swashbuckle.AspNetCore.Swagger": {
  7344. "target": "Package",
  7345. "version": "[6.2.3, )"
  7346. },
  7347. "Swashbuckle.AspNetCore.SwaggerGen": {
  7348. "target": "Package",
  7349. "version": "[6.2.3, )"
  7350. },
  7351. "Swashbuckle.AspNetCore.SwaggerUI": {
  7352. "target": "Package",
  7353. "version": "[6.2.3, )"
  7354. }
  7355. },
  7356. "imports": [
  7357. "net461",
  7358. "net462",
  7359. "net47",
  7360. "net471",
  7361. "net472",
  7362. "net48"
  7363. ],
  7364. "assetTargetFallback": true,
  7365. "warn": true,
  7366. "frameworkReferences": {
  7367. "Microsoft.AspNetCore.App": {
  7368. "privateAssets": "none"
  7369. },
  7370. "Microsoft.NETCore.App": {
  7371. "privateAssets": "all"
  7372. }
  7373. },
  7374. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json"
  7375. }
  7376. }
  7377. },
  7378. "logs": [
  7379. {
  7380. "code": "NU1701",
  7381. "level": "Warning",
  7382. "warningLevel": 1,
  7383. "message": "Le package 'EntityFramework 6.1.0' a été restauré en utilisant '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  7384. "libraryId": "EntityFramework",
  7385. "targetGraphs": [
  7386. ".NETCoreApp,Version=v3.1"
  7387. ]
  7388. },
  7389. {
  7390. "code": "NU1701",
  7391. "level": "Warning",
  7392. "warningLevel": 1,
  7393. "message": "Le package 'Microsoft.AspNet.Identity.Core 2.2.3' a été restauré en utilisant '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  7394. "libraryId": "Microsoft.AspNet.Identity.Core",
  7395. "targetGraphs": [
  7396. ".NETCoreApp,Version=v3.1"
  7397. ]
  7398. },
  7399. {
  7400. "code": "NU1701",
  7401. "level": "Warning",
  7402. "warningLevel": 1,
  7403. "message": "Le package 'Microsoft.AspNet.Identity.EntityFramework 2.2.3' a été restauré en utilisant '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' au lieu du framework cible du projet '.NETCoreApp,Version=v3.1'. Ce package n'est peut-être pas totalement compatible avec votre projet.",
  7404. "libraryId": "Microsoft.AspNet.Identity.EntityFramework",
  7405. "targetGraphs": [
  7406. ".NETCoreApp,Version=v3.1"
  7407. ]
  7408. }
  7409. ]
  7410. }

Powered by TurnKey Linux.