No Description

project.assets.json 414KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225
  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. "BouncyCastle.NetCore/1.8.3": {
  19. "type": "package",
  20. "dependencies": {
  21. "NETStandard.Library": "1.6.0",
  22. "System.Reflection": "4.3.0",
  23. "System.Reflection.TypeExtensions": "4.1.0"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  30. }
  31. },
  32. "Castle.Core/4.4.0": {
  33. "type": "package",
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.1",
  36. "System.Collections.Specialized": "4.3.0",
  37. "System.ComponentModel": "4.3.0",
  38. "System.ComponentModel.TypeConverter": "4.3.0",
  39. "System.Diagnostics.TraceSource": "4.3.0",
  40. "System.Dynamic.Runtime": "4.3.0",
  41. "System.Reflection": "4.3.0",
  42. "System.Reflection.Emit": "4.3.0",
  43. "System.Reflection.TypeExtensions": "4.3.0",
  44. "System.Xml.XmlDocument": "4.3.0"
  45. },
  46. "compile": {
  47. "lib/netstandard1.5/Castle.Core.dll": {}
  48. },
  49. "runtime": {
  50. "lib/netstandard1.5/Castle.Core.dll": {}
  51. }
  52. },
  53. "coverlet.collector/3.0.2": {
  54. "type": "package",
  55. "build": {
  56. "build/netstandard1.0/coverlet.collector.targets": {}
  57. }
  58. },
  59. "EntityFramework/6.1.0": {
  60. "type": "package",
  61. "compile": {
  62. "lib/net45/EntityFramework.SqlServer.dll": {},
  63. "lib/net45/EntityFramework.dll": {}
  64. },
  65. "runtime": {
  66. "lib/net45/EntityFramework.SqlServer.dll": {},
  67. "lib/net45/EntityFramework.dll": {}
  68. }
  69. },
  70. "Google.Protobuf/3.11.4": {
  71. "type": "package",
  72. "dependencies": {
  73. "System.Memory": "4.5.2"
  74. },
  75. "compile": {
  76. "lib/netstandard2.0/Google.Protobuf.dll": {}
  77. },
  78. "runtime": {
  79. "lib/netstandard2.0/Google.Protobuf.dll": {}
  80. }
  81. },
  82. "K4os.Compression.LZ4/1.1.11": {
  83. "type": "package",
  84. "dependencies": {
  85. "System.Memory": "4.5.3"
  86. },
  87. "compile": {
  88. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  92. }
  93. },
  94. "K4os.Compression.LZ4.Streams/1.1.11": {
  95. "type": "package",
  96. "dependencies": {
  97. "K4os.Compression.LZ4": "1.1.11",
  98. "K4os.Hash.xxHash": "1.0.6"
  99. },
  100. "compile": {
  101. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  102. },
  103. "runtime": {
  104. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  105. }
  106. },
  107. "K4os.Hash.xxHash/1.0.6": {
  108. "type": "package",
  109. "dependencies": {
  110. "System.Memory": "4.5.3"
  111. },
  112. "compile": {
  113. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  114. },
  115. "runtime": {
  116. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  117. }
  118. },
  119. "Microsoft.AspNet.Identity.Core/2.2.3": {
  120. "type": "package",
  121. "compile": {
  122. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  123. },
  124. "runtime": {
  125. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  126. }
  127. },
  128. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  129. "type": "package",
  130. "dependencies": {
  131. "EntityFramework": "6.1.0",
  132. "Microsoft.AspNet.Identity.Core": "2.2.3"
  133. },
  134. "compile": {
  135. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  136. },
  137. "runtime": {
  138. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {}
  139. }
  140. },
  141. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  142. "type": "package",
  143. "compile": {
  144. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  145. },
  146. "runtime": {
  147. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  148. }
  149. },
  150. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  151. "type": "package",
  152. "dependencies": {
  153. "Microsoft.AspNetCore.Cryptography.Internal": "5.0.10"
  154. },
  155. "compile": {
  156. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  157. },
  158. "runtime": {
  159. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  160. }
  161. },
  162. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  163. "type": "package",
  164. "dependencies": {
  165. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  166. "System.Text.Encodings.Web": "4.5.0"
  167. },
  168. "compile": {
  169. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  170. },
  171. "runtime": {
  172. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  173. }
  174. },
  175. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  176. "type": "package",
  177. "dependencies": {
  178. "Microsoft.Extensions.Primitives": "2.2.0"
  179. },
  180. "compile": {
  181. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  182. },
  183. "runtime": {
  184. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  185. }
  186. },
  187. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  188. "type": "package",
  189. "dependencies": {
  190. "Microsoft.EntityFrameworkCore.Relational": "5.0.10",
  191. "Microsoft.Extensions.Identity.Stores": "5.0.10"
  192. },
  193. "compile": {
  194. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  195. },
  196. "runtime": {
  197. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  198. }
  199. },
  200. "Microsoft.CodeCoverage/16.9.4": {
  201. "type": "package",
  202. "compile": {
  203. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  204. },
  205. "runtime": {
  206. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  207. },
  208. "build": {
  209. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  210. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  211. }
  212. },
  213. "Microsoft.CSharp/4.7.0": {
  214. "type": "package",
  215. "compile": {
  216. "ref/netcoreapp2.0/_._": {}
  217. },
  218. "runtime": {
  219. "lib/netcoreapp2.0/_._": {}
  220. }
  221. },
  222. "Microsoft.EntityFrameworkCore/5.0.10": {
  223. "type": "package",
  224. "dependencies": {
  225. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.10",
  226. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.10",
  227. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  228. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  229. "Microsoft.Extensions.Logging": "5.0.0",
  230. "System.Collections.Immutable": "5.0.0",
  231. "System.ComponentModel.Annotations": "5.0.0",
  232. "System.Diagnostics.DiagnosticSource": "5.0.1"
  233. },
  234. "compile": {
  235. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  236. },
  237. "runtime": {
  238. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  239. }
  240. },
  241. "Microsoft.EntityFrameworkCore.Abstractions/5.0.10": {
  242. "type": "package",
  243. "compile": {
  244. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  245. },
  246. "runtime": {
  247. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  248. }
  249. },
  250. "Microsoft.EntityFrameworkCore.Analyzers/5.0.10": {
  251. "type": "package",
  252. "compile": {
  253. "lib/netstandard2.0/_._": {}
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/_._": {}
  257. }
  258. },
  259. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  260. "type": "package",
  261. "dependencies": {
  262. "Microsoft.EntityFrameworkCore": "5.0.10",
  263. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  264. },
  265. "compile": {
  266. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  267. },
  268. "runtime": {
  269. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  270. }
  271. },
  272. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  273. "type": "package",
  274. "dependencies": {
  275. "Microsoft.Extensions.Primitives": "5.0.0"
  276. },
  277. "compile": {
  278. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  279. },
  280. "runtime": {
  281. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  282. }
  283. },
  284. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  285. "type": "package",
  286. "dependencies": {
  287. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  288. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  289. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  290. "Microsoft.Extensions.Options": "5.0.0",
  291. "Microsoft.Extensions.Primitives": "5.0.0"
  292. },
  293. "compile": {
  294. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  295. },
  296. "runtime": {
  297. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  298. }
  299. },
  300. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  301. "type": "package",
  302. "dependencies": {
  303. "Microsoft.Extensions.Primitives": "6.0.0"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  307. },
  308. "runtime": {
  309. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  310. }
  311. },
  312. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  313. "type": "package",
  314. "dependencies": {
  315. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  316. },
  317. "compile": {
  318. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  319. },
  320. "runtime": {
  321. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  322. }
  323. },
  324. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  325. "type": "package",
  326. "compile": {
  327. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  328. },
  329. "runtime": {
  330. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  331. }
  332. },
  333. "Microsoft.Extensions.Identity.Core/5.0.10": {
  334. "type": "package",
  335. "dependencies": {
  336. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.10",
  337. "Microsoft.Extensions.Logging": "5.0.0",
  338. "Microsoft.Extensions.Options": "5.0.0",
  339. "System.ComponentModel.Annotations": "5.0.0"
  340. },
  341. "compile": {
  342. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  343. },
  344. "runtime": {
  345. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  346. }
  347. },
  348. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  349. "type": "package",
  350. "dependencies": {
  351. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  352. "Microsoft.Extensions.Identity.Core": "5.0.10",
  353. "Microsoft.Extensions.Logging": "5.0.0"
  354. },
  355. "compile": {
  356. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  357. },
  358. "runtime": {
  359. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  360. }
  361. },
  362. "Microsoft.Extensions.Logging/5.0.0": {
  363. "type": "package",
  364. "dependencies": {
  365. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  366. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  367. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  368. "Microsoft.Extensions.Options": "5.0.0",
  369. "System.Diagnostics.DiagnosticSource": "5.0.0"
  370. },
  371. "compile": {
  372. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  373. },
  374. "runtime": {
  375. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  376. }
  377. },
  378. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  379. "type": "package",
  380. "compile": {
  381. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  382. },
  383. "runtime": {
  384. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  385. }
  386. },
  387. "Microsoft.Extensions.Options/5.0.0": {
  388. "type": "package",
  389. "dependencies": {
  390. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  391. "Microsoft.Extensions.Primitives": "5.0.0"
  392. },
  393. "compile": {
  394. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  395. },
  396. "runtime": {
  397. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  398. }
  399. },
  400. "Microsoft.Extensions.Primitives/6.0.0": {
  401. "type": "package",
  402. "dependencies": {
  403. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  404. },
  405. "compile": {
  406. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  407. },
  408. "runtime": {
  409. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  410. },
  411. "build": {
  412. "buildTransitive/netcoreapp3.1/_._": {}
  413. }
  414. },
  415. "Microsoft.NET.Test.Sdk/16.9.4": {
  416. "type": "package",
  417. "dependencies": {
  418. "Microsoft.CodeCoverage": "16.9.4",
  419. "Microsoft.TestPlatform.TestHost": "16.9.4"
  420. },
  421. "compile": {
  422. "lib/netcoreapp2.1/_._": {}
  423. },
  424. "runtime": {
  425. "lib/netcoreapp2.1/_._": {}
  426. },
  427. "build": {
  428. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
  429. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
  430. },
  431. "buildMultiTargeting": {
  432. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  433. }
  434. },
  435. "Microsoft.NETCore.Platforms/3.1.0": {
  436. "type": "package",
  437. "compile": {
  438. "lib/netstandard1.0/_._": {}
  439. },
  440. "runtime": {
  441. "lib/netstandard1.0/_._": {}
  442. }
  443. },
  444. "Microsoft.NETCore.Targets/1.1.0": {
  445. "type": "package",
  446. "compile": {
  447. "lib/netstandard1.0/_._": {}
  448. },
  449. "runtime": {
  450. "lib/netstandard1.0/_._": {}
  451. }
  452. },
  453. "Microsoft.TestPlatform.ObjectModel/16.9.4": {
  454. "type": "package",
  455. "dependencies": {
  456. "NuGet.Frameworks": "5.0.0",
  457. "System.Reflection.Metadata": "1.6.0"
  458. },
  459. "compile": {
  460. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  461. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  462. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  463. },
  464. "runtime": {
  465. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  466. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  467. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  468. },
  469. "resource": {
  470. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  471. "locale": "cs"
  472. },
  473. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  474. "locale": "cs"
  475. },
  476. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  477. "locale": "de"
  478. },
  479. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  480. "locale": "de"
  481. },
  482. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  483. "locale": "es"
  484. },
  485. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  486. "locale": "es"
  487. },
  488. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  489. "locale": "fr"
  490. },
  491. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  492. "locale": "fr"
  493. },
  494. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  495. "locale": "it"
  496. },
  497. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  498. "locale": "it"
  499. },
  500. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  501. "locale": "ja"
  502. },
  503. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  504. "locale": "ja"
  505. },
  506. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  507. "locale": "ko"
  508. },
  509. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  510. "locale": "ko"
  511. },
  512. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  513. "locale": "pl"
  514. },
  515. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  516. "locale": "pl"
  517. },
  518. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  519. "locale": "pt-BR"
  520. },
  521. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  522. "locale": "pt-BR"
  523. },
  524. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  525. "locale": "ru"
  526. },
  527. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  528. "locale": "ru"
  529. },
  530. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  531. "locale": "tr"
  532. },
  533. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  534. "locale": "tr"
  535. },
  536. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  537. "locale": "zh-Hans"
  538. },
  539. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  540. "locale": "zh-Hans"
  541. },
  542. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  543. "locale": "zh-Hant"
  544. },
  545. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  546. "locale": "zh-Hant"
  547. }
  548. }
  549. },
  550. "Microsoft.TestPlatform.TestHost/16.9.4": {
  551. "type": "package",
  552. "dependencies": {
  553. "Microsoft.TestPlatform.ObjectModel": "16.9.4",
  554. "Newtonsoft.Json": "9.0.1"
  555. },
  556. "compile": {
  557. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  558. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  559. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  560. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  561. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  562. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  563. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  564. "lib/netcoreapp2.1/testhost.dll": {}
  565. },
  566. "runtime": {
  567. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  568. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  569. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  570. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  571. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  572. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  573. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  574. "lib/netcoreapp2.1/testhost.dll": {}
  575. },
  576. "resource": {
  577. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  578. "locale": "cs"
  579. },
  580. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  581. "locale": "cs"
  582. },
  583. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  584. "locale": "cs"
  585. },
  586. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  587. "locale": "de"
  588. },
  589. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  590. "locale": "de"
  591. },
  592. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  593. "locale": "de"
  594. },
  595. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  596. "locale": "es"
  597. },
  598. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  599. "locale": "es"
  600. },
  601. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  602. "locale": "es"
  603. },
  604. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  605. "locale": "fr"
  606. },
  607. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  608. "locale": "fr"
  609. },
  610. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  611. "locale": "fr"
  612. },
  613. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  614. "locale": "it"
  615. },
  616. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  617. "locale": "it"
  618. },
  619. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  620. "locale": "it"
  621. },
  622. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  623. "locale": "ja"
  624. },
  625. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  626. "locale": "ja"
  627. },
  628. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  629. "locale": "ja"
  630. },
  631. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  632. "locale": "ko"
  633. },
  634. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  635. "locale": "ko"
  636. },
  637. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  638. "locale": "ko"
  639. },
  640. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  641. "locale": "pl"
  642. },
  643. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  644. "locale": "pl"
  645. },
  646. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  647. "locale": "pl"
  648. },
  649. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  650. "locale": "pt-BR"
  651. },
  652. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  653. "locale": "pt-BR"
  654. },
  655. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  656. "locale": "pt-BR"
  657. },
  658. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  659. "locale": "ru"
  660. },
  661. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  662. "locale": "ru"
  663. },
  664. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  665. "locale": "ru"
  666. },
  667. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  668. "locale": "tr"
  669. },
  670. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  671. "locale": "tr"
  672. },
  673. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  674. "locale": "tr"
  675. },
  676. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  677. "locale": "zh-Hans"
  678. },
  679. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  680. "locale": "zh-Hans"
  681. },
  682. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  683. "locale": "zh-Hans"
  684. },
  685. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  686. "locale": "zh-Hant"
  687. },
  688. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  689. "locale": "zh-Hant"
  690. },
  691. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  692. "locale": "zh-Hant"
  693. }
  694. },
  695. "build": {
  696. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
  697. }
  698. },
  699. "Microsoft.Win32.Primitives/4.3.0": {
  700. "type": "package",
  701. "dependencies": {
  702. "Microsoft.NETCore.Platforms": "1.1.0",
  703. "Microsoft.NETCore.Targets": "1.1.0",
  704. "System.Runtime": "4.3.0"
  705. },
  706. "compile": {
  707. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  708. }
  709. },
  710. "Microsoft.Win32.Registry/4.7.0": {
  711. "type": "package",
  712. "dependencies": {
  713. "System.Security.AccessControl": "4.7.0",
  714. "System.Security.Principal.Windows": "4.7.0"
  715. },
  716. "compile": {
  717. "ref/netstandard2.0/_._": {}
  718. },
  719. "runtime": {
  720. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  721. },
  722. "runtimeTargets": {
  723. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  724. "assetType": "runtime",
  725. "rid": "unix"
  726. },
  727. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  728. "assetType": "runtime",
  729. "rid": "win"
  730. }
  731. }
  732. },
  733. "Microsoft.Win32.SystemEvents/4.7.0": {
  734. "type": "package",
  735. "dependencies": {
  736. "Microsoft.NETCore.Platforms": "3.1.0"
  737. },
  738. "compile": {
  739. "ref/netstandard2.0/_._": {}
  740. },
  741. "runtime": {
  742. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  743. },
  744. "runtimeTargets": {
  745. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  746. "assetType": "runtime",
  747. "rid": "win"
  748. }
  749. }
  750. },
  751. "MSTest.TestAdapter/2.2.3": {
  752. "type": "package",
  753. "dependencies": {
  754. "NETStandard.Library": "1.6.1",
  755. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  756. },
  757. "build": {
  758. "build/netcoreapp1.0/MSTest.TestAdapter.props": {}
  759. }
  760. },
  761. "MSTest.TestFramework/2.2.3": {
  762. "type": "package",
  763. "dependencies": {
  764. "NETStandard.Library": "1.6.1",
  765. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  766. },
  767. "compile": {
  768. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  769. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  770. },
  771. "runtime": {
  772. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  773. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  774. }
  775. },
  776. "MySql.Data/8.0.22": {
  777. "type": "package",
  778. "dependencies": {
  779. "BouncyCastle.NetCore": "1.8.3",
  780. "Google.Protobuf": "3.11.4",
  781. "K4os.Compression.LZ4": "1.1.11",
  782. "K4os.Compression.LZ4.Streams": "1.1.11",
  783. "K4os.Hash.xxHash": "1.0.6",
  784. "SSH.NET": "2016.1.0",
  785. "System.Buffers": "4.5.1",
  786. "System.Configuration.ConfigurationManager": "4.4.1",
  787. "System.Security.Permissions": "4.7.0",
  788. "System.Text.Encoding.CodePages": "4.4.0"
  789. },
  790. "compile": {
  791. "lib/netstandard2.1/MySql.Data.dll": {},
  792. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  793. "lib/netstandard2.1/Zstandard.Net.dll": {}
  794. },
  795. "runtime": {
  796. "lib/netstandard2.1/MySql.Data.dll": {},
  797. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  798. "lib/netstandard2.1/Zstandard.Net.dll": {}
  799. }
  800. },
  801. "MySql.Data.EntityFrameworkCore/8.0.22": {
  802. "type": "package",
  803. "dependencies": {
  804. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  805. "MySql.Data": "8.0.22"
  806. },
  807. "compile": {
  808. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  809. },
  810. "runtime": {
  811. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  812. }
  813. },
  814. "MySqlConnector/1.1.0": {
  815. "type": "package",
  816. "compile": {
  817. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  818. },
  819. "runtime": {
  820. "lib/netcoreapp3.1/MySqlConnector.dll": {}
  821. }
  822. },
  823. "NETStandard.Library/1.6.1": {
  824. "type": "package",
  825. "dependencies": {
  826. "Microsoft.NETCore.Platforms": "1.1.0",
  827. "Microsoft.Win32.Primitives": "4.3.0",
  828. "System.AppContext": "4.3.0",
  829. "System.Collections": "4.3.0",
  830. "System.Collections.Concurrent": "4.3.0",
  831. "System.Console": "4.3.0",
  832. "System.Diagnostics.Debug": "4.3.0",
  833. "System.Diagnostics.Tools": "4.3.0",
  834. "System.Diagnostics.Tracing": "4.3.0",
  835. "System.Globalization": "4.3.0",
  836. "System.Globalization.Calendars": "4.3.0",
  837. "System.IO": "4.3.0",
  838. "System.IO.Compression": "4.3.0",
  839. "System.IO.Compression.ZipFile": "4.3.0",
  840. "System.IO.FileSystem": "4.3.0",
  841. "System.IO.FileSystem.Primitives": "4.3.0",
  842. "System.Linq": "4.3.0",
  843. "System.Linq.Expressions": "4.3.0",
  844. "System.Net.Http": "4.3.0",
  845. "System.Net.Primitives": "4.3.0",
  846. "System.Net.Sockets": "4.3.0",
  847. "System.ObjectModel": "4.3.0",
  848. "System.Reflection": "4.3.0",
  849. "System.Reflection.Extensions": "4.3.0",
  850. "System.Reflection.Primitives": "4.3.0",
  851. "System.Resources.ResourceManager": "4.3.0",
  852. "System.Runtime": "4.3.0",
  853. "System.Runtime.Extensions": "4.3.0",
  854. "System.Runtime.Handles": "4.3.0",
  855. "System.Runtime.InteropServices": "4.3.0",
  856. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  857. "System.Runtime.Numerics": "4.3.0",
  858. "System.Security.Cryptography.Algorithms": "4.3.0",
  859. "System.Security.Cryptography.Encoding": "4.3.0",
  860. "System.Security.Cryptography.Primitives": "4.3.0",
  861. "System.Security.Cryptography.X509Certificates": "4.3.0",
  862. "System.Text.Encoding": "4.3.0",
  863. "System.Text.Encoding.Extensions": "4.3.0",
  864. "System.Text.RegularExpressions": "4.3.0",
  865. "System.Threading": "4.3.0",
  866. "System.Threading.Tasks": "4.3.0",
  867. "System.Threading.Timer": "4.3.0",
  868. "System.Xml.ReaderWriter": "4.3.0",
  869. "System.Xml.XDocument": "4.3.0"
  870. }
  871. },
  872. "Newtonsoft.Json/9.0.1": {
  873. "type": "package",
  874. "dependencies": {
  875. "Microsoft.CSharp": "4.0.1",
  876. "System.Collections": "4.0.11",
  877. "System.Diagnostics.Debug": "4.0.11",
  878. "System.Dynamic.Runtime": "4.0.11",
  879. "System.Globalization": "4.0.11",
  880. "System.IO": "4.1.0",
  881. "System.Linq": "4.1.0",
  882. "System.Linq.Expressions": "4.1.0",
  883. "System.ObjectModel": "4.0.12",
  884. "System.Reflection": "4.1.0",
  885. "System.Reflection.Extensions": "4.0.1",
  886. "System.Resources.ResourceManager": "4.0.1",
  887. "System.Runtime": "4.1.0",
  888. "System.Runtime.Extensions": "4.1.0",
  889. "System.Runtime.Serialization.Primitives": "4.1.1",
  890. "System.Text.Encoding": "4.0.11",
  891. "System.Text.Encoding.Extensions": "4.0.11",
  892. "System.Text.RegularExpressions": "4.1.0",
  893. "System.Threading": "4.0.11",
  894. "System.Threading.Tasks": "4.0.11",
  895. "System.Xml.ReaderWriter": "4.0.11",
  896. "System.Xml.XDocument": "4.0.11"
  897. },
  898. "compile": {
  899. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  900. },
  901. "runtime": {
  902. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  903. }
  904. },
  905. "NSubstitute/4.2.2": {
  906. "type": "package",
  907. "dependencies": {
  908. "Castle.Core": "4.4.0",
  909. "System.Threading.Tasks.Extensions": "4.3.0"
  910. },
  911. "compile": {
  912. "lib/netstandard2.0/NSubstitute.dll": {}
  913. },
  914. "runtime": {
  915. "lib/netstandard2.0/NSubstitute.dll": {}
  916. }
  917. },
  918. "NuGet.Frameworks/5.0.0": {
  919. "type": "package",
  920. "compile": {
  921. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  922. },
  923. "runtime": {
  924. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  925. }
  926. },
  927. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  928. "type": "package",
  929. "dependencies": {
  930. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  931. "MySqlConnector": "1.1.0"
  932. },
  933. "compile": {
  934. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  935. },
  936. "runtime": {
  937. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  938. }
  939. },
  940. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  941. "type": "package",
  942. "runtimeTargets": {
  943. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  944. "assetType": "native",
  945. "rid": "debian.8-x64"
  946. }
  947. }
  948. },
  949. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  950. "type": "package",
  951. "runtimeTargets": {
  952. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  953. "assetType": "native",
  954. "rid": "fedora.23-x64"
  955. }
  956. }
  957. },
  958. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  959. "type": "package",
  960. "runtimeTargets": {
  961. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  962. "assetType": "native",
  963. "rid": "fedora.24-x64"
  964. }
  965. }
  966. },
  967. "runtime.native.System/4.3.0": {
  968. "type": "package",
  969. "dependencies": {
  970. "Microsoft.NETCore.Platforms": "1.1.0",
  971. "Microsoft.NETCore.Targets": "1.1.0"
  972. },
  973. "compile": {
  974. "lib/netstandard1.0/_._": {}
  975. },
  976. "runtime": {
  977. "lib/netstandard1.0/_._": {}
  978. }
  979. },
  980. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  981. "type": "package",
  982. "dependencies": {
  983. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  984. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  985. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  986. }
  987. },
  988. "runtime.native.System.IO.Compression/4.3.0": {
  989. "type": "package",
  990. "dependencies": {
  991. "Microsoft.NETCore.Platforms": "1.1.0",
  992. "Microsoft.NETCore.Targets": "1.1.0"
  993. },
  994. "compile": {
  995. "lib/netstandard1.0/_._": {}
  996. },
  997. "runtime": {
  998. "lib/netstandard1.0/_._": {}
  999. }
  1000. },
  1001. "runtime.native.System.Net.Http/4.3.0": {
  1002. "type": "package",
  1003. "dependencies": {
  1004. "Microsoft.NETCore.Platforms": "1.1.0",
  1005. "Microsoft.NETCore.Targets": "1.1.0"
  1006. },
  1007. "compile": {
  1008. "lib/netstandard1.0/_._": {}
  1009. },
  1010. "runtime": {
  1011. "lib/netstandard1.0/_._": {}
  1012. }
  1013. },
  1014. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1015. "type": "package",
  1016. "dependencies": {
  1017. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1018. },
  1019. "compile": {
  1020. "lib/netstandard1.0/_._": {}
  1021. },
  1022. "runtime": {
  1023. "lib/netstandard1.0/_._": {}
  1024. }
  1025. },
  1026. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1027. "type": "package",
  1028. "dependencies": {
  1029. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1030. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1031. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1032. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1033. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1034. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1035. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1036. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1037. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1038. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1039. },
  1040. "compile": {
  1041. "lib/netstandard1.0/_._": {}
  1042. },
  1043. "runtime": {
  1044. "lib/netstandard1.0/_._": {}
  1045. }
  1046. },
  1047. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1048. "type": "package",
  1049. "runtimeTargets": {
  1050. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1051. "assetType": "native",
  1052. "rid": "opensuse.13.2-x64"
  1053. }
  1054. }
  1055. },
  1056. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1057. "type": "package",
  1058. "runtimeTargets": {
  1059. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1060. "assetType": "native",
  1061. "rid": "opensuse.42.1-x64"
  1062. }
  1063. }
  1064. },
  1065. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1066. "type": "package",
  1067. "runtimeTargets": {
  1068. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1069. "assetType": "native",
  1070. "rid": "osx.10.10-x64"
  1071. }
  1072. }
  1073. },
  1074. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1075. "type": "package",
  1076. "runtimeTargets": {
  1077. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1078. "assetType": "native",
  1079. "rid": "osx.10.10-x64"
  1080. }
  1081. }
  1082. },
  1083. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1084. "type": "package",
  1085. "runtimeTargets": {
  1086. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1087. "assetType": "native",
  1088. "rid": "rhel.7-x64"
  1089. }
  1090. }
  1091. },
  1092. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1093. "type": "package",
  1094. "runtimeTargets": {
  1095. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1096. "assetType": "native",
  1097. "rid": "ubuntu.14.04-x64"
  1098. }
  1099. }
  1100. },
  1101. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1102. "type": "package",
  1103. "runtimeTargets": {
  1104. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1105. "assetType": "native",
  1106. "rid": "ubuntu.16.04-x64"
  1107. }
  1108. }
  1109. },
  1110. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1111. "type": "package",
  1112. "runtimeTargets": {
  1113. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1114. "assetType": "native",
  1115. "rid": "ubuntu.16.10-x64"
  1116. }
  1117. }
  1118. },
  1119. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1120. "type": "package",
  1121. "runtimeTargets": {
  1122. "runtimes/win-arm64/native/sni.dll": {
  1123. "assetType": "native",
  1124. "rid": "win-arm64"
  1125. }
  1126. }
  1127. },
  1128. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1129. "type": "package",
  1130. "runtimeTargets": {
  1131. "runtimes/win-x64/native/sni.dll": {
  1132. "assetType": "native",
  1133. "rid": "win-x64"
  1134. }
  1135. }
  1136. },
  1137. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1138. "type": "package",
  1139. "runtimeTargets": {
  1140. "runtimes/win-x86/native/sni.dll": {
  1141. "assetType": "native",
  1142. "rid": "win-x86"
  1143. }
  1144. }
  1145. },
  1146. "SSH.NET/2016.1.0": {
  1147. "type": "package",
  1148. "dependencies": {
  1149. "Microsoft.CSharp": "4.0.1",
  1150. "SshNet.Security.Cryptography": "[1.2.0]",
  1151. "System.Diagnostics.Debug": "4.0.11",
  1152. "System.Diagnostics.Tools": "4.0.1",
  1153. "System.Diagnostics.TraceSource": "4.0.0",
  1154. "System.Globalization": "4.0.11",
  1155. "System.IO": "4.1.0",
  1156. "System.IO.FileSystem": "4.0.1",
  1157. "System.IO.FileSystem.Primitives": "4.0.1",
  1158. "System.Linq": "4.1.0",
  1159. "System.Net.NameResolution": "4.0.0",
  1160. "System.Net.Sockets": "4.1.0",
  1161. "System.Reflection.Extensions": "4.0.1",
  1162. "System.Runtime.Extensions": "4.1.0",
  1163. "System.Security.Cryptography.Algorithms": "4.2.0",
  1164. "System.Text.RegularExpressions": "4.1.0",
  1165. "System.Threading": "4.0.11",
  1166. "System.Threading.Thread": "4.0.0",
  1167. "System.Threading.ThreadPool": "4.0.10",
  1168. "System.Threading.Timer": "4.0.1",
  1169. "System.Xml.XPath.XmlDocument": "4.0.1",
  1170. "System.Xml.XmlDocument": "4.0.1"
  1171. },
  1172. "compile": {
  1173. "lib/netstandard1.3/Renci.SshNet.dll": {}
  1174. },
  1175. "runtime": {
  1176. "lib/netstandard1.3/Renci.SshNet.dll": {}
  1177. }
  1178. },
  1179. "SshNet.Security.Cryptography/1.2.0": {
  1180. "type": "package",
  1181. "dependencies": {
  1182. "System.IO": "4.1.0",
  1183. "System.Security.Cryptography.Primitives": "4.0.0"
  1184. },
  1185. "compile": {
  1186. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  1187. },
  1188. "runtime": {
  1189. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  1190. }
  1191. },
  1192. "System.AppContext/4.3.0": {
  1193. "type": "package",
  1194. "dependencies": {
  1195. "System.Runtime": "4.3.0"
  1196. },
  1197. "compile": {
  1198. "ref/netstandard1.6/System.AppContext.dll": {}
  1199. },
  1200. "runtime": {
  1201. "lib/netstandard1.6/System.AppContext.dll": {}
  1202. }
  1203. },
  1204. "System.Buffers/4.5.1": {
  1205. "type": "package",
  1206. "compile": {
  1207. "ref/netcoreapp2.0/_._": {}
  1208. },
  1209. "runtime": {
  1210. "lib/netcoreapp2.0/_._": {}
  1211. }
  1212. },
  1213. "System.Collections/4.3.0": {
  1214. "type": "package",
  1215. "dependencies": {
  1216. "Microsoft.NETCore.Platforms": "1.1.0",
  1217. "Microsoft.NETCore.Targets": "1.1.0",
  1218. "System.Runtime": "4.3.0"
  1219. },
  1220. "compile": {
  1221. "ref/netstandard1.3/System.Collections.dll": {}
  1222. }
  1223. },
  1224. "System.Collections.Concurrent/4.3.0": {
  1225. "type": "package",
  1226. "dependencies": {
  1227. "System.Collections": "4.3.0",
  1228. "System.Diagnostics.Debug": "4.3.0",
  1229. "System.Diagnostics.Tracing": "4.3.0",
  1230. "System.Globalization": "4.3.0",
  1231. "System.Reflection": "4.3.0",
  1232. "System.Resources.ResourceManager": "4.3.0",
  1233. "System.Runtime": "4.3.0",
  1234. "System.Runtime.Extensions": "4.3.0",
  1235. "System.Threading": "4.3.0",
  1236. "System.Threading.Tasks": "4.3.0"
  1237. },
  1238. "compile": {
  1239. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1240. },
  1241. "runtime": {
  1242. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1243. }
  1244. },
  1245. "System.Collections.Immutable/5.0.0": {
  1246. "type": "package",
  1247. "compile": {
  1248. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1249. },
  1250. "runtime": {
  1251. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1252. }
  1253. },
  1254. "System.Collections.NonGeneric/4.3.0": {
  1255. "type": "package",
  1256. "dependencies": {
  1257. "System.Diagnostics.Debug": "4.3.0",
  1258. "System.Globalization": "4.3.0",
  1259. "System.Resources.ResourceManager": "4.3.0",
  1260. "System.Runtime": "4.3.0",
  1261. "System.Runtime.Extensions": "4.3.0",
  1262. "System.Threading": "4.3.0"
  1263. },
  1264. "compile": {
  1265. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1266. },
  1267. "runtime": {
  1268. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1269. }
  1270. },
  1271. "System.Collections.Specialized/4.3.0": {
  1272. "type": "package",
  1273. "dependencies": {
  1274. "System.Collections.NonGeneric": "4.3.0",
  1275. "System.Globalization": "4.3.0",
  1276. "System.Globalization.Extensions": "4.3.0",
  1277. "System.Resources.ResourceManager": "4.3.0",
  1278. "System.Runtime": "4.3.0",
  1279. "System.Runtime.Extensions": "4.3.0",
  1280. "System.Threading": "4.3.0"
  1281. },
  1282. "compile": {
  1283. "ref/netstandard1.3/System.Collections.Specialized.dll": {}
  1284. },
  1285. "runtime": {
  1286. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1287. }
  1288. },
  1289. "System.ComponentModel/4.3.0": {
  1290. "type": "package",
  1291. "dependencies": {
  1292. "System.Runtime": "4.3.0"
  1293. },
  1294. "compile": {
  1295. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1296. },
  1297. "runtime": {
  1298. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1299. }
  1300. },
  1301. "System.ComponentModel.Annotations/5.0.0": {
  1302. "type": "package",
  1303. "compile": {
  1304. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1305. },
  1306. "runtime": {
  1307. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1308. }
  1309. },
  1310. "System.ComponentModel.Primitives/4.3.0": {
  1311. "type": "package",
  1312. "dependencies": {
  1313. "System.ComponentModel": "4.3.0",
  1314. "System.Resources.ResourceManager": "4.3.0",
  1315. "System.Runtime": "4.3.0"
  1316. },
  1317. "compile": {
  1318. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1319. },
  1320. "runtime": {
  1321. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1322. }
  1323. },
  1324. "System.ComponentModel.TypeConverter/4.3.0": {
  1325. "type": "package",
  1326. "dependencies": {
  1327. "System.Collections": "4.3.0",
  1328. "System.Collections.NonGeneric": "4.3.0",
  1329. "System.Collections.Specialized": "4.3.0",
  1330. "System.ComponentModel": "4.3.0",
  1331. "System.ComponentModel.Primitives": "4.3.0",
  1332. "System.Globalization": "4.3.0",
  1333. "System.Linq": "4.3.0",
  1334. "System.Reflection": "4.3.0",
  1335. "System.Reflection.Extensions": "4.3.0",
  1336. "System.Reflection.Primitives": "4.3.0",
  1337. "System.Reflection.TypeExtensions": "4.3.0",
  1338. "System.Resources.ResourceManager": "4.3.0",
  1339. "System.Runtime": "4.3.0",
  1340. "System.Runtime.Extensions": "4.3.0",
  1341. "System.Threading": "4.3.0"
  1342. },
  1343. "compile": {
  1344. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1345. },
  1346. "runtime": {
  1347. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1348. }
  1349. },
  1350. "System.Configuration.ConfigurationManager/4.4.1": {
  1351. "type": "package",
  1352. "dependencies": {
  1353. "System.Security.Cryptography.ProtectedData": "4.4.0"
  1354. },
  1355. "compile": {
  1356. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1357. },
  1358. "runtime": {
  1359. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1360. }
  1361. },
  1362. "System.Console/4.3.0": {
  1363. "type": "package",
  1364. "dependencies": {
  1365. "Microsoft.NETCore.Platforms": "1.1.0",
  1366. "Microsoft.NETCore.Targets": "1.1.0",
  1367. "System.IO": "4.3.0",
  1368. "System.Runtime": "4.3.0",
  1369. "System.Text.Encoding": "4.3.0"
  1370. },
  1371. "compile": {
  1372. "ref/netstandard1.3/System.Console.dll": {}
  1373. }
  1374. },
  1375. "System.Data.SqlClient/4.8.3": {
  1376. "type": "package",
  1377. "dependencies": {
  1378. "Microsoft.Win32.Registry": "4.7.0",
  1379. "System.Security.Principal.Windows": "4.7.0",
  1380. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  1381. },
  1382. "compile": {
  1383. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
  1384. },
  1385. "runtime": {
  1386. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
  1387. },
  1388. "runtimeTargets": {
  1389. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1390. "assetType": "runtime",
  1391. "rid": "unix"
  1392. },
  1393. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1394. "assetType": "runtime",
  1395. "rid": "win"
  1396. }
  1397. }
  1398. },
  1399. "System.Diagnostics.Debug/4.3.0": {
  1400. "type": "package",
  1401. "dependencies": {
  1402. "Microsoft.NETCore.Platforms": "1.1.0",
  1403. "Microsoft.NETCore.Targets": "1.1.0",
  1404. "System.Runtime": "4.3.0"
  1405. },
  1406. "compile": {
  1407. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1408. }
  1409. },
  1410. "System.Diagnostics.DiagnosticSource/5.0.1": {
  1411. "type": "package",
  1412. "compile": {
  1413. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1414. },
  1415. "runtime": {
  1416. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1417. }
  1418. },
  1419. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1420. "type": "package",
  1421. "dependencies": {
  1422. "System.Diagnostics.TraceSource": "4.3.0",
  1423. "System.Globalization": "4.3.0",
  1424. "System.IO": "4.3.0",
  1425. "System.Resources.ResourceManager": "4.3.0",
  1426. "System.Runtime": "4.3.0",
  1427. "System.Threading": "4.3.0"
  1428. },
  1429. "compile": {
  1430. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1431. },
  1432. "runtime": {
  1433. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1434. }
  1435. },
  1436. "System.Diagnostics.Tools/4.3.0": {
  1437. "type": "package",
  1438. "dependencies": {
  1439. "Microsoft.NETCore.Platforms": "1.1.0",
  1440. "Microsoft.NETCore.Targets": "1.1.0",
  1441. "System.Runtime": "4.3.0"
  1442. },
  1443. "compile": {
  1444. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1445. }
  1446. },
  1447. "System.Diagnostics.TraceSource/4.3.0": {
  1448. "type": "package",
  1449. "dependencies": {
  1450. "Microsoft.NETCore.Platforms": "1.1.0",
  1451. "System.Collections": "4.3.0",
  1452. "System.Diagnostics.Debug": "4.3.0",
  1453. "System.Globalization": "4.3.0",
  1454. "System.Resources.ResourceManager": "4.3.0",
  1455. "System.Runtime": "4.3.0",
  1456. "System.Runtime.Extensions": "4.3.0",
  1457. "System.Threading": "4.3.0",
  1458. "runtime.native.System": "4.3.0"
  1459. },
  1460. "compile": {
  1461. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1462. },
  1463. "runtimeTargets": {
  1464. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1465. "assetType": "runtime",
  1466. "rid": "unix"
  1467. },
  1468. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1469. "assetType": "runtime",
  1470. "rid": "win"
  1471. }
  1472. }
  1473. },
  1474. "System.Diagnostics.Tracing/4.3.0": {
  1475. "type": "package",
  1476. "dependencies": {
  1477. "Microsoft.NETCore.Platforms": "1.1.0",
  1478. "Microsoft.NETCore.Targets": "1.1.0",
  1479. "System.Runtime": "4.3.0"
  1480. },
  1481. "compile": {
  1482. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1483. }
  1484. },
  1485. "System.Drawing.Common/4.7.0": {
  1486. "type": "package",
  1487. "dependencies": {
  1488. "Microsoft.NETCore.Platforms": "3.1.0",
  1489. "Microsoft.Win32.SystemEvents": "4.7.0"
  1490. },
  1491. "compile": {
  1492. "ref/netcoreapp3.0/_._": {}
  1493. },
  1494. "runtime": {
  1495. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1496. },
  1497. "runtimeTargets": {
  1498. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1499. "assetType": "runtime",
  1500. "rid": "unix"
  1501. },
  1502. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1503. "assetType": "runtime",
  1504. "rid": "win"
  1505. }
  1506. }
  1507. },
  1508. "System.Dynamic.Runtime/4.3.0": {
  1509. "type": "package",
  1510. "dependencies": {
  1511. "System.Collections": "4.3.0",
  1512. "System.Diagnostics.Debug": "4.3.0",
  1513. "System.Linq": "4.3.0",
  1514. "System.Linq.Expressions": "4.3.0",
  1515. "System.ObjectModel": "4.3.0",
  1516. "System.Reflection": "4.3.0",
  1517. "System.Reflection.Emit": "4.3.0",
  1518. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1519. "System.Reflection.Primitives": "4.3.0",
  1520. "System.Reflection.TypeExtensions": "4.3.0",
  1521. "System.Resources.ResourceManager": "4.3.0",
  1522. "System.Runtime": "4.3.0",
  1523. "System.Runtime.Extensions": "4.3.0",
  1524. "System.Threading": "4.3.0"
  1525. },
  1526. "compile": {
  1527. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1528. },
  1529. "runtime": {
  1530. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1531. }
  1532. },
  1533. "System.Globalization/4.3.0": {
  1534. "type": "package",
  1535. "dependencies": {
  1536. "Microsoft.NETCore.Platforms": "1.1.0",
  1537. "Microsoft.NETCore.Targets": "1.1.0",
  1538. "System.Runtime": "4.3.0"
  1539. },
  1540. "compile": {
  1541. "ref/netstandard1.3/System.Globalization.dll": {}
  1542. }
  1543. },
  1544. "System.Globalization.Calendars/4.3.0": {
  1545. "type": "package",
  1546. "dependencies": {
  1547. "Microsoft.NETCore.Platforms": "1.1.0",
  1548. "Microsoft.NETCore.Targets": "1.1.0",
  1549. "System.Globalization": "4.3.0",
  1550. "System.Runtime": "4.3.0"
  1551. },
  1552. "compile": {
  1553. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1554. }
  1555. },
  1556. "System.Globalization.Extensions/4.3.0": {
  1557. "type": "package",
  1558. "dependencies": {
  1559. "Microsoft.NETCore.Platforms": "1.1.0",
  1560. "System.Globalization": "4.3.0",
  1561. "System.Resources.ResourceManager": "4.3.0",
  1562. "System.Runtime": "4.3.0",
  1563. "System.Runtime.Extensions": "4.3.0",
  1564. "System.Runtime.InteropServices": "4.3.0"
  1565. },
  1566. "compile": {
  1567. "ref/netstandard1.3/_._": {}
  1568. },
  1569. "runtimeTargets": {
  1570. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1571. "assetType": "runtime",
  1572. "rid": "unix"
  1573. },
  1574. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1575. "assetType": "runtime",
  1576. "rid": "win"
  1577. }
  1578. }
  1579. },
  1580. "System.IO/4.3.0": {
  1581. "type": "package",
  1582. "dependencies": {
  1583. "Microsoft.NETCore.Platforms": "1.1.0",
  1584. "Microsoft.NETCore.Targets": "1.1.0",
  1585. "System.Runtime": "4.3.0",
  1586. "System.Text.Encoding": "4.3.0",
  1587. "System.Threading.Tasks": "4.3.0"
  1588. },
  1589. "compile": {
  1590. "ref/netstandard1.5/System.IO.dll": {}
  1591. }
  1592. },
  1593. "System.IO.Compression/4.3.0": {
  1594. "type": "package",
  1595. "dependencies": {
  1596. "Microsoft.NETCore.Platforms": "1.1.0",
  1597. "System.Buffers": "4.3.0",
  1598. "System.Collections": "4.3.0",
  1599. "System.Diagnostics.Debug": "4.3.0",
  1600. "System.IO": "4.3.0",
  1601. "System.Resources.ResourceManager": "4.3.0",
  1602. "System.Runtime": "4.3.0",
  1603. "System.Runtime.Extensions": "4.3.0",
  1604. "System.Runtime.Handles": "4.3.0",
  1605. "System.Runtime.InteropServices": "4.3.0",
  1606. "System.Text.Encoding": "4.3.0",
  1607. "System.Threading": "4.3.0",
  1608. "System.Threading.Tasks": "4.3.0",
  1609. "runtime.native.System": "4.3.0",
  1610. "runtime.native.System.IO.Compression": "4.3.0"
  1611. },
  1612. "compile": {
  1613. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1614. },
  1615. "runtimeTargets": {
  1616. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1617. "assetType": "runtime",
  1618. "rid": "unix"
  1619. },
  1620. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1621. "assetType": "runtime",
  1622. "rid": "win"
  1623. }
  1624. }
  1625. },
  1626. "System.IO.Compression.ZipFile/4.3.0": {
  1627. "type": "package",
  1628. "dependencies": {
  1629. "System.Buffers": "4.3.0",
  1630. "System.IO": "4.3.0",
  1631. "System.IO.Compression": "4.3.0",
  1632. "System.IO.FileSystem": "4.3.0",
  1633. "System.IO.FileSystem.Primitives": "4.3.0",
  1634. "System.Resources.ResourceManager": "4.3.0",
  1635. "System.Runtime": "4.3.0",
  1636. "System.Runtime.Extensions": "4.3.0",
  1637. "System.Text.Encoding": "4.3.0"
  1638. },
  1639. "compile": {
  1640. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1641. },
  1642. "runtime": {
  1643. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1644. }
  1645. },
  1646. "System.IO.FileSystem/4.3.0": {
  1647. "type": "package",
  1648. "dependencies": {
  1649. "Microsoft.NETCore.Platforms": "1.1.0",
  1650. "Microsoft.NETCore.Targets": "1.1.0",
  1651. "System.IO": "4.3.0",
  1652. "System.IO.FileSystem.Primitives": "4.3.0",
  1653. "System.Runtime": "4.3.0",
  1654. "System.Runtime.Handles": "4.3.0",
  1655. "System.Text.Encoding": "4.3.0",
  1656. "System.Threading.Tasks": "4.3.0"
  1657. },
  1658. "compile": {
  1659. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1660. }
  1661. },
  1662. "System.IO.FileSystem.Primitives/4.3.0": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "System.Runtime": "4.3.0"
  1666. },
  1667. "compile": {
  1668. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1669. },
  1670. "runtime": {
  1671. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1672. }
  1673. },
  1674. "System.Linq/4.3.0": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "System.Collections": "4.3.0",
  1678. "System.Diagnostics.Debug": "4.3.0",
  1679. "System.Resources.ResourceManager": "4.3.0",
  1680. "System.Runtime": "4.3.0",
  1681. "System.Runtime.Extensions": "4.3.0"
  1682. },
  1683. "compile": {
  1684. "ref/netstandard1.6/System.Linq.dll": {}
  1685. },
  1686. "runtime": {
  1687. "lib/netstandard1.6/System.Linq.dll": {}
  1688. }
  1689. },
  1690. "System.Linq.Expressions/4.3.0": {
  1691. "type": "package",
  1692. "dependencies": {
  1693. "System.Collections": "4.3.0",
  1694. "System.Diagnostics.Debug": "4.3.0",
  1695. "System.Globalization": "4.3.0",
  1696. "System.IO": "4.3.0",
  1697. "System.Linq": "4.3.0",
  1698. "System.ObjectModel": "4.3.0",
  1699. "System.Reflection": "4.3.0",
  1700. "System.Reflection.Emit": "4.3.0",
  1701. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1702. "System.Reflection.Emit.Lightweight": "4.3.0",
  1703. "System.Reflection.Extensions": "4.3.0",
  1704. "System.Reflection.Primitives": "4.3.0",
  1705. "System.Reflection.TypeExtensions": "4.3.0",
  1706. "System.Resources.ResourceManager": "4.3.0",
  1707. "System.Runtime": "4.3.0",
  1708. "System.Runtime.Extensions": "4.3.0",
  1709. "System.Threading": "4.3.0"
  1710. },
  1711. "compile": {
  1712. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1713. },
  1714. "runtime": {
  1715. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1716. }
  1717. },
  1718. "System.Memory/4.5.3": {
  1719. "type": "package",
  1720. "compile": {
  1721. "ref/netcoreapp2.1/_._": {}
  1722. },
  1723. "runtime": {
  1724. "lib/netcoreapp2.1/_._": {}
  1725. }
  1726. },
  1727. "System.Net.Http/4.3.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "Microsoft.NETCore.Platforms": "1.1.0",
  1731. "System.Collections": "4.3.0",
  1732. "System.Diagnostics.Debug": "4.3.0",
  1733. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1734. "System.Diagnostics.Tracing": "4.3.0",
  1735. "System.Globalization": "4.3.0",
  1736. "System.Globalization.Extensions": "4.3.0",
  1737. "System.IO": "4.3.0",
  1738. "System.IO.FileSystem": "4.3.0",
  1739. "System.Net.Primitives": "4.3.0",
  1740. "System.Resources.ResourceManager": "4.3.0",
  1741. "System.Runtime": "4.3.0",
  1742. "System.Runtime.Extensions": "4.3.0",
  1743. "System.Runtime.Handles": "4.3.0",
  1744. "System.Runtime.InteropServices": "4.3.0",
  1745. "System.Security.Cryptography.Algorithms": "4.3.0",
  1746. "System.Security.Cryptography.Encoding": "4.3.0",
  1747. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1748. "System.Security.Cryptography.Primitives": "4.3.0",
  1749. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1750. "System.Text.Encoding": "4.3.0",
  1751. "System.Threading": "4.3.0",
  1752. "System.Threading.Tasks": "4.3.0",
  1753. "runtime.native.System": "4.3.0",
  1754. "runtime.native.System.Net.Http": "4.3.0",
  1755. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1756. },
  1757. "compile": {
  1758. "ref/netstandard1.3/System.Net.Http.dll": {}
  1759. },
  1760. "runtimeTargets": {
  1761. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1762. "assetType": "runtime",
  1763. "rid": "unix"
  1764. },
  1765. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1766. "assetType": "runtime",
  1767. "rid": "win"
  1768. }
  1769. }
  1770. },
  1771. "System.Net.NameResolution/4.0.0": {
  1772. "type": "package",
  1773. "dependencies": {
  1774. "Microsoft.NETCore.Platforms": "1.0.1",
  1775. "System.Collections": "4.0.11",
  1776. "System.Diagnostics.Tracing": "4.1.0",
  1777. "System.Globalization": "4.0.11",
  1778. "System.Net.Primitives": "4.0.11",
  1779. "System.Resources.ResourceManager": "4.0.1",
  1780. "System.Runtime": "4.1.0",
  1781. "System.Runtime.Extensions": "4.1.0",
  1782. "System.Runtime.Handles": "4.0.1",
  1783. "System.Runtime.InteropServices": "4.1.0",
  1784. "System.Security.Principal.Windows": "4.0.0",
  1785. "System.Threading": "4.0.11",
  1786. "System.Threading.Tasks": "4.0.11",
  1787. "runtime.native.System": "4.0.0"
  1788. },
  1789. "compile": {
  1790. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1791. },
  1792. "runtimeTargets": {
  1793. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1794. "assetType": "runtime",
  1795. "rid": "unix"
  1796. },
  1797. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1798. "assetType": "runtime",
  1799. "rid": "win"
  1800. }
  1801. }
  1802. },
  1803. "System.Net.Primitives/4.3.0": {
  1804. "type": "package",
  1805. "dependencies": {
  1806. "Microsoft.NETCore.Platforms": "1.1.0",
  1807. "Microsoft.NETCore.Targets": "1.1.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Runtime.Handles": "4.3.0"
  1810. },
  1811. "compile": {
  1812. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1813. }
  1814. },
  1815. "System.Net.Sockets/4.3.0": {
  1816. "type": "package",
  1817. "dependencies": {
  1818. "Microsoft.NETCore.Platforms": "1.1.0",
  1819. "Microsoft.NETCore.Targets": "1.1.0",
  1820. "System.IO": "4.3.0",
  1821. "System.Net.Primitives": "4.3.0",
  1822. "System.Runtime": "4.3.0",
  1823. "System.Threading.Tasks": "4.3.0"
  1824. },
  1825. "compile": {
  1826. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1827. }
  1828. },
  1829. "System.ObjectModel/4.3.0": {
  1830. "type": "package",
  1831. "dependencies": {
  1832. "System.Collections": "4.3.0",
  1833. "System.Diagnostics.Debug": "4.3.0",
  1834. "System.Resources.ResourceManager": "4.3.0",
  1835. "System.Runtime": "4.3.0",
  1836. "System.Threading": "4.3.0"
  1837. },
  1838. "compile": {
  1839. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1840. },
  1841. "runtime": {
  1842. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1843. }
  1844. },
  1845. "System.Reflection/4.3.0": {
  1846. "type": "package",
  1847. "dependencies": {
  1848. "Microsoft.NETCore.Platforms": "1.1.0",
  1849. "Microsoft.NETCore.Targets": "1.1.0",
  1850. "System.IO": "4.3.0",
  1851. "System.Reflection.Primitives": "4.3.0",
  1852. "System.Runtime": "4.3.0"
  1853. },
  1854. "compile": {
  1855. "ref/netstandard1.5/System.Reflection.dll": {}
  1856. }
  1857. },
  1858. "System.Reflection.Emit/4.7.0": {
  1859. "type": "package",
  1860. "compile": {
  1861. "ref/netcoreapp2.0/_._": {}
  1862. },
  1863. "runtime": {
  1864. "lib/netcoreapp2.0/_._": {}
  1865. }
  1866. },
  1867. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "System.Reflection": "4.3.0",
  1871. "System.Reflection.Primitives": "4.3.0",
  1872. "System.Runtime": "4.3.0"
  1873. },
  1874. "compile": {
  1875. "ref/netstandard1.0/_._": {}
  1876. },
  1877. "runtime": {
  1878. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1879. }
  1880. },
  1881. "System.Reflection.Emit.Lightweight/4.3.0": {
  1882. "type": "package",
  1883. "dependencies": {
  1884. "System.Reflection": "4.3.0",
  1885. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1886. "System.Reflection.Primitives": "4.3.0",
  1887. "System.Runtime": "4.3.0"
  1888. },
  1889. "compile": {
  1890. "ref/netstandard1.0/_._": {}
  1891. },
  1892. "runtime": {
  1893. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1894. }
  1895. },
  1896. "System.Reflection.Extensions/4.3.0": {
  1897. "type": "package",
  1898. "dependencies": {
  1899. "Microsoft.NETCore.Platforms": "1.1.0",
  1900. "Microsoft.NETCore.Targets": "1.1.0",
  1901. "System.Reflection": "4.3.0",
  1902. "System.Runtime": "4.3.0"
  1903. },
  1904. "compile": {
  1905. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1906. }
  1907. },
  1908. "System.Reflection.Metadata/1.6.0": {
  1909. "type": "package",
  1910. "compile": {
  1911. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1912. },
  1913. "runtime": {
  1914. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1915. }
  1916. },
  1917. "System.Reflection.Primitives/4.3.0": {
  1918. "type": "package",
  1919. "dependencies": {
  1920. "Microsoft.NETCore.Platforms": "1.1.0",
  1921. "Microsoft.NETCore.Targets": "1.1.0",
  1922. "System.Runtime": "4.3.0"
  1923. },
  1924. "compile": {
  1925. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1926. }
  1927. },
  1928. "System.Reflection.TypeExtensions/4.3.0": {
  1929. "type": "package",
  1930. "dependencies": {
  1931. "System.Reflection": "4.3.0",
  1932. "System.Runtime": "4.3.0"
  1933. },
  1934. "compile": {
  1935. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1936. },
  1937. "runtime": {
  1938. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1939. }
  1940. },
  1941. "System.Resources.ResourceManager/4.3.0": {
  1942. "type": "package",
  1943. "dependencies": {
  1944. "Microsoft.NETCore.Platforms": "1.1.0",
  1945. "Microsoft.NETCore.Targets": "1.1.0",
  1946. "System.Globalization": "4.3.0",
  1947. "System.Reflection": "4.3.0",
  1948. "System.Runtime": "4.3.0"
  1949. },
  1950. "compile": {
  1951. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1952. }
  1953. },
  1954. "System.Runtime/4.3.0": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "Microsoft.NETCore.Platforms": "1.1.0",
  1958. "Microsoft.NETCore.Targets": "1.1.0"
  1959. },
  1960. "compile": {
  1961. "ref/netstandard1.5/System.Runtime.dll": {}
  1962. }
  1963. },
  1964. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1965. "type": "package",
  1966. "compile": {
  1967. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1968. },
  1969. "runtime": {
  1970. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
  1971. },
  1972. "build": {
  1973. "buildTransitive/netcoreapp3.1/_._": {}
  1974. }
  1975. },
  1976. "System.Runtime.Extensions/4.3.0": {
  1977. "type": "package",
  1978. "dependencies": {
  1979. "Microsoft.NETCore.Platforms": "1.1.0",
  1980. "Microsoft.NETCore.Targets": "1.1.0",
  1981. "System.Runtime": "4.3.0"
  1982. },
  1983. "compile": {
  1984. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1985. }
  1986. },
  1987. "System.Runtime.Handles/4.3.0": {
  1988. "type": "package",
  1989. "dependencies": {
  1990. "Microsoft.NETCore.Platforms": "1.1.0",
  1991. "Microsoft.NETCore.Targets": "1.1.0",
  1992. "System.Runtime": "4.3.0"
  1993. },
  1994. "compile": {
  1995. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1996. }
  1997. },
  1998. "System.Runtime.InteropServices/4.3.0": {
  1999. "type": "package",
  2000. "dependencies": {
  2001. "Microsoft.NETCore.Platforms": "1.1.0",
  2002. "Microsoft.NETCore.Targets": "1.1.0",
  2003. "System.Reflection": "4.3.0",
  2004. "System.Reflection.Primitives": "4.3.0",
  2005. "System.Runtime": "4.3.0",
  2006. "System.Runtime.Handles": "4.3.0"
  2007. },
  2008. "compile": {
  2009. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2010. }
  2011. },
  2012. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2013. "type": "package",
  2014. "dependencies": {
  2015. "System.Reflection": "4.3.0",
  2016. "System.Reflection.Extensions": "4.3.0",
  2017. "System.Resources.ResourceManager": "4.3.0",
  2018. "System.Runtime": "4.3.0",
  2019. "System.Runtime.InteropServices": "4.3.0",
  2020. "System.Threading": "4.3.0",
  2021. "runtime.native.System": "4.3.0"
  2022. },
  2023. "compile": {
  2024. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2025. },
  2026. "runtime": {
  2027. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2028. },
  2029. "runtimeTargets": {
  2030. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2031. "assetType": "runtime",
  2032. "rid": "unix"
  2033. },
  2034. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2035. "assetType": "runtime",
  2036. "rid": "win"
  2037. }
  2038. }
  2039. },
  2040. "System.Runtime.Numerics/4.3.0": {
  2041. "type": "package",
  2042. "dependencies": {
  2043. "System.Globalization": "4.3.0",
  2044. "System.Resources.ResourceManager": "4.3.0",
  2045. "System.Runtime": "4.3.0",
  2046. "System.Runtime.Extensions": "4.3.0"
  2047. },
  2048. "compile": {
  2049. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2050. },
  2051. "runtime": {
  2052. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2053. }
  2054. },
  2055. "System.Runtime.Serialization.Primitives/4.1.1": {
  2056. "type": "package",
  2057. "dependencies": {
  2058. "System.Resources.ResourceManager": "4.0.1",
  2059. "System.Runtime": "4.1.0"
  2060. },
  2061. "compile": {
  2062. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2063. },
  2064. "runtime": {
  2065. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2066. }
  2067. },
  2068. "System.Security.AccessControl/4.7.0": {
  2069. "type": "package",
  2070. "dependencies": {
  2071. "Microsoft.NETCore.Platforms": "3.1.0",
  2072. "System.Security.Principal.Windows": "4.7.0"
  2073. },
  2074. "compile": {
  2075. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2076. },
  2077. "runtime": {
  2078. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2079. },
  2080. "runtimeTargets": {
  2081. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2082. "assetType": "runtime",
  2083. "rid": "win"
  2084. }
  2085. }
  2086. },
  2087. "System.Security.Cryptography.Algorithms/4.3.0": {
  2088. "type": "package",
  2089. "dependencies": {
  2090. "Microsoft.NETCore.Platforms": "1.1.0",
  2091. "System.Collections": "4.3.0",
  2092. "System.IO": "4.3.0",
  2093. "System.Resources.ResourceManager": "4.3.0",
  2094. "System.Runtime": "4.3.0",
  2095. "System.Runtime.Extensions": "4.3.0",
  2096. "System.Runtime.Handles": "4.3.0",
  2097. "System.Runtime.InteropServices": "4.3.0",
  2098. "System.Runtime.Numerics": "4.3.0",
  2099. "System.Security.Cryptography.Encoding": "4.3.0",
  2100. "System.Security.Cryptography.Primitives": "4.3.0",
  2101. "System.Text.Encoding": "4.3.0",
  2102. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2103. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2104. },
  2105. "compile": {
  2106. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2107. },
  2108. "runtimeTargets": {
  2109. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2110. "assetType": "runtime",
  2111. "rid": "osx"
  2112. },
  2113. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2114. "assetType": "runtime",
  2115. "rid": "unix"
  2116. },
  2117. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2118. "assetType": "runtime",
  2119. "rid": "win"
  2120. }
  2121. }
  2122. },
  2123. "System.Security.Cryptography.Cng/4.3.0": {
  2124. "type": "package",
  2125. "dependencies": {
  2126. "Microsoft.NETCore.Platforms": "1.1.0",
  2127. "System.IO": "4.3.0",
  2128. "System.Resources.ResourceManager": "4.3.0",
  2129. "System.Runtime": "4.3.0",
  2130. "System.Runtime.Extensions": "4.3.0",
  2131. "System.Runtime.Handles": "4.3.0",
  2132. "System.Runtime.InteropServices": "4.3.0",
  2133. "System.Security.Cryptography.Algorithms": "4.3.0",
  2134. "System.Security.Cryptography.Encoding": "4.3.0",
  2135. "System.Security.Cryptography.Primitives": "4.3.0",
  2136. "System.Text.Encoding": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.6/_._": {}
  2140. },
  2141. "runtimeTargets": {
  2142. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2143. "assetType": "runtime",
  2144. "rid": "unix"
  2145. },
  2146. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2147. "assetType": "runtime",
  2148. "rid": "win"
  2149. }
  2150. }
  2151. },
  2152. "System.Security.Cryptography.Csp/4.3.0": {
  2153. "type": "package",
  2154. "dependencies": {
  2155. "Microsoft.NETCore.Platforms": "1.1.0",
  2156. "System.IO": "4.3.0",
  2157. "System.Reflection": "4.3.0",
  2158. "System.Resources.ResourceManager": "4.3.0",
  2159. "System.Runtime": "4.3.0",
  2160. "System.Runtime.Extensions": "4.3.0",
  2161. "System.Runtime.Handles": "4.3.0",
  2162. "System.Runtime.InteropServices": "4.3.0",
  2163. "System.Security.Cryptography.Algorithms": "4.3.0",
  2164. "System.Security.Cryptography.Encoding": "4.3.0",
  2165. "System.Security.Cryptography.Primitives": "4.3.0",
  2166. "System.Text.Encoding": "4.3.0",
  2167. "System.Threading": "4.3.0"
  2168. },
  2169. "compile": {
  2170. "ref/netstandard1.3/_._": {}
  2171. },
  2172. "runtimeTargets": {
  2173. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2174. "assetType": "runtime",
  2175. "rid": "unix"
  2176. },
  2177. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2178. "assetType": "runtime",
  2179. "rid": "win"
  2180. }
  2181. }
  2182. },
  2183. "System.Security.Cryptography.Encoding/4.3.0": {
  2184. "type": "package",
  2185. "dependencies": {
  2186. "Microsoft.NETCore.Platforms": "1.1.0",
  2187. "System.Collections": "4.3.0",
  2188. "System.Collections.Concurrent": "4.3.0",
  2189. "System.Linq": "4.3.0",
  2190. "System.Resources.ResourceManager": "4.3.0",
  2191. "System.Runtime": "4.3.0",
  2192. "System.Runtime.Extensions": "4.3.0",
  2193. "System.Runtime.Handles": "4.3.0",
  2194. "System.Runtime.InteropServices": "4.3.0",
  2195. "System.Security.Cryptography.Primitives": "4.3.0",
  2196. "System.Text.Encoding": "4.3.0",
  2197. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2198. },
  2199. "compile": {
  2200. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2201. },
  2202. "runtimeTargets": {
  2203. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2204. "assetType": "runtime",
  2205. "rid": "unix"
  2206. },
  2207. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2208. "assetType": "runtime",
  2209. "rid": "win"
  2210. }
  2211. }
  2212. },
  2213. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2214. "type": "package",
  2215. "dependencies": {
  2216. "System.Collections": "4.3.0",
  2217. "System.IO": "4.3.0",
  2218. "System.Resources.ResourceManager": "4.3.0",
  2219. "System.Runtime": "4.3.0",
  2220. "System.Runtime.Extensions": "4.3.0",
  2221. "System.Runtime.Handles": "4.3.0",
  2222. "System.Runtime.InteropServices": "4.3.0",
  2223. "System.Runtime.Numerics": "4.3.0",
  2224. "System.Security.Cryptography.Algorithms": "4.3.0",
  2225. "System.Security.Cryptography.Encoding": "4.3.0",
  2226. "System.Security.Cryptography.Primitives": "4.3.0",
  2227. "System.Text.Encoding": "4.3.0",
  2228. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.6/_._": {}
  2232. },
  2233. "runtime": {
  2234. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2235. },
  2236. "runtimeTargets": {
  2237. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2238. "assetType": "runtime",
  2239. "rid": "unix"
  2240. }
  2241. }
  2242. },
  2243. "System.Security.Cryptography.Primitives/4.3.0": {
  2244. "type": "package",
  2245. "dependencies": {
  2246. "System.Diagnostics.Debug": "4.3.0",
  2247. "System.Globalization": "4.3.0",
  2248. "System.IO": "4.3.0",
  2249. "System.Resources.ResourceManager": "4.3.0",
  2250. "System.Runtime": "4.3.0",
  2251. "System.Threading": "4.3.0",
  2252. "System.Threading.Tasks": "4.3.0"
  2253. },
  2254. "compile": {
  2255. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2256. },
  2257. "runtime": {
  2258. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2259. }
  2260. },
  2261. "System.Security.Cryptography.ProtectedData/4.4.0": {
  2262. "type": "package",
  2263. "compile": {
  2264. "ref/netstandard2.0/_._": {}
  2265. },
  2266. "runtime": {
  2267. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2268. },
  2269. "runtimeTargets": {
  2270. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2271. "assetType": "runtime",
  2272. "rid": "win"
  2273. }
  2274. }
  2275. },
  2276. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2277. "type": "package",
  2278. "dependencies": {
  2279. "Microsoft.NETCore.Platforms": "1.1.0",
  2280. "System.Collections": "4.3.0",
  2281. "System.Diagnostics.Debug": "4.3.0",
  2282. "System.Globalization": "4.3.0",
  2283. "System.Globalization.Calendars": "4.3.0",
  2284. "System.IO": "4.3.0",
  2285. "System.IO.FileSystem": "4.3.0",
  2286. "System.IO.FileSystem.Primitives": "4.3.0",
  2287. "System.Resources.ResourceManager": "4.3.0",
  2288. "System.Runtime": "4.3.0",
  2289. "System.Runtime.Extensions": "4.3.0",
  2290. "System.Runtime.Handles": "4.3.0",
  2291. "System.Runtime.InteropServices": "4.3.0",
  2292. "System.Runtime.Numerics": "4.3.0",
  2293. "System.Security.Cryptography.Algorithms": "4.3.0",
  2294. "System.Security.Cryptography.Cng": "4.3.0",
  2295. "System.Security.Cryptography.Csp": "4.3.0",
  2296. "System.Security.Cryptography.Encoding": "4.3.0",
  2297. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2298. "System.Security.Cryptography.Primitives": "4.3.0",
  2299. "System.Text.Encoding": "4.3.0",
  2300. "System.Threading": "4.3.0",
  2301. "runtime.native.System": "4.3.0",
  2302. "runtime.native.System.Net.Http": "4.3.0",
  2303. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2304. },
  2305. "compile": {
  2306. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2307. },
  2308. "runtimeTargets": {
  2309. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2310. "assetType": "runtime",
  2311. "rid": "unix"
  2312. },
  2313. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2314. "assetType": "runtime",
  2315. "rid": "win"
  2316. }
  2317. }
  2318. },
  2319. "System.Security.Permissions/4.7.0": {
  2320. "type": "package",
  2321. "dependencies": {
  2322. "System.Security.AccessControl": "4.7.0",
  2323. "System.Windows.Extensions": "4.7.0"
  2324. },
  2325. "compile": {
  2326. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2327. },
  2328. "runtime": {
  2329. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2330. }
  2331. },
  2332. "System.Security.Principal.Windows/4.7.0": {
  2333. "type": "package",
  2334. "compile": {
  2335. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2336. },
  2337. "runtime": {
  2338. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2339. },
  2340. "runtimeTargets": {
  2341. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2342. "assetType": "runtime",
  2343. "rid": "unix"
  2344. },
  2345. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2346. "assetType": "runtime",
  2347. "rid": "win"
  2348. }
  2349. }
  2350. },
  2351. "System.Text.Encoding/4.3.0": {
  2352. "type": "package",
  2353. "dependencies": {
  2354. "Microsoft.NETCore.Platforms": "1.1.0",
  2355. "Microsoft.NETCore.Targets": "1.1.0",
  2356. "System.Runtime": "4.3.0"
  2357. },
  2358. "compile": {
  2359. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2360. }
  2361. },
  2362. "System.Text.Encoding.CodePages/4.4.0": {
  2363. "type": "package",
  2364. "dependencies": {
  2365. "Microsoft.NETCore.Platforms": "2.0.0"
  2366. },
  2367. "compile": {
  2368. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2369. },
  2370. "runtime": {
  2371. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2372. },
  2373. "runtimeTargets": {
  2374. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2375. "assetType": "runtime",
  2376. "rid": "win"
  2377. }
  2378. }
  2379. },
  2380. "System.Text.Encoding.Extensions/4.3.0": {
  2381. "type": "package",
  2382. "dependencies": {
  2383. "Microsoft.NETCore.Platforms": "1.1.0",
  2384. "Microsoft.NETCore.Targets": "1.1.0",
  2385. "System.Runtime": "4.3.0",
  2386. "System.Text.Encoding": "4.3.0"
  2387. },
  2388. "compile": {
  2389. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2390. }
  2391. },
  2392. "System.Text.Encodings.Web/4.5.0": {
  2393. "type": "package",
  2394. "compile": {
  2395. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2396. },
  2397. "runtime": {
  2398. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2399. }
  2400. },
  2401. "System.Text.RegularExpressions/4.3.0": {
  2402. "type": "package",
  2403. "dependencies": {
  2404. "System.Runtime": "4.3.0"
  2405. },
  2406. "compile": {
  2407. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2408. },
  2409. "runtime": {
  2410. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2411. }
  2412. },
  2413. "System.Threading/4.3.0": {
  2414. "type": "package",
  2415. "dependencies": {
  2416. "System.Runtime": "4.3.0",
  2417. "System.Threading.Tasks": "4.3.0"
  2418. },
  2419. "compile": {
  2420. "ref/netstandard1.3/System.Threading.dll": {}
  2421. },
  2422. "runtime": {
  2423. "lib/netstandard1.3/System.Threading.dll": {}
  2424. }
  2425. },
  2426. "System.Threading.Tasks/4.3.0": {
  2427. "type": "package",
  2428. "dependencies": {
  2429. "Microsoft.NETCore.Platforms": "1.1.0",
  2430. "Microsoft.NETCore.Targets": "1.1.0",
  2431. "System.Runtime": "4.3.0"
  2432. },
  2433. "compile": {
  2434. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2435. }
  2436. },
  2437. "System.Threading.Tasks.Extensions/4.3.0": {
  2438. "type": "package",
  2439. "dependencies": {
  2440. "System.Collections": "4.3.0",
  2441. "System.Runtime": "4.3.0",
  2442. "System.Threading.Tasks": "4.3.0"
  2443. },
  2444. "compile": {
  2445. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2446. },
  2447. "runtime": {
  2448. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2449. }
  2450. },
  2451. "System.Threading.Thread/4.0.0": {
  2452. "type": "package",
  2453. "dependencies": {
  2454. "System.Runtime": "4.1.0"
  2455. },
  2456. "compile": {
  2457. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2458. },
  2459. "runtime": {
  2460. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2461. }
  2462. },
  2463. "System.Threading.ThreadPool/4.0.10": {
  2464. "type": "package",
  2465. "dependencies": {
  2466. "System.Runtime": "4.1.0",
  2467. "System.Runtime.Handles": "4.0.1"
  2468. },
  2469. "compile": {
  2470. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2471. },
  2472. "runtime": {
  2473. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2474. }
  2475. },
  2476. "System.Threading.Timer/4.3.0": {
  2477. "type": "package",
  2478. "dependencies": {
  2479. "Microsoft.NETCore.Platforms": "1.1.0",
  2480. "Microsoft.NETCore.Targets": "1.1.0",
  2481. "System.Runtime": "4.3.0"
  2482. },
  2483. "compile": {
  2484. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2485. }
  2486. },
  2487. "System.Windows.Extensions/4.7.0": {
  2488. "type": "package",
  2489. "dependencies": {
  2490. "System.Drawing.Common": "4.7.0"
  2491. },
  2492. "compile": {
  2493. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2494. },
  2495. "runtime": {
  2496. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2497. },
  2498. "runtimeTargets": {
  2499. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2500. "assetType": "runtime",
  2501. "rid": "win"
  2502. }
  2503. }
  2504. },
  2505. "System.Xml.ReaderWriter/4.3.0": {
  2506. "type": "package",
  2507. "dependencies": {
  2508. "System.Collections": "4.3.0",
  2509. "System.Diagnostics.Debug": "4.3.0",
  2510. "System.Globalization": "4.3.0",
  2511. "System.IO": "4.3.0",
  2512. "System.IO.FileSystem": "4.3.0",
  2513. "System.IO.FileSystem.Primitives": "4.3.0",
  2514. "System.Resources.ResourceManager": "4.3.0",
  2515. "System.Runtime": "4.3.0",
  2516. "System.Runtime.Extensions": "4.3.0",
  2517. "System.Runtime.InteropServices": "4.3.0",
  2518. "System.Text.Encoding": "4.3.0",
  2519. "System.Text.Encoding.Extensions": "4.3.0",
  2520. "System.Text.RegularExpressions": "4.3.0",
  2521. "System.Threading.Tasks": "4.3.0",
  2522. "System.Threading.Tasks.Extensions": "4.3.0"
  2523. },
  2524. "compile": {
  2525. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2526. },
  2527. "runtime": {
  2528. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2529. }
  2530. },
  2531. "System.Xml.XDocument/4.3.0": {
  2532. "type": "package",
  2533. "dependencies": {
  2534. "System.Collections": "4.3.0",
  2535. "System.Diagnostics.Debug": "4.3.0",
  2536. "System.Diagnostics.Tools": "4.3.0",
  2537. "System.Globalization": "4.3.0",
  2538. "System.IO": "4.3.0",
  2539. "System.Reflection": "4.3.0",
  2540. "System.Resources.ResourceManager": "4.3.0",
  2541. "System.Runtime": "4.3.0",
  2542. "System.Runtime.Extensions": "4.3.0",
  2543. "System.Text.Encoding": "4.3.0",
  2544. "System.Threading": "4.3.0",
  2545. "System.Xml.ReaderWriter": "4.3.0"
  2546. },
  2547. "compile": {
  2548. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2549. },
  2550. "runtime": {
  2551. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2552. }
  2553. },
  2554. "System.Xml.XmlDocument/4.3.0": {
  2555. "type": "package",
  2556. "dependencies": {
  2557. "System.Collections": "4.3.0",
  2558. "System.Diagnostics.Debug": "4.3.0",
  2559. "System.Globalization": "4.3.0",
  2560. "System.IO": "4.3.0",
  2561. "System.Resources.ResourceManager": "4.3.0",
  2562. "System.Runtime": "4.3.0",
  2563. "System.Runtime.Extensions": "4.3.0",
  2564. "System.Text.Encoding": "4.3.0",
  2565. "System.Threading": "4.3.0",
  2566. "System.Xml.ReaderWriter": "4.3.0"
  2567. },
  2568. "compile": {
  2569. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2570. },
  2571. "runtime": {
  2572. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2573. }
  2574. },
  2575. "System.Xml.XPath/4.0.1": {
  2576. "type": "package",
  2577. "dependencies": {
  2578. "System.Collections": "4.0.11",
  2579. "System.Diagnostics.Debug": "4.0.11",
  2580. "System.Globalization": "4.0.11",
  2581. "System.IO": "4.1.0",
  2582. "System.Resources.ResourceManager": "4.0.1",
  2583. "System.Runtime": "4.1.0",
  2584. "System.Runtime.Extensions": "4.1.0",
  2585. "System.Threading": "4.0.11",
  2586. "System.Xml.ReaderWriter": "4.0.11"
  2587. },
  2588. "compile": {
  2589. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2590. },
  2591. "runtime": {
  2592. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2593. }
  2594. },
  2595. "System.Xml.XPath.XmlDocument/4.0.1": {
  2596. "type": "package",
  2597. "dependencies": {
  2598. "System.Collections": "4.0.11",
  2599. "System.Globalization": "4.0.11",
  2600. "System.IO": "4.1.0",
  2601. "System.Resources.ResourceManager": "4.0.1",
  2602. "System.Runtime": "4.1.0",
  2603. "System.Runtime.Extensions": "4.1.0",
  2604. "System.Threading": "4.0.11",
  2605. "System.Xml.ReaderWriter": "4.0.11",
  2606. "System.Xml.XPath": "4.0.1",
  2607. "System.Xml.XmlDocument": "4.0.1"
  2608. },
  2609. "compile": {
  2610. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2611. },
  2612. "runtime": {
  2613. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2614. }
  2615. },
  2616. "Backend.Common/1.0.0": {
  2617. "type": "project",
  2618. "framework": ".NETCoreApp,Version=v3.1",
  2619. "compile": {
  2620. "bin/placeholder/Backend.Common.dll": {}
  2621. },
  2622. "runtime": {
  2623. "bin/placeholder/Backend.Common.dll": {}
  2624. }
  2625. },
  2626. "Backend.Data/1.0.0": {
  2627. "type": "project",
  2628. "framework": ".NETCoreApp,Version=v3.1",
  2629. "dependencies": {
  2630. "Microsoft.AspNet.Identity.EntityFramework": "2.2.3",
  2631. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2632. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.10",
  2633. "Microsoft.EntityFrameworkCore": "5.0.10",
  2634. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  2635. "MySql.Data.EntityFrameworkCore": "8.0.22",
  2636. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  2637. "System.Data.SqlClient": "4.8.3"
  2638. },
  2639. "compile": {
  2640. "bin/placeholder/Backend.Data.dll": {}
  2641. },
  2642. "runtime": {
  2643. "bin/placeholder/Backend.Data.dll": {}
  2644. }
  2645. },
  2646. "Backend.Models/1.0.0": {
  2647. "type": "project",
  2648. "framework": ".NETCoreApp,Version=v3.1",
  2649. "compile": {
  2650. "bin/placeholder/Backend.Models.dll": {}
  2651. },
  2652. "runtime": {
  2653. "bin/placeholder/Backend.Models.dll": {}
  2654. }
  2655. },
  2656. "Backend.Services/1.0.0": {
  2657. "type": "project",
  2658. "framework": ".NETCoreApp,Version=v3.1",
  2659. "dependencies": {
  2660. "AutoMapper": "10.1.1",
  2661. "Backend.Common": "1.0.0",
  2662. "Backend.Data": "1.0.0",
  2663. "Backend.Models": "1.0.0"
  2664. },
  2665. "compile": {
  2666. "bin/placeholder/Backend.Services.dll": {}
  2667. },
  2668. "runtime": {
  2669. "bin/placeholder/Backend.Services.dll": {}
  2670. }
  2671. }
  2672. }
  2673. },
  2674. "libraries": {
  2675. "AutoMapper/10.1.1": {
  2676. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  2677. "type": "package",
  2678. "path": "automapper/10.1.1",
  2679. "files": [
  2680. ".nupkg.metadata",
  2681. ".signature.p7s",
  2682. "automapper.10.1.1.nupkg.sha512",
  2683. "automapper.nuspec",
  2684. "icon.png",
  2685. "lib/net461/AutoMapper.dll",
  2686. "lib/net461/AutoMapper.xml",
  2687. "lib/netstandard2.0/AutoMapper.dll",
  2688. "lib/netstandard2.0/AutoMapper.xml"
  2689. ]
  2690. },
  2691. "BouncyCastle.NetCore/1.8.3": {
  2692. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2693. "type": "package",
  2694. "path": "bouncycastle.netcore/1.8.3",
  2695. "files": [
  2696. ".nupkg.metadata",
  2697. ".signature.p7s",
  2698. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2699. "bouncycastle.netcore.nuspec",
  2700. "lib/Mono/BouncyCastle.Crypto.dll",
  2701. "lib/Mono/BouncyCastle.Crypto.xml",
  2702. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2703. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2704. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2705. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2706. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2707. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2708. "lib/net20/BouncyCastle.Crypto.dll",
  2709. "lib/net20/BouncyCastle.Crypto.xml",
  2710. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2711. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2712. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2713. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2714. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2715. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2716. ]
  2717. },
  2718. "Castle.Core/4.4.0": {
  2719. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  2720. "type": "package",
  2721. "path": "castle.core/4.4.0",
  2722. "files": [
  2723. ".nupkg.metadata",
  2724. ".signature.p7s",
  2725. "ASL - Apache Software Foundation License.txt",
  2726. "CHANGELOG.md",
  2727. "LICENSE",
  2728. "castle.core.4.4.0.nupkg.sha512",
  2729. "castle.core.nuspec",
  2730. "lib/net35/Castle.Core.dll",
  2731. "lib/net35/Castle.Core.xml",
  2732. "lib/net40/Castle.Core.dll",
  2733. "lib/net40/Castle.Core.xml",
  2734. "lib/net45/Castle.Core.dll",
  2735. "lib/net45/Castle.Core.xml",
  2736. "lib/netstandard1.3/Castle.Core.dll",
  2737. "lib/netstandard1.3/Castle.Core.xml",
  2738. "lib/netstandard1.5/Castle.Core.dll",
  2739. "lib/netstandard1.5/Castle.Core.xml",
  2740. "readme.txt"
  2741. ]
  2742. },
  2743. "coverlet.collector/3.0.2": {
  2744. "sha512": "iBvPAIDaI7j/iMx/DzCGCJ3rdiOmel9VINEfaTiBv/NKIGHOP4X3hqc6Q1wgMtArEshlhXexQknP17SK4vXb1w==",
  2745. "type": "package",
  2746. "path": "coverlet.collector/3.0.2",
  2747. "files": [
  2748. ".nupkg.metadata",
  2749. ".signature.p7s",
  2750. "build/netstandard1.0/Microsoft.CSharp.dll",
  2751. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  2752. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2753. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  2754. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  2755. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2756. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2757. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2758. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2759. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  2760. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  2761. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  2762. "build/netstandard1.0/Mono.Cecil.dll",
  2763. "build/netstandard1.0/Newtonsoft.Json.dll",
  2764. "build/netstandard1.0/NuGet.Frameworks.dll",
  2765. "build/netstandard1.0/System.AppContext.dll",
  2766. "build/netstandard1.0/System.Collections.Immutable.dll",
  2767. "build/netstandard1.0/System.Dynamic.Runtime.dll",
  2768. "build/netstandard1.0/System.IO.FileSystem.Primitives.dll",
  2769. "build/netstandard1.0/System.Linq.Expressions.dll",
  2770. "build/netstandard1.0/System.Linq.dll",
  2771. "build/netstandard1.0/System.ObjectModel.dll",
  2772. "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  2773. "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  2774. "build/netstandard1.0/System.Reflection.Emit.dll",
  2775. "build/netstandard1.0/System.Reflection.Metadata.dll",
  2776. "build/netstandard1.0/System.Reflection.TypeExtensions.dll",
  2777. "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  2778. "build/netstandard1.0/System.Text.RegularExpressions.dll",
  2779. "build/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  2780. "build/netstandard1.0/System.Threading.dll",
  2781. "build/netstandard1.0/System.Xml.ReaderWriter.dll",
  2782. "build/netstandard1.0/System.Xml.XDocument.dll",
  2783. "build/netstandard1.0/coverlet.collector.deps.json",
  2784. "build/netstandard1.0/coverlet.collector.dll",
  2785. "build/netstandard1.0/coverlet.collector.pdb",
  2786. "build/netstandard1.0/coverlet.collector.targets",
  2787. "build/netstandard1.0/coverlet.core.dll",
  2788. "build/netstandard1.0/coverlet.core.pdb",
  2789. "coverlet-icon.png",
  2790. "coverlet.collector.3.0.2.nupkg.sha512",
  2791. "coverlet.collector.nuspec"
  2792. ]
  2793. },
  2794. "EntityFramework/6.1.0": {
  2795. "sha512": "u/M0OEfqxTUsL5BwzD66eBGm278/ozqdLK3JvMO6QwUxxc+z7ZUkTYm4suDhWRqzkc6mOhvXDQY5dZUwbldxyQ==",
  2796. "type": "package",
  2797. "path": "entityframework/6.1.0",
  2798. "hasTools": true,
  2799. "files": [
  2800. ".nupkg.metadata",
  2801. ".signature.p7s",
  2802. "content/App.config.transform",
  2803. "content/Web.config.transform",
  2804. "entityframework.6.1.0.nupkg.sha512",
  2805. "entityframework.nuspec",
  2806. "lib/net40/EntityFramework.SqlServer.dll",
  2807. "lib/net40/EntityFramework.SqlServer.xml",
  2808. "lib/net40/EntityFramework.dll",
  2809. "lib/net40/EntityFramework.xml",
  2810. "lib/net45/EntityFramework.SqlServer.dll",
  2811. "lib/net45/EntityFramework.SqlServer.xml",
  2812. "lib/net45/EntityFramework.dll",
  2813. "lib/net45/EntityFramework.xml",
  2814. "tools/EntityFramework.PowerShell.Utility.dll",
  2815. "tools/EntityFramework.PowerShell.dll",
  2816. "tools/EntityFramework.psd1",
  2817. "tools/EntityFramework.psm1",
  2818. "tools/about_EntityFramework.help.txt",
  2819. "tools/init.ps1",
  2820. "tools/install.ps1",
  2821. "tools/migrate.exe"
  2822. ]
  2823. },
  2824. "Google.Protobuf/3.11.4": {
  2825. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  2826. "type": "package",
  2827. "path": "google.protobuf/3.11.4",
  2828. "files": [
  2829. ".nupkg.metadata",
  2830. ".signature.p7s",
  2831. "google.protobuf.3.11.4.nupkg.sha512",
  2832. "google.protobuf.nuspec",
  2833. "lib/net45/Google.Protobuf.dll",
  2834. "lib/net45/Google.Protobuf.pdb",
  2835. "lib/net45/Google.Protobuf.xml",
  2836. "lib/netstandard1.0/Google.Protobuf.dll",
  2837. "lib/netstandard1.0/Google.Protobuf.pdb",
  2838. "lib/netstandard1.0/Google.Protobuf.xml",
  2839. "lib/netstandard2.0/Google.Protobuf.dll",
  2840. "lib/netstandard2.0/Google.Protobuf.pdb",
  2841. "lib/netstandard2.0/Google.Protobuf.xml"
  2842. ]
  2843. },
  2844. "K4os.Compression.LZ4/1.1.11": {
  2845. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  2846. "type": "package",
  2847. "path": "k4os.compression.lz4/1.1.11",
  2848. "files": [
  2849. ".nupkg.metadata",
  2850. ".signature.p7s",
  2851. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  2852. "k4os.compression.lz4.nuspec",
  2853. "lib/net45/K4os.Compression.LZ4.dll",
  2854. "lib/net45/K4os.Compression.LZ4.xml",
  2855. "lib/net46/K4os.Compression.LZ4.dll",
  2856. "lib/net46/K4os.Compression.LZ4.xml",
  2857. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2858. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2859. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2860. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2861. ]
  2862. },
  2863. "K4os.Compression.LZ4.Streams/1.1.11": {
  2864. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  2865. "type": "package",
  2866. "path": "k4os.compression.lz4.streams/1.1.11",
  2867. "files": [
  2868. ".nupkg.metadata",
  2869. ".signature.p7s",
  2870. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  2871. "k4os.compression.lz4.streams.nuspec",
  2872. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2873. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2874. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2875. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2876. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2877. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2878. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2879. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  2880. ]
  2881. },
  2882. "K4os.Hash.xxHash/1.0.6": {
  2883. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2884. "type": "package",
  2885. "path": "k4os.hash.xxhash/1.0.6",
  2886. "files": [
  2887. ".nupkg.metadata",
  2888. ".signature.p7s",
  2889. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2890. "k4os.hash.xxhash.nuspec",
  2891. "lib/net45/K4os.Hash.xxHash.dll",
  2892. "lib/net45/K4os.Hash.xxHash.xml",
  2893. "lib/net46/K4os.Hash.xxHash.dll",
  2894. "lib/net46/K4os.Hash.xxHash.xml",
  2895. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2896. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2897. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2898. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2899. ]
  2900. },
  2901. "Microsoft.AspNet.Identity.Core/2.2.3": {
  2902. "sha512": "Mv5FpoaxspE8hlWLE4r1IdZtovg/OyFgVRhxQbx47J4sqdLImN1hnM1lnwCj+/wLmqtqFk/RYMoZ5GAcwm/00g==",
  2903. "type": "package",
  2904. "path": "microsoft.aspnet.identity.core/2.2.3",
  2905. "files": [
  2906. ".nupkg.metadata",
  2907. ".signature.p7s",
  2908. "lib/net45/Microsoft.AspNet.Identity.Core.dll",
  2909. "lib/net45/Microsoft.AspNet.Identity.Core.xml",
  2910. "microsoft.aspnet.identity.core.2.2.3.nupkg.sha512",
  2911. "microsoft.aspnet.identity.core.nuspec"
  2912. ]
  2913. },
  2914. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  2915. "sha512": "dt4XZChjw3a6jE66Yd6LkF9omspxi0A9lJpwBZz8Wl1sabOS6dlLP1OOTVuUjtPaoAshjoIzvS6DFRQdPyq55g==",
  2916. "type": "package",
  2917. "path": "microsoft.aspnet.identity.entityframework/2.2.3",
  2918. "files": [
  2919. ".nupkg.metadata",
  2920. ".signature.p7s",
  2921. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll",
  2922. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml",
  2923. "microsoft.aspnet.identity.entityframework.2.2.3.nupkg.sha512",
  2924. "microsoft.aspnet.identity.entityframework.nuspec"
  2925. ]
  2926. },
  2927. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  2928. "sha512": "xqdkq+lsWeVBxGq0bwgQeT1inqdFErG/McEBNqFVw0hnNQKxWaGPuBDFc8JBQC82Qn6+V1utI3lWvFmUMGEc8Q==",
  2929. "type": "package",
  2930. "path": "microsoft.aspnetcore.cryptography.internal/5.0.10",
  2931. "files": [
  2932. ".nupkg.metadata",
  2933. ".signature.p7s",
  2934. "Icon.png",
  2935. "THIRD-PARTY-NOTICES.TXT",
  2936. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2937. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2938. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2939. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2940. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2941. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2942. "microsoft.aspnetcore.cryptography.internal.5.0.10.nupkg.sha512",
  2943. "microsoft.aspnetcore.cryptography.internal.nuspec"
  2944. ]
  2945. },
  2946. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  2947. "sha512": "iXsPFNrM6cVGx/zCkz88nDP/pUKn/ni13B6JQhLwOoqI+tsA1x6fVfPp0MKnQtx5AZngGzuNMx+AYR1ED9ZVeg==",
  2948. "type": "package",
  2949. "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.10",
  2950. "files": [
  2951. ".nupkg.metadata",
  2952. ".signature.p7s",
  2953. "Icon.png",
  2954. "THIRD-PARTY-NOTICES.TXT",
  2955. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2956. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2957. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2958. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2959. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2960. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2961. "microsoft.aspnetcore.cryptography.keyderivation.5.0.10.nupkg.sha512",
  2962. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  2963. ]
  2964. },
  2965. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  2966. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2967. "type": "package",
  2968. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2969. "files": [
  2970. ".nupkg.metadata",
  2971. ".signature.p7s",
  2972. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  2973. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  2974. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  2975. "microsoft.aspnetcore.http.abstractions.nuspec"
  2976. ]
  2977. },
  2978. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2979. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2980. "type": "package",
  2981. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2982. "files": [
  2983. ".nupkg.metadata",
  2984. ".signature.p7s",
  2985. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  2986. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  2987. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  2988. "microsoft.aspnetcore.http.features.nuspec"
  2989. ]
  2990. },
  2991. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  2992. "sha512": "L9Tavjj82A9Ybo6Uedxu5CDie7DXXjx5tXLy3P0Ade2LXcrQwC4bJcdj8+QvBHqMnsd9ZsGZfO/T6tqxTYpAJg==",
  2993. "type": "package",
  2994. "path": "microsoft.aspnetcore.identity.entityframeworkcore/5.0.10",
  2995. "files": [
  2996. ".nupkg.metadata",
  2997. ".signature.p7s",
  2998. "Icon.png",
  2999. "THIRD-PARTY-NOTICES.TXT",
  3000. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3001. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3002. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3003. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3004. "microsoft.aspnetcore.identity.entityframeworkcore.5.0.10.nupkg.sha512",
  3005. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3006. ]
  3007. },
  3008. "Microsoft.CodeCoverage/16.9.4": {
  3009. "sha512": "N/RYB07gJkPZ1nJiq0QGxFIL+X5vVl4GI99PiTYXpbfI30NTZMRJgZ+4jYLFYLDQqj9o1Juhv+3iiymd7lozrA==",
  3010. "type": "package",
  3011. "path": "microsoft.codecoverage/16.9.4",
  3012. "files": [
  3013. ".nupkg.metadata",
  3014. ".signature.p7s",
  3015. "Icon.png",
  3016. "LICENSE_NET.txt",
  3017. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  3018. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  3019. "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config",
  3020. "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe",
  3021. "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config",
  3022. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  3023. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  3024. "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll",
  3025. "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll",
  3026. "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll",
  3027. "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll",
  3028. "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll",
  3029. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  3030. "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3031. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  3032. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  3033. "build/netstandard1.0/CodeCoverage/msvcdis140.dll",
  3034. "build/netstandard1.0/CodeCoverage/msvcp140.dll",
  3035. "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll",
  3036. "build/netstandard1.0/CodeCoverage/vcruntime140.dll",
  3037. "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll",
  3038. "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll",
  3039. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  3040. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  3041. "build/netstandard1.0/Microsoft.VisualStudio.Coverage.CoreLib.Net.dll",
  3042. "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll",
  3043. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  3044. "build/netstandard1.0/cs/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3045. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3046. "build/netstandard1.0/de/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3047. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3048. "build/netstandard1.0/es/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3049. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3050. "build/netstandard1.0/fr/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3051. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3052. "build/netstandard1.0/it/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3053. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3054. "build/netstandard1.0/ja/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3055. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3056. "build/netstandard1.0/ko/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3057. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3058. "build/netstandard1.0/pl/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3059. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3060. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3061. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3062. "build/netstandard1.0/ru/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3063. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3064. "build/netstandard1.0/tr/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3065. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3066. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3067. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3068. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll",
  3069. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3070. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3071. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3072. "microsoft.codecoverage.16.9.4.nupkg.sha512",
  3073. "microsoft.codecoverage.nuspec"
  3074. ]
  3075. },
  3076. "Microsoft.CSharp/4.7.0": {
  3077. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3078. "type": "package",
  3079. "path": "microsoft.csharp/4.7.0",
  3080. "files": [
  3081. ".nupkg.metadata",
  3082. ".signature.p7s",
  3083. "LICENSE.TXT",
  3084. "THIRD-PARTY-NOTICES.TXT",
  3085. "lib/MonoAndroid10/_._",
  3086. "lib/MonoTouch10/_._",
  3087. "lib/net45/_._",
  3088. "lib/netcore50/Microsoft.CSharp.dll",
  3089. "lib/netcoreapp2.0/_._",
  3090. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3091. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3092. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3093. "lib/portable-net45+win8+wp8+wpa81/_._",
  3094. "lib/uap10.0.16299/_._",
  3095. "lib/win8/_._",
  3096. "lib/wp80/_._",
  3097. "lib/wpa81/_._",
  3098. "lib/xamarinios10/_._",
  3099. "lib/xamarinmac20/_._",
  3100. "lib/xamarintvos10/_._",
  3101. "lib/xamarinwatchos10/_._",
  3102. "microsoft.csharp.4.7.0.nupkg.sha512",
  3103. "microsoft.csharp.nuspec",
  3104. "ref/MonoAndroid10/_._",
  3105. "ref/MonoTouch10/_._",
  3106. "ref/net45/_._",
  3107. "ref/netcore50/Microsoft.CSharp.dll",
  3108. "ref/netcore50/Microsoft.CSharp.xml",
  3109. "ref/netcore50/de/Microsoft.CSharp.xml",
  3110. "ref/netcore50/es/Microsoft.CSharp.xml",
  3111. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3112. "ref/netcore50/it/Microsoft.CSharp.xml",
  3113. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3114. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3115. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3116. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3117. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3118. "ref/netcoreapp2.0/_._",
  3119. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3120. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3121. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3122. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3123. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3124. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3125. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3126. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3127. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3128. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3129. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3130. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3131. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3132. "ref/portable-net45+win8+wp8+wpa81/_._",
  3133. "ref/uap10.0.16299/_._",
  3134. "ref/win8/_._",
  3135. "ref/wp80/_._",
  3136. "ref/wpa81/_._",
  3137. "ref/xamarinios10/_._",
  3138. "ref/xamarinmac20/_._",
  3139. "ref/xamarintvos10/_._",
  3140. "ref/xamarinwatchos10/_._",
  3141. "useSharedDesignerContext.txt",
  3142. "version.txt"
  3143. ]
  3144. },
  3145. "Microsoft.EntityFrameworkCore/5.0.10": {
  3146. "sha512": "w5+5oewaQWDj4ChxxjLhdxIi98dK+kq7wvqnTco9PodkqHIDMfKk+5fQCQGLQrbhTdNaqyfYE1ApFP66mLXv6Q==",
  3147. "type": "package",
  3148. "path": "microsoft.entityframeworkcore/5.0.10",
  3149. "files": [
  3150. ".nupkg.metadata",
  3151. ".signature.p7s",
  3152. "Icon.png",
  3153. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3154. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3155. "microsoft.entityframeworkcore.5.0.10.nupkg.sha512",
  3156. "microsoft.entityframeworkcore.nuspec"
  3157. ]
  3158. },
  3159. "Microsoft.EntityFrameworkCore.Abstractions/5.0.10": {
  3160. "sha512": "Ib85lZI/jxvsKcCS0GHVeqBv/JGzEvKa6HkoyxNu0EDmzDoh4OFl+dDKSx4Vr6I5YWT7nQj3sz6I4I0wHSN0xg==",
  3161. "type": "package",
  3162. "path": "microsoft.entityframeworkcore.abstractions/5.0.10",
  3163. "files": [
  3164. ".nupkg.metadata",
  3165. ".signature.p7s",
  3166. "Icon.png",
  3167. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3168. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3169. "microsoft.entityframeworkcore.abstractions.5.0.10.nupkg.sha512",
  3170. "microsoft.entityframeworkcore.abstractions.nuspec"
  3171. ]
  3172. },
  3173. "Microsoft.EntityFrameworkCore.Analyzers/5.0.10": {
  3174. "sha512": "MBnG+g6jrmK72y4rU+4y2btHrl72i2q3zrXG3pj2zZGXXrG9Q4SlwL5ul0ASmQXYjhJ4VpDfd4o1/gdRPsa2jA==",
  3175. "type": "package",
  3176. "path": "microsoft.entityframeworkcore.analyzers/5.0.10",
  3177. "files": [
  3178. ".nupkg.metadata",
  3179. ".signature.p7s",
  3180. "Icon.png",
  3181. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3182. "lib/netstandard2.0/_._",
  3183. "microsoft.entityframeworkcore.analyzers.5.0.10.nupkg.sha512",
  3184. "microsoft.entityframeworkcore.analyzers.nuspec"
  3185. ]
  3186. },
  3187. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  3188. "sha512": "3l7GA+0y5E3kDOl85KRHhC0zXYA/CyQBQqDXvFGkqYzdPMRyWQkaQz2+yN4CN/SC+TVa48FPIAc2Wim8aWAliQ==",
  3189. "type": "package",
  3190. "path": "microsoft.entityframeworkcore.relational/5.0.10",
  3191. "files": [
  3192. ".nupkg.metadata",
  3193. ".signature.p7s",
  3194. "Icon.png",
  3195. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3196. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3197. "microsoft.entityframeworkcore.relational.5.0.10.nupkg.sha512",
  3198. "microsoft.entityframeworkcore.relational.nuspec"
  3199. ]
  3200. },
  3201. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3202. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3203. "type": "package",
  3204. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3205. "files": [
  3206. ".nupkg.metadata",
  3207. ".signature.p7s",
  3208. "Icon.png",
  3209. "LICENSE.TXT",
  3210. "THIRD-PARTY-NOTICES.TXT",
  3211. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3212. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3213. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3214. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3215. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3216. "microsoft.extensions.caching.abstractions.nuspec",
  3217. "useSharedDesignerContext.txt",
  3218. "version.txt"
  3219. ]
  3220. },
  3221. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3222. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3223. "type": "package",
  3224. "path": "microsoft.extensions.caching.memory/5.0.0",
  3225. "files": [
  3226. ".nupkg.metadata",
  3227. ".signature.p7s",
  3228. "Icon.png",
  3229. "LICENSE.TXT",
  3230. "THIRD-PARTY-NOTICES.TXT",
  3231. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3232. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3233. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3234. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3235. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3236. "microsoft.extensions.caching.memory.nuspec",
  3237. "useSharedDesignerContext.txt",
  3238. "version.txt"
  3239. ]
  3240. },
  3241. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  3242. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  3243. "type": "package",
  3244. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  3245. "files": [
  3246. ".nupkg.metadata",
  3247. ".signature.p7s",
  3248. "Icon.png",
  3249. "LICENSE.TXT",
  3250. "THIRD-PARTY-NOTICES.TXT",
  3251. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3252. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3254. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3255. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  3256. "microsoft.extensions.configuration.abstractions.nuspec",
  3257. "useSharedDesignerContext.txt"
  3258. ]
  3259. },
  3260. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  3261. "sha512": "xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==",
  3262. "type": "package",
  3263. "path": "microsoft.extensions.dependencyinjection/5.0.2",
  3264. "files": [
  3265. ".nupkg.metadata",
  3266. ".signature.p7s",
  3267. "Icon.png",
  3268. "LICENSE.TXT",
  3269. "THIRD-PARTY-NOTICES.TXT",
  3270. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3271. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3272. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3273. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3274. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3275. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3276. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3277. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3278. "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512",
  3279. "microsoft.extensions.dependencyinjection.nuspec",
  3280. "useSharedDesignerContext.txt",
  3281. "version.txt"
  3282. ]
  3283. },
  3284. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3285. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3286. "type": "package",
  3287. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3288. "files": [
  3289. ".nupkg.metadata",
  3290. ".signature.p7s",
  3291. "Icon.png",
  3292. "LICENSE.TXT",
  3293. "THIRD-PARTY-NOTICES.TXT",
  3294. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3295. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3296. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3297. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3298. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3299. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3300. "useSharedDesignerContext.txt",
  3301. "version.txt"
  3302. ]
  3303. },
  3304. "Microsoft.Extensions.Identity.Core/5.0.10": {
  3305. "sha512": "WKl22APvpTy+wIqvUd1Gvp8FOs7nTHCZDMeMNNC6fDVfzVKWQF55vOJXbkw7dU70sC6GewE/zsqmwyJAHXgDJw==",
  3306. "type": "package",
  3307. "path": "microsoft.extensions.identity.core/5.0.10",
  3308. "files": [
  3309. ".nupkg.metadata",
  3310. ".signature.p7s",
  3311. "Icon.png",
  3312. "THIRD-PARTY-NOTICES.TXT",
  3313. "lib/net461/Microsoft.Extensions.Identity.Core.dll",
  3314. "lib/net461/Microsoft.Extensions.Identity.Core.xml",
  3315. "lib/net5.0/Microsoft.Extensions.Identity.Core.dll",
  3316. "lib/net5.0/Microsoft.Extensions.Identity.Core.xml",
  3317. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  3318. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  3319. "microsoft.extensions.identity.core.5.0.10.nupkg.sha512",
  3320. "microsoft.extensions.identity.core.nuspec"
  3321. ]
  3322. },
  3323. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  3324. "sha512": "fZDlK8G+jzV9ld0jiO2eQ5JQbOmpiND92gX7bP6rcTZ7YJHzIxCw7Hx8+yf4Ex9f6q7v2LJymkmsUz1k7o5nPg==",
  3325. "type": "package",
  3326. "path": "microsoft.extensions.identity.stores/5.0.10",
  3327. "files": [
  3328. ".nupkg.metadata",
  3329. ".signature.p7s",
  3330. "Icon.png",
  3331. "THIRD-PARTY-NOTICES.TXT",
  3332. "lib/net461/Microsoft.Extensions.Identity.Stores.dll",
  3333. "lib/net461/Microsoft.Extensions.Identity.Stores.xml",
  3334. "lib/net5.0/Microsoft.Extensions.Identity.Stores.dll",
  3335. "lib/net5.0/Microsoft.Extensions.Identity.Stores.xml",
  3336. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  3337. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  3338. "microsoft.extensions.identity.stores.5.0.10.nupkg.sha512",
  3339. "microsoft.extensions.identity.stores.nuspec"
  3340. ]
  3341. },
  3342. "Microsoft.Extensions.Logging/5.0.0": {
  3343. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3344. "type": "package",
  3345. "path": "microsoft.extensions.logging/5.0.0",
  3346. "files": [
  3347. ".nupkg.metadata",
  3348. ".signature.p7s",
  3349. "Icon.png",
  3350. "LICENSE.TXT",
  3351. "THIRD-PARTY-NOTICES.TXT",
  3352. "lib/net461/Microsoft.Extensions.Logging.dll",
  3353. "lib/net461/Microsoft.Extensions.Logging.xml",
  3354. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3355. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3356. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3357. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3358. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3359. "microsoft.extensions.logging.nuspec",
  3360. "useSharedDesignerContext.txt",
  3361. "version.txt"
  3362. ]
  3363. },
  3364. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3365. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3366. "type": "package",
  3367. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  3368. "files": [
  3369. ".nupkg.metadata",
  3370. ".signature.p7s",
  3371. "Icon.png",
  3372. "LICENSE.TXT",
  3373. "THIRD-PARTY-NOTICES.TXT",
  3374. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3375. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3376. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3377. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3378. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  3379. "microsoft.extensions.logging.abstractions.nuspec",
  3380. "useSharedDesignerContext.txt",
  3381. "version.txt"
  3382. ]
  3383. },
  3384. "Microsoft.Extensions.Options/5.0.0": {
  3385. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  3386. "type": "package",
  3387. "path": "microsoft.extensions.options/5.0.0",
  3388. "files": [
  3389. ".nupkg.metadata",
  3390. ".signature.p7s",
  3391. "Icon.png",
  3392. "LICENSE.TXT",
  3393. "THIRD-PARTY-NOTICES.TXT",
  3394. "lib/net461/Microsoft.Extensions.Options.dll",
  3395. "lib/net461/Microsoft.Extensions.Options.xml",
  3396. "lib/net5.0/Microsoft.Extensions.Options.dll",
  3397. "lib/net5.0/Microsoft.Extensions.Options.xml",
  3398. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3399. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3400. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  3401. "microsoft.extensions.options.nuspec",
  3402. "useSharedDesignerContext.txt",
  3403. "version.txt"
  3404. ]
  3405. },
  3406. "Microsoft.Extensions.Primitives/6.0.0": {
  3407. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  3408. "type": "package",
  3409. "path": "microsoft.extensions.primitives/6.0.0",
  3410. "files": [
  3411. ".nupkg.metadata",
  3412. ".signature.p7s",
  3413. "Icon.png",
  3414. "LICENSE.TXT",
  3415. "THIRD-PARTY-NOTICES.TXT",
  3416. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3417. "buildTransitive/netcoreapp3.1/_._",
  3418. "lib/net461/Microsoft.Extensions.Primitives.dll",
  3419. "lib/net461/Microsoft.Extensions.Primitives.xml",
  3420. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3421. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3422. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3423. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3424. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3425. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3426. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  3427. "microsoft.extensions.primitives.nuspec",
  3428. "useSharedDesignerContext.txt"
  3429. ]
  3430. },
  3431. "Microsoft.NET.Test.Sdk/16.9.4": {
  3432. "sha512": "M/k16vmS7Hz/+Kuy3p6XE743XPjYYMzfN5ZvpSLY44Ngh5IBMk0Je5Qed8oq6/kvzJA2DTrXa7YrfceHhbQKeQ==",
  3433. "type": "package",
  3434. "path": "microsoft.net.test.sdk/16.9.4",
  3435. "files": [
  3436. ".nupkg.metadata",
  3437. ".signature.p7s",
  3438. "Icon.png",
  3439. "LICENSE_NET.txt",
  3440. "build/net40/Microsoft.NET.Test.Sdk.props",
  3441. "build/net40/Microsoft.NET.Test.Sdk.targets",
  3442. "build/net45/Microsoft.NET.Test.Sdk.props",
  3443. "build/net45/Microsoft.NET.Test.Sdk.targets",
  3444. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs",
  3445. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs",
  3446. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb",
  3447. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props",
  3448. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets",
  3449. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  3450. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  3451. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  3452. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  3453. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  3454. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  3455. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  3456. "lib/net40/_._",
  3457. "lib/net45/_._",
  3458. "lib/netcoreapp1.0/_._",
  3459. "lib/netcoreapp2.1/_._",
  3460. "lib/uap10.0/_._",
  3461. "microsoft.net.test.sdk.16.9.4.nupkg.sha512",
  3462. "microsoft.net.test.sdk.nuspec"
  3463. ]
  3464. },
  3465. "Microsoft.NETCore.Platforms/3.1.0": {
  3466. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3467. "type": "package",
  3468. "path": "microsoft.netcore.platforms/3.1.0",
  3469. "files": [
  3470. ".nupkg.metadata",
  3471. ".signature.p7s",
  3472. "LICENSE.TXT",
  3473. "THIRD-PARTY-NOTICES.TXT",
  3474. "lib/netstandard1.0/_._",
  3475. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3476. "microsoft.netcore.platforms.nuspec",
  3477. "runtime.json",
  3478. "useSharedDesignerContext.txt",
  3479. "version.txt"
  3480. ]
  3481. },
  3482. "Microsoft.NETCore.Targets/1.1.0": {
  3483. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3484. "type": "package",
  3485. "path": "microsoft.netcore.targets/1.1.0",
  3486. "files": [
  3487. ".nupkg.metadata",
  3488. ".signature.p7s",
  3489. "ThirdPartyNotices.txt",
  3490. "dotnet_library_license.txt",
  3491. "lib/netstandard1.0/_._",
  3492. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3493. "microsoft.netcore.targets.nuspec",
  3494. "runtime.json"
  3495. ]
  3496. },
  3497. "Microsoft.TestPlatform.ObjectModel/16.9.4": {
  3498. "sha512": "t43y1MZYshZFfc/g8nzy4o86PW2WfFcoQ+MjgYUlfj1pptKHc7Xr+R6sFBODA+y1I+Mc+Ujzme/c2cGX2AuOwQ==",
  3499. "type": "package",
  3500. "path": "microsoft.testplatform.objectmodel/16.9.4",
  3501. "files": [
  3502. ".nupkg.metadata",
  3503. ".signature.p7s",
  3504. "Icon.png",
  3505. "LICENSE_NET.txt",
  3506. "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll",
  3507. "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3508. "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3509. "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3510. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3511. "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3512. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3513. "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3514. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3515. "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3516. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3517. "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3518. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3519. "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3520. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3521. "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3522. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3523. "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3524. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3525. "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3526. "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3527. "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3528. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3529. "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3530. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3531. "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3532. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3533. "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3534. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3535. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  3536. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3537. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3538. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3539. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3540. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3541. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3542. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3543. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3544. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3545. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3546. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3547. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3548. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3549. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3550. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3551. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3552. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3553. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3554. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3555. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3556. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3557. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3558. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3559. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3560. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3561. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3562. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3563. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3564. "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3565. "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3566. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3567. "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3568. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3569. "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3570. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3571. "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3572. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3573. "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3574. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3575. "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3576. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3577. "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3578. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3579. "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3580. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3581. "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3582. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3583. "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3584. "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3585. "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3586. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3587. "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3588. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3589. "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3590. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3591. "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3592. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3593. "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll",
  3594. "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3595. "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3596. "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3597. "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3598. "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3599. "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3600. "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3601. "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3602. "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3603. "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3604. "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3605. "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3606. "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3607. "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3608. "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3609. "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3610. "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3611. "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3612. "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3613. "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3614. "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3615. "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3616. "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3617. "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3618. "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3619. "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3620. "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3621. "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3622. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3623. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3624. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3625. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3626. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3627. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3628. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3629. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3630. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3631. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3632. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3633. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3634. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3635. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3636. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3637. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3638. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3639. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3640. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3641. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3642. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3643. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3644. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3645. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3646. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3647. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3648. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3649. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3650. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3651. "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3652. "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3653. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3654. "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3655. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3656. "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3657. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3658. "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3659. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3660. "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3661. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3662. "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3663. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3664. "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3665. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3666. "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3667. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3668. "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3669. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3670. "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3671. "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3672. "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3673. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3674. "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3675. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3676. "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3677. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3678. "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3679. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3680. "microsoft.testplatform.objectmodel.16.9.4.nupkg.sha512",
  3681. "microsoft.testplatform.objectmodel.nuspec"
  3682. ]
  3683. },
  3684. "Microsoft.TestPlatform.TestHost/16.9.4": {
  3685. "sha512": "3YuJ7OSb1YPk+OTZfpa8U7I+TUZRH/nCeOWcN+TERp1SUZrcGeG2IGBZvVZ9CbKuQ+7wLiwsfcIgKIu+kbvibg==",
  3686. "type": "package",
  3687. "path": "microsoft.testplatform.testhost/16.9.4",
  3688. "files": [
  3689. ".nupkg.metadata",
  3690. ".signature.p7s",
  3691. "Icon.png",
  3692. "LICENSE_NET.txt",
  3693. "ThirdPartyNotices.txt",
  3694. "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3695. "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props",
  3696. "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3697. "build/netcoreapp1.0/x64/testhost.dll",
  3698. "build/netcoreapp1.0/x64/testhost.exe",
  3699. "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3700. "build/netcoreapp1.0/x86/testhost.x86.dll",
  3701. "build/netcoreapp1.0/x86/testhost.x86.exe",
  3702. "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3703. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  3704. "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3705. "build/netcoreapp2.1/x64/testhost.dll",
  3706. "build/netcoreapp2.1/x64/testhost.exe",
  3707. "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3708. "build/netcoreapp2.1/x86/testhost.x86.dll",
  3709. "build/netcoreapp2.1/x86/testhost.x86.exe",
  3710. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  3711. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  3712. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3713. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3714. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3715. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  3716. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3717. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3718. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3719. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3720. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3721. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  3722. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3723. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3724. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3725. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3726. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3727. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  3728. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3729. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3730. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3731. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3732. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3733. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  3734. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3735. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3736. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3737. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3738. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3739. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  3740. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3741. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3742. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3743. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3744. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3745. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  3746. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3747. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3748. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3749. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3750. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3751. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  3752. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3753. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3754. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3755. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3756. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3757. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  3758. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3759. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3760. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3761. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3762. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3763. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  3764. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3765. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3766. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3767. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3768. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3769. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  3770. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3771. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3772. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3773. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3774. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3775. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  3776. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3777. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3778. "build/uap10.0/x64/msdia140.dll",
  3779. "build/uap10.0/x86/msdia140.dll",
  3780. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3781. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3782. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3783. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  3784. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3785. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3786. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3787. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3788. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3789. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  3790. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3791. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3792. "lib/net45/_._",
  3793. "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  3794. "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3795. "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  3796. "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3797. "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll",
  3798. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  3799. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3800. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3801. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3802. "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3803. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3804. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3805. "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3806. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3807. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3808. "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3809. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3810. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3811. "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3812. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3813. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3814. "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3815. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3816. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3817. "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3818. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3819. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3820. "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3821. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3822. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3823. "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3824. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3825. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3826. "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3827. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3828. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3829. "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3830. "lib/netcoreapp1.0/testhost.deps.json",
  3831. "lib/netcoreapp1.0/testhost.dll",
  3832. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3833. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3834. "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3835. "lib/netcoreapp1.0/x64/msdia140.dll",
  3836. "lib/netcoreapp1.0/x86/msdia140.dll",
  3837. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3838. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3839. "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3840. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3841. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3842. "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3843. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  3844. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll",
  3845. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  3846. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3847. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  3848. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  3849. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3850. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3851. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3852. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3853. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3854. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3855. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3856. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3857. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3858. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3859. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3860. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3861. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3862. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3863. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3864. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3865. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3866. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3867. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3868. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3869. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3870. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3871. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3872. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3873. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3874. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3875. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3876. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3877. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3878. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3879. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3880. "lib/netcoreapp2.1/testhost.deps.json",
  3881. "lib/netcoreapp2.1/testhost.dll",
  3882. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3883. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3884. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3885. "lib/netcoreapp2.1/x64/msdia140.dll",
  3886. "lib/netcoreapp2.1/x86/msdia140.dll",
  3887. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3888. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3889. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3890. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3891. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3892. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3893. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  3894. "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3895. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  3896. "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3897. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  3898. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  3899. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3900. "lib/uap10.0/testhost.dll",
  3901. "microsoft.testplatform.testhost.16.9.4.nupkg.sha512",
  3902. "microsoft.testplatform.testhost.nuspec"
  3903. ]
  3904. },
  3905. "Microsoft.Win32.Primitives/4.3.0": {
  3906. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3907. "type": "package",
  3908. "path": "microsoft.win32.primitives/4.3.0",
  3909. "files": [
  3910. ".nupkg.metadata",
  3911. ".signature.p7s",
  3912. "ThirdPartyNotices.txt",
  3913. "dotnet_library_license.txt",
  3914. "lib/MonoAndroid10/_._",
  3915. "lib/MonoTouch10/_._",
  3916. "lib/net46/Microsoft.Win32.Primitives.dll",
  3917. "lib/xamarinios10/_._",
  3918. "lib/xamarinmac20/_._",
  3919. "lib/xamarintvos10/_._",
  3920. "lib/xamarinwatchos10/_._",
  3921. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3922. "microsoft.win32.primitives.nuspec",
  3923. "ref/MonoAndroid10/_._",
  3924. "ref/MonoTouch10/_._",
  3925. "ref/net46/Microsoft.Win32.Primitives.dll",
  3926. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3927. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3928. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3929. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3930. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3931. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3932. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3933. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3934. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3935. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3936. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3937. "ref/xamarinios10/_._",
  3938. "ref/xamarinmac20/_._",
  3939. "ref/xamarintvos10/_._",
  3940. "ref/xamarinwatchos10/_._"
  3941. ]
  3942. },
  3943. "Microsoft.Win32.Registry/4.7.0": {
  3944. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3945. "type": "package",
  3946. "path": "microsoft.win32.registry/4.7.0",
  3947. "files": [
  3948. ".nupkg.metadata",
  3949. ".signature.p7s",
  3950. "LICENSE.TXT",
  3951. "THIRD-PARTY-NOTICES.TXT",
  3952. "lib/net46/Microsoft.Win32.Registry.dll",
  3953. "lib/net461/Microsoft.Win32.Registry.dll",
  3954. "lib/net461/Microsoft.Win32.Registry.xml",
  3955. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3956. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3957. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3958. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3959. "microsoft.win32.registry.nuspec",
  3960. "ref/net46/Microsoft.Win32.Registry.dll",
  3961. "ref/net461/Microsoft.Win32.Registry.dll",
  3962. "ref/net461/Microsoft.Win32.Registry.xml",
  3963. "ref/net472/Microsoft.Win32.Registry.dll",
  3964. "ref/net472/Microsoft.Win32.Registry.xml",
  3965. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3966. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3967. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3968. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3969. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3970. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3971. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3972. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3973. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3974. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3975. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3976. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3977. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3978. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3979. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3980. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3981. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3982. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3983. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3984. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3985. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3986. "useSharedDesignerContext.txt",
  3987. "version.txt"
  3988. ]
  3989. },
  3990. "Microsoft.Win32.SystemEvents/4.7.0": {
  3991. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3992. "type": "package",
  3993. "path": "microsoft.win32.systemevents/4.7.0",
  3994. "files": [
  3995. ".nupkg.metadata",
  3996. ".signature.p7s",
  3997. "LICENSE.TXT",
  3998. "THIRD-PARTY-NOTICES.TXT",
  3999. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4000. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4001. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4002. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4003. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4004. "microsoft.win32.systemevents.nuspec",
  4005. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4006. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4007. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4008. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4009. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4010. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4011. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4012. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4013. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4014. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4015. "useSharedDesignerContext.txt",
  4016. "version.txt"
  4017. ]
  4018. },
  4019. "MSTest.TestAdapter/2.2.3": {
  4020. "sha512": "Xxc6+JyELKOmM46CYrHxL9f2LMZGnx1Neh0dr52THZbmVTwlJM1tj0U5RQ50G+wxsfsU8ZfR1HAUugc+64b6TA==",
  4021. "type": "package",
  4022. "path": "mstest.testadapter/2.2.3",
  4023. "files": [
  4024. ".nupkg.metadata",
  4025. ".signature.p7s",
  4026. "LICENSE",
  4027. "build/_common/Microsoft.TestPlatform.AdapterUtilities.dll",
  4028. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  4029. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll",
  4030. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4031. "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4032. "build/_common/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4033. "build/_common/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4034. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4035. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4036. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4037. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4038. "build/_common/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4039. "build/_common/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4040. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4041. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4042. "build/_common/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4043. "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4044. "build/_common/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4045. "build/_common/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4046. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4047. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4048. "build/_common/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4049. "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4050. "build/_common/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4051. "build/_common/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4052. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4053. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4054. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4055. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4056. "build/_common/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4057. "build/_common/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4058. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4059. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4060. "build/_common/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4061. "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4062. "build/_common/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4063. "build/_common/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4064. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4065. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4066. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4067. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4068. "build/_common/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4069. "build/_common/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4070. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4071. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4072. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4073. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4074. "build/_common/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4075. "build/_common/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4076. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4077. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4078. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4079. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4080. "build/_common/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4081. "build/_common/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4082. "build/_common/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4083. "build/_common/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4084. "build/_common/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4085. "build/_common/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4086. "build/_common/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4087. "build/_common/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4088. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4089. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4090. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4091. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4092. "build/_common/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4093. "build/_common/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4094. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4095. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4096. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4097. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4098. "build/_common/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4099. "build/_common/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4100. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4101. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4102. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4103. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4104. "build/_common/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4105. "build/_common/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4106. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4107. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4108. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4109. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4110. "build/net45/MSTest.TestAdapter.props",
  4111. "build/net45/MSTest.TestAdapter.targets",
  4112. "build/net45/Microsoft.TestPlatform.AdapterUtilities.dll",
  4113. "build/net45/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4114. "build/net45/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4115. "build/net45/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4116. "build/net45/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4117. "build/net45/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4118. "build/net45/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4119. "build/net45/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4120. "build/net45/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4121. "build/net45/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4122. "build/net45/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4123. "build/net45/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4124. "build/net45/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4125. "build/net45/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4126. "build/netcoreapp1.0/MSTest.TestAdapter.props",
  4127. "build/netcoreapp1.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  4128. "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4129. "build/netcoreapp1.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4130. "build/netcoreapp1.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4131. "build/netcoreapp1.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4132. "build/netcoreapp1.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4133. "build/netcoreapp1.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4134. "build/netcoreapp1.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4135. "build/netcoreapp1.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4136. "build/netcoreapp1.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4137. "build/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4138. "build/netcoreapp1.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4139. "build/netcoreapp1.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4140. "build/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4141. "build/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4142. "build/netstandard1.5/MSTest.TestAdapter.props",
  4143. "build/netstandard1.5/Microsoft.TestPlatform.AdapterUtilities.dll",
  4144. "build/netstandard1.5/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4145. "build/netstandard1.5/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4146. "build/netstandard1.5/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4147. "build/netstandard1.5/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4148. "build/netstandard1.5/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4149. "build/netstandard1.5/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4150. "build/netstandard1.5/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4151. "build/netstandard1.5/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4152. "build/netstandard1.5/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4153. "build/netstandard1.5/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4154. "build/netstandard1.5/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4155. "build/netstandard1.5/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4156. "build/netstandard1.5/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4157. "build/netstandard1.5/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4158. "build/uap10.0/MSTest.TestAdapter.props",
  4159. "build/uap10.0/MSTest.TestAdapter.targets",
  4160. "build/uap10.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  4161. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4162. "build/uap10.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4163. "build/uap10.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4164. "build/uap10.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4165. "build/uap10.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4166. "build/uap10.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4167. "build/uap10.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4168. "build/uap10.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4169. "build/uap10.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4170. "build/uap10.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4171. "build/uap10.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4172. "build/uap10.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4173. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4174. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  4175. "mstest.testadapter.2.2.3.nupkg.sha512",
  4176. "mstest.testadapter.nuspec"
  4177. ]
  4178. },
  4179. "MSTest.TestFramework/2.2.3": {
  4180. "sha512": "wqrF2D/uqhTCFJ4bQjhf5vLPXnsjbRZMncr2/+wnhy922YAqLGO2VOjQ6grxGqOWyVWFeIDnQFpLKFRNnrAd7w==",
  4181. "type": "package",
  4182. "path": "mstest.testframework/2.2.3",
  4183. "files": [
  4184. ".nupkg.metadata",
  4185. ".signature.p7s",
  4186. "LICENSE",
  4187. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4188. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4189. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4190. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4191. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4192. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4193. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4194. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4195. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4196. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4197. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4198. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4199. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4200. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4201. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4202. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4203. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4204. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4205. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4206. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4207. "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4208. "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4209. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4210. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4211. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4212. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4213. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4214. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4215. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4216. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4217. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4218. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4219. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4220. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4221. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4222. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4223. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4224. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4225. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4226. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4227. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4228. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4229. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4230. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4231. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4232. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4233. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4234. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4235. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4236. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4237. "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4238. "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4239. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4240. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4241. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4242. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4243. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4244. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4245. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4246. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4247. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4248. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4249. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4250. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4251. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4252. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4253. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4254. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4255. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4256. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4257. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4258. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4259. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4260. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4261. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4262. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4263. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4264. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4265. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4266. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4267. "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4268. "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4269. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4270. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4271. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4272. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4273. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4274. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4275. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4276. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4277. "mstest.testframework.2.2.3.nupkg.sha512",
  4278. "mstest.testframework.nuspec"
  4279. ]
  4280. },
  4281. "MySql.Data/8.0.22": {
  4282. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  4283. "type": "package",
  4284. "path": "mysql.data/8.0.22",
  4285. "files": [
  4286. ".nupkg.metadata",
  4287. ".signature.p7s",
  4288. "lib/net452/MySql.Data.dll",
  4289. "lib/net452/MySql.Data.xml",
  4290. "lib/net452/Ubiety.Dns.Core.dll",
  4291. "lib/net452/Zstandard.Net.dll",
  4292. "lib/net48/MySql.Data.dll",
  4293. "lib/net48/MySql.Data.xml",
  4294. "lib/net48/Ubiety.Dns.Core.dll",
  4295. "lib/net48/Zstandard.Net.dll",
  4296. "lib/net5.0/MySql.Data.dll",
  4297. "lib/net5.0/MySql.Data.xml",
  4298. "lib/net5.0/Ubiety.Dns.Core.dll",
  4299. "lib/net5.0/Zstandard.Net.dll",
  4300. "lib/netstandard2.0/MySql.Data.dll",
  4301. "lib/netstandard2.0/MySql.Data.xml",
  4302. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4303. "lib/netstandard2.0/Zstandard.Net.dll",
  4304. "lib/netstandard2.1/MySql.Data.dll",
  4305. "lib/netstandard2.1/MySql.Data.xml",
  4306. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4307. "lib/netstandard2.1/Zstandard.Net.dll",
  4308. "mysql.data.8.0.22.nupkg.sha512",
  4309. "mysql.data.nuspec"
  4310. ]
  4311. },
  4312. "MySql.Data.EntityFrameworkCore/8.0.22": {
  4313. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  4314. "type": "package",
  4315. "path": "mysql.data.entityframeworkcore/8.0.22",
  4316. "files": [
  4317. ".nupkg.metadata",
  4318. ".signature.p7s",
  4319. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  4320. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  4321. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  4322. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  4323. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  4324. "mysql.data.entityframeworkcore.nuspec"
  4325. ]
  4326. },
  4327. "MySqlConnector/1.1.0": {
  4328. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4329. "type": "package",
  4330. "path": "mysqlconnector/1.1.0",
  4331. "files": [
  4332. ".nupkg.metadata",
  4333. ".signature.p7s",
  4334. "lib/net45/MySqlConnector.dll",
  4335. "lib/net45/MySqlConnector.xml",
  4336. "lib/net461/MySqlConnector.dll",
  4337. "lib/net461/MySqlConnector.xml",
  4338. "lib/net471/MySqlConnector.dll",
  4339. "lib/net471/MySqlConnector.xml",
  4340. "lib/net5.0/MySqlConnector.dll",
  4341. "lib/net5.0/MySqlConnector.xml",
  4342. "lib/netcoreapp2.1/MySqlConnector.dll",
  4343. "lib/netcoreapp2.1/MySqlConnector.xml",
  4344. "lib/netcoreapp3.1/MySqlConnector.dll",
  4345. "lib/netcoreapp3.1/MySqlConnector.xml",
  4346. "lib/netstandard1.3/MySqlConnector.dll",
  4347. "lib/netstandard1.3/MySqlConnector.xml",
  4348. "lib/netstandard2.0/MySqlConnector.dll",
  4349. "lib/netstandard2.0/MySqlConnector.xml",
  4350. "lib/netstandard2.1/MySqlConnector.dll",
  4351. "lib/netstandard2.1/MySqlConnector.xml",
  4352. "logo.png",
  4353. "mysqlconnector.1.1.0.nupkg.sha512",
  4354. "mysqlconnector.nuspec"
  4355. ]
  4356. },
  4357. "NETStandard.Library/1.6.1": {
  4358. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4359. "type": "package",
  4360. "path": "netstandard.library/1.6.1",
  4361. "files": [
  4362. ".nupkg.metadata",
  4363. ".signature.p7s",
  4364. "ThirdPartyNotices.txt",
  4365. "dotnet_library_license.txt",
  4366. "netstandard.library.1.6.1.nupkg.sha512",
  4367. "netstandard.library.nuspec"
  4368. ]
  4369. },
  4370. "Newtonsoft.Json/9.0.1": {
  4371. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  4372. "type": "package",
  4373. "path": "newtonsoft.json/9.0.1",
  4374. "hasTools": true,
  4375. "files": [
  4376. ".nupkg.metadata",
  4377. ".signature.p7s",
  4378. "lib/net20/Newtonsoft.Json.dll",
  4379. "lib/net20/Newtonsoft.Json.xml",
  4380. "lib/net35/Newtonsoft.Json.dll",
  4381. "lib/net35/Newtonsoft.Json.xml",
  4382. "lib/net40/Newtonsoft.Json.dll",
  4383. "lib/net40/Newtonsoft.Json.xml",
  4384. "lib/net45/Newtonsoft.Json.dll",
  4385. "lib/net45/Newtonsoft.Json.xml",
  4386. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4387. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4388. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4389. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4390. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4391. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4392. "newtonsoft.json.9.0.1.nupkg.sha512",
  4393. "newtonsoft.json.nuspec",
  4394. "tools/install.ps1"
  4395. ]
  4396. },
  4397. "NSubstitute/4.2.2": {
  4398. "sha512": "s+H1fUo+WSymYxNdZlwhekdNDLv4w0ZvmwYheMEe4tWACcMDNoqfcDpeL66RyWfurNvvIYQJNP3VUwX2aAC1gw==",
  4399. "type": "package",
  4400. "path": "nsubstitute/4.2.2",
  4401. "files": [
  4402. ".nupkg.metadata",
  4403. ".signature.p7s",
  4404. "lib/net45/NSubstitute.dll",
  4405. "lib/net45/NSubstitute.xml",
  4406. "lib/net46/NSubstitute.dll",
  4407. "lib/net46/NSubstitute.xml",
  4408. "lib/netstandard1.3/NSubstitute.dll",
  4409. "lib/netstandard1.3/NSubstitute.xml",
  4410. "lib/netstandard2.0/NSubstitute.dll",
  4411. "lib/netstandard2.0/NSubstitute.xml",
  4412. "nsubstitute.4.2.2.nupkg.sha512",
  4413. "nsubstitute.nuspec"
  4414. ]
  4415. },
  4416. "NuGet.Frameworks/5.0.0": {
  4417. "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==",
  4418. "type": "package",
  4419. "path": "nuget.frameworks/5.0.0",
  4420. "files": [
  4421. ".nupkg.metadata",
  4422. ".signature.p7s",
  4423. "lib/net40/NuGet.Frameworks.dll",
  4424. "lib/net40/NuGet.Frameworks.xml",
  4425. "lib/net472/NuGet.Frameworks.dll",
  4426. "lib/net472/NuGet.Frameworks.xml",
  4427. "lib/netstandard2.0/NuGet.Frameworks.dll",
  4428. "lib/netstandard2.0/NuGet.Frameworks.xml",
  4429. "nuget.frameworks.5.0.0.nupkg.sha512",
  4430. "nuget.frameworks.nuspec"
  4431. ]
  4432. },
  4433. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4434. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4435. "type": "package",
  4436. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "icon.png",
  4441. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4442. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4443. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4444. "pomelo.entityframeworkcore.mysql.nuspec"
  4445. ]
  4446. },
  4447. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4448. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4449. "type": "package",
  4450. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4451. "files": [
  4452. ".nupkg.metadata",
  4453. ".signature.p7s",
  4454. "ThirdPartyNotices.txt",
  4455. "dotnet_library_license.txt",
  4456. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4457. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4458. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4459. ]
  4460. },
  4461. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4462. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4463. "type": "package",
  4464. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4465. "files": [
  4466. ".nupkg.metadata",
  4467. ".signature.p7s",
  4468. "ThirdPartyNotices.txt",
  4469. "dotnet_library_license.txt",
  4470. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4471. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4472. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4473. ]
  4474. },
  4475. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4476. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4477. "type": "package",
  4478. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4479. "files": [
  4480. ".nupkg.metadata",
  4481. ".signature.p7s",
  4482. "ThirdPartyNotices.txt",
  4483. "dotnet_library_license.txt",
  4484. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4485. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4486. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4487. ]
  4488. },
  4489. "runtime.native.System/4.3.0": {
  4490. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4491. "type": "package",
  4492. "path": "runtime.native.system/4.3.0",
  4493. "files": [
  4494. ".nupkg.metadata",
  4495. ".signature.p7s",
  4496. "ThirdPartyNotices.txt",
  4497. "dotnet_library_license.txt",
  4498. "lib/netstandard1.0/_._",
  4499. "runtime.native.system.4.3.0.nupkg.sha512",
  4500. "runtime.native.system.nuspec"
  4501. ]
  4502. },
  4503. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  4504. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  4505. "type": "package",
  4506. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  4507. "files": [
  4508. ".nupkg.metadata",
  4509. ".signature.p7s",
  4510. "LICENSE.TXT",
  4511. "THIRD-PARTY-NOTICES.TXT",
  4512. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  4513. "runtime.native.system.data.sqlclient.sni.nuspec",
  4514. "useSharedDesignerContext.txt",
  4515. "version.txt"
  4516. ]
  4517. },
  4518. "runtime.native.System.IO.Compression/4.3.0": {
  4519. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4520. "type": "package",
  4521. "path": "runtime.native.system.io.compression/4.3.0",
  4522. "files": [
  4523. ".nupkg.metadata",
  4524. ".signature.p7s",
  4525. "ThirdPartyNotices.txt",
  4526. "dotnet_library_license.txt",
  4527. "lib/netstandard1.0/_._",
  4528. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4529. "runtime.native.system.io.compression.nuspec"
  4530. ]
  4531. },
  4532. "runtime.native.System.Net.Http/4.3.0": {
  4533. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4534. "type": "package",
  4535. "path": "runtime.native.system.net.http/4.3.0",
  4536. "files": [
  4537. ".nupkg.metadata",
  4538. ".signature.p7s",
  4539. "ThirdPartyNotices.txt",
  4540. "dotnet_library_license.txt",
  4541. "lib/netstandard1.0/_._",
  4542. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4543. "runtime.native.system.net.http.nuspec"
  4544. ]
  4545. },
  4546. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4547. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4548. "type": "package",
  4549. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4550. "files": [
  4551. ".nupkg.metadata",
  4552. ".signature.p7s",
  4553. "ThirdPartyNotices.txt",
  4554. "dotnet_library_license.txt",
  4555. "lib/netstandard1.0/_._",
  4556. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4557. "runtime.native.system.security.cryptography.apple.nuspec"
  4558. ]
  4559. },
  4560. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4561. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4562. "type": "package",
  4563. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4564. "files": [
  4565. ".nupkg.metadata",
  4566. ".signature.p7s",
  4567. "ThirdPartyNotices.txt",
  4568. "dotnet_library_license.txt",
  4569. "lib/netstandard1.0/_._",
  4570. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4571. "runtime.native.system.security.cryptography.openssl.nuspec"
  4572. ]
  4573. },
  4574. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4575. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4576. "type": "package",
  4577. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4578. "files": [
  4579. ".nupkg.metadata",
  4580. ".signature.p7s",
  4581. "ThirdPartyNotices.txt",
  4582. "dotnet_library_license.txt",
  4583. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4584. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4585. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4586. ]
  4587. },
  4588. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4589. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4590. "type": "package",
  4591. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4592. "files": [
  4593. ".nupkg.metadata",
  4594. ".signature.p7s",
  4595. "ThirdPartyNotices.txt",
  4596. "dotnet_library_license.txt",
  4597. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4598. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4599. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4600. ]
  4601. },
  4602. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4603. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4604. "type": "package",
  4605. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4606. "files": [
  4607. ".nupkg.metadata",
  4608. ".signature.p7s",
  4609. "ThirdPartyNotices.txt",
  4610. "dotnet_library_license.txt",
  4611. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4612. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4613. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4614. ]
  4615. },
  4616. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4617. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4618. "type": "package",
  4619. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4620. "files": [
  4621. ".nupkg.metadata",
  4622. ".signature.p7s",
  4623. "ThirdPartyNotices.txt",
  4624. "dotnet_library_license.txt",
  4625. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4626. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4627. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4628. ]
  4629. },
  4630. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4631. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4632. "type": "package",
  4633. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4634. "files": [
  4635. ".nupkg.metadata",
  4636. ".signature.p7s",
  4637. "ThirdPartyNotices.txt",
  4638. "dotnet_library_license.txt",
  4639. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4640. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4641. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4642. ]
  4643. },
  4644. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4645. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4646. "type": "package",
  4647. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4648. "files": [
  4649. ".nupkg.metadata",
  4650. ".signature.p7s",
  4651. "ThirdPartyNotices.txt",
  4652. "dotnet_library_license.txt",
  4653. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4654. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4655. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4656. ]
  4657. },
  4658. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4659. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4660. "type": "package",
  4661. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4662. "files": [
  4663. ".nupkg.metadata",
  4664. ".signature.p7s",
  4665. "ThirdPartyNotices.txt",
  4666. "dotnet_library_license.txt",
  4667. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4668. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4669. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4670. ]
  4671. },
  4672. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4673. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4674. "type": "package",
  4675. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4676. "files": [
  4677. ".nupkg.metadata",
  4678. ".signature.p7s",
  4679. "ThirdPartyNotices.txt",
  4680. "dotnet_library_license.txt",
  4681. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4682. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4683. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4684. ]
  4685. },
  4686. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4687. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4688. "type": "package",
  4689. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4690. "files": [
  4691. ".nupkg.metadata",
  4692. ".signature.p7s",
  4693. "ThirdPartyNotices.txt",
  4694. "dotnet_library_license.txt",
  4695. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4696. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4697. "runtimes/win-arm64/native/sni.dll",
  4698. "useSharedDesignerContext.txt",
  4699. "version.txt"
  4700. ]
  4701. },
  4702. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4703. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4704. "type": "package",
  4705. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4706. "files": [
  4707. ".nupkg.metadata",
  4708. ".signature.p7s",
  4709. "ThirdPartyNotices.txt",
  4710. "dotnet_library_license.txt",
  4711. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4712. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4713. "runtimes/win-x64/native/sni.dll",
  4714. "useSharedDesignerContext.txt",
  4715. "version.txt"
  4716. ]
  4717. },
  4718. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4719. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4720. "type": "package",
  4721. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4722. "files": [
  4723. ".nupkg.metadata",
  4724. ".signature.p7s",
  4725. "ThirdPartyNotices.txt",
  4726. "dotnet_library_license.txt",
  4727. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4728. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4729. "runtimes/win-x86/native/sni.dll",
  4730. "useSharedDesignerContext.txt",
  4731. "version.txt"
  4732. ]
  4733. },
  4734. "SSH.NET/2016.1.0": {
  4735. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  4736. "type": "package",
  4737. "path": "ssh.net/2016.1.0",
  4738. "files": [
  4739. ".nupkg.metadata",
  4740. ".signature.p7s",
  4741. "lib/net35/Renci.SshNet.dll",
  4742. "lib/net35/Renci.SshNet.xml",
  4743. "lib/net40/Renci.SshNet.dll",
  4744. "lib/net40/Renci.SshNet.xml",
  4745. "lib/netstandard1.3/Renci.SshNet.dll",
  4746. "lib/netstandard1.3/Renci.SshNet.xml",
  4747. "lib/sl4/Renci.SshNet.dll",
  4748. "lib/sl4/Renci.SshNet.xml",
  4749. "lib/sl5/Renci.SshNet.dll",
  4750. "lib/sl5/Renci.SshNet.xml",
  4751. "lib/uap10/Renci.SshNet.dll",
  4752. "lib/uap10/Renci.SshNet.xml",
  4753. "lib/wp71/Renci.SshNet.dll",
  4754. "lib/wp71/Renci.SshNet.xml",
  4755. "lib/wp8/Renci.SshNet.dll",
  4756. "lib/wp8/Renci.SshNet.xml",
  4757. "ssh.net.2016.1.0.nupkg.sha512",
  4758. "ssh.net.nuspec"
  4759. ]
  4760. },
  4761. "SshNet.Security.Cryptography/1.2.0": {
  4762. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  4763. "type": "package",
  4764. "path": "sshnet.security.cryptography/1.2.0",
  4765. "files": [
  4766. ".nupkg.metadata",
  4767. ".signature.p7s",
  4768. "lib/net20/SshNet.Security.Cryptography.dll",
  4769. "lib/net20/SshNet.Security.Cryptography.xml",
  4770. "lib/net40/SshNet.Security.Cryptography.dll",
  4771. "lib/net40/SshNet.Security.Cryptography.xml",
  4772. "lib/net45/SshNet.Security.Cryptography.dll",
  4773. "lib/net45/SshNet.Security.Cryptography.xml",
  4774. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4775. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4776. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4777. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4778. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4779. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4780. "lib/sl4/SshNet.Security.Cryptography.dll",
  4781. "lib/sl4/SshNet.Security.Cryptography.xml",
  4782. "lib/sl5/SshNet.Security.Cryptography.dll",
  4783. "lib/sl5/SshNet.Security.Cryptography.xml",
  4784. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4785. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4786. "lib/wp71/SshNet.Security.Cryptography.dll",
  4787. "lib/wp71/SshNet.Security.Cryptography.xml",
  4788. "lib/wp8/SshNet.Security.Cryptography.dll",
  4789. "lib/wp8/SshNet.Security.Cryptography.xml",
  4790. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  4791. "sshnet.security.cryptography.nuspec"
  4792. ]
  4793. },
  4794. "System.AppContext/4.3.0": {
  4795. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4796. "type": "package",
  4797. "path": "system.appcontext/4.3.0",
  4798. "files": [
  4799. ".nupkg.metadata",
  4800. ".signature.p7s",
  4801. "ThirdPartyNotices.txt",
  4802. "dotnet_library_license.txt",
  4803. "lib/MonoAndroid10/_._",
  4804. "lib/MonoTouch10/_._",
  4805. "lib/net46/System.AppContext.dll",
  4806. "lib/net463/System.AppContext.dll",
  4807. "lib/netcore50/System.AppContext.dll",
  4808. "lib/netstandard1.6/System.AppContext.dll",
  4809. "lib/xamarinios10/_._",
  4810. "lib/xamarinmac20/_._",
  4811. "lib/xamarintvos10/_._",
  4812. "lib/xamarinwatchos10/_._",
  4813. "ref/MonoAndroid10/_._",
  4814. "ref/MonoTouch10/_._",
  4815. "ref/net46/System.AppContext.dll",
  4816. "ref/net463/System.AppContext.dll",
  4817. "ref/netstandard/_._",
  4818. "ref/netstandard1.3/System.AppContext.dll",
  4819. "ref/netstandard1.3/System.AppContext.xml",
  4820. "ref/netstandard1.3/de/System.AppContext.xml",
  4821. "ref/netstandard1.3/es/System.AppContext.xml",
  4822. "ref/netstandard1.3/fr/System.AppContext.xml",
  4823. "ref/netstandard1.3/it/System.AppContext.xml",
  4824. "ref/netstandard1.3/ja/System.AppContext.xml",
  4825. "ref/netstandard1.3/ko/System.AppContext.xml",
  4826. "ref/netstandard1.3/ru/System.AppContext.xml",
  4827. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4828. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4829. "ref/netstandard1.6/System.AppContext.dll",
  4830. "ref/netstandard1.6/System.AppContext.xml",
  4831. "ref/netstandard1.6/de/System.AppContext.xml",
  4832. "ref/netstandard1.6/es/System.AppContext.xml",
  4833. "ref/netstandard1.6/fr/System.AppContext.xml",
  4834. "ref/netstandard1.6/it/System.AppContext.xml",
  4835. "ref/netstandard1.6/ja/System.AppContext.xml",
  4836. "ref/netstandard1.6/ko/System.AppContext.xml",
  4837. "ref/netstandard1.6/ru/System.AppContext.xml",
  4838. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4839. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4840. "ref/xamarinios10/_._",
  4841. "ref/xamarinmac20/_._",
  4842. "ref/xamarintvos10/_._",
  4843. "ref/xamarinwatchos10/_._",
  4844. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4845. "system.appcontext.4.3.0.nupkg.sha512",
  4846. "system.appcontext.nuspec"
  4847. ]
  4848. },
  4849. "System.Buffers/4.5.1": {
  4850. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4851. "type": "package",
  4852. "path": "system.buffers/4.5.1",
  4853. "files": [
  4854. ".nupkg.metadata",
  4855. ".signature.p7s",
  4856. "LICENSE.TXT",
  4857. "THIRD-PARTY-NOTICES.TXT",
  4858. "lib/net461/System.Buffers.dll",
  4859. "lib/net461/System.Buffers.xml",
  4860. "lib/netcoreapp2.0/_._",
  4861. "lib/netstandard1.1/System.Buffers.dll",
  4862. "lib/netstandard1.1/System.Buffers.xml",
  4863. "lib/netstandard2.0/System.Buffers.dll",
  4864. "lib/netstandard2.0/System.Buffers.xml",
  4865. "lib/uap10.0.16299/_._",
  4866. "ref/net45/System.Buffers.dll",
  4867. "ref/net45/System.Buffers.xml",
  4868. "ref/netcoreapp2.0/_._",
  4869. "ref/netstandard1.1/System.Buffers.dll",
  4870. "ref/netstandard1.1/System.Buffers.xml",
  4871. "ref/netstandard2.0/System.Buffers.dll",
  4872. "ref/netstandard2.0/System.Buffers.xml",
  4873. "ref/uap10.0.16299/_._",
  4874. "system.buffers.4.5.1.nupkg.sha512",
  4875. "system.buffers.nuspec",
  4876. "useSharedDesignerContext.txt",
  4877. "version.txt"
  4878. ]
  4879. },
  4880. "System.Collections/4.3.0": {
  4881. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4882. "type": "package",
  4883. "path": "system.collections/4.3.0",
  4884. "files": [
  4885. ".nupkg.metadata",
  4886. ".signature.p7s",
  4887. "ThirdPartyNotices.txt",
  4888. "dotnet_library_license.txt",
  4889. "lib/MonoAndroid10/_._",
  4890. "lib/MonoTouch10/_._",
  4891. "lib/net45/_._",
  4892. "lib/portable-net45+win8+wp8+wpa81/_._",
  4893. "lib/win8/_._",
  4894. "lib/wp80/_._",
  4895. "lib/wpa81/_._",
  4896. "lib/xamarinios10/_._",
  4897. "lib/xamarinmac20/_._",
  4898. "lib/xamarintvos10/_._",
  4899. "lib/xamarinwatchos10/_._",
  4900. "ref/MonoAndroid10/_._",
  4901. "ref/MonoTouch10/_._",
  4902. "ref/net45/_._",
  4903. "ref/netcore50/System.Collections.dll",
  4904. "ref/netcore50/System.Collections.xml",
  4905. "ref/netcore50/de/System.Collections.xml",
  4906. "ref/netcore50/es/System.Collections.xml",
  4907. "ref/netcore50/fr/System.Collections.xml",
  4908. "ref/netcore50/it/System.Collections.xml",
  4909. "ref/netcore50/ja/System.Collections.xml",
  4910. "ref/netcore50/ko/System.Collections.xml",
  4911. "ref/netcore50/ru/System.Collections.xml",
  4912. "ref/netcore50/zh-hans/System.Collections.xml",
  4913. "ref/netcore50/zh-hant/System.Collections.xml",
  4914. "ref/netstandard1.0/System.Collections.dll",
  4915. "ref/netstandard1.0/System.Collections.xml",
  4916. "ref/netstandard1.0/de/System.Collections.xml",
  4917. "ref/netstandard1.0/es/System.Collections.xml",
  4918. "ref/netstandard1.0/fr/System.Collections.xml",
  4919. "ref/netstandard1.0/it/System.Collections.xml",
  4920. "ref/netstandard1.0/ja/System.Collections.xml",
  4921. "ref/netstandard1.0/ko/System.Collections.xml",
  4922. "ref/netstandard1.0/ru/System.Collections.xml",
  4923. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4924. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4925. "ref/netstandard1.3/System.Collections.dll",
  4926. "ref/netstandard1.3/System.Collections.xml",
  4927. "ref/netstandard1.3/de/System.Collections.xml",
  4928. "ref/netstandard1.3/es/System.Collections.xml",
  4929. "ref/netstandard1.3/fr/System.Collections.xml",
  4930. "ref/netstandard1.3/it/System.Collections.xml",
  4931. "ref/netstandard1.3/ja/System.Collections.xml",
  4932. "ref/netstandard1.3/ko/System.Collections.xml",
  4933. "ref/netstandard1.3/ru/System.Collections.xml",
  4934. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4935. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4936. "ref/portable-net45+win8+wp8+wpa81/_._",
  4937. "ref/win8/_._",
  4938. "ref/wp80/_._",
  4939. "ref/wpa81/_._",
  4940. "ref/xamarinios10/_._",
  4941. "ref/xamarinmac20/_._",
  4942. "ref/xamarintvos10/_._",
  4943. "ref/xamarinwatchos10/_._",
  4944. "system.collections.4.3.0.nupkg.sha512",
  4945. "system.collections.nuspec"
  4946. ]
  4947. },
  4948. "System.Collections.Concurrent/4.3.0": {
  4949. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4950. "type": "package",
  4951. "path": "system.collections.concurrent/4.3.0",
  4952. "files": [
  4953. ".nupkg.metadata",
  4954. ".signature.p7s",
  4955. "ThirdPartyNotices.txt",
  4956. "dotnet_library_license.txt",
  4957. "lib/MonoAndroid10/_._",
  4958. "lib/MonoTouch10/_._",
  4959. "lib/net45/_._",
  4960. "lib/netcore50/System.Collections.Concurrent.dll",
  4961. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4962. "lib/portable-net45+win8+wpa81/_._",
  4963. "lib/win8/_._",
  4964. "lib/wpa81/_._",
  4965. "lib/xamarinios10/_._",
  4966. "lib/xamarinmac20/_._",
  4967. "lib/xamarintvos10/_._",
  4968. "lib/xamarinwatchos10/_._",
  4969. "ref/MonoAndroid10/_._",
  4970. "ref/MonoTouch10/_._",
  4971. "ref/net45/_._",
  4972. "ref/netcore50/System.Collections.Concurrent.dll",
  4973. "ref/netcore50/System.Collections.Concurrent.xml",
  4974. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4975. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4976. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4977. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4978. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4979. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4980. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4981. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4982. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4983. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4984. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4985. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4986. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4987. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4988. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4989. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4990. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4991. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4992. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4993. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4994. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4995. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4996. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4997. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4998. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4999. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5000. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5001. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5002. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5003. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5004. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5005. "ref/portable-net45+win8+wpa81/_._",
  5006. "ref/win8/_._",
  5007. "ref/wpa81/_._",
  5008. "ref/xamarinios10/_._",
  5009. "ref/xamarinmac20/_._",
  5010. "ref/xamarintvos10/_._",
  5011. "ref/xamarinwatchos10/_._",
  5012. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5013. "system.collections.concurrent.nuspec"
  5014. ]
  5015. },
  5016. "System.Collections.Immutable/5.0.0": {
  5017. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5018. "type": "package",
  5019. "path": "system.collections.immutable/5.0.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "Icon.png",
  5024. "LICENSE.TXT",
  5025. "THIRD-PARTY-NOTICES.TXT",
  5026. "lib/net461/System.Collections.Immutable.dll",
  5027. "lib/net461/System.Collections.Immutable.xml",
  5028. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5029. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5030. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5031. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5032. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5033. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5034. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5035. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5036. "system.collections.immutable.5.0.0.nupkg.sha512",
  5037. "system.collections.immutable.nuspec",
  5038. "useSharedDesignerContext.txt",
  5039. "version.txt"
  5040. ]
  5041. },
  5042. "System.Collections.NonGeneric/4.3.0": {
  5043. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5044. "type": "package",
  5045. "path": "system.collections.nongeneric/4.3.0",
  5046. "files": [
  5047. ".nupkg.metadata",
  5048. ".signature.p7s",
  5049. "ThirdPartyNotices.txt",
  5050. "dotnet_library_license.txt",
  5051. "lib/MonoAndroid10/_._",
  5052. "lib/MonoTouch10/_._",
  5053. "lib/net46/System.Collections.NonGeneric.dll",
  5054. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5055. "lib/xamarinios10/_._",
  5056. "lib/xamarinmac20/_._",
  5057. "lib/xamarintvos10/_._",
  5058. "lib/xamarinwatchos10/_._",
  5059. "ref/MonoAndroid10/_._",
  5060. "ref/MonoTouch10/_._",
  5061. "ref/net46/System.Collections.NonGeneric.dll",
  5062. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5063. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5064. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5065. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5066. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5067. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5068. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5069. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5070. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5071. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5072. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5073. "ref/xamarinios10/_._",
  5074. "ref/xamarinmac20/_._",
  5075. "ref/xamarintvos10/_._",
  5076. "ref/xamarinwatchos10/_._",
  5077. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5078. "system.collections.nongeneric.nuspec"
  5079. ]
  5080. },
  5081. "System.Collections.Specialized/4.3.0": {
  5082. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5083. "type": "package",
  5084. "path": "system.collections.specialized/4.3.0",
  5085. "files": [
  5086. ".nupkg.metadata",
  5087. ".signature.p7s",
  5088. "ThirdPartyNotices.txt",
  5089. "dotnet_library_license.txt",
  5090. "lib/MonoAndroid10/_._",
  5091. "lib/MonoTouch10/_._",
  5092. "lib/net46/System.Collections.Specialized.dll",
  5093. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5094. "lib/xamarinios10/_._",
  5095. "lib/xamarinmac20/_._",
  5096. "lib/xamarintvos10/_._",
  5097. "lib/xamarinwatchos10/_._",
  5098. "ref/MonoAndroid10/_._",
  5099. "ref/MonoTouch10/_._",
  5100. "ref/net46/System.Collections.Specialized.dll",
  5101. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5102. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5103. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5104. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5105. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5106. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5107. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5108. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5109. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5110. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5111. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5112. "ref/xamarinios10/_._",
  5113. "ref/xamarinmac20/_._",
  5114. "ref/xamarintvos10/_._",
  5115. "ref/xamarinwatchos10/_._",
  5116. "system.collections.specialized.4.3.0.nupkg.sha512",
  5117. "system.collections.specialized.nuspec"
  5118. ]
  5119. },
  5120. "System.ComponentModel/4.3.0": {
  5121. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5122. "type": "package",
  5123. "path": "system.componentmodel/4.3.0",
  5124. "files": [
  5125. ".nupkg.metadata",
  5126. ".signature.p7s",
  5127. "ThirdPartyNotices.txt",
  5128. "dotnet_library_license.txt",
  5129. "lib/MonoAndroid10/_._",
  5130. "lib/MonoTouch10/_._",
  5131. "lib/net45/_._",
  5132. "lib/netcore50/System.ComponentModel.dll",
  5133. "lib/netstandard1.3/System.ComponentModel.dll",
  5134. "lib/portable-net45+win8+wp8+wpa81/_._",
  5135. "lib/win8/_._",
  5136. "lib/wp80/_._",
  5137. "lib/wpa81/_._",
  5138. "lib/xamarinios10/_._",
  5139. "lib/xamarinmac20/_._",
  5140. "lib/xamarintvos10/_._",
  5141. "lib/xamarinwatchos10/_._",
  5142. "ref/MonoAndroid10/_._",
  5143. "ref/MonoTouch10/_._",
  5144. "ref/net45/_._",
  5145. "ref/netcore50/System.ComponentModel.dll",
  5146. "ref/netcore50/System.ComponentModel.xml",
  5147. "ref/netcore50/de/System.ComponentModel.xml",
  5148. "ref/netcore50/es/System.ComponentModel.xml",
  5149. "ref/netcore50/fr/System.ComponentModel.xml",
  5150. "ref/netcore50/it/System.ComponentModel.xml",
  5151. "ref/netcore50/ja/System.ComponentModel.xml",
  5152. "ref/netcore50/ko/System.ComponentModel.xml",
  5153. "ref/netcore50/ru/System.ComponentModel.xml",
  5154. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5155. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5156. "ref/netstandard1.0/System.ComponentModel.dll",
  5157. "ref/netstandard1.0/System.ComponentModel.xml",
  5158. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5159. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5160. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5161. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5162. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5163. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5164. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5165. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5166. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5167. "ref/portable-net45+win8+wp8+wpa81/_._",
  5168. "ref/win8/_._",
  5169. "ref/wp80/_._",
  5170. "ref/wpa81/_._",
  5171. "ref/xamarinios10/_._",
  5172. "ref/xamarinmac20/_._",
  5173. "ref/xamarintvos10/_._",
  5174. "ref/xamarinwatchos10/_._",
  5175. "system.componentmodel.4.3.0.nupkg.sha512",
  5176. "system.componentmodel.nuspec"
  5177. ]
  5178. },
  5179. "System.ComponentModel.Annotations/5.0.0": {
  5180. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5181. "type": "package",
  5182. "path": "system.componentmodel.annotations/5.0.0",
  5183. "files": [
  5184. ".nupkg.metadata",
  5185. ".signature.p7s",
  5186. "Icon.png",
  5187. "LICENSE.TXT",
  5188. "THIRD-PARTY-NOTICES.TXT",
  5189. "lib/MonoAndroid10/_._",
  5190. "lib/MonoTouch10/_._",
  5191. "lib/net45/_._",
  5192. "lib/net461/System.ComponentModel.Annotations.dll",
  5193. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5194. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5195. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5196. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5197. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5198. "lib/portable-net45+win8/_._",
  5199. "lib/win8/_._",
  5200. "lib/xamarinios10/_._",
  5201. "lib/xamarinmac20/_._",
  5202. "lib/xamarintvos10/_._",
  5203. "lib/xamarinwatchos10/_._",
  5204. "ref/MonoAndroid10/_._",
  5205. "ref/MonoTouch10/_._",
  5206. "ref/net45/_._",
  5207. "ref/net461/System.ComponentModel.Annotations.dll",
  5208. "ref/net461/System.ComponentModel.Annotations.xml",
  5209. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5210. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5211. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5212. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5213. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5214. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5215. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5216. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5217. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5218. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5219. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5220. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5221. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5222. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5223. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5224. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5225. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5226. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5227. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5228. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5229. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5230. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5231. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5232. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5233. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5234. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5235. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5236. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5237. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5238. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5239. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5240. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5241. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5242. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5243. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5244. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5245. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5246. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5247. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5248. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5249. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5250. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5251. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5252. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5253. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5254. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5255. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5256. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5257. "ref/portable-net45+win8/_._",
  5258. "ref/win8/_._",
  5259. "ref/xamarinios10/_._",
  5260. "ref/xamarinmac20/_._",
  5261. "ref/xamarintvos10/_._",
  5262. "ref/xamarinwatchos10/_._",
  5263. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5264. "system.componentmodel.annotations.nuspec",
  5265. "useSharedDesignerContext.txt",
  5266. "version.txt"
  5267. ]
  5268. },
  5269. "System.ComponentModel.Primitives/4.3.0": {
  5270. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5271. "type": "package",
  5272. "path": "system.componentmodel.primitives/4.3.0",
  5273. "files": [
  5274. ".nupkg.metadata",
  5275. ".signature.p7s",
  5276. "ThirdPartyNotices.txt",
  5277. "dotnet_library_license.txt",
  5278. "lib/MonoAndroid10/_._",
  5279. "lib/MonoTouch10/_._",
  5280. "lib/net45/System.ComponentModel.Primitives.dll",
  5281. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5282. "lib/xamarinios10/_._",
  5283. "lib/xamarinmac20/_._",
  5284. "lib/xamarintvos10/_._",
  5285. "lib/xamarinwatchos10/_._",
  5286. "ref/MonoAndroid10/_._",
  5287. "ref/MonoTouch10/_._",
  5288. "ref/net45/System.ComponentModel.Primitives.dll",
  5289. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5290. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5291. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5292. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5293. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5294. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5295. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5296. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5297. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5298. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5299. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5300. "ref/xamarinios10/_._",
  5301. "ref/xamarinmac20/_._",
  5302. "ref/xamarintvos10/_._",
  5303. "ref/xamarinwatchos10/_._",
  5304. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5305. "system.componentmodel.primitives.nuspec"
  5306. ]
  5307. },
  5308. "System.ComponentModel.TypeConverter/4.3.0": {
  5309. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5310. "type": "package",
  5311. "path": "system.componentmodel.typeconverter/4.3.0",
  5312. "files": [
  5313. ".nupkg.metadata",
  5314. ".signature.p7s",
  5315. "ThirdPartyNotices.txt",
  5316. "dotnet_library_license.txt",
  5317. "lib/MonoAndroid10/_._",
  5318. "lib/MonoTouch10/_._",
  5319. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5320. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5321. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5322. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5323. "lib/xamarinios10/_._",
  5324. "lib/xamarinmac20/_._",
  5325. "lib/xamarintvos10/_._",
  5326. "lib/xamarinwatchos10/_._",
  5327. "ref/MonoAndroid10/_._",
  5328. "ref/MonoTouch10/_._",
  5329. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5330. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5331. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5332. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5333. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5334. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5335. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5336. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5337. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5338. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5339. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5340. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5341. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5342. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5343. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5344. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5345. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5346. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5347. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5348. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5349. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5350. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5351. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5352. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5353. "ref/xamarinios10/_._",
  5354. "ref/xamarinmac20/_._",
  5355. "ref/xamarintvos10/_._",
  5356. "ref/xamarinwatchos10/_._",
  5357. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5358. "system.componentmodel.typeconverter.nuspec"
  5359. ]
  5360. },
  5361. "System.Configuration.ConfigurationManager/4.4.1": {
  5362. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  5363. "type": "package",
  5364. "path": "system.configuration.configurationmanager/4.4.1",
  5365. "files": [
  5366. ".nupkg.metadata",
  5367. ".signature.p7s",
  5368. "LICENSE.TXT",
  5369. "THIRD-PARTY-NOTICES.TXT",
  5370. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5371. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5372. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5373. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5374. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5375. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5376. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  5377. "system.configuration.configurationmanager.nuspec",
  5378. "useSharedDesignerContext.txt",
  5379. "version.txt"
  5380. ]
  5381. },
  5382. "System.Console/4.3.0": {
  5383. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5384. "type": "package",
  5385. "path": "system.console/4.3.0",
  5386. "files": [
  5387. ".nupkg.metadata",
  5388. ".signature.p7s",
  5389. "ThirdPartyNotices.txt",
  5390. "dotnet_library_license.txt",
  5391. "lib/MonoAndroid10/_._",
  5392. "lib/MonoTouch10/_._",
  5393. "lib/net46/System.Console.dll",
  5394. "lib/xamarinios10/_._",
  5395. "lib/xamarinmac20/_._",
  5396. "lib/xamarintvos10/_._",
  5397. "lib/xamarinwatchos10/_._",
  5398. "ref/MonoAndroid10/_._",
  5399. "ref/MonoTouch10/_._",
  5400. "ref/net46/System.Console.dll",
  5401. "ref/netstandard1.3/System.Console.dll",
  5402. "ref/netstandard1.3/System.Console.xml",
  5403. "ref/netstandard1.3/de/System.Console.xml",
  5404. "ref/netstandard1.3/es/System.Console.xml",
  5405. "ref/netstandard1.3/fr/System.Console.xml",
  5406. "ref/netstandard1.3/it/System.Console.xml",
  5407. "ref/netstandard1.3/ja/System.Console.xml",
  5408. "ref/netstandard1.3/ko/System.Console.xml",
  5409. "ref/netstandard1.3/ru/System.Console.xml",
  5410. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5411. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5412. "ref/xamarinios10/_._",
  5413. "ref/xamarinmac20/_._",
  5414. "ref/xamarintvos10/_._",
  5415. "ref/xamarinwatchos10/_._",
  5416. "system.console.4.3.0.nupkg.sha512",
  5417. "system.console.nuspec"
  5418. ]
  5419. },
  5420. "System.Data.SqlClient/4.8.3": {
  5421. "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
  5422. "type": "package",
  5423. "path": "system.data.sqlclient/4.8.3",
  5424. "files": [
  5425. ".nupkg.metadata",
  5426. ".signature.p7s",
  5427. "Icon.png",
  5428. "LICENSE.TXT",
  5429. "THIRD-PARTY-NOTICES.TXT",
  5430. "lib/MonoAndroid10/_._",
  5431. "lib/MonoTouch10/_._",
  5432. "lib/net451/System.Data.SqlClient.dll",
  5433. "lib/net46/System.Data.SqlClient.dll",
  5434. "lib/net461/System.Data.SqlClient.dll",
  5435. "lib/net461/System.Data.SqlClient.xml",
  5436. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  5437. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  5438. "lib/netstandard1.2/System.Data.SqlClient.dll",
  5439. "lib/netstandard1.2/System.Data.SqlClient.xml",
  5440. "lib/netstandard1.3/System.Data.SqlClient.dll",
  5441. "lib/netstandard1.3/System.Data.SqlClient.xml",
  5442. "lib/netstandard2.0/System.Data.SqlClient.dll",
  5443. "lib/netstandard2.0/System.Data.SqlClient.xml",
  5444. "lib/xamarinios10/_._",
  5445. "lib/xamarinmac20/_._",
  5446. "lib/xamarintvos10/_._",
  5447. "lib/xamarinwatchos10/_._",
  5448. "ref/MonoAndroid10/_._",
  5449. "ref/MonoTouch10/_._",
  5450. "ref/net451/System.Data.SqlClient.dll",
  5451. "ref/net46/System.Data.SqlClient.dll",
  5452. "ref/net461/System.Data.SqlClient.dll",
  5453. "ref/net461/System.Data.SqlClient.xml",
  5454. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  5455. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  5456. "ref/netstandard1.2/System.Data.SqlClient.dll",
  5457. "ref/netstandard1.2/System.Data.SqlClient.xml",
  5458. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  5459. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  5460. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  5461. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  5462. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  5463. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  5464. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  5465. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  5466. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  5467. "ref/netstandard1.3/System.Data.SqlClient.dll",
  5468. "ref/netstandard1.3/System.Data.SqlClient.xml",
  5469. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  5470. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  5471. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  5472. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  5473. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  5474. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  5475. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  5476. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  5477. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  5478. "ref/netstandard2.0/System.Data.SqlClient.dll",
  5479. "ref/netstandard2.0/System.Data.SqlClient.xml",
  5480. "ref/xamarinios10/_._",
  5481. "ref/xamarinmac20/_._",
  5482. "ref/xamarintvos10/_._",
  5483. "ref/xamarinwatchos10/_._",
  5484. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  5485. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  5486. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  5487. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  5488. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  5489. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  5490. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  5491. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  5492. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  5493. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  5494. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  5495. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  5496. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  5497. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  5498. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  5499. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  5500. "system.data.sqlclient.4.8.3.nupkg.sha512",
  5501. "system.data.sqlclient.nuspec",
  5502. "useSharedDesignerContext.txt",
  5503. "version.txt"
  5504. ]
  5505. },
  5506. "System.Diagnostics.Debug/4.3.0": {
  5507. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5508. "type": "package",
  5509. "path": "system.diagnostics.debug/4.3.0",
  5510. "files": [
  5511. ".nupkg.metadata",
  5512. ".signature.p7s",
  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.Diagnostics.Debug.dll",
  5530. "ref/netcore50/System.Diagnostics.Debug.xml",
  5531. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5532. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5533. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5534. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5535. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5536. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5537. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5538. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5539. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5540. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5541. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5542. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5543. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5544. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5545. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5546. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5547. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5548. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5549. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5550. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5551. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5552. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5553. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5554. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5555. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5556. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5557. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5558. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5559. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5560. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5561. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5562. "ref/portable-net45+win8+wp8+wpa81/_._",
  5563. "ref/win8/_._",
  5564. "ref/wp80/_._",
  5565. "ref/wpa81/_._",
  5566. "ref/xamarinios10/_._",
  5567. "ref/xamarinmac20/_._",
  5568. "ref/xamarintvos10/_._",
  5569. "ref/xamarinwatchos10/_._",
  5570. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5571. "system.diagnostics.debug.nuspec"
  5572. ]
  5573. },
  5574. "System.Diagnostics.DiagnosticSource/5.0.1": {
  5575. "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  5576. "type": "package",
  5577. "path": "system.diagnostics.diagnosticsource/5.0.1",
  5578. "files": [
  5579. ".nupkg.metadata",
  5580. ".signature.p7s",
  5581. "Icon.png",
  5582. "LICENSE.TXT",
  5583. "THIRD-PARTY-NOTICES.TXT",
  5584. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5585. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5586. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5587. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5588. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5589. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5590. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5591. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5592. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5593. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5594. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5595. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5596. "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
  5597. "system.diagnostics.diagnosticsource.nuspec",
  5598. "useSharedDesignerContext.txt",
  5599. "version.txt"
  5600. ]
  5601. },
  5602. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  5603. "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  5604. "type": "package",
  5605. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  5606. "files": [
  5607. ".nupkg.metadata",
  5608. ".signature.p7s",
  5609. "ThirdPartyNotices.txt",
  5610. "dotnet_library_license.txt",
  5611. "lib/MonoAndroid10/_._",
  5612. "lib/MonoTouch10/_._",
  5613. "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5614. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5615. "lib/xamarinios10/_._",
  5616. "lib/xamarinmac20/_._",
  5617. "lib/xamarintvos10/_._",
  5618. "lib/xamarinwatchos10/_._",
  5619. "ref/MonoAndroid10/_._",
  5620. "ref/MonoTouch10/_._",
  5621. "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5622. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5623. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
  5624. "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
  5625. "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
  5626. "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
  5627. "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
  5628. "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
  5629. "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
  5630. "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
  5631. "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
  5632. "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
  5633. "ref/xamarinios10/_._",
  5634. "ref/xamarinmac20/_._",
  5635. "ref/xamarintvos10/_._",
  5636. "ref/xamarinwatchos10/_._",
  5637. "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512",
  5638. "system.diagnostics.textwritertracelistener.nuspec"
  5639. ]
  5640. },
  5641. "System.Diagnostics.Tools/4.3.0": {
  5642. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5643. "type": "package",
  5644. "path": "system.diagnostics.tools/4.3.0",
  5645. "files": [
  5646. ".nupkg.metadata",
  5647. ".signature.p7s",
  5648. "ThirdPartyNotices.txt",
  5649. "dotnet_library_license.txt",
  5650. "lib/MonoAndroid10/_._",
  5651. "lib/MonoTouch10/_._",
  5652. "lib/net45/_._",
  5653. "lib/portable-net45+win8+wp8+wpa81/_._",
  5654. "lib/win8/_._",
  5655. "lib/wp80/_._",
  5656. "lib/wpa81/_._",
  5657. "lib/xamarinios10/_._",
  5658. "lib/xamarinmac20/_._",
  5659. "lib/xamarintvos10/_._",
  5660. "lib/xamarinwatchos10/_._",
  5661. "ref/MonoAndroid10/_._",
  5662. "ref/MonoTouch10/_._",
  5663. "ref/net45/_._",
  5664. "ref/netcore50/System.Diagnostics.Tools.dll",
  5665. "ref/netcore50/System.Diagnostics.Tools.xml",
  5666. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5667. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5668. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5669. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5670. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5671. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5672. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5673. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5674. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5675. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5676. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5677. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5678. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5679. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5680. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5681. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5682. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5683. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5684. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5685. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5686. "ref/portable-net45+win8+wp8+wpa81/_._",
  5687. "ref/win8/_._",
  5688. "ref/wp80/_._",
  5689. "ref/wpa81/_._",
  5690. "ref/xamarinios10/_._",
  5691. "ref/xamarinmac20/_._",
  5692. "ref/xamarintvos10/_._",
  5693. "ref/xamarinwatchos10/_._",
  5694. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5695. "system.diagnostics.tools.nuspec"
  5696. ]
  5697. },
  5698. "System.Diagnostics.TraceSource/4.3.0": {
  5699. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5700. "type": "package",
  5701. "path": "system.diagnostics.tracesource/4.3.0",
  5702. "files": [
  5703. ".nupkg.metadata",
  5704. ".signature.p7s",
  5705. "ThirdPartyNotices.txt",
  5706. "dotnet_library_license.txt",
  5707. "lib/MonoAndroid10/_._",
  5708. "lib/MonoTouch10/_._",
  5709. "lib/net46/System.Diagnostics.TraceSource.dll",
  5710. "lib/xamarinios10/_._",
  5711. "lib/xamarinmac20/_._",
  5712. "lib/xamarintvos10/_._",
  5713. "lib/xamarinwatchos10/_._",
  5714. "ref/MonoAndroid10/_._",
  5715. "ref/MonoTouch10/_._",
  5716. "ref/net46/System.Diagnostics.TraceSource.dll",
  5717. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5718. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5719. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5720. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5721. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5722. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5723. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5724. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5725. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5726. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5727. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5728. "ref/xamarinios10/_._",
  5729. "ref/xamarinmac20/_._",
  5730. "ref/xamarintvos10/_._",
  5731. "ref/xamarinwatchos10/_._",
  5732. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5733. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5734. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5735. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5736. "system.diagnostics.tracesource.nuspec"
  5737. ]
  5738. },
  5739. "System.Diagnostics.Tracing/4.3.0": {
  5740. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5741. "type": "package",
  5742. "path": "system.diagnostics.tracing/4.3.0",
  5743. "files": [
  5744. ".nupkg.metadata",
  5745. ".signature.p7s",
  5746. "ThirdPartyNotices.txt",
  5747. "dotnet_library_license.txt",
  5748. "lib/MonoAndroid10/_._",
  5749. "lib/MonoTouch10/_._",
  5750. "lib/net45/_._",
  5751. "lib/net462/System.Diagnostics.Tracing.dll",
  5752. "lib/portable-net45+win8+wpa81/_._",
  5753. "lib/win8/_._",
  5754. "lib/wpa81/_._",
  5755. "lib/xamarinios10/_._",
  5756. "lib/xamarinmac20/_._",
  5757. "lib/xamarintvos10/_._",
  5758. "lib/xamarinwatchos10/_._",
  5759. "ref/MonoAndroid10/_._",
  5760. "ref/MonoTouch10/_._",
  5761. "ref/net45/_._",
  5762. "ref/net462/System.Diagnostics.Tracing.dll",
  5763. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5764. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5765. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5766. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5767. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5768. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5769. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5770. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5771. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5772. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5773. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5774. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5775. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5776. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5777. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5778. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5779. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5780. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5781. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5782. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5783. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5784. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5785. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5786. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5787. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5788. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5789. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5790. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5791. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5792. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5793. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5794. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5795. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5796. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5797. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5798. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5799. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5800. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5801. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5802. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5803. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5804. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5805. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5806. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5807. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5808. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5809. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5810. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5811. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5812. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5813. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5814. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5815. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5816. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5817. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5818. "ref/portable-net45+win8+wpa81/_._",
  5819. "ref/win8/_._",
  5820. "ref/wpa81/_._",
  5821. "ref/xamarinios10/_._",
  5822. "ref/xamarinmac20/_._",
  5823. "ref/xamarintvos10/_._",
  5824. "ref/xamarinwatchos10/_._",
  5825. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5826. "system.diagnostics.tracing.nuspec"
  5827. ]
  5828. },
  5829. "System.Drawing.Common/4.7.0": {
  5830. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  5831. "type": "package",
  5832. "path": "system.drawing.common/4.7.0",
  5833. "files": [
  5834. ".nupkg.metadata",
  5835. ".signature.p7s",
  5836. "LICENSE.TXT",
  5837. "THIRD-PARTY-NOTICES.TXT",
  5838. "lib/MonoAndroid10/_._",
  5839. "lib/MonoTouch10/_._",
  5840. "lib/net461/System.Drawing.Common.dll",
  5841. "lib/netstandard2.0/System.Drawing.Common.dll",
  5842. "lib/xamarinios10/_._",
  5843. "lib/xamarinmac20/_._",
  5844. "lib/xamarintvos10/_._",
  5845. "lib/xamarinwatchos10/_._",
  5846. "ref/MonoAndroid10/_._",
  5847. "ref/MonoTouch10/_._",
  5848. "ref/net461/System.Drawing.Common.dll",
  5849. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5850. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5851. "ref/netstandard2.0/System.Drawing.Common.dll",
  5852. "ref/xamarinios10/_._",
  5853. "ref/xamarinmac20/_._",
  5854. "ref/xamarintvos10/_._",
  5855. "ref/xamarinwatchos10/_._",
  5856. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5857. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5858. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5859. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5860. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5861. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5862. "system.drawing.common.4.7.0.nupkg.sha512",
  5863. "system.drawing.common.nuspec",
  5864. "useSharedDesignerContext.txt",
  5865. "version.txt"
  5866. ]
  5867. },
  5868. "System.Dynamic.Runtime/4.3.0": {
  5869. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  5870. "type": "package",
  5871. "path": "system.dynamic.runtime/4.3.0",
  5872. "files": [
  5873. ".nupkg.metadata",
  5874. ".signature.p7s",
  5875. "ThirdPartyNotices.txt",
  5876. "dotnet_library_license.txt",
  5877. "lib/MonoAndroid10/_._",
  5878. "lib/MonoTouch10/_._",
  5879. "lib/net45/_._",
  5880. "lib/netcore50/System.Dynamic.Runtime.dll",
  5881. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5882. "lib/portable-net45+win8+wp8+wpa81/_._",
  5883. "lib/win8/_._",
  5884. "lib/wp80/_._",
  5885. "lib/wpa81/_._",
  5886. "lib/xamarinios10/_._",
  5887. "lib/xamarinmac20/_._",
  5888. "lib/xamarintvos10/_._",
  5889. "lib/xamarinwatchos10/_._",
  5890. "ref/MonoAndroid10/_._",
  5891. "ref/MonoTouch10/_._",
  5892. "ref/net45/_._",
  5893. "ref/netcore50/System.Dynamic.Runtime.dll",
  5894. "ref/netcore50/System.Dynamic.Runtime.xml",
  5895. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5896. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5897. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5898. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5899. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5900. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5901. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5902. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5903. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5904. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5905. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5906. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5907. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5908. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5909. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5910. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5911. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5912. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5913. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5914. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5915. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5916. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5917. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5918. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5919. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5920. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5921. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5922. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5923. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5924. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5925. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5926. "ref/portable-net45+win8+wp8+wpa81/_._",
  5927. "ref/win8/_._",
  5928. "ref/wp80/_._",
  5929. "ref/wpa81/_._",
  5930. "ref/xamarinios10/_._",
  5931. "ref/xamarinmac20/_._",
  5932. "ref/xamarintvos10/_._",
  5933. "ref/xamarinwatchos10/_._",
  5934. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  5935. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  5936. "system.dynamic.runtime.nuspec"
  5937. ]
  5938. },
  5939. "System.Globalization/4.3.0": {
  5940. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5941. "type": "package",
  5942. "path": "system.globalization/4.3.0",
  5943. "files": [
  5944. ".nupkg.metadata",
  5945. ".signature.p7s",
  5946. "ThirdPartyNotices.txt",
  5947. "dotnet_library_license.txt",
  5948. "lib/MonoAndroid10/_._",
  5949. "lib/MonoTouch10/_._",
  5950. "lib/net45/_._",
  5951. "lib/portable-net45+win8+wp8+wpa81/_._",
  5952. "lib/win8/_._",
  5953. "lib/wp80/_._",
  5954. "lib/wpa81/_._",
  5955. "lib/xamarinios10/_._",
  5956. "lib/xamarinmac20/_._",
  5957. "lib/xamarintvos10/_._",
  5958. "lib/xamarinwatchos10/_._",
  5959. "ref/MonoAndroid10/_._",
  5960. "ref/MonoTouch10/_._",
  5961. "ref/net45/_._",
  5962. "ref/netcore50/System.Globalization.dll",
  5963. "ref/netcore50/System.Globalization.xml",
  5964. "ref/netcore50/de/System.Globalization.xml",
  5965. "ref/netcore50/es/System.Globalization.xml",
  5966. "ref/netcore50/fr/System.Globalization.xml",
  5967. "ref/netcore50/it/System.Globalization.xml",
  5968. "ref/netcore50/ja/System.Globalization.xml",
  5969. "ref/netcore50/ko/System.Globalization.xml",
  5970. "ref/netcore50/ru/System.Globalization.xml",
  5971. "ref/netcore50/zh-hans/System.Globalization.xml",
  5972. "ref/netcore50/zh-hant/System.Globalization.xml",
  5973. "ref/netstandard1.0/System.Globalization.dll",
  5974. "ref/netstandard1.0/System.Globalization.xml",
  5975. "ref/netstandard1.0/de/System.Globalization.xml",
  5976. "ref/netstandard1.0/es/System.Globalization.xml",
  5977. "ref/netstandard1.0/fr/System.Globalization.xml",
  5978. "ref/netstandard1.0/it/System.Globalization.xml",
  5979. "ref/netstandard1.0/ja/System.Globalization.xml",
  5980. "ref/netstandard1.0/ko/System.Globalization.xml",
  5981. "ref/netstandard1.0/ru/System.Globalization.xml",
  5982. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5983. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5984. "ref/netstandard1.3/System.Globalization.dll",
  5985. "ref/netstandard1.3/System.Globalization.xml",
  5986. "ref/netstandard1.3/de/System.Globalization.xml",
  5987. "ref/netstandard1.3/es/System.Globalization.xml",
  5988. "ref/netstandard1.3/fr/System.Globalization.xml",
  5989. "ref/netstandard1.3/it/System.Globalization.xml",
  5990. "ref/netstandard1.3/ja/System.Globalization.xml",
  5991. "ref/netstandard1.3/ko/System.Globalization.xml",
  5992. "ref/netstandard1.3/ru/System.Globalization.xml",
  5993. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5994. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5995. "ref/portable-net45+win8+wp8+wpa81/_._",
  5996. "ref/win8/_._",
  5997. "ref/wp80/_._",
  5998. "ref/wpa81/_._",
  5999. "ref/xamarinios10/_._",
  6000. "ref/xamarinmac20/_._",
  6001. "ref/xamarintvos10/_._",
  6002. "ref/xamarinwatchos10/_._",
  6003. "system.globalization.4.3.0.nupkg.sha512",
  6004. "system.globalization.nuspec"
  6005. ]
  6006. },
  6007. "System.Globalization.Calendars/4.3.0": {
  6008. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6009. "type": "package",
  6010. "path": "system.globalization.calendars/4.3.0",
  6011. "files": [
  6012. ".nupkg.metadata",
  6013. ".signature.p7s",
  6014. "ThirdPartyNotices.txt",
  6015. "dotnet_library_license.txt",
  6016. "lib/MonoAndroid10/_._",
  6017. "lib/MonoTouch10/_._",
  6018. "lib/net46/System.Globalization.Calendars.dll",
  6019. "lib/xamarinios10/_._",
  6020. "lib/xamarinmac20/_._",
  6021. "lib/xamarintvos10/_._",
  6022. "lib/xamarinwatchos10/_._",
  6023. "ref/MonoAndroid10/_._",
  6024. "ref/MonoTouch10/_._",
  6025. "ref/net46/System.Globalization.Calendars.dll",
  6026. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6027. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6028. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6029. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6030. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6031. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6032. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6033. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6034. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6035. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6036. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6037. "ref/xamarinios10/_._",
  6038. "ref/xamarinmac20/_._",
  6039. "ref/xamarintvos10/_._",
  6040. "ref/xamarinwatchos10/_._",
  6041. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6042. "system.globalization.calendars.nuspec"
  6043. ]
  6044. },
  6045. "System.Globalization.Extensions/4.3.0": {
  6046. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6047. "type": "package",
  6048. "path": "system.globalization.extensions/4.3.0",
  6049. "files": [
  6050. ".nupkg.metadata",
  6051. ".signature.p7s",
  6052. "ThirdPartyNotices.txt",
  6053. "dotnet_library_license.txt",
  6054. "lib/MonoAndroid10/_._",
  6055. "lib/MonoTouch10/_._",
  6056. "lib/net46/System.Globalization.Extensions.dll",
  6057. "lib/xamarinios10/_._",
  6058. "lib/xamarinmac20/_._",
  6059. "lib/xamarintvos10/_._",
  6060. "lib/xamarinwatchos10/_._",
  6061. "ref/MonoAndroid10/_._",
  6062. "ref/MonoTouch10/_._",
  6063. "ref/net46/System.Globalization.Extensions.dll",
  6064. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6065. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6066. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6067. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6068. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6069. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6070. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6071. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6072. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6073. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6074. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6075. "ref/xamarinios10/_._",
  6076. "ref/xamarinmac20/_._",
  6077. "ref/xamarintvos10/_._",
  6078. "ref/xamarinwatchos10/_._",
  6079. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6080. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6081. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6082. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6083. "system.globalization.extensions.nuspec"
  6084. ]
  6085. },
  6086. "System.IO/4.3.0": {
  6087. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6088. "type": "package",
  6089. "path": "system.io/4.3.0",
  6090. "files": [
  6091. ".nupkg.metadata",
  6092. ".signature.p7s",
  6093. "ThirdPartyNotices.txt",
  6094. "dotnet_library_license.txt",
  6095. "lib/MonoAndroid10/_._",
  6096. "lib/MonoTouch10/_._",
  6097. "lib/net45/_._",
  6098. "lib/net462/System.IO.dll",
  6099. "lib/portable-net45+win8+wp8+wpa81/_._",
  6100. "lib/win8/_._",
  6101. "lib/wp80/_._",
  6102. "lib/wpa81/_._",
  6103. "lib/xamarinios10/_._",
  6104. "lib/xamarinmac20/_._",
  6105. "lib/xamarintvos10/_._",
  6106. "lib/xamarinwatchos10/_._",
  6107. "ref/MonoAndroid10/_._",
  6108. "ref/MonoTouch10/_._",
  6109. "ref/net45/_._",
  6110. "ref/net462/System.IO.dll",
  6111. "ref/netcore50/System.IO.dll",
  6112. "ref/netcore50/System.IO.xml",
  6113. "ref/netcore50/de/System.IO.xml",
  6114. "ref/netcore50/es/System.IO.xml",
  6115. "ref/netcore50/fr/System.IO.xml",
  6116. "ref/netcore50/it/System.IO.xml",
  6117. "ref/netcore50/ja/System.IO.xml",
  6118. "ref/netcore50/ko/System.IO.xml",
  6119. "ref/netcore50/ru/System.IO.xml",
  6120. "ref/netcore50/zh-hans/System.IO.xml",
  6121. "ref/netcore50/zh-hant/System.IO.xml",
  6122. "ref/netstandard1.0/System.IO.dll",
  6123. "ref/netstandard1.0/System.IO.xml",
  6124. "ref/netstandard1.0/de/System.IO.xml",
  6125. "ref/netstandard1.0/es/System.IO.xml",
  6126. "ref/netstandard1.0/fr/System.IO.xml",
  6127. "ref/netstandard1.0/it/System.IO.xml",
  6128. "ref/netstandard1.0/ja/System.IO.xml",
  6129. "ref/netstandard1.0/ko/System.IO.xml",
  6130. "ref/netstandard1.0/ru/System.IO.xml",
  6131. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6132. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6133. "ref/netstandard1.3/System.IO.dll",
  6134. "ref/netstandard1.3/System.IO.xml",
  6135. "ref/netstandard1.3/de/System.IO.xml",
  6136. "ref/netstandard1.3/es/System.IO.xml",
  6137. "ref/netstandard1.3/fr/System.IO.xml",
  6138. "ref/netstandard1.3/it/System.IO.xml",
  6139. "ref/netstandard1.3/ja/System.IO.xml",
  6140. "ref/netstandard1.3/ko/System.IO.xml",
  6141. "ref/netstandard1.3/ru/System.IO.xml",
  6142. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6143. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6144. "ref/netstandard1.5/System.IO.dll",
  6145. "ref/netstandard1.5/System.IO.xml",
  6146. "ref/netstandard1.5/de/System.IO.xml",
  6147. "ref/netstandard1.5/es/System.IO.xml",
  6148. "ref/netstandard1.5/fr/System.IO.xml",
  6149. "ref/netstandard1.5/it/System.IO.xml",
  6150. "ref/netstandard1.5/ja/System.IO.xml",
  6151. "ref/netstandard1.5/ko/System.IO.xml",
  6152. "ref/netstandard1.5/ru/System.IO.xml",
  6153. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6154. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6155. "ref/portable-net45+win8+wp8+wpa81/_._",
  6156. "ref/win8/_._",
  6157. "ref/wp80/_._",
  6158. "ref/wpa81/_._",
  6159. "ref/xamarinios10/_._",
  6160. "ref/xamarinmac20/_._",
  6161. "ref/xamarintvos10/_._",
  6162. "ref/xamarinwatchos10/_._",
  6163. "system.io.4.3.0.nupkg.sha512",
  6164. "system.io.nuspec"
  6165. ]
  6166. },
  6167. "System.IO.Compression/4.3.0": {
  6168. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6169. "type": "package",
  6170. "path": "system.io.compression/4.3.0",
  6171. "files": [
  6172. ".nupkg.metadata",
  6173. ".signature.p7s",
  6174. "ThirdPartyNotices.txt",
  6175. "dotnet_library_license.txt",
  6176. "lib/MonoAndroid10/_._",
  6177. "lib/MonoTouch10/_._",
  6178. "lib/net45/_._",
  6179. "lib/net46/System.IO.Compression.dll",
  6180. "lib/portable-net45+win8+wpa81/_._",
  6181. "lib/win8/_._",
  6182. "lib/wpa81/_._",
  6183. "lib/xamarinios10/_._",
  6184. "lib/xamarinmac20/_._",
  6185. "lib/xamarintvos10/_._",
  6186. "lib/xamarinwatchos10/_._",
  6187. "ref/MonoAndroid10/_._",
  6188. "ref/MonoTouch10/_._",
  6189. "ref/net45/_._",
  6190. "ref/net46/System.IO.Compression.dll",
  6191. "ref/netcore50/System.IO.Compression.dll",
  6192. "ref/netcore50/System.IO.Compression.xml",
  6193. "ref/netcore50/de/System.IO.Compression.xml",
  6194. "ref/netcore50/es/System.IO.Compression.xml",
  6195. "ref/netcore50/fr/System.IO.Compression.xml",
  6196. "ref/netcore50/it/System.IO.Compression.xml",
  6197. "ref/netcore50/ja/System.IO.Compression.xml",
  6198. "ref/netcore50/ko/System.IO.Compression.xml",
  6199. "ref/netcore50/ru/System.IO.Compression.xml",
  6200. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6201. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6202. "ref/netstandard1.1/System.IO.Compression.dll",
  6203. "ref/netstandard1.1/System.IO.Compression.xml",
  6204. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6205. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6206. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6207. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6208. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6209. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6210. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6211. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6212. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6213. "ref/netstandard1.3/System.IO.Compression.dll",
  6214. "ref/netstandard1.3/System.IO.Compression.xml",
  6215. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6216. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6217. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6218. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6219. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6220. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6221. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6222. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6223. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6224. "ref/portable-net45+win8+wpa81/_._",
  6225. "ref/win8/_._",
  6226. "ref/wpa81/_._",
  6227. "ref/xamarinios10/_._",
  6228. "ref/xamarinmac20/_._",
  6229. "ref/xamarintvos10/_._",
  6230. "ref/xamarinwatchos10/_._",
  6231. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6232. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6233. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6234. "system.io.compression.4.3.0.nupkg.sha512",
  6235. "system.io.compression.nuspec"
  6236. ]
  6237. },
  6238. "System.IO.Compression.ZipFile/4.3.0": {
  6239. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6240. "type": "package",
  6241. "path": "system.io.compression.zipfile/4.3.0",
  6242. "files": [
  6243. ".nupkg.metadata",
  6244. ".signature.p7s",
  6245. "ThirdPartyNotices.txt",
  6246. "dotnet_library_license.txt",
  6247. "lib/MonoAndroid10/_._",
  6248. "lib/MonoTouch10/_._",
  6249. "lib/net46/System.IO.Compression.ZipFile.dll",
  6250. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6251. "lib/xamarinios10/_._",
  6252. "lib/xamarinmac20/_._",
  6253. "lib/xamarintvos10/_._",
  6254. "lib/xamarinwatchos10/_._",
  6255. "ref/MonoAndroid10/_._",
  6256. "ref/MonoTouch10/_._",
  6257. "ref/net46/System.IO.Compression.ZipFile.dll",
  6258. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6259. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6260. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6261. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6262. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6263. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6264. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6265. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6266. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6267. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6268. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6269. "ref/xamarinios10/_._",
  6270. "ref/xamarinmac20/_._",
  6271. "ref/xamarintvos10/_._",
  6272. "ref/xamarinwatchos10/_._",
  6273. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6274. "system.io.compression.zipfile.nuspec"
  6275. ]
  6276. },
  6277. "System.IO.FileSystem/4.3.0": {
  6278. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6279. "type": "package",
  6280. "path": "system.io.filesystem/4.3.0",
  6281. "files": [
  6282. ".nupkg.metadata",
  6283. ".signature.p7s",
  6284. "ThirdPartyNotices.txt",
  6285. "dotnet_library_license.txt",
  6286. "lib/MonoAndroid10/_._",
  6287. "lib/MonoTouch10/_._",
  6288. "lib/net46/System.IO.FileSystem.dll",
  6289. "lib/xamarinios10/_._",
  6290. "lib/xamarinmac20/_._",
  6291. "lib/xamarintvos10/_._",
  6292. "lib/xamarinwatchos10/_._",
  6293. "ref/MonoAndroid10/_._",
  6294. "ref/MonoTouch10/_._",
  6295. "ref/net46/System.IO.FileSystem.dll",
  6296. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6297. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6298. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6299. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6300. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6301. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6302. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6303. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6304. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6305. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6306. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6307. "ref/xamarinios10/_._",
  6308. "ref/xamarinmac20/_._",
  6309. "ref/xamarintvos10/_._",
  6310. "ref/xamarinwatchos10/_._",
  6311. "system.io.filesystem.4.3.0.nupkg.sha512",
  6312. "system.io.filesystem.nuspec"
  6313. ]
  6314. },
  6315. "System.IO.FileSystem.Primitives/4.3.0": {
  6316. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6317. "type": "package",
  6318. "path": "system.io.filesystem.primitives/4.3.0",
  6319. "files": [
  6320. ".nupkg.metadata",
  6321. ".signature.p7s",
  6322. "ThirdPartyNotices.txt",
  6323. "dotnet_library_license.txt",
  6324. "lib/MonoAndroid10/_._",
  6325. "lib/MonoTouch10/_._",
  6326. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6327. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6328. "lib/xamarinios10/_._",
  6329. "lib/xamarinmac20/_._",
  6330. "lib/xamarintvos10/_._",
  6331. "lib/xamarinwatchos10/_._",
  6332. "ref/MonoAndroid10/_._",
  6333. "ref/MonoTouch10/_._",
  6334. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6335. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6336. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6337. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6338. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6339. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6340. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6341. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6342. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6343. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6344. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6345. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6346. "ref/xamarinios10/_._",
  6347. "ref/xamarinmac20/_._",
  6348. "ref/xamarintvos10/_._",
  6349. "ref/xamarinwatchos10/_._",
  6350. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6351. "system.io.filesystem.primitives.nuspec"
  6352. ]
  6353. },
  6354. "System.Linq/4.3.0": {
  6355. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6356. "type": "package",
  6357. "path": "system.linq/4.3.0",
  6358. "files": [
  6359. ".nupkg.metadata",
  6360. ".signature.p7s",
  6361. "ThirdPartyNotices.txt",
  6362. "dotnet_library_license.txt",
  6363. "lib/MonoAndroid10/_._",
  6364. "lib/MonoTouch10/_._",
  6365. "lib/net45/_._",
  6366. "lib/net463/System.Linq.dll",
  6367. "lib/netcore50/System.Linq.dll",
  6368. "lib/netstandard1.6/System.Linq.dll",
  6369. "lib/portable-net45+win8+wp8+wpa81/_._",
  6370. "lib/win8/_._",
  6371. "lib/wp80/_._",
  6372. "lib/wpa81/_._",
  6373. "lib/xamarinios10/_._",
  6374. "lib/xamarinmac20/_._",
  6375. "lib/xamarintvos10/_._",
  6376. "lib/xamarinwatchos10/_._",
  6377. "ref/MonoAndroid10/_._",
  6378. "ref/MonoTouch10/_._",
  6379. "ref/net45/_._",
  6380. "ref/net463/System.Linq.dll",
  6381. "ref/netcore50/System.Linq.dll",
  6382. "ref/netcore50/System.Linq.xml",
  6383. "ref/netcore50/de/System.Linq.xml",
  6384. "ref/netcore50/es/System.Linq.xml",
  6385. "ref/netcore50/fr/System.Linq.xml",
  6386. "ref/netcore50/it/System.Linq.xml",
  6387. "ref/netcore50/ja/System.Linq.xml",
  6388. "ref/netcore50/ko/System.Linq.xml",
  6389. "ref/netcore50/ru/System.Linq.xml",
  6390. "ref/netcore50/zh-hans/System.Linq.xml",
  6391. "ref/netcore50/zh-hant/System.Linq.xml",
  6392. "ref/netstandard1.0/System.Linq.dll",
  6393. "ref/netstandard1.0/System.Linq.xml",
  6394. "ref/netstandard1.0/de/System.Linq.xml",
  6395. "ref/netstandard1.0/es/System.Linq.xml",
  6396. "ref/netstandard1.0/fr/System.Linq.xml",
  6397. "ref/netstandard1.0/it/System.Linq.xml",
  6398. "ref/netstandard1.0/ja/System.Linq.xml",
  6399. "ref/netstandard1.0/ko/System.Linq.xml",
  6400. "ref/netstandard1.0/ru/System.Linq.xml",
  6401. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6402. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6403. "ref/netstandard1.6/System.Linq.dll",
  6404. "ref/netstandard1.6/System.Linq.xml",
  6405. "ref/netstandard1.6/de/System.Linq.xml",
  6406. "ref/netstandard1.6/es/System.Linq.xml",
  6407. "ref/netstandard1.6/fr/System.Linq.xml",
  6408. "ref/netstandard1.6/it/System.Linq.xml",
  6409. "ref/netstandard1.6/ja/System.Linq.xml",
  6410. "ref/netstandard1.6/ko/System.Linq.xml",
  6411. "ref/netstandard1.6/ru/System.Linq.xml",
  6412. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6413. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6414. "ref/portable-net45+win8+wp8+wpa81/_._",
  6415. "ref/win8/_._",
  6416. "ref/wp80/_._",
  6417. "ref/wpa81/_._",
  6418. "ref/xamarinios10/_._",
  6419. "ref/xamarinmac20/_._",
  6420. "ref/xamarintvos10/_._",
  6421. "ref/xamarinwatchos10/_._",
  6422. "system.linq.4.3.0.nupkg.sha512",
  6423. "system.linq.nuspec"
  6424. ]
  6425. },
  6426. "System.Linq.Expressions/4.3.0": {
  6427. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6428. "type": "package",
  6429. "path": "system.linq.expressions/4.3.0",
  6430. "files": [
  6431. ".nupkg.metadata",
  6432. ".signature.p7s",
  6433. "ThirdPartyNotices.txt",
  6434. "dotnet_library_license.txt",
  6435. "lib/MonoAndroid10/_._",
  6436. "lib/MonoTouch10/_._",
  6437. "lib/net45/_._",
  6438. "lib/net463/System.Linq.Expressions.dll",
  6439. "lib/netcore50/System.Linq.Expressions.dll",
  6440. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6441. "lib/portable-net45+win8+wp8+wpa81/_._",
  6442. "lib/win8/_._",
  6443. "lib/wp80/_._",
  6444. "lib/wpa81/_._",
  6445. "lib/xamarinios10/_._",
  6446. "lib/xamarinmac20/_._",
  6447. "lib/xamarintvos10/_._",
  6448. "lib/xamarinwatchos10/_._",
  6449. "ref/MonoAndroid10/_._",
  6450. "ref/MonoTouch10/_._",
  6451. "ref/net45/_._",
  6452. "ref/net463/System.Linq.Expressions.dll",
  6453. "ref/netcore50/System.Linq.Expressions.dll",
  6454. "ref/netcore50/System.Linq.Expressions.xml",
  6455. "ref/netcore50/de/System.Linq.Expressions.xml",
  6456. "ref/netcore50/es/System.Linq.Expressions.xml",
  6457. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6458. "ref/netcore50/it/System.Linq.Expressions.xml",
  6459. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6460. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6461. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6462. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6463. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6464. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6465. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6466. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6467. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6468. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6469. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6470. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6471. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6472. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6473. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6474. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6475. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6476. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6477. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6478. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6479. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6480. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6481. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6482. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6483. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6484. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6485. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6486. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6487. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6488. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6489. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6490. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6491. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6492. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6493. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6494. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6495. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6496. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6497. "ref/portable-net45+win8+wp8+wpa81/_._",
  6498. "ref/win8/_._",
  6499. "ref/wp80/_._",
  6500. "ref/wpa81/_._",
  6501. "ref/xamarinios10/_._",
  6502. "ref/xamarinmac20/_._",
  6503. "ref/xamarintvos10/_._",
  6504. "ref/xamarinwatchos10/_._",
  6505. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6506. "system.linq.expressions.4.3.0.nupkg.sha512",
  6507. "system.linq.expressions.nuspec"
  6508. ]
  6509. },
  6510. "System.Memory/4.5.3": {
  6511. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  6512. "type": "package",
  6513. "path": "system.memory/4.5.3",
  6514. "files": [
  6515. ".nupkg.metadata",
  6516. ".signature.p7s",
  6517. "LICENSE.TXT",
  6518. "THIRD-PARTY-NOTICES.TXT",
  6519. "lib/netcoreapp2.1/_._",
  6520. "lib/netstandard1.1/System.Memory.dll",
  6521. "lib/netstandard1.1/System.Memory.xml",
  6522. "lib/netstandard2.0/System.Memory.dll",
  6523. "lib/netstandard2.0/System.Memory.xml",
  6524. "ref/netcoreapp2.1/_._",
  6525. "system.memory.4.5.3.nupkg.sha512",
  6526. "system.memory.nuspec",
  6527. "useSharedDesignerContext.txt",
  6528. "version.txt"
  6529. ]
  6530. },
  6531. "System.Net.Http/4.3.0": {
  6532. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6533. "type": "package",
  6534. "path": "system.net.http/4.3.0",
  6535. "files": [
  6536. ".nupkg.metadata",
  6537. ".signature.p7s",
  6538. "ThirdPartyNotices.txt",
  6539. "dotnet_library_license.txt",
  6540. "lib/Xamarinmac20/_._",
  6541. "lib/monoandroid10/_._",
  6542. "lib/monotouch10/_._",
  6543. "lib/net45/_._",
  6544. "lib/net46/System.Net.Http.dll",
  6545. "lib/portable-net45+win8+wpa81/_._",
  6546. "lib/win8/_._",
  6547. "lib/wpa81/_._",
  6548. "lib/xamarinios10/_._",
  6549. "lib/xamarintvos10/_._",
  6550. "lib/xamarinwatchos10/_._",
  6551. "ref/Xamarinmac20/_._",
  6552. "ref/monoandroid10/_._",
  6553. "ref/monotouch10/_._",
  6554. "ref/net45/_._",
  6555. "ref/net46/System.Net.Http.dll",
  6556. "ref/net46/System.Net.Http.xml",
  6557. "ref/net46/de/System.Net.Http.xml",
  6558. "ref/net46/es/System.Net.Http.xml",
  6559. "ref/net46/fr/System.Net.Http.xml",
  6560. "ref/net46/it/System.Net.Http.xml",
  6561. "ref/net46/ja/System.Net.Http.xml",
  6562. "ref/net46/ko/System.Net.Http.xml",
  6563. "ref/net46/ru/System.Net.Http.xml",
  6564. "ref/net46/zh-hans/System.Net.Http.xml",
  6565. "ref/net46/zh-hant/System.Net.Http.xml",
  6566. "ref/netcore50/System.Net.Http.dll",
  6567. "ref/netcore50/System.Net.Http.xml",
  6568. "ref/netcore50/de/System.Net.Http.xml",
  6569. "ref/netcore50/es/System.Net.Http.xml",
  6570. "ref/netcore50/fr/System.Net.Http.xml",
  6571. "ref/netcore50/it/System.Net.Http.xml",
  6572. "ref/netcore50/ja/System.Net.Http.xml",
  6573. "ref/netcore50/ko/System.Net.Http.xml",
  6574. "ref/netcore50/ru/System.Net.Http.xml",
  6575. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6576. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6577. "ref/netstandard1.1/System.Net.Http.dll",
  6578. "ref/netstandard1.1/System.Net.Http.xml",
  6579. "ref/netstandard1.1/de/System.Net.Http.xml",
  6580. "ref/netstandard1.1/es/System.Net.Http.xml",
  6581. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6582. "ref/netstandard1.1/it/System.Net.Http.xml",
  6583. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6584. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6585. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6586. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6587. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6588. "ref/netstandard1.3/System.Net.Http.dll",
  6589. "ref/netstandard1.3/System.Net.Http.xml",
  6590. "ref/netstandard1.3/de/System.Net.Http.xml",
  6591. "ref/netstandard1.3/es/System.Net.Http.xml",
  6592. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6593. "ref/netstandard1.3/it/System.Net.Http.xml",
  6594. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6595. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6596. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6597. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6598. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6599. "ref/portable-net45+win8+wpa81/_._",
  6600. "ref/win8/_._",
  6601. "ref/wpa81/_._",
  6602. "ref/xamarinios10/_._",
  6603. "ref/xamarintvos10/_._",
  6604. "ref/xamarinwatchos10/_._",
  6605. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6606. "runtimes/win/lib/net46/System.Net.Http.dll",
  6607. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6608. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6609. "system.net.http.4.3.0.nupkg.sha512",
  6610. "system.net.http.nuspec"
  6611. ]
  6612. },
  6613. "System.Net.NameResolution/4.0.0": {
  6614. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  6615. "type": "package",
  6616. "path": "system.net.nameresolution/4.0.0",
  6617. "files": [
  6618. ".nupkg.metadata",
  6619. ".signature.p7s",
  6620. "ThirdPartyNotices.txt",
  6621. "dotnet_library_license.txt",
  6622. "lib/MonoAndroid10/_._",
  6623. "lib/MonoTouch10/_._",
  6624. "lib/net46/System.Net.NameResolution.dll",
  6625. "lib/xamarinios10/_._",
  6626. "lib/xamarinmac20/_._",
  6627. "lib/xamarintvos10/_._",
  6628. "lib/xamarinwatchos10/_._",
  6629. "ref/MonoAndroid10/_._",
  6630. "ref/MonoTouch10/_._",
  6631. "ref/net46/System.Net.NameResolution.dll",
  6632. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6633. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6634. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6635. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6636. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6637. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6638. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6639. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6640. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6641. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6642. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6643. "ref/xamarinios10/_._",
  6644. "ref/xamarinmac20/_._",
  6645. "ref/xamarintvos10/_._",
  6646. "ref/xamarinwatchos10/_._",
  6647. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6648. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6649. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6650. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6651. "system.net.nameresolution.4.0.0.nupkg.sha512",
  6652. "system.net.nameresolution.nuspec"
  6653. ]
  6654. },
  6655. "System.Net.Primitives/4.3.0": {
  6656. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6657. "type": "package",
  6658. "path": "system.net.primitives/4.3.0",
  6659. "files": [
  6660. ".nupkg.metadata",
  6661. ".signature.p7s",
  6662. "ThirdPartyNotices.txt",
  6663. "dotnet_library_license.txt",
  6664. "lib/MonoAndroid10/_._",
  6665. "lib/MonoTouch10/_._",
  6666. "lib/net45/_._",
  6667. "lib/portable-net45+win8+wp8+wpa81/_._",
  6668. "lib/win8/_._",
  6669. "lib/wp80/_._",
  6670. "lib/wpa81/_._",
  6671. "lib/xamarinios10/_._",
  6672. "lib/xamarinmac20/_._",
  6673. "lib/xamarintvos10/_._",
  6674. "lib/xamarinwatchos10/_._",
  6675. "ref/MonoAndroid10/_._",
  6676. "ref/MonoTouch10/_._",
  6677. "ref/net45/_._",
  6678. "ref/netcore50/System.Net.Primitives.dll",
  6679. "ref/netcore50/System.Net.Primitives.xml",
  6680. "ref/netcore50/de/System.Net.Primitives.xml",
  6681. "ref/netcore50/es/System.Net.Primitives.xml",
  6682. "ref/netcore50/fr/System.Net.Primitives.xml",
  6683. "ref/netcore50/it/System.Net.Primitives.xml",
  6684. "ref/netcore50/ja/System.Net.Primitives.xml",
  6685. "ref/netcore50/ko/System.Net.Primitives.xml",
  6686. "ref/netcore50/ru/System.Net.Primitives.xml",
  6687. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6688. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6689. "ref/netstandard1.0/System.Net.Primitives.dll",
  6690. "ref/netstandard1.0/System.Net.Primitives.xml",
  6691. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6692. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6693. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6694. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6695. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6696. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6697. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6698. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6699. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6700. "ref/netstandard1.1/System.Net.Primitives.dll",
  6701. "ref/netstandard1.1/System.Net.Primitives.xml",
  6702. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6703. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6704. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6705. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6706. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6707. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6708. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6709. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6710. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6711. "ref/netstandard1.3/System.Net.Primitives.dll",
  6712. "ref/netstandard1.3/System.Net.Primitives.xml",
  6713. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6714. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6715. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6716. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6717. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6718. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6719. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6720. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6721. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6722. "ref/portable-net45+win8+wp8+wpa81/_._",
  6723. "ref/win8/_._",
  6724. "ref/wp80/_._",
  6725. "ref/wpa81/_._",
  6726. "ref/xamarinios10/_._",
  6727. "ref/xamarinmac20/_._",
  6728. "ref/xamarintvos10/_._",
  6729. "ref/xamarinwatchos10/_._",
  6730. "system.net.primitives.4.3.0.nupkg.sha512",
  6731. "system.net.primitives.nuspec"
  6732. ]
  6733. },
  6734. "System.Net.Sockets/4.3.0": {
  6735. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6736. "type": "package",
  6737. "path": "system.net.sockets/4.3.0",
  6738. "files": [
  6739. ".nupkg.metadata",
  6740. ".signature.p7s",
  6741. "ThirdPartyNotices.txt",
  6742. "dotnet_library_license.txt",
  6743. "lib/MonoAndroid10/_._",
  6744. "lib/MonoTouch10/_._",
  6745. "lib/net46/System.Net.Sockets.dll",
  6746. "lib/xamarinios10/_._",
  6747. "lib/xamarinmac20/_._",
  6748. "lib/xamarintvos10/_._",
  6749. "lib/xamarinwatchos10/_._",
  6750. "ref/MonoAndroid10/_._",
  6751. "ref/MonoTouch10/_._",
  6752. "ref/net46/System.Net.Sockets.dll",
  6753. "ref/netstandard1.3/System.Net.Sockets.dll",
  6754. "ref/netstandard1.3/System.Net.Sockets.xml",
  6755. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6756. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6757. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6758. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6759. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6760. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6761. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6762. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6763. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6764. "ref/xamarinios10/_._",
  6765. "ref/xamarinmac20/_._",
  6766. "ref/xamarintvos10/_._",
  6767. "ref/xamarinwatchos10/_._",
  6768. "system.net.sockets.4.3.0.nupkg.sha512",
  6769. "system.net.sockets.nuspec"
  6770. ]
  6771. },
  6772. "System.ObjectModel/4.3.0": {
  6773. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6774. "type": "package",
  6775. "path": "system.objectmodel/4.3.0",
  6776. "files": [
  6777. ".nupkg.metadata",
  6778. ".signature.p7s",
  6779. "ThirdPartyNotices.txt",
  6780. "dotnet_library_license.txt",
  6781. "lib/MonoAndroid10/_._",
  6782. "lib/MonoTouch10/_._",
  6783. "lib/net45/_._",
  6784. "lib/netcore50/System.ObjectModel.dll",
  6785. "lib/netstandard1.3/System.ObjectModel.dll",
  6786. "lib/portable-net45+win8+wp8+wpa81/_._",
  6787. "lib/win8/_._",
  6788. "lib/wp80/_._",
  6789. "lib/wpa81/_._",
  6790. "lib/xamarinios10/_._",
  6791. "lib/xamarinmac20/_._",
  6792. "lib/xamarintvos10/_._",
  6793. "lib/xamarinwatchos10/_._",
  6794. "ref/MonoAndroid10/_._",
  6795. "ref/MonoTouch10/_._",
  6796. "ref/net45/_._",
  6797. "ref/netcore50/System.ObjectModel.dll",
  6798. "ref/netcore50/System.ObjectModel.xml",
  6799. "ref/netcore50/de/System.ObjectModel.xml",
  6800. "ref/netcore50/es/System.ObjectModel.xml",
  6801. "ref/netcore50/fr/System.ObjectModel.xml",
  6802. "ref/netcore50/it/System.ObjectModel.xml",
  6803. "ref/netcore50/ja/System.ObjectModel.xml",
  6804. "ref/netcore50/ko/System.ObjectModel.xml",
  6805. "ref/netcore50/ru/System.ObjectModel.xml",
  6806. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6807. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6808. "ref/netstandard1.0/System.ObjectModel.dll",
  6809. "ref/netstandard1.0/System.ObjectModel.xml",
  6810. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6811. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6812. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6813. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6814. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6815. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6816. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6817. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6818. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6819. "ref/netstandard1.3/System.ObjectModel.dll",
  6820. "ref/netstandard1.3/System.ObjectModel.xml",
  6821. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6822. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6823. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6824. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6825. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6826. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6827. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6828. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6829. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6830. "ref/portable-net45+win8+wp8+wpa81/_._",
  6831. "ref/win8/_._",
  6832. "ref/wp80/_._",
  6833. "ref/wpa81/_._",
  6834. "ref/xamarinios10/_._",
  6835. "ref/xamarinmac20/_._",
  6836. "ref/xamarintvos10/_._",
  6837. "ref/xamarinwatchos10/_._",
  6838. "system.objectmodel.4.3.0.nupkg.sha512",
  6839. "system.objectmodel.nuspec"
  6840. ]
  6841. },
  6842. "System.Reflection/4.3.0": {
  6843. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6844. "type": "package",
  6845. "path": "system.reflection/4.3.0",
  6846. "files": [
  6847. ".nupkg.metadata",
  6848. ".signature.p7s",
  6849. "ThirdPartyNotices.txt",
  6850. "dotnet_library_license.txt",
  6851. "lib/MonoAndroid10/_._",
  6852. "lib/MonoTouch10/_._",
  6853. "lib/net45/_._",
  6854. "lib/net462/System.Reflection.dll",
  6855. "lib/portable-net45+win8+wp8+wpa81/_._",
  6856. "lib/win8/_._",
  6857. "lib/wp80/_._",
  6858. "lib/wpa81/_._",
  6859. "lib/xamarinios10/_._",
  6860. "lib/xamarinmac20/_._",
  6861. "lib/xamarintvos10/_._",
  6862. "lib/xamarinwatchos10/_._",
  6863. "ref/MonoAndroid10/_._",
  6864. "ref/MonoTouch10/_._",
  6865. "ref/net45/_._",
  6866. "ref/net462/System.Reflection.dll",
  6867. "ref/netcore50/System.Reflection.dll",
  6868. "ref/netcore50/System.Reflection.xml",
  6869. "ref/netcore50/de/System.Reflection.xml",
  6870. "ref/netcore50/es/System.Reflection.xml",
  6871. "ref/netcore50/fr/System.Reflection.xml",
  6872. "ref/netcore50/it/System.Reflection.xml",
  6873. "ref/netcore50/ja/System.Reflection.xml",
  6874. "ref/netcore50/ko/System.Reflection.xml",
  6875. "ref/netcore50/ru/System.Reflection.xml",
  6876. "ref/netcore50/zh-hans/System.Reflection.xml",
  6877. "ref/netcore50/zh-hant/System.Reflection.xml",
  6878. "ref/netstandard1.0/System.Reflection.dll",
  6879. "ref/netstandard1.0/System.Reflection.xml",
  6880. "ref/netstandard1.0/de/System.Reflection.xml",
  6881. "ref/netstandard1.0/es/System.Reflection.xml",
  6882. "ref/netstandard1.0/fr/System.Reflection.xml",
  6883. "ref/netstandard1.0/it/System.Reflection.xml",
  6884. "ref/netstandard1.0/ja/System.Reflection.xml",
  6885. "ref/netstandard1.0/ko/System.Reflection.xml",
  6886. "ref/netstandard1.0/ru/System.Reflection.xml",
  6887. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6888. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6889. "ref/netstandard1.3/System.Reflection.dll",
  6890. "ref/netstandard1.3/System.Reflection.xml",
  6891. "ref/netstandard1.3/de/System.Reflection.xml",
  6892. "ref/netstandard1.3/es/System.Reflection.xml",
  6893. "ref/netstandard1.3/fr/System.Reflection.xml",
  6894. "ref/netstandard1.3/it/System.Reflection.xml",
  6895. "ref/netstandard1.3/ja/System.Reflection.xml",
  6896. "ref/netstandard1.3/ko/System.Reflection.xml",
  6897. "ref/netstandard1.3/ru/System.Reflection.xml",
  6898. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6899. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6900. "ref/netstandard1.5/System.Reflection.dll",
  6901. "ref/netstandard1.5/System.Reflection.xml",
  6902. "ref/netstandard1.5/de/System.Reflection.xml",
  6903. "ref/netstandard1.5/es/System.Reflection.xml",
  6904. "ref/netstandard1.5/fr/System.Reflection.xml",
  6905. "ref/netstandard1.5/it/System.Reflection.xml",
  6906. "ref/netstandard1.5/ja/System.Reflection.xml",
  6907. "ref/netstandard1.5/ko/System.Reflection.xml",
  6908. "ref/netstandard1.5/ru/System.Reflection.xml",
  6909. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6910. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6911. "ref/portable-net45+win8+wp8+wpa81/_._",
  6912. "ref/win8/_._",
  6913. "ref/wp80/_._",
  6914. "ref/wpa81/_._",
  6915. "ref/xamarinios10/_._",
  6916. "ref/xamarinmac20/_._",
  6917. "ref/xamarintvos10/_._",
  6918. "ref/xamarinwatchos10/_._",
  6919. "system.reflection.4.3.0.nupkg.sha512",
  6920. "system.reflection.nuspec"
  6921. ]
  6922. },
  6923. "System.Reflection.Emit/4.7.0": {
  6924. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  6925. "type": "package",
  6926. "path": "system.reflection.emit/4.7.0",
  6927. "files": [
  6928. ".nupkg.metadata",
  6929. ".signature.p7s",
  6930. "LICENSE.TXT",
  6931. "THIRD-PARTY-NOTICES.TXT",
  6932. "lib/MonoAndroid10/_._",
  6933. "lib/MonoTouch10/_._",
  6934. "lib/net45/_._",
  6935. "lib/netcore50/System.Reflection.Emit.dll",
  6936. "lib/netcoreapp2.0/_._",
  6937. "lib/netstandard1.1/System.Reflection.Emit.dll",
  6938. "lib/netstandard1.1/System.Reflection.Emit.xml",
  6939. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6940. "lib/netstandard2.0/System.Reflection.Emit.dll",
  6941. "lib/netstandard2.0/System.Reflection.Emit.xml",
  6942. "lib/netstandard2.1/_._",
  6943. "lib/xamarinios10/_._",
  6944. "lib/xamarinmac20/_._",
  6945. "lib/xamarintvos10/_._",
  6946. "lib/xamarinwatchos10/_._",
  6947. "ref/MonoAndroid10/_._",
  6948. "ref/MonoTouch10/_._",
  6949. "ref/net45/_._",
  6950. "ref/netcoreapp2.0/_._",
  6951. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6952. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6953. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6954. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6955. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6956. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6957. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6958. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6959. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6960. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6961. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6962. "ref/netstandard2.0/System.Reflection.Emit.dll",
  6963. "ref/netstandard2.0/System.Reflection.Emit.xml",
  6964. "ref/netstandard2.1/_._",
  6965. "ref/xamarinios10/_._",
  6966. "ref/xamarinmac20/_._",
  6967. "ref/xamarintvos10/_._",
  6968. "ref/xamarinwatchos10/_._",
  6969. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  6970. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  6971. "system.reflection.emit.4.7.0.nupkg.sha512",
  6972. "system.reflection.emit.nuspec",
  6973. "useSharedDesignerContext.txt",
  6974. "version.txt"
  6975. ]
  6976. },
  6977. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6978. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6979. "type": "package",
  6980. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6981. "files": [
  6982. ".nupkg.metadata",
  6983. ".signature.p7s",
  6984. "ThirdPartyNotices.txt",
  6985. "dotnet_library_license.txt",
  6986. "lib/MonoAndroid10/_._",
  6987. "lib/MonoTouch10/_._",
  6988. "lib/net45/_._",
  6989. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6990. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6991. "lib/portable-net45+wp8/_._",
  6992. "lib/wp80/_._",
  6993. "lib/xamarinios10/_._",
  6994. "lib/xamarinmac20/_._",
  6995. "lib/xamarintvos10/_._",
  6996. "lib/xamarinwatchos10/_._",
  6997. "ref/MonoAndroid10/_._",
  6998. "ref/MonoTouch10/_._",
  6999. "ref/net45/_._",
  7000. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7001. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7002. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7003. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7004. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7005. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7006. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7007. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7008. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7009. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7010. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7011. "ref/portable-net45+wp8/_._",
  7012. "ref/wp80/_._",
  7013. "ref/xamarinios10/_._",
  7014. "ref/xamarinmac20/_._",
  7015. "ref/xamarintvos10/_._",
  7016. "ref/xamarinwatchos10/_._",
  7017. "runtimes/aot/lib/netcore50/_._",
  7018. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7019. "system.reflection.emit.ilgeneration.nuspec"
  7020. ]
  7021. },
  7022. "System.Reflection.Emit.Lightweight/4.3.0": {
  7023. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7024. "type": "package",
  7025. "path": "system.reflection.emit.lightweight/4.3.0",
  7026. "files": [
  7027. ".nupkg.metadata",
  7028. ".signature.p7s",
  7029. "ThirdPartyNotices.txt",
  7030. "dotnet_library_license.txt",
  7031. "lib/MonoAndroid10/_._",
  7032. "lib/MonoTouch10/_._",
  7033. "lib/net45/_._",
  7034. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7035. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7036. "lib/portable-net45+wp8/_._",
  7037. "lib/wp80/_._",
  7038. "lib/xamarinios10/_._",
  7039. "lib/xamarinmac20/_._",
  7040. "lib/xamarintvos10/_._",
  7041. "lib/xamarinwatchos10/_._",
  7042. "ref/MonoAndroid10/_._",
  7043. "ref/MonoTouch10/_._",
  7044. "ref/net45/_._",
  7045. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7046. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7047. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7048. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7049. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7050. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7051. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7052. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7053. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7054. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7055. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7056. "ref/portable-net45+wp8/_._",
  7057. "ref/wp80/_._",
  7058. "ref/xamarinios10/_._",
  7059. "ref/xamarinmac20/_._",
  7060. "ref/xamarintvos10/_._",
  7061. "ref/xamarinwatchos10/_._",
  7062. "runtimes/aot/lib/netcore50/_._",
  7063. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7064. "system.reflection.emit.lightweight.nuspec"
  7065. ]
  7066. },
  7067. "System.Reflection.Extensions/4.3.0": {
  7068. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7069. "type": "package",
  7070. "path": "system.reflection.extensions/4.3.0",
  7071. "files": [
  7072. ".nupkg.metadata",
  7073. ".signature.p7s",
  7074. "ThirdPartyNotices.txt",
  7075. "dotnet_library_license.txt",
  7076. "lib/MonoAndroid10/_._",
  7077. "lib/MonoTouch10/_._",
  7078. "lib/net45/_._",
  7079. "lib/portable-net45+win8+wp8+wpa81/_._",
  7080. "lib/win8/_._",
  7081. "lib/wp80/_._",
  7082. "lib/wpa81/_._",
  7083. "lib/xamarinios10/_._",
  7084. "lib/xamarinmac20/_._",
  7085. "lib/xamarintvos10/_._",
  7086. "lib/xamarinwatchos10/_._",
  7087. "ref/MonoAndroid10/_._",
  7088. "ref/MonoTouch10/_._",
  7089. "ref/net45/_._",
  7090. "ref/netcore50/System.Reflection.Extensions.dll",
  7091. "ref/netcore50/System.Reflection.Extensions.xml",
  7092. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7093. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7094. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7095. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7096. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7097. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7098. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7099. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7100. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7101. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7102. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7103. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7104. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7105. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7106. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7107. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7108. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7109. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7110. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7111. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7112. "ref/portable-net45+win8+wp8+wpa81/_._",
  7113. "ref/win8/_._",
  7114. "ref/wp80/_._",
  7115. "ref/wpa81/_._",
  7116. "ref/xamarinios10/_._",
  7117. "ref/xamarinmac20/_._",
  7118. "ref/xamarintvos10/_._",
  7119. "ref/xamarinwatchos10/_._",
  7120. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7121. "system.reflection.extensions.nuspec"
  7122. ]
  7123. },
  7124. "System.Reflection.Metadata/1.6.0": {
  7125. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  7126. "type": "package",
  7127. "path": "system.reflection.metadata/1.6.0",
  7128. "files": [
  7129. ".nupkg.metadata",
  7130. ".signature.p7s",
  7131. "LICENSE.TXT",
  7132. "THIRD-PARTY-NOTICES.TXT",
  7133. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  7134. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  7135. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7136. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7137. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7138. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  7139. "system.reflection.metadata.1.6.0.nupkg.sha512",
  7140. "system.reflection.metadata.nuspec",
  7141. "useSharedDesignerContext.txt",
  7142. "version.txt"
  7143. ]
  7144. },
  7145. "System.Reflection.Primitives/4.3.0": {
  7146. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7147. "type": "package",
  7148. "path": "system.reflection.primitives/4.3.0",
  7149. "files": [
  7150. ".nupkg.metadata",
  7151. ".signature.p7s",
  7152. "ThirdPartyNotices.txt",
  7153. "dotnet_library_license.txt",
  7154. "lib/MonoAndroid10/_._",
  7155. "lib/MonoTouch10/_._",
  7156. "lib/net45/_._",
  7157. "lib/portable-net45+win8+wp8+wpa81/_._",
  7158. "lib/win8/_._",
  7159. "lib/wp80/_._",
  7160. "lib/wpa81/_._",
  7161. "lib/xamarinios10/_._",
  7162. "lib/xamarinmac20/_._",
  7163. "lib/xamarintvos10/_._",
  7164. "lib/xamarinwatchos10/_._",
  7165. "ref/MonoAndroid10/_._",
  7166. "ref/MonoTouch10/_._",
  7167. "ref/net45/_._",
  7168. "ref/netcore50/System.Reflection.Primitives.dll",
  7169. "ref/netcore50/System.Reflection.Primitives.xml",
  7170. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7171. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7172. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7173. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7174. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7175. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7176. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7177. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7178. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7179. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7180. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7181. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7182. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7183. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7184. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7185. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7186. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7187. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7188. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7189. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7190. "ref/portable-net45+win8+wp8+wpa81/_._",
  7191. "ref/win8/_._",
  7192. "ref/wp80/_._",
  7193. "ref/wpa81/_._",
  7194. "ref/xamarinios10/_._",
  7195. "ref/xamarinmac20/_._",
  7196. "ref/xamarintvos10/_._",
  7197. "ref/xamarinwatchos10/_._",
  7198. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7199. "system.reflection.primitives.nuspec"
  7200. ]
  7201. },
  7202. "System.Reflection.TypeExtensions/4.3.0": {
  7203. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7204. "type": "package",
  7205. "path": "system.reflection.typeextensions/4.3.0",
  7206. "files": [
  7207. ".nupkg.metadata",
  7208. ".signature.p7s",
  7209. "ThirdPartyNotices.txt",
  7210. "dotnet_library_license.txt",
  7211. "lib/MonoAndroid10/_._",
  7212. "lib/MonoTouch10/_._",
  7213. "lib/net46/System.Reflection.TypeExtensions.dll",
  7214. "lib/net462/System.Reflection.TypeExtensions.dll",
  7215. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7216. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7217. "lib/xamarinios10/_._",
  7218. "lib/xamarinmac20/_._",
  7219. "lib/xamarintvos10/_._",
  7220. "lib/xamarinwatchos10/_._",
  7221. "ref/MonoAndroid10/_._",
  7222. "ref/MonoTouch10/_._",
  7223. "ref/net46/System.Reflection.TypeExtensions.dll",
  7224. "ref/net462/System.Reflection.TypeExtensions.dll",
  7225. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7226. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7227. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7228. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7229. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7230. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7231. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7232. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7233. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7234. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7235. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7236. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7237. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7238. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7239. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7240. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7241. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7242. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7243. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7244. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7245. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7246. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7247. "ref/xamarinios10/_._",
  7248. "ref/xamarinmac20/_._",
  7249. "ref/xamarintvos10/_._",
  7250. "ref/xamarinwatchos10/_._",
  7251. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7252. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7253. "system.reflection.typeextensions.nuspec"
  7254. ]
  7255. },
  7256. "System.Resources.ResourceManager/4.3.0": {
  7257. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7258. "type": "package",
  7259. "path": "system.resources.resourcemanager/4.3.0",
  7260. "files": [
  7261. ".nupkg.metadata",
  7262. ".signature.p7s",
  7263. "ThirdPartyNotices.txt",
  7264. "dotnet_library_license.txt",
  7265. "lib/MonoAndroid10/_._",
  7266. "lib/MonoTouch10/_._",
  7267. "lib/net45/_._",
  7268. "lib/portable-net45+win8+wp8+wpa81/_._",
  7269. "lib/win8/_._",
  7270. "lib/wp80/_._",
  7271. "lib/wpa81/_._",
  7272. "lib/xamarinios10/_._",
  7273. "lib/xamarinmac20/_._",
  7274. "lib/xamarintvos10/_._",
  7275. "lib/xamarinwatchos10/_._",
  7276. "ref/MonoAndroid10/_._",
  7277. "ref/MonoTouch10/_._",
  7278. "ref/net45/_._",
  7279. "ref/netcore50/System.Resources.ResourceManager.dll",
  7280. "ref/netcore50/System.Resources.ResourceManager.xml",
  7281. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7282. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7283. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7284. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7285. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7286. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7287. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7288. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7289. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7290. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7291. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7292. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7293. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7294. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7295. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7296. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7297. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7298. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7299. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7300. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7301. "ref/portable-net45+win8+wp8+wpa81/_._",
  7302. "ref/win8/_._",
  7303. "ref/wp80/_._",
  7304. "ref/wpa81/_._",
  7305. "ref/xamarinios10/_._",
  7306. "ref/xamarinmac20/_._",
  7307. "ref/xamarintvos10/_._",
  7308. "ref/xamarinwatchos10/_._",
  7309. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7310. "system.resources.resourcemanager.nuspec"
  7311. ]
  7312. },
  7313. "System.Runtime/4.3.0": {
  7314. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7315. "type": "package",
  7316. "path": "system.runtime/4.3.0",
  7317. "files": [
  7318. ".nupkg.metadata",
  7319. ".signature.p7s",
  7320. "ThirdPartyNotices.txt",
  7321. "dotnet_library_license.txt",
  7322. "lib/MonoAndroid10/_._",
  7323. "lib/MonoTouch10/_._",
  7324. "lib/net45/_._",
  7325. "lib/net462/System.Runtime.dll",
  7326. "lib/portable-net45+win8+wp80+wpa81/_._",
  7327. "lib/win8/_._",
  7328. "lib/wp80/_._",
  7329. "lib/wpa81/_._",
  7330. "lib/xamarinios10/_._",
  7331. "lib/xamarinmac20/_._",
  7332. "lib/xamarintvos10/_._",
  7333. "lib/xamarinwatchos10/_._",
  7334. "ref/MonoAndroid10/_._",
  7335. "ref/MonoTouch10/_._",
  7336. "ref/net45/_._",
  7337. "ref/net462/System.Runtime.dll",
  7338. "ref/netcore50/System.Runtime.dll",
  7339. "ref/netcore50/System.Runtime.xml",
  7340. "ref/netcore50/de/System.Runtime.xml",
  7341. "ref/netcore50/es/System.Runtime.xml",
  7342. "ref/netcore50/fr/System.Runtime.xml",
  7343. "ref/netcore50/it/System.Runtime.xml",
  7344. "ref/netcore50/ja/System.Runtime.xml",
  7345. "ref/netcore50/ko/System.Runtime.xml",
  7346. "ref/netcore50/ru/System.Runtime.xml",
  7347. "ref/netcore50/zh-hans/System.Runtime.xml",
  7348. "ref/netcore50/zh-hant/System.Runtime.xml",
  7349. "ref/netstandard1.0/System.Runtime.dll",
  7350. "ref/netstandard1.0/System.Runtime.xml",
  7351. "ref/netstandard1.0/de/System.Runtime.xml",
  7352. "ref/netstandard1.0/es/System.Runtime.xml",
  7353. "ref/netstandard1.0/fr/System.Runtime.xml",
  7354. "ref/netstandard1.0/it/System.Runtime.xml",
  7355. "ref/netstandard1.0/ja/System.Runtime.xml",
  7356. "ref/netstandard1.0/ko/System.Runtime.xml",
  7357. "ref/netstandard1.0/ru/System.Runtime.xml",
  7358. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7359. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7360. "ref/netstandard1.2/System.Runtime.dll",
  7361. "ref/netstandard1.2/System.Runtime.xml",
  7362. "ref/netstandard1.2/de/System.Runtime.xml",
  7363. "ref/netstandard1.2/es/System.Runtime.xml",
  7364. "ref/netstandard1.2/fr/System.Runtime.xml",
  7365. "ref/netstandard1.2/it/System.Runtime.xml",
  7366. "ref/netstandard1.2/ja/System.Runtime.xml",
  7367. "ref/netstandard1.2/ko/System.Runtime.xml",
  7368. "ref/netstandard1.2/ru/System.Runtime.xml",
  7369. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7370. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7371. "ref/netstandard1.3/System.Runtime.dll",
  7372. "ref/netstandard1.3/System.Runtime.xml",
  7373. "ref/netstandard1.3/de/System.Runtime.xml",
  7374. "ref/netstandard1.3/es/System.Runtime.xml",
  7375. "ref/netstandard1.3/fr/System.Runtime.xml",
  7376. "ref/netstandard1.3/it/System.Runtime.xml",
  7377. "ref/netstandard1.3/ja/System.Runtime.xml",
  7378. "ref/netstandard1.3/ko/System.Runtime.xml",
  7379. "ref/netstandard1.3/ru/System.Runtime.xml",
  7380. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7381. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7382. "ref/netstandard1.5/System.Runtime.dll",
  7383. "ref/netstandard1.5/System.Runtime.xml",
  7384. "ref/netstandard1.5/de/System.Runtime.xml",
  7385. "ref/netstandard1.5/es/System.Runtime.xml",
  7386. "ref/netstandard1.5/fr/System.Runtime.xml",
  7387. "ref/netstandard1.5/it/System.Runtime.xml",
  7388. "ref/netstandard1.5/ja/System.Runtime.xml",
  7389. "ref/netstandard1.5/ko/System.Runtime.xml",
  7390. "ref/netstandard1.5/ru/System.Runtime.xml",
  7391. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7392. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7393. "ref/portable-net45+win8+wp80+wpa81/_._",
  7394. "ref/win8/_._",
  7395. "ref/wp80/_._",
  7396. "ref/wpa81/_._",
  7397. "ref/xamarinios10/_._",
  7398. "ref/xamarinmac20/_._",
  7399. "ref/xamarintvos10/_._",
  7400. "ref/xamarinwatchos10/_._",
  7401. "system.runtime.4.3.0.nupkg.sha512",
  7402. "system.runtime.nuspec"
  7403. ]
  7404. },
  7405. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7406. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7407. "type": "package",
  7408. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7409. "files": [
  7410. ".nupkg.metadata",
  7411. ".signature.p7s",
  7412. "Icon.png",
  7413. "LICENSE.TXT",
  7414. "THIRD-PARTY-NOTICES.TXT",
  7415. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  7416. "buildTransitive/netcoreapp3.1/_._",
  7417. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7418. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7419. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  7420. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  7421. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  7422. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  7423. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7424. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7425. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  7426. "system.runtime.compilerservices.unsafe.nuspec",
  7427. "useSharedDesignerContext.txt"
  7428. ]
  7429. },
  7430. "System.Runtime.Extensions/4.3.0": {
  7431. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7432. "type": "package",
  7433. "path": "system.runtime.extensions/4.3.0",
  7434. "files": [
  7435. ".nupkg.metadata",
  7436. ".signature.p7s",
  7437. "ThirdPartyNotices.txt",
  7438. "dotnet_library_license.txt",
  7439. "lib/MonoAndroid10/_._",
  7440. "lib/MonoTouch10/_._",
  7441. "lib/net45/_._",
  7442. "lib/net462/System.Runtime.Extensions.dll",
  7443. "lib/portable-net45+win8+wp8+wpa81/_._",
  7444. "lib/win8/_._",
  7445. "lib/wp80/_._",
  7446. "lib/wpa81/_._",
  7447. "lib/xamarinios10/_._",
  7448. "lib/xamarinmac20/_._",
  7449. "lib/xamarintvos10/_._",
  7450. "lib/xamarinwatchos10/_._",
  7451. "ref/MonoAndroid10/_._",
  7452. "ref/MonoTouch10/_._",
  7453. "ref/net45/_._",
  7454. "ref/net462/System.Runtime.Extensions.dll",
  7455. "ref/netcore50/System.Runtime.Extensions.dll",
  7456. "ref/netcore50/System.Runtime.Extensions.xml",
  7457. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7458. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7459. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7460. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7461. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7462. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7463. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7464. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7465. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7466. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7467. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7468. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7469. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7470. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7471. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7472. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7473. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7474. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7475. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7476. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7477. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7478. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7479. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7480. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7481. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7482. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7483. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7484. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7485. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7486. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7487. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7488. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7489. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7490. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7491. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7492. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7493. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7494. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7495. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7496. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7497. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7498. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7499. "ref/portable-net45+win8+wp8+wpa81/_._",
  7500. "ref/win8/_._",
  7501. "ref/wp80/_._",
  7502. "ref/wpa81/_._",
  7503. "ref/xamarinios10/_._",
  7504. "ref/xamarinmac20/_._",
  7505. "ref/xamarintvos10/_._",
  7506. "ref/xamarinwatchos10/_._",
  7507. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7508. "system.runtime.extensions.nuspec"
  7509. ]
  7510. },
  7511. "System.Runtime.Handles/4.3.0": {
  7512. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7513. "type": "package",
  7514. "path": "system.runtime.handles/4.3.0",
  7515. "files": [
  7516. ".nupkg.metadata",
  7517. ".signature.p7s",
  7518. "ThirdPartyNotices.txt",
  7519. "dotnet_library_license.txt",
  7520. "lib/MonoAndroid10/_._",
  7521. "lib/MonoTouch10/_._",
  7522. "lib/net46/_._",
  7523. "lib/xamarinios10/_._",
  7524. "lib/xamarinmac20/_._",
  7525. "lib/xamarintvos10/_._",
  7526. "lib/xamarinwatchos10/_._",
  7527. "ref/MonoAndroid10/_._",
  7528. "ref/MonoTouch10/_._",
  7529. "ref/net46/_._",
  7530. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7531. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7532. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7533. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7534. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7535. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7536. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7537. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7538. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7539. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7540. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7541. "ref/xamarinios10/_._",
  7542. "ref/xamarinmac20/_._",
  7543. "ref/xamarintvos10/_._",
  7544. "ref/xamarinwatchos10/_._",
  7545. "system.runtime.handles.4.3.0.nupkg.sha512",
  7546. "system.runtime.handles.nuspec"
  7547. ]
  7548. },
  7549. "System.Runtime.InteropServices/4.3.0": {
  7550. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7551. "type": "package",
  7552. "path": "system.runtime.interopservices/4.3.0",
  7553. "files": [
  7554. ".nupkg.metadata",
  7555. ".signature.p7s",
  7556. "ThirdPartyNotices.txt",
  7557. "dotnet_library_license.txt",
  7558. "lib/MonoAndroid10/_._",
  7559. "lib/MonoTouch10/_._",
  7560. "lib/net45/_._",
  7561. "lib/net462/System.Runtime.InteropServices.dll",
  7562. "lib/net463/System.Runtime.InteropServices.dll",
  7563. "lib/portable-net45+win8+wpa81/_._",
  7564. "lib/win8/_._",
  7565. "lib/wpa81/_._",
  7566. "lib/xamarinios10/_._",
  7567. "lib/xamarinmac20/_._",
  7568. "lib/xamarintvos10/_._",
  7569. "lib/xamarinwatchos10/_._",
  7570. "ref/MonoAndroid10/_._",
  7571. "ref/MonoTouch10/_._",
  7572. "ref/net45/_._",
  7573. "ref/net462/System.Runtime.InteropServices.dll",
  7574. "ref/net463/System.Runtime.InteropServices.dll",
  7575. "ref/netcore50/System.Runtime.InteropServices.dll",
  7576. "ref/netcore50/System.Runtime.InteropServices.xml",
  7577. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7578. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7579. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7580. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7581. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7582. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7583. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7584. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7585. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7586. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7587. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7588. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7589. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7590. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7591. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7592. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7593. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7594. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7595. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7596. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7597. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7598. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7599. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7600. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7601. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7602. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7603. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7604. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7605. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7606. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7607. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7608. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7609. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7610. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7611. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7612. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7613. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7614. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7615. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7616. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7617. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7618. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7619. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7620. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7621. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7622. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7623. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7624. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7625. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7626. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7627. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7628. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7629. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7630. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7631. "ref/portable-net45+win8+wpa81/_._",
  7632. "ref/win8/_._",
  7633. "ref/wpa81/_._",
  7634. "ref/xamarinios10/_._",
  7635. "ref/xamarinmac20/_._",
  7636. "ref/xamarintvos10/_._",
  7637. "ref/xamarinwatchos10/_._",
  7638. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7639. "system.runtime.interopservices.nuspec"
  7640. ]
  7641. },
  7642. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7643. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7644. "type": "package",
  7645. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7646. "files": [
  7647. ".nupkg.metadata",
  7648. ".signature.p7s",
  7649. "ThirdPartyNotices.txt",
  7650. "dotnet_library_license.txt",
  7651. "lib/MonoAndroid10/_._",
  7652. "lib/MonoTouch10/_._",
  7653. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7654. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7655. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7656. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7657. "lib/xamarinios10/_._",
  7658. "lib/xamarinmac20/_._",
  7659. "lib/xamarintvos10/_._",
  7660. "lib/xamarinwatchos10/_._",
  7661. "ref/MonoAndroid10/_._",
  7662. "ref/MonoTouch10/_._",
  7663. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7664. "ref/xamarinios10/_._",
  7665. "ref/xamarinmac20/_._",
  7666. "ref/xamarintvos10/_._",
  7667. "ref/xamarinwatchos10/_._",
  7668. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7669. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7670. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7671. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7672. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7673. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7674. "system.runtime.interopservices.runtimeinformation.nuspec"
  7675. ]
  7676. },
  7677. "System.Runtime.Numerics/4.3.0": {
  7678. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7679. "type": "package",
  7680. "path": "system.runtime.numerics/4.3.0",
  7681. "files": [
  7682. ".nupkg.metadata",
  7683. ".signature.p7s",
  7684. "ThirdPartyNotices.txt",
  7685. "dotnet_library_license.txt",
  7686. "lib/MonoAndroid10/_._",
  7687. "lib/MonoTouch10/_._",
  7688. "lib/net45/_._",
  7689. "lib/netcore50/System.Runtime.Numerics.dll",
  7690. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7691. "lib/portable-net45+win8+wpa81/_._",
  7692. "lib/win8/_._",
  7693. "lib/wpa81/_._",
  7694. "lib/xamarinios10/_._",
  7695. "lib/xamarinmac20/_._",
  7696. "lib/xamarintvos10/_._",
  7697. "lib/xamarinwatchos10/_._",
  7698. "ref/MonoAndroid10/_._",
  7699. "ref/MonoTouch10/_._",
  7700. "ref/net45/_._",
  7701. "ref/netcore50/System.Runtime.Numerics.dll",
  7702. "ref/netcore50/System.Runtime.Numerics.xml",
  7703. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7704. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7705. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7706. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7707. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7708. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7709. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7710. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7711. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7712. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7713. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7714. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7715. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7716. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7717. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7718. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7719. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7720. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7721. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7722. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7723. "ref/portable-net45+win8+wpa81/_._",
  7724. "ref/win8/_._",
  7725. "ref/wpa81/_._",
  7726. "ref/xamarinios10/_._",
  7727. "ref/xamarinmac20/_._",
  7728. "ref/xamarintvos10/_._",
  7729. "ref/xamarinwatchos10/_._",
  7730. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7731. "system.runtime.numerics.nuspec"
  7732. ]
  7733. },
  7734. "System.Runtime.Serialization.Primitives/4.1.1": {
  7735. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  7736. "type": "package",
  7737. "path": "system.runtime.serialization.primitives/4.1.1",
  7738. "files": [
  7739. ".nupkg.metadata",
  7740. ".signature.p7s",
  7741. "ThirdPartyNotices.txt",
  7742. "dotnet_library_license.txt",
  7743. "lib/MonoAndroid10/_._",
  7744. "lib/MonoTouch10/_._",
  7745. "lib/net45/_._",
  7746. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7747. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7748. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7749. "lib/portable-net45+win8+wp8+wpa81/_._",
  7750. "lib/win8/_._",
  7751. "lib/wp80/_._",
  7752. "lib/wpa81/_._",
  7753. "lib/xamarinios10/_._",
  7754. "lib/xamarinmac20/_._",
  7755. "lib/xamarintvos10/_._",
  7756. "lib/xamarinwatchos10/_._",
  7757. "ref/MonoAndroid10/_._",
  7758. "ref/MonoTouch10/_._",
  7759. "ref/net45/_._",
  7760. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7761. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7762. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7763. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7764. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7765. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7766. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7767. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7768. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7769. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7770. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7771. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7772. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7773. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7774. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7775. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7776. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7777. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7778. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7779. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7780. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7781. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7782. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7783. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7784. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7785. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7786. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7787. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7788. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7789. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7790. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7791. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7792. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7793. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7794. "ref/portable-net45+win8+wp8+wpa81/_._",
  7795. "ref/win8/_._",
  7796. "ref/wp80/_._",
  7797. "ref/wpa81/_._",
  7798. "ref/xamarinios10/_._",
  7799. "ref/xamarinmac20/_._",
  7800. "ref/xamarintvos10/_._",
  7801. "ref/xamarinwatchos10/_._",
  7802. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7803. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  7804. "system.runtime.serialization.primitives.nuspec"
  7805. ]
  7806. },
  7807. "System.Security.AccessControl/4.7.0": {
  7808. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7809. "type": "package",
  7810. "path": "system.security.accesscontrol/4.7.0",
  7811. "files": [
  7812. ".nupkg.metadata",
  7813. ".signature.p7s",
  7814. "LICENSE.TXT",
  7815. "THIRD-PARTY-NOTICES.TXT",
  7816. "lib/net46/System.Security.AccessControl.dll",
  7817. "lib/net461/System.Security.AccessControl.dll",
  7818. "lib/net461/System.Security.AccessControl.xml",
  7819. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7820. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7821. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7822. "lib/uap10.0.16299/_._",
  7823. "ref/net46/System.Security.AccessControl.dll",
  7824. "ref/net461/System.Security.AccessControl.dll",
  7825. "ref/net461/System.Security.AccessControl.xml",
  7826. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7827. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7828. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7829. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7830. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7831. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7832. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7833. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7834. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7835. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7836. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7837. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7838. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7839. "ref/uap10.0.16299/_._",
  7840. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7841. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7842. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7843. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7844. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7845. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7846. "runtimes/win/lib/uap10.0.16299/_._",
  7847. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7848. "system.security.accesscontrol.nuspec",
  7849. "useSharedDesignerContext.txt",
  7850. "version.txt"
  7851. ]
  7852. },
  7853. "System.Security.Cryptography.Algorithms/4.3.0": {
  7854. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7855. "type": "package",
  7856. "path": "system.security.cryptography.algorithms/4.3.0",
  7857. "files": [
  7858. ".nupkg.metadata",
  7859. ".signature.p7s",
  7860. "ThirdPartyNotices.txt",
  7861. "dotnet_library_license.txt",
  7862. "lib/MonoAndroid10/_._",
  7863. "lib/MonoTouch10/_._",
  7864. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7865. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7866. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7867. "lib/xamarinios10/_._",
  7868. "lib/xamarinmac20/_._",
  7869. "lib/xamarintvos10/_._",
  7870. "lib/xamarinwatchos10/_._",
  7871. "ref/MonoAndroid10/_._",
  7872. "ref/MonoTouch10/_._",
  7873. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7874. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7875. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7876. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7877. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7878. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7879. "ref/xamarinios10/_._",
  7880. "ref/xamarinmac20/_._",
  7881. "ref/xamarintvos10/_._",
  7882. "ref/xamarinwatchos10/_._",
  7883. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7884. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7885. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7886. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7887. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7888. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7889. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7890. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7891. "system.security.cryptography.algorithms.nuspec"
  7892. ]
  7893. },
  7894. "System.Security.Cryptography.Cng/4.3.0": {
  7895. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7896. "type": "package",
  7897. "path": "system.security.cryptography.cng/4.3.0",
  7898. "files": [
  7899. ".nupkg.metadata",
  7900. ".signature.p7s",
  7901. "ThirdPartyNotices.txt",
  7902. "dotnet_library_license.txt",
  7903. "lib/net46/System.Security.Cryptography.Cng.dll",
  7904. "lib/net461/System.Security.Cryptography.Cng.dll",
  7905. "lib/net463/System.Security.Cryptography.Cng.dll",
  7906. "ref/net46/System.Security.Cryptography.Cng.dll",
  7907. "ref/net461/System.Security.Cryptography.Cng.dll",
  7908. "ref/net463/System.Security.Cryptography.Cng.dll",
  7909. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7910. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7911. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7912. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7913. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7914. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7915. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  7916. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7917. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7918. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  7919. "system.security.cryptography.cng.nuspec"
  7920. ]
  7921. },
  7922. "System.Security.Cryptography.Csp/4.3.0": {
  7923. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7924. "type": "package",
  7925. "path": "system.security.cryptography.csp/4.3.0",
  7926. "files": [
  7927. ".nupkg.metadata",
  7928. ".signature.p7s",
  7929. "ThirdPartyNotices.txt",
  7930. "dotnet_library_license.txt",
  7931. "lib/MonoAndroid10/_._",
  7932. "lib/MonoTouch10/_._",
  7933. "lib/net46/System.Security.Cryptography.Csp.dll",
  7934. "lib/xamarinios10/_._",
  7935. "lib/xamarinmac20/_._",
  7936. "lib/xamarintvos10/_._",
  7937. "lib/xamarinwatchos10/_._",
  7938. "ref/MonoAndroid10/_._",
  7939. "ref/MonoTouch10/_._",
  7940. "ref/net46/System.Security.Cryptography.Csp.dll",
  7941. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7942. "ref/xamarinios10/_._",
  7943. "ref/xamarinmac20/_._",
  7944. "ref/xamarintvos10/_._",
  7945. "ref/xamarinwatchos10/_._",
  7946. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7947. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7948. "runtimes/win/lib/netcore50/_._",
  7949. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7950. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7951. "system.security.cryptography.csp.nuspec"
  7952. ]
  7953. },
  7954. "System.Security.Cryptography.Encoding/4.3.0": {
  7955. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7956. "type": "package",
  7957. "path": "system.security.cryptography.encoding/4.3.0",
  7958. "files": [
  7959. ".nupkg.metadata",
  7960. ".signature.p7s",
  7961. "ThirdPartyNotices.txt",
  7962. "dotnet_library_license.txt",
  7963. "lib/MonoAndroid10/_._",
  7964. "lib/MonoTouch10/_._",
  7965. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7966. "lib/xamarinios10/_._",
  7967. "lib/xamarinmac20/_._",
  7968. "lib/xamarintvos10/_._",
  7969. "lib/xamarinwatchos10/_._",
  7970. "ref/MonoAndroid10/_._",
  7971. "ref/MonoTouch10/_._",
  7972. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7973. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7974. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7975. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7976. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7977. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7978. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7979. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7980. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7981. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7982. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7983. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7984. "ref/xamarinios10/_._",
  7985. "ref/xamarinmac20/_._",
  7986. "ref/xamarintvos10/_._",
  7987. "ref/xamarinwatchos10/_._",
  7988. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7989. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7990. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7991. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7992. "system.security.cryptography.encoding.nuspec"
  7993. ]
  7994. },
  7995. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7996. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7997. "type": "package",
  7998. "path": "system.security.cryptography.openssl/4.3.0",
  7999. "files": [
  8000. ".nupkg.metadata",
  8001. ".signature.p7s",
  8002. "ThirdPartyNotices.txt",
  8003. "dotnet_library_license.txt",
  8004. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8005. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8006. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8007. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8008. "system.security.cryptography.openssl.nuspec"
  8009. ]
  8010. },
  8011. "System.Security.Cryptography.Primitives/4.3.0": {
  8012. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8013. "type": "package",
  8014. "path": "system.security.cryptography.primitives/4.3.0",
  8015. "files": [
  8016. ".nupkg.metadata",
  8017. ".signature.p7s",
  8018. "ThirdPartyNotices.txt",
  8019. "dotnet_library_license.txt",
  8020. "lib/MonoAndroid10/_._",
  8021. "lib/MonoTouch10/_._",
  8022. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8023. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8024. "lib/xamarinios10/_._",
  8025. "lib/xamarinmac20/_._",
  8026. "lib/xamarintvos10/_._",
  8027. "lib/xamarinwatchos10/_._",
  8028. "ref/MonoAndroid10/_._",
  8029. "ref/MonoTouch10/_._",
  8030. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8031. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8032. "ref/xamarinios10/_._",
  8033. "ref/xamarinmac20/_._",
  8034. "ref/xamarintvos10/_._",
  8035. "ref/xamarinwatchos10/_._",
  8036. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8037. "system.security.cryptography.primitives.nuspec"
  8038. ]
  8039. },
  8040. "System.Security.Cryptography.ProtectedData/4.4.0": {
  8041. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  8042. "type": "package",
  8043. "path": "system.security.cryptography.protecteddata/4.4.0",
  8044. "files": [
  8045. ".nupkg.metadata",
  8046. ".signature.p7s",
  8047. "LICENSE.TXT",
  8048. "THIRD-PARTY-NOTICES.TXT",
  8049. "lib/MonoAndroid10/_._",
  8050. "lib/MonoTouch10/_._",
  8051. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8052. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8053. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8054. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8055. "lib/xamarinios10/_._",
  8056. "lib/xamarinmac20/_._",
  8057. "lib/xamarintvos10/_._",
  8058. "lib/xamarinwatchos10/_._",
  8059. "ref/MonoAndroid10/_._",
  8060. "ref/MonoTouch10/_._",
  8061. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8062. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8063. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8064. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8065. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8066. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8067. "ref/xamarinios10/_._",
  8068. "ref/xamarinmac20/_._",
  8069. "ref/xamarintvos10/_._",
  8070. "ref/xamarinwatchos10/_._",
  8071. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8072. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8073. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8074. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8075. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  8076. "system.security.cryptography.protecteddata.nuspec",
  8077. "useSharedDesignerContext.txt",
  8078. "version.txt"
  8079. ]
  8080. },
  8081. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8082. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8083. "type": "package",
  8084. "path": "system.security.cryptography.x509certificates/4.3.0",
  8085. "files": [
  8086. ".nupkg.metadata",
  8087. ".signature.p7s",
  8088. "ThirdPartyNotices.txt",
  8089. "dotnet_library_license.txt",
  8090. "lib/MonoAndroid10/_._",
  8091. "lib/MonoTouch10/_._",
  8092. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8093. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8094. "lib/xamarinios10/_._",
  8095. "lib/xamarinmac20/_._",
  8096. "lib/xamarintvos10/_._",
  8097. "lib/xamarinwatchos10/_._",
  8098. "ref/MonoAndroid10/_._",
  8099. "ref/MonoTouch10/_._",
  8100. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8101. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8102. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8103. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8104. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8105. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8106. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8107. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8108. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8109. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8110. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8111. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8112. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8113. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8114. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8115. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8116. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8117. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8118. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8119. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8120. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8121. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8122. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8123. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8124. "ref/xamarinios10/_._",
  8125. "ref/xamarinmac20/_._",
  8126. "ref/xamarintvos10/_._",
  8127. "ref/xamarinwatchos10/_._",
  8128. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8129. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8130. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8131. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8132. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8133. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8134. "system.security.cryptography.x509certificates.nuspec"
  8135. ]
  8136. },
  8137. "System.Security.Permissions/4.7.0": {
  8138. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8139. "type": "package",
  8140. "path": "system.security.permissions/4.7.0",
  8141. "files": [
  8142. ".nupkg.metadata",
  8143. ".signature.p7s",
  8144. "LICENSE.TXT",
  8145. "THIRD-PARTY-NOTICES.TXT",
  8146. "lib/net461/System.Security.Permissions.dll",
  8147. "lib/net461/System.Security.Permissions.xml",
  8148. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8149. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8150. "lib/netstandard2.0/System.Security.Permissions.dll",
  8151. "lib/netstandard2.0/System.Security.Permissions.xml",
  8152. "ref/net461/System.Security.Permissions.dll",
  8153. "ref/net461/System.Security.Permissions.xml",
  8154. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8155. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8156. "ref/netstandard2.0/System.Security.Permissions.dll",
  8157. "ref/netstandard2.0/System.Security.Permissions.xml",
  8158. "system.security.permissions.4.7.0.nupkg.sha512",
  8159. "system.security.permissions.nuspec",
  8160. "useSharedDesignerContext.txt",
  8161. "version.txt"
  8162. ]
  8163. },
  8164. "System.Security.Principal.Windows/4.7.0": {
  8165. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8166. "type": "package",
  8167. "path": "system.security.principal.windows/4.7.0",
  8168. "files": [
  8169. ".nupkg.metadata",
  8170. ".signature.p7s",
  8171. "LICENSE.TXT",
  8172. "THIRD-PARTY-NOTICES.TXT",
  8173. "lib/net46/System.Security.Principal.Windows.dll",
  8174. "lib/net461/System.Security.Principal.Windows.dll",
  8175. "lib/net461/System.Security.Principal.Windows.xml",
  8176. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8177. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8178. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8179. "lib/uap10.0.16299/_._",
  8180. "ref/net46/System.Security.Principal.Windows.dll",
  8181. "ref/net461/System.Security.Principal.Windows.dll",
  8182. "ref/net461/System.Security.Principal.Windows.xml",
  8183. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8184. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8185. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8186. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8187. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8188. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8189. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8190. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8191. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8192. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8193. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8194. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8195. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8196. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8197. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8198. "ref/uap10.0.16299/_._",
  8199. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8200. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8201. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8202. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8203. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8204. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8205. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8206. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8207. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8208. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8209. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8210. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8211. "runtimes/win/lib/uap10.0.16299/_._",
  8212. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8213. "system.security.principal.windows.nuspec",
  8214. "useSharedDesignerContext.txt",
  8215. "version.txt"
  8216. ]
  8217. },
  8218. "System.Text.Encoding/4.3.0": {
  8219. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8220. "type": "package",
  8221. "path": "system.text.encoding/4.3.0",
  8222. "files": [
  8223. ".nupkg.metadata",
  8224. ".signature.p7s",
  8225. "ThirdPartyNotices.txt",
  8226. "dotnet_library_license.txt",
  8227. "lib/MonoAndroid10/_._",
  8228. "lib/MonoTouch10/_._",
  8229. "lib/net45/_._",
  8230. "lib/portable-net45+win8+wp8+wpa81/_._",
  8231. "lib/win8/_._",
  8232. "lib/wp80/_._",
  8233. "lib/wpa81/_._",
  8234. "lib/xamarinios10/_._",
  8235. "lib/xamarinmac20/_._",
  8236. "lib/xamarintvos10/_._",
  8237. "lib/xamarinwatchos10/_._",
  8238. "ref/MonoAndroid10/_._",
  8239. "ref/MonoTouch10/_._",
  8240. "ref/net45/_._",
  8241. "ref/netcore50/System.Text.Encoding.dll",
  8242. "ref/netcore50/System.Text.Encoding.xml",
  8243. "ref/netcore50/de/System.Text.Encoding.xml",
  8244. "ref/netcore50/es/System.Text.Encoding.xml",
  8245. "ref/netcore50/fr/System.Text.Encoding.xml",
  8246. "ref/netcore50/it/System.Text.Encoding.xml",
  8247. "ref/netcore50/ja/System.Text.Encoding.xml",
  8248. "ref/netcore50/ko/System.Text.Encoding.xml",
  8249. "ref/netcore50/ru/System.Text.Encoding.xml",
  8250. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8251. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8252. "ref/netstandard1.0/System.Text.Encoding.dll",
  8253. "ref/netstandard1.0/System.Text.Encoding.xml",
  8254. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8255. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8256. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8257. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8258. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8259. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8260. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8261. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8262. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8263. "ref/netstandard1.3/System.Text.Encoding.dll",
  8264. "ref/netstandard1.3/System.Text.Encoding.xml",
  8265. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8266. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8267. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8268. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8269. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8270. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8271. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8272. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8273. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8274. "ref/portable-net45+win8+wp8+wpa81/_._",
  8275. "ref/win8/_._",
  8276. "ref/wp80/_._",
  8277. "ref/wpa81/_._",
  8278. "ref/xamarinios10/_._",
  8279. "ref/xamarinmac20/_._",
  8280. "ref/xamarintvos10/_._",
  8281. "ref/xamarinwatchos10/_._",
  8282. "system.text.encoding.4.3.0.nupkg.sha512",
  8283. "system.text.encoding.nuspec"
  8284. ]
  8285. },
  8286. "System.Text.Encoding.CodePages/4.4.0": {
  8287. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  8288. "type": "package",
  8289. "path": "system.text.encoding.codepages/4.4.0",
  8290. "files": [
  8291. ".nupkg.metadata",
  8292. ".signature.p7s",
  8293. "LICENSE.TXT",
  8294. "THIRD-PARTY-NOTICES.TXT",
  8295. "lib/MonoAndroid10/_._",
  8296. "lib/MonoTouch10/_._",
  8297. "lib/net46/System.Text.Encoding.CodePages.dll",
  8298. "lib/net461/System.Text.Encoding.CodePages.dll",
  8299. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8300. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8301. "lib/xamarinios10/_._",
  8302. "lib/xamarinmac20/_._",
  8303. "lib/xamarintvos10/_._",
  8304. "lib/xamarinwatchos10/_._",
  8305. "ref/MonoAndroid10/_._",
  8306. "ref/MonoTouch10/_._",
  8307. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8308. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  8309. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  8310. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  8311. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  8312. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  8313. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  8314. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  8315. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  8316. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  8317. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  8318. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8319. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8320. "ref/xamarinios10/_._",
  8321. "ref/xamarinmac20/_._",
  8322. "ref/xamarintvos10/_._",
  8323. "ref/xamarinwatchos10/_._",
  8324. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8325. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8326. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8327. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8328. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  8329. "system.text.encoding.codepages.nuspec",
  8330. "useSharedDesignerContext.txt",
  8331. "version.txt"
  8332. ]
  8333. },
  8334. "System.Text.Encoding.Extensions/4.3.0": {
  8335. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8336. "type": "package",
  8337. "path": "system.text.encoding.extensions/4.3.0",
  8338. "files": [
  8339. ".nupkg.metadata",
  8340. ".signature.p7s",
  8341. "ThirdPartyNotices.txt",
  8342. "dotnet_library_license.txt",
  8343. "lib/MonoAndroid10/_._",
  8344. "lib/MonoTouch10/_._",
  8345. "lib/net45/_._",
  8346. "lib/portable-net45+win8+wp8+wpa81/_._",
  8347. "lib/win8/_._",
  8348. "lib/wp80/_._",
  8349. "lib/wpa81/_._",
  8350. "lib/xamarinios10/_._",
  8351. "lib/xamarinmac20/_._",
  8352. "lib/xamarintvos10/_._",
  8353. "lib/xamarinwatchos10/_._",
  8354. "ref/MonoAndroid10/_._",
  8355. "ref/MonoTouch10/_._",
  8356. "ref/net45/_._",
  8357. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8358. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8359. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8360. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8361. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8362. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8363. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8364. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8365. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8366. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8367. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8368. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8369. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8370. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8371. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8372. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8373. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8374. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8375. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8376. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8377. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8378. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8379. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8380. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8381. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8382. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8383. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8384. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8385. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8386. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8387. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8388. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8389. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8390. "ref/portable-net45+win8+wp8+wpa81/_._",
  8391. "ref/win8/_._",
  8392. "ref/wp80/_._",
  8393. "ref/wpa81/_._",
  8394. "ref/xamarinios10/_._",
  8395. "ref/xamarinmac20/_._",
  8396. "ref/xamarintvos10/_._",
  8397. "ref/xamarinwatchos10/_._",
  8398. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8399. "system.text.encoding.extensions.nuspec"
  8400. ]
  8401. },
  8402. "System.Text.Encodings.Web/4.5.0": {
  8403. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8404. "type": "package",
  8405. "path": "system.text.encodings.web/4.5.0",
  8406. "files": [
  8407. ".nupkg.metadata",
  8408. ".signature.p7s",
  8409. "LICENSE.TXT",
  8410. "THIRD-PARTY-NOTICES.TXT",
  8411. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8412. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8413. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8414. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8415. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8416. "system.text.encodings.web.nuspec",
  8417. "useSharedDesignerContext.txt",
  8418. "version.txt"
  8419. ]
  8420. },
  8421. "System.Text.RegularExpressions/4.3.0": {
  8422. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8423. "type": "package",
  8424. "path": "system.text.regularexpressions/4.3.0",
  8425. "files": [
  8426. ".nupkg.metadata",
  8427. ".signature.p7s",
  8428. "ThirdPartyNotices.txt",
  8429. "dotnet_library_license.txt",
  8430. "lib/MonoAndroid10/_._",
  8431. "lib/MonoTouch10/_._",
  8432. "lib/net45/_._",
  8433. "lib/net463/System.Text.RegularExpressions.dll",
  8434. "lib/netcore50/System.Text.RegularExpressions.dll",
  8435. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8436. "lib/portable-net45+win8+wp8+wpa81/_._",
  8437. "lib/win8/_._",
  8438. "lib/wp80/_._",
  8439. "lib/wpa81/_._",
  8440. "lib/xamarinios10/_._",
  8441. "lib/xamarinmac20/_._",
  8442. "lib/xamarintvos10/_._",
  8443. "lib/xamarinwatchos10/_._",
  8444. "ref/MonoAndroid10/_._",
  8445. "ref/MonoTouch10/_._",
  8446. "ref/net45/_._",
  8447. "ref/net463/System.Text.RegularExpressions.dll",
  8448. "ref/netcore50/System.Text.RegularExpressions.dll",
  8449. "ref/netcore50/System.Text.RegularExpressions.xml",
  8450. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8451. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8452. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8453. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8454. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8455. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8456. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8457. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8458. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8459. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8460. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8461. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8462. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8463. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8464. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8465. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8466. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8467. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8468. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8469. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8470. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8471. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8472. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8473. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8474. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8475. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8476. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8477. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8478. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8479. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8480. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8481. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8482. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8483. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8484. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8485. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8486. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8487. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8488. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8489. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8490. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8491. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8492. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8493. "ref/portable-net45+win8+wp8+wpa81/_._",
  8494. "ref/win8/_._",
  8495. "ref/wp80/_._",
  8496. "ref/wpa81/_._",
  8497. "ref/xamarinios10/_._",
  8498. "ref/xamarinmac20/_._",
  8499. "ref/xamarintvos10/_._",
  8500. "ref/xamarinwatchos10/_._",
  8501. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8502. "system.text.regularexpressions.nuspec"
  8503. ]
  8504. },
  8505. "System.Threading/4.3.0": {
  8506. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8507. "type": "package",
  8508. "path": "system.threading/4.3.0",
  8509. "files": [
  8510. ".nupkg.metadata",
  8511. ".signature.p7s",
  8512. "ThirdPartyNotices.txt",
  8513. "dotnet_library_license.txt",
  8514. "lib/MonoAndroid10/_._",
  8515. "lib/MonoTouch10/_._",
  8516. "lib/net45/_._",
  8517. "lib/netcore50/System.Threading.dll",
  8518. "lib/netstandard1.3/System.Threading.dll",
  8519. "lib/portable-net45+win8+wp8+wpa81/_._",
  8520. "lib/win8/_._",
  8521. "lib/wp80/_._",
  8522. "lib/wpa81/_._",
  8523. "lib/xamarinios10/_._",
  8524. "lib/xamarinmac20/_._",
  8525. "lib/xamarintvos10/_._",
  8526. "lib/xamarinwatchos10/_._",
  8527. "ref/MonoAndroid10/_._",
  8528. "ref/MonoTouch10/_._",
  8529. "ref/net45/_._",
  8530. "ref/netcore50/System.Threading.dll",
  8531. "ref/netcore50/System.Threading.xml",
  8532. "ref/netcore50/de/System.Threading.xml",
  8533. "ref/netcore50/es/System.Threading.xml",
  8534. "ref/netcore50/fr/System.Threading.xml",
  8535. "ref/netcore50/it/System.Threading.xml",
  8536. "ref/netcore50/ja/System.Threading.xml",
  8537. "ref/netcore50/ko/System.Threading.xml",
  8538. "ref/netcore50/ru/System.Threading.xml",
  8539. "ref/netcore50/zh-hans/System.Threading.xml",
  8540. "ref/netcore50/zh-hant/System.Threading.xml",
  8541. "ref/netstandard1.0/System.Threading.dll",
  8542. "ref/netstandard1.0/System.Threading.xml",
  8543. "ref/netstandard1.0/de/System.Threading.xml",
  8544. "ref/netstandard1.0/es/System.Threading.xml",
  8545. "ref/netstandard1.0/fr/System.Threading.xml",
  8546. "ref/netstandard1.0/it/System.Threading.xml",
  8547. "ref/netstandard1.0/ja/System.Threading.xml",
  8548. "ref/netstandard1.0/ko/System.Threading.xml",
  8549. "ref/netstandard1.0/ru/System.Threading.xml",
  8550. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8551. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8552. "ref/netstandard1.3/System.Threading.dll",
  8553. "ref/netstandard1.3/System.Threading.xml",
  8554. "ref/netstandard1.3/de/System.Threading.xml",
  8555. "ref/netstandard1.3/es/System.Threading.xml",
  8556. "ref/netstandard1.3/fr/System.Threading.xml",
  8557. "ref/netstandard1.3/it/System.Threading.xml",
  8558. "ref/netstandard1.3/ja/System.Threading.xml",
  8559. "ref/netstandard1.3/ko/System.Threading.xml",
  8560. "ref/netstandard1.3/ru/System.Threading.xml",
  8561. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8562. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8563. "ref/portable-net45+win8+wp8+wpa81/_._",
  8564. "ref/win8/_._",
  8565. "ref/wp80/_._",
  8566. "ref/wpa81/_._",
  8567. "ref/xamarinios10/_._",
  8568. "ref/xamarinmac20/_._",
  8569. "ref/xamarintvos10/_._",
  8570. "ref/xamarinwatchos10/_._",
  8571. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8572. "system.threading.4.3.0.nupkg.sha512",
  8573. "system.threading.nuspec"
  8574. ]
  8575. },
  8576. "System.Threading.Tasks/4.3.0": {
  8577. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8578. "type": "package",
  8579. "path": "system.threading.tasks/4.3.0",
  8580. "files": [
  8581. ".nupkg.metadata",
  8582. ".signature.p7s",
  8583. "ThirdPartyNotices.txt",
  8584. "dotnet_library_license.txt",
  8585. "lib/MonoAndroid10/_._",
  8586. "lib/MonoTouch10/_._",
  8587. "lib/net45/_._",
  8588. "lib/portable-net45+win8+wp8+wpa81/_._",
  8589. "lib/win8/_._",
  8590. "lib/wp80/_._",
  8591. "lib/wpa81/_._",
  8592. "lib/xamarinios10/_._",
  8593. "lib/xamarinmac20/_._",
  8594. "lib/xamarintvos10/_._",
  8595. "lib/xamarinwatchos10/_._",
  8596. "ref/MonoAndroid10/_._",
  8597. "ref/MonoTouch10/_._",
  8598. "ref/net45/_._",
  8599. "ref/netcore50/System.Threading.Tasks.dll",
  8600. "ref/netcore50/System.Threading.Tasks.xml",
  8601. "ref/netcore50/de/System.Threading.Tasks.xml",
  8602. "ref/netcore50/es/System.Threading.Tasks.xml",
  8603. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8604. "ref/netcore50/it/System.Threading.Tasks.xml",
  8605. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8606. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8607. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8608. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8609. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8610. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8611. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8612. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8613. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8614. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8615. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8616. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8617. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8618. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8619. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8620. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8621. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8622. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8623. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8624. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8625. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8626. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8627. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8628. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8629. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8630. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8631. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8632. "ref/portable-net45+win8+wp8+wpa81/_._",
  8633. "ref/win8/_._",
  8634. "ref/wp80/_._",
  8635. "ref/wpa81/_._",
  8636. "ref/xamarinios10/_._",
  8637. "ref/xamarinmac20/_._",
  8638. "ref/xamarintvos10/_._",
  8639. "ref/xamarinwatchos10/_._",
  8640. "system.threading.tasks.4.3.0.nupkg.sha512",
  8641. "system.threading.tasks.nuspec"
  8642. ]
  8643. },
  8644. "System.Threading.Tasks.Extensions/4.3.0": {
  8645. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8646. "type": "package",
  8647. "path": "system.threading.tasks.extensions/4.3.0",
  8648. "files": [
  8649. ".nupkg.metadata",
  8650. ".signature.p7s",
  8651. "ThirdPartyNotices.txt",
  8652. "dotnet_library_license.txt",
  8653. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8654. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8655. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8656. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8657. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8658. "system.threading.tasks.extensions.nuspec"
  8659. ]
  8660. },
  8661. "System.Threading.Thread/4.0.0": {
  8662. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  8663. "type": "package",
  8664. "path": "system.threading.thread/4.0.0",
  8665. "files": [
  8666. ".nupkg.metadata",
  8667. ".signature.p7s",
  8668. "ThirdPartyNotices.txt",
  8669. "dotnet_library_license.txt",
  8670. "lib/MonoAndroid10/_._",
  8671. "lib/MonoTouch10/_._",
  8672. "lib/net46/System.Threading.Thread.dll",
  8673. "lib/netcore50/_._",
  8674. "lib/netstandard1.3/System.Threading.Thread.dll",
  8675. "lib/xamarinios10/_._",
  8676. "lib/xamarinmac20/_._",
  8677. "lib/xamarintvos10/_._",
  8678. "lib/xamarinwatchos10/_._",
  8679. "ref/MonoAndroid10/_._",
  8680. "ref/MonoTouch10/_._",
  8681. "ref/net46/System.Threading.Thread.dll",
  8682. "ref/netstandard1.3/System.Threading.Thread.dll",
  8683. "ref/netstandard1.3/System.Threading.Thread.xml",
  8684. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8685. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8686. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8687. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8688. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8689. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8690. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8691. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8692. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8693. "ref/xamarinios10/_._",
  8694. "ref/xamarinmac20/_._",
  8695. "ref/xamarintvos10/_._",
  8696. "ref/xamarinwatchos10/_._",
  8697. "system.threading.thread.4.0.0.nupkg.sha512",
  8698. "system.threading.thread.nuspec"
  8699. ]
  8700. },
  8701. "System.Threading.ThreadPool/4.0.10": {
  8702. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  8703. "type": "package",
  8704. "path": "system.threading.threadpool/4.0.10",
  8705. "files": [
  8706. ".nupkg.metadata",
  8707. ".signature.p7s",
  8708. "ThirdPartyNotices.txt",
  8709. "dotnet_library_license.txt",
  8710. "lib/MonoAndroid10/_._",
  8711. "lib/MonoTouch10/_._",
  8712. "lib/net46/System.Threading.ThreadPool.dll",
  8713. "lib/netcore50/_._",
  8714. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8715. "lib/xamarinios10/_._",
  8716. "lib/xamarinmac20/_._",
  8717. "lib/xamarintvos10/_._",
  8718. "lib/xamarinwatchos10/_._",
  8719. "ref/MonoAndroid10/_._",
  8720. "ref/MonoTouch10/_._",
  8721. "ref/net46/System.Threading.ThreadPool.dll",
  8722. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8723. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8724. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8725. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8726. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8727. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8728. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8729. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8730. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8731. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8732. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8733. "ref/xamarinios10/_._",
  8734. "ref/xamarinmac20/_._",
  8735. "ref/xamarintvos10/_._",
  8736. "ref/xamarinwatchos10/_._",
  8737. "system.threading.threadpool.4.0.10.nupkg.sha512",
  8738. "system.threading.threadpool.nuspec"
  8739. ]
  8740. },
  8741. "System.Threading.Timer/4.3.0": {
  8742. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8743. "type": "package",
  8744. "path": "system.threading.timer/4.3.0",
  8745. "files": [
  8746. ".nupkg.metadata",
  8747. ".signature.p7s",
  8748. "ThirdPartyNotices.txt",
  8749. "dotnet_library_license.txt",
  8750. "lib/MonoAndroid10/_._",
  8751. "lib/MonoTouch10/_._",
  8752. "lib/net451/_._",
  8753. "lib/portable-net451+win81+wpa81/_._",
  8754. "lib/win81/_._",
  8755. "lib/wpa81/_._",
  8756. "lib/xamarinios10/_._",
  8757. "lib/xamarinmac20/_._",
  8758. "lib/xamarintvos10/_._",
  8759. "lib/xamarinwatchos10/_._",
  8760. "ref/MonoAndroid10/_._",
  8761. "ref/MonoTouch10/_._",
  8762. "ref/net451/_._",
  8763. "ref/netcore50/System.Threading.Timer.dll",
  8764. "ref/netcore50/System.Threading.Timer.xml",
  8765. "ref/netcore50/de/System.Threading.Timer.xml",
  8766. "ref/netcore50/es/System.Threading.Timer.xml",
  8767. "ref/netcore50/fr/System.Threading.Timer.xml",
  8768. "ref/netcore50/it/System.Threading.Timer.xml",
  8769. "ref/netcore50/ja/System.Threading.Timer.xml",
  8770. "ref/netcore50/ko/System.Threading.Timer.xml",
  8771. "ref/netcore50/ru/System.Threading.Timer.xml",
  8772. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8773. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8774. "ref/netstandard1.2/System.Threading.Timer.dll",
  8775. "ref/netstandard1.2/System.Threading.Timer.xml",
  8776. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8777. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8778. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8779. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8780. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8781. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8782. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8783. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8784. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8785. "ref/portable-net451+win81+wpa81/_._",
  8786. "ref/win81/_._",
  8787. "ref/wpa81/_._",
  8788. "ref/xamarinios10/_._",
  8789. "ref/xamarinmac20/_._",
  8790. "ref/xamarintvos10/_._",
  8791. "ref/xamarinwatchos10/_._",
  8792. "system.threading.timer.4.3.0.nupkg.sha512",
  8793. "system.threading.timer.nuspec"
  8794. ]
  8795. },
  8796. "System.Windows.Extensions/4.7.0": {
  8797. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8798. "type": "package",
  8799. "path": "system.windows.extensions/4.7.0",
  8800. "files": [
  8801. ".nupkg.metadata",
  8802. ".signature.p7s",
  8803. "LICENSE.TXT",
  8804. "THIRD-PARTY-NOTICES.TXT",
  8805. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8806. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8807. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8808. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8809. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8810. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8811. "system.windows.extensions.4.7.0.nupkg.sha512",
  8812. "system.windows.extensions.nuspec",
  8813. "useSharedDesignerContext.txt",
  8814. "version.txt"
  8815. ]
  8816. },
  8817. "System.Xml.ReaderWriter/4.3.0": {
  8818. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8819. "type": "package",
  8820. "path": "system.xml.readerwriter/4.3.0",
  8821. "files": [
  8822. ".nupkg.metadata",
  8823. ".signature.p7s",
  8824. "ThirdPartyNotices.txt",
  8825. "dotnet_library_license.txt",
  8826. "lib/MonoAndroid10/_._",
  8827. "lib/MonoTouch10/_._",
  8828. "lib/net45/_._",
  8829. "lib/net46/System.Xml.ReaderWriter.dll",
  8830. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8831. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8832. "lib/portable-net45+win8+wp8+wpa81/_._",
  8833. "lib/win8/_._",
  8834. "lib/wp80/_._",
  8835. "lib/wpa81/_._",
  8836. "lib/xamarinios10/_._",
  8837. "lib/xamarinmac20/_._",
  8838. "lib/xamarintvos10/_._",
  8839. "lib/xamarinwatchos10/_._",
  8840. "ref/MonoAndroid10/_._",
  8841. "ref/MonoTouch10/_._",
  8842. "ref/net45/_._",
  8843. "ref/net46/System.Xml.ReaderWriter.dll",
  8844. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8845. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8846. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8847. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8848. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8849. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8850. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8851. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8852. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8853. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8854. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8855. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8856. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8857. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8858. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8859. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8860. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8861. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8862. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8863. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8864. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8865. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8866. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8867. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8868. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8869. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8870. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8871. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8872. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8873. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8874. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8875. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8876. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8877. "ref/portable-net45+win8+wp8+wpa81/_._",
  8878. "ref/win8/_._",
  8879. "ref/wp80/_._",
  8880. "ref/wpa81/_._",
  8881. "ref/xamarinios10/_._",
  8882. "ref/xamarinmac20/_._",
  8883. "ref/xamarintvos10/_._",
  8884. "ref/xamarinwatchos10/_._",
  8885. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8886. "system.xml.readerwriter.nuspec"
  8887. ]
  8888. },
  8889. "System.Xml.XDocument/4.3.0": {
  8890. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8891. "type": "package",
  8892. "path": "system.xml.xdocument/4.3.0",
  8893. "files": [
  8894. ".nupkg.metadata",
  8895. ".signature.p7s",
  8896. "ThirdPartyNotices.txt",
  8897. "dotnet_library_license.txt",
  8898. "lib/MonoAndroid10/_._",
  8899. "lib/MonoTouch10/_._",
  8900. "lib/net45/_._",
  8901. "lib/netcore50/System.Xml.XDocument.dll",
  8902. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8903. "lib/portable-net45+win8+wp8+wpa81/_._",
  8904. "lib/win8/_._",
  8905. "lib/wp80/_._",
  8906. "lib/wpa81/_._",
  8907. "lib/xamarinios10/_._",
  8908. "lib/xamarinmac20/_._",
  8909. "lib/xamarintvos10/_._",
  8910. "lib/xamarinwatchos10/_._",
  8911. "ref/MonoAndroid10/_._",
  8912. "ref/MonoTouch10/_._",
  8913. "ref/net45/_._",
  8914. "ref/netcore50/System.Xml.XDocument.dll",
  8915. "ref/netcore50/System.Xml.XDocument.xml",
  8916. "ref/netcore50/de/System.Xml.XDocument.xml",
  8917. "ref/netcore50/es/System.Xml.XDocument.xml",
  8918. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8919. "ref/netcore50/it/System.Xml.XDocument.xml",
  8920. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8921. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8922. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8923. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8924. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8925. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8926. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8927. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8928. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8929. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8930. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8931. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8932. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8933. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8934. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8935. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8936. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8937. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8938. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8939. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8940. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8941. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8942. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8943. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8944. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8945. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8946. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8947. "ref/portable-net45+win8+wp8+wpa81/_._",
  8948. "ref/win8/_._",
  8949. "ref/wp80/_._",
  8950. "ref/wpa81/_._",
  8951. "ref/xamarinios10/_._",
  8952. "ref/xamarinmac20/_._",
  8953. "ref/xamarintvos10/_._",
  8954. "ref/xamarinwatchos10/_._",
  8955. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8956. "system.xml.xdocument.nuspec"
  8957. ]
  8958. },
  8959. "System.Xml.XmlDocument/4.3.0": {
  8960. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8961. "type": "package",
  8962. "path": "system.xml.xmldocument/4.3.0",
  8963. "files": [
  8964. ".nupkg.metadata",
  8965. ".signature.p7s",
  8966. "ThirdPartyNotices.txt",
  8967. "dotnet_library_license.txt",
  8968. "lib/MonoAndroid10/_._",
  8969. "lib/MonoTouch10/_._",
  8970. "lib/net46/System.Xml.XmlDocument.dll",
  8971. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8972. "lib/xamarinios10/_._",
  8973. "lib/xamarinmac20/_._",
  8974. "lib/xamarintvos10/_._",
  8975. "lib/xamarinwatchos10/_._",
  8976. "ref/MonoAndroid10/_._",
  8977. "ref/MonoTouch10/_._",
  8978. "ref/net46/System.Xml.XmlDocument.dll",
  8979. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8980. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8981. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8982. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8983. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8984. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8985. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8986. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8987. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8988. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8989. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8990. "ref/xamarinios10/_._",
  8991. "ref/xamarinmac20/_._",
  8992. "ref/xamarintvos10/_._",
  8993. "ref/xamarinwatchos10/_._",
  8994. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8995. "system.xml.xmldocument.nuspec"
  8996. ]
  8997. },
  8998. "System.Xml.XPath/4.0.1": {
  8999. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  9000. "type": "package",
  9001. "path": "system.xml.xpath/4.0.1",
  9002. "files": [
  9003. ".nupkg.metadata",
  9004. ".signature.p7s",
  9005. "ThirdPartyNotices.txt",
  9006. "dotnet_library_license.txt",
  9007. "lib/MonoAndroid10/_._",
  9008. "lib/MonoTouch10/_._",
  9009. "lib/net46/System.Xml.XPath.dll",
  9010. "lib/netstandard1.3/System.Xml.XPath.dll",
  9011. "lib/xamarinios10/_._",
  9012. "lib/xamarinmac20/_._",
  9013. "lib/xamarintvos10/_._",
  9014. "lib/xamarinwatchos10/_._",
  9015. "ref/MonoAndroid10/_._",
  9016. "ref/MonoTouch10/_._",
  9017. "ref/net46/System.Xml.XPath.dll",
  9018. "ref/netstandard1.3/System.Xml.XPath.dll",
  9019. "ref/netstandard1.3/System.Xml.XPath.xml",
  9020. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  9021. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  9022. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  9023. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  9024. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  9025. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  9026. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  9027. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  9028. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  9029. "ref/xamarinios10/_._",
  9030. "ref/xamarinmac20/_._",
  9031. "ref/xamarintvos10/_._",
  9032. "ref/xamarinwatchos10/_._",
  9033. "system.xml.xpath.4.0.1.nupkg.sha512",
  9034. "system.xml.xpath.nuspec"
  9035. ]
  9036. },
  9037. "System.Xml.XPath.XmlDocument/4.0.1": {
  9038. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  9039. "type": "package",
  9040. "path": "system.xml.xpath.xmldocument/4.0.1",
  9041. "files": [
  9042. ".nupkg.metadata",
  9043. ".signature.p7s",
  9044. "ThirdPartyNotices.txt",
  9045. "dotnet_library_license.txt",
  9046. "lib/MonoAndroid10/_._",
  9047. "lib/MonoTouch10/_._",
  9048. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  9049. "lib/xamarinios10/_._",
  9050. "lib/xamarinmac20/_._",
  9051. "lib/xamarintvos10/_._",
  9052. "lib/xamarinwatchos10/_._",
  9053. "ref/MonoAndroid10/_._",
  9054. "ref/MonoTouch10/_._",
  9055. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  9056. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  9057. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  9058. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  9059. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  9060. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  9061. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  9062. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  9063. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  9064. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  9065. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  9066. "ref/xamarinios10/_._",
  9067. "ref/xamarinmac20/_._",
  9068. "ref/xamarintvos10/_._",
  9069. "ref/xamarinwatchos10/_._",
  9070. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  9071. "system.xml.xpath.xmldocument.nuspec"
  9072. ]
  9073. },
  9074. "Backend.Common/1.0.0": {
  9075. "type": "project",
  9076. "path": "../Backend.Common/Backend.Common.csproj",
  9077. "msbuildProject": "../Backend.Common/Backend.Common.csproj"
  9078. },
  9079. "Backend.Data/1.0.0": {
  9080. "type": "project",
  9081. "path": "../Backend.Data/Backend.Data.csproj",
  9082. "msbuildProject": "../Backend.Data/Backend.Data.csproj"
  9083. },
  9084. "Backend.Models/1.0.0": {
  9085. "type": "project",
  9086. "path": "../Backend.Models/Backend.Models.csproj",
  9087. "msbuildProject": "../Backend.Models/Backend.Models.csproj"
  9088. },
  9089. "Backend.Services/1.0.0": {
  9090. "type": "project",
  9091. "path": "../Backend.Services/Backend.Services.csproj",
  9092. "msbuildProject": "../Backend.Services/Backend.Services.csproj"
  9093. }
  9094. },
  9095. "projectFileDependencyGroups": {
  9096. ".NETCoreApp,Version=v3.1": [
  9097. "Backend.Data >= 1.0.0",
  9098. "Backend.Services >= 1.0.0",
  9099. "MSTest.TestAdapter >= 2.2.3",
  9100. "MSTest.TestFramework >= 2.2.3",
  9101. "Microsoft.NET.Test.Sdk >= 16.9.4",
  9102. "NSubstitute >= 4.2.2",
  9103. "coverlet.collector >= 3.0.2"
  9104. ]
  9105. },
  9106. "packageFolders": {
  9107. "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\": {}
  9108. },
  9109. "project": {
  9110. "version": "1.0.0",
  9111. "restore": {
  9112. "projectUniqueName": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.MSTest\\Backend.MSTest.csproj",
  9113. "projectName": "Backend.MSTest",
  9114. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.MSTest\\Backend.MSTest.csproj",
  9115. "packagesPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\.nuget\\packages\\",
  9116. "outputPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.MSTest\\obj\\",
  9117. "projectStyle": "PackageReference",
  9118. "configFilePaths": [
  9119. "C:\\Users\\Alex ONDOA BALEGNAMA\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9120. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9121. ],
  9122. "originalTargetFrameworks": [
  9123. "netcoreapp3.1"
  9124. ],
  9125. "sources": {
  9126. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9127. "https://api.nuget.org/v3/index.json": {},
  9128. "https://packagesource": {}
  9129. },
  9130. "frameworks": {
  9131. "netcoreapp3.1": {
  9132. "targetAlias": "netcoreapp3.1",
  9133. "projectReferences": {
  9134. "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Data\\Backend.Data.csproj": {
  9135. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Data\\Backend.Data.csproj"
  9136. },
  9137. "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Services\\Backend.Services.csproj": {
  9138. "projectPath": "C:\\Users\\Alex ONDOA BALEGNAMA\\source\\repos\\Backend\\CatalogueCQRS\\Backend.Services\\Backend.Services.csproj"
  9139. }
  9140. }
  9141. }
  9142. },
  9143. "warningProperties": {
  9144. "warnAsError": [
  9145. "NU1605"
  9146. ]
  9147. }
  9148. },
  9149. "frameworks": {
  9150. "netcoreapp3.1": {
  9151. "targetAlias": "netcoreapp3.1",
  9152. "dependencies": {
  9153. "MSTest.TestAdapter": {
  9154. "target": "Package",
  9155. "version": "[2.2.3, )"
  9156. },
  9157. "MSTest.TestFramework": {
  9158. "target": "Package",
  9159. "version": "[2.2.3, )"
  9160. },
  9161. "Microsoft.NET.Test.Sdk": {
  9162. "target": "Package",
  9163. "version": "[16.9.4, )"
  9164. },
  9165. "NSubstitute": {
  9166. "target": "Package",
  9167. "version": "[4.2.2, )"
  9168. },
  9169. "coverlet.collector": {
  9170. "target": "Package",
  9171. "version": "[3.0.2, )"
  9172. }
  9173. },
  9174. "imports": [
  9175. "net461",
  9176. "net462",
  9177. "net47",
  9178. "net471",
  9179. "net472",
  9180. "net48"
  9181. ],
  9182. "assetTargetFallback": true,
  9183. "warn": true,
  9184. "frameworkReferences": {
  9185. "Microsoft.NETCore.App": {
  9186. "privateAssets": "all"
  9187. }
  9188. },
  9189. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json"
  9190. }
  9191. }
  9192. },
  9193. "logs": [
  9194. {
  9195. "code": "NU1701",
  9196. "level": "Warning",
  9197. "warningLevel": 1,
  9198. "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.",
  9199. "libraryId": "EntityFramework",
  9200. "targetGraphs": [
  9201. ".NETCoreApp,Version=v3.1"
  9202. ]
  9203. },
  9204. {
  9205. "code": "NU1701",
  9206. "level": "Warning",
  9207. "warningLevel": 1,
  9208. "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.",
  9209. "libraryId": "Microsoft.AspNet.Identity.Core",
  9210. "targetGraphs": [
  9211. ".NETCoreApp,Version=v3.1"
  9212. ]
  9213. },
  9214. {
  9215. "code": "NU1701",
  9216. "level": "Warning",
  9217. "warningLevel": 1,
  9218. "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.",
  9219. "libraryId": "Microsoft.AspNet.Identity.EntityFramework",
  9220. "targetGraphs": [
  9221. ".NETCoreApp,Version=v3.1"
  9222. ]
  9223. }
  9224. ]
  9225. }

Powered by TurnKey Linux.