project.assets.json 327 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETStandard,Version=v2.1": {
  5. "BouncyCastle.NetCore/1.8.3": {
  6. "type": "package",
  7. "dependencies": {
  8. "NETStandard.Library": "1.6.0",
  9. "System.Reflection": "4.3.0",
  10. "System.Reflection.TypeExtensions": "4.1.0"
  11. },
  12. "compile": {
  13. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  14. },
  15. "runtime": {
  16. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  17. }
  18. },
  19. "Dapper/2.0.30": {
  20. "type": "package",
  21. "dependencies": {
  22. "System.Reflection.Emit.Lightweight": "4.6.0"
  23. },
  24. "compile": {
  25. "lib/netstandard2.0/Dapper.dll": {}
  26. },
  27. "runtime": {
  28. "lib/netstandard2.0/Dapper.dll": {}
  29. }
  30. },
  31. "Google.Protobuf/3.6.1": {
  32. "type": "package",
  33. "dependencies": {
  34. "NETStandard.Library": "1.6.1"
  35. },
  36. "compile": {
  37. "lib/netstandard1.0/Google.Protobuf.dll": {}
  38. },
  39. "runtime": {
  40. "lib/netstandard1.0/Google.Protobuf.dll": {}
  41. }
  42. },
  43. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  44. "type": "package",
  45. "dependencies": {
  46. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  47. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  48. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  49. },
  50. "compile": {
  51. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  52. },
  53. "runtime": {
  54. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  55. }
  56. },
  57. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  58. "type": "package",
  59. "dependencies": {
  60. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  61. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  62. },
  63. "compile": {
  64. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  65. },
  66. "runtime": {
  67. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  68. }
  69. },
  70. "Microsoft.AspNetCore.Http/2.1.0": {
  71. "type": "package",
  72. "dependencies": {
  73. "Microsoft.AspNetCore.Http.Abstractions": "2.1.0",
  74. "Microsoft.AspNetCore.WebUtilities": "2.1.0",
  75. "Microsoft.Extensions.ObjectPool": "2.1.0",
  76. "Microsoft.Extensions.Options": "2.1.0",
  77. "Microsoft.Net.Http.Headers": "2.1.0"
  78. },
  79. "compile": {
  80. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
  81. },
  82. "runtime": {
  83. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
  84. }
  85. },
  86. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  87. "type": "package",
  88. "dependencies": {
  89. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  90. "System.Text.Encodings.Web": "4.5.0"
  91. },
  92. "compile": {
  93. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  94. },
  95. "runtime": {
  96. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  97. }
  98. },
  99. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  100. "type": "package",
  101. "dependencies": {
  102. "Microsoft.Extensions.Primitives": "2.2.0"
  103. },
  104. "compile": {
  105. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  106. },
  107. "runtime": {
  108. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  109. }
  110. },
  111. "Microsoft.AspNetCore.Routing.Abstractions/2.1.0": {
  112. "type": "package",
  113. "dependencies": {
  114. "Microsoft.AspNetCore.Http.Abstractions": "2.1.0"
  115. },
  116. "compile": {
  117. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  118. },
  119. "runtime": {
  120. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  121. }
  122. },
  123. "Microsoft.AspNetCore.WebUtilities/2.1.0": {
  124. "type": "package",
  125. "dependencies": {
  126. "Microsoft.Net.Http.Headers": "2.1.0",
  127. "System.Text.Encodings.Web": "4.5.0"
  128. },
  129. "compile": {
  130. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  131. },
  132. "runtime": {
  133. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  134. }
  135. },
  136. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  137. "type": "package",
  138. "dependencies": {
  139. "System.Threading.Tasks.Extensions": "4.5.2"
  140. },
  141. "compile": {
  142. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  146. }
  147. },
  148. "Microsoft.CSharp/4.0.1": {
  149. "type": "package",
  150. "dependencies": {
  151. "System.Collections": "4.0.11",
  152. "System.Diagnostics.Debug": "4.0.11",
  153. "System.Dynamic.Runtime": "4.0.11",
  154. "System.Globalization": "4.0.11",
  155. "System.Linq": "4.1.0",
  156. "System.Linq.Expressions": "4.1.0",
  157. "System.ObjectModel": "4.0.12",
  158. "System.Reflection": "4.1.0",
  159. "System.Reflection.Extensions": "4.0.1",
  160. "System.Reflection.Primitives": "4.0.1",
  161. "System.Reflection.TypeExtensions": "4.1.0",
  162. "System.Resources.ResourceManager": "4.0.1",
  163. "System.Runtime": "4.1.0",
  164. "System.Runtime.Extensions": "4.1.0",
  165. "System.Runtime.InteropServices": "4.1.0",
  166. "System.Threading": "4.0.11"
  167. },
  168. "compile": {
  169. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  170. },
  171. "runtime": {
  172. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  173. }
  174. },
  175. "Microsoft.Data.Sqlite/2.2.4": {
  176. "type": "package",
  177. "dependencies": {
  178. "Microsoft.Data.Sqlite.Core": "2.2.4",
  179. "SQLitePCLRaw.bundle_green": "1.1.12"
  180. },
  181. "compile": {
  182. "lib/netstandard2.0/_._": {}
  183. },
  184. "runtime": {
  185. "lib/netstandard2.0/_._": {}
  186. }
  187. },
  188. "Microsoft.Data.Sqlite.Core/2.2.4": {
  189. "type": "package",
  190. "dependencies": {
  191. "SQLitePCLRaw.core": "1.1.12"
  192. },
  193. "compile": {
  194. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  195. },
  196. "runtime": {
  197. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  198. }
  199. },
  200. "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
  201. "type": "package",
  202. "dependencies": {
  203. "Microsoft.Extensions.Primitives": "3.1.2"
  204. },
  205. "compile": {
  206. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  207. },
  208. "runtime": {
  209. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  210. }
  211. },
  212. "Microsoft.Extensions.Caching.Memory/3.1.2": {
  213. "type": "package",
  214. "dependencies": {
  215. "Microsoft.Extensions.Caching.Abstractions": "3.1.2",
  216. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  217. "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
  218. "Microsoft.Extensions.Options": "3.1.2"
  219. },
  220. "compile": {
  221. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  222. },
  223. "runtime": {
  224. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  225. }
  226. },
  227. "Microsoft.Extensions.Configuration/3.1.9": {
  228. "type": "package",
  229. "dependencies": {
  230. "Microsoft.Extensions.Configuration.Abstractions": "3.1.9"
  231. },
  232. "compile": {
  233. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  234. },
  235. "runtime": {
  236. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  237. }
  238. },
  239. "Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
  240. "type": "package",
  241. "dependencies": {
  242. "Microsoft.Extensions.Primitives": "3.1.9"
  243. },
  244. "compile": {
  245. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  246. },
  247. "runtime": {
  248. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  249. }
  250. },
  251. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  252. "type": "package",
  253. "dependencies": {
  254. "Microsoft.Extensions.Configuration": "3.1.2"
  255. },
  256. "compile": {
  257. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  258. },
  259. "runtime": {
  260. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  261. }
  262. },
  263. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  264. "type": "package",
  265. "dependencies": {
  266. "Microsoft.Extensions.Configuration": "3.1.2",
  267. "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
  268. },
  269. "compile": {
  270. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  271. },
  272. "runtime": {
  273. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  274. }
  275. },
  276. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  277. "type": "package",
  278. "dependencies": {
  279. "Microsoft.Extensions.Configuration": "3.1.2",
  280. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  281. "System.Text.Json": "4.7.1",
  282. "System.Threading.Tasks.Extensions": "4.5.2"
  283. },
  284. "compile": {
  285. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
  286. },
  287. "runtime": {
  288. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
  289. }
  290. },
  291. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  292. "type": "package",
  293. "compile": {
  294. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  295. },
  296. "runtime": {
  297. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  298. }
  299. },
  300. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  301. "type": "package",
  302. "dependencies": {
  303. "Microsoft.Extensions.Primitives": "3.1.2"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  307. },
  308. "runtime": {
  309. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  310. }
  311. },
  312. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  313. "type": "package",
  314. "dependencies": {
  315. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  316. "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
  317. },
  318. "compile": {
  319. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  320. },
  321. "runtime": {
  322. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  323. }
  324. },
  325. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  326. "type": "package",
  327. "compile": {
  328. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  329. },
  330. "runtime": {
  331. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  332. }
  333. },
  334. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  335. "type": "package",
  336. "dependencies": {
  337. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  338. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  339. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  340. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  341. },
  342. "compile": {
  343. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  344. },
  345. "runtime": {
  346. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  347. }
  348. },
  349. "Microsoft.Extensions.Logging/2.1.0": {
  350. "type": "package",
  351. "dependencies": {
  352. "Microsoft.Extensions.Configuration.Binder": "2.1.0",
  353. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  354. "Microsoft.Extensions.Logging.Abstractions": "2.1.0",
  355. "Microsoft.Extensions.Options": "2.1.0"
  356. },
  357. "compile": {
  358. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  359. },
  360. "runtime": {
  361. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  362. }
  363. },
  364. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  365. "type": "package",
  366. "compile": {
  367. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  368. },
  369. "runtime": {
  370. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  371. }
  372. },
  373. "Microsoft.Extensions.ObjectPool/2.1.0": {
  374. "type": "package",
  375. "compile": {
  376. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
  377. },
  378. "runtime": {
  379. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
  380. }
  381. },
  382. "Microsoft.Extensions.Options/3.1.2": {
  383. "type": "package",
  384. "dependencies": {
  385. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  386. "Microsoft.Extensions.Primitives": "3.1.2",
  387. "System.ComponentModel.Annotations": "4.7.0"
  388. },
  389. "compile": {
  390. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  391. },
  392. "runtime": {
  393. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  394. }
  395. },
  396. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
  397. "type": "package",
  398. "dependencies": {
  399. "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
  400. "Microsoft.Extensions.Configuration.Binder": "3.1.2",
  401. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  402. "Microsoft.Extensions.Options": "3.1.2"
  403. },
  404. "compile": {
  405. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  406. },
  407. "runtime": {
  408. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  409. }
  410. },
  411. "Microsoft.Extensions.Primitives/3.1.9": {
  412. "type": "package",
  413. "dependencies": {
  414. "System.Memory": "4.5.2",
  415. "System.Runtime.CompilerServices.Unsafe": "4.7.1"
  416. },
  417. "compile": {
  418. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  419. },
  420. "runtime": {
  421. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  422. }
  423. },
  424. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  425. "type": "package",
  426. "dependencies": {
  427. "Microsoft.IdentityModel.Tokens": "5.6.0",
  428. "Newtonsoft.Json": "10.0.1"
  429. },
  430. "compile": {
  431. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  432. },
  433. "runtime": {
  434. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  435. }
  436. },
  437. "Microsoft.IdentityModel.Logging/5.6.0": {
  438. "type": "package",
  439. "compile": {
  440. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  441. },
  442. "runtime": {
  443. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  444. }
  445. },
  446. "Microsoft.IdentityModel.Tokens/5.6.0": {
  447. "type": "package",
  448. "dependencies": {
  449. "Microsoft.IdentityModel.Logging": "5.6.0",
  450. "Newtonsoft.Json": "10.0.1",
  451. "System.Security.Cryptography.Cng": "4.5.0"
  452. },
  453. "compile": {
  454. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  455. },
  456. "runtime": {
  457. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  458. }
  459. },
  460. "Microsoft.Net.Http.Headers/2.1.0": {
  461. "type": "package",
  462. "dependencies": {
  463. "Microsoft.Extensions.Primitives": "2.1.0",
  464. "System.Buffers": "4.5.0"
  465. },
  466. "compile": {
  467. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  468. },
  469. "runtime": {
  470. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  471. }
  472. },
  473. "Microsoft.NETCore.Jit/2.0.8": {
  474. "type": "package"
  475. },
  476. "Microsoft.NETCore.Platforms/1.1.0": {
  477. "type": "package",
  478. "compile": {
  479. "lib/netstandard1.0/_._": {}
  480. },
  481. "runtime": {
  482. "lib/netstandard1.0/_._": {}
  483. }
  484. },
  485. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  486. "type": "package",
  487. "dependencies": {
  488. "Microsoft.NETCore.Jit": "2.0.8"
  489. },
  490. "compile": {
  491. "ref/netstandard1.0/_._": {}
  492. }
  493. },
  494. "Microsoft.NETCore.Targets/1.1.0": {
  495. "type": "package",
  496. "compile": {
  497. "lib/netstandard1.0/_._": {}
  498. },
  499. "runtime": {
  500. "lib/netstandard1.0/_._": {}
  501. }
  502. },
  503. "Microsoft.Win32.Primitives/4.3.0": {
  504. "type": "package",
  505. "dependencies": {
  506. "Microsoft.NETCore.Platforms": "1.1.0",
  507. "Microsoft.NETCore.Targets": "1.1.0",
  508. "System.Runtime": "4.3.0"
  509. },
  510. "compile": {
  511. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  512. }
  513. },
  514. "Microsoft.Win32.Registry/4.4.0": {
  515. "type": "package",
  516. "dependencies": {
  517. "System.Security.AccessControl": "4.4.0",
  518. "System.Security.Principal.Windows": "4.4.0"
  519. },
  520. "compile": {
  521. "ref/netstandard2.0/_._": {}
  522. },
  523. "runtime": {
  524. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  525. },
  526. "runtimeTargets": {
  527. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  528. "assetType": "runtime",
  529. "rid": "win"
  530. }
  531. }
  532. },
  533. "MySql.Data/8.0.19": {
  534. "type": "package",
  535. "dependencies": {
  536. "BouncyCastle.NetCore": "1.8.3",
  537. "Google.Protobuf": "3.6.1",
  538. "SSH.NET": "2016.1.0",
  539. "System.Configuration.ConfigurationManager": "4.4.1",
  540. "System.Security.Permissions": "4.6.0",
  541. "System.Text.Encoding.CodePages": "4.4.0"
  542. },
  543. "compile": {
  544. "lib/netstandard2.1/MySql.Data.dll": {},
  545. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {}
  546. },
  547. "runtime": {
  548. "lib/netstandard2.1/MySql.Data.dll": {},
  549. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {}
  550. }
  551. },
  552. "NETStandard.Library/1.6.1": {
  553. "type": "package",
  554. "dependencies": {
  555. "Microsoft.NETCore.Platforms": "1.1.0",
  556. "Microsoft.Win32.Primitives": "4.3.0",
  557. "System.AppContext": "4.3.0",
  558. "System.Collections": "4.3.0",
  559. "System.Collections.Concurrent": "4.3.0",
  560. "System.Console": "4.3.0",
  561. "System.Diagnostics.Debug": "4.3.0",
  562. "System.Diagnostics.Tools": "4.3.0",
  563. "System.Diagnostics.Tracing": "4.3.0",
  564. "System.Globalization": "4.3.0",
  565. "System.Globalization.Calendars": "4.3.0",
  566. "System.IO": "4.3.0",
  567. "System.IO.Compression": "4.3.0",
  568. "System.IO.Compression.ZipFile": "4.3.0",
  569. "System.IO.FileSystem": "4.3.0",
  570. "System.IO.FileSystem.Primitives": "4.3.0",
  571. "System.Linq": "4.3.0",
  572. "System.Linq.Expressions": "4.3.0",
  573. "System.Net.Http": "4.3.0",
  574. "System.Net.Primitives": "4.3.0",
  575. "System.Net.Sockets": "4.3.0",
  576. "System.ObjectModel": "4.3.0",
  577. "System.Reflection": "4.3.0",
  578. "System.Reflection.Extensions": "4.3.0",
  579. "System.Reflection.Primitives": "4.3.0",
  580. "System.Resources.ResourceManager": "4.3.0",
  581. "System.Runtime": "4.3.0",
  582. "System.Runtime.Extensions": "4.3.0",
  583. "System.Runtime.Handles": "4.3.0",
  584. "System.Runtime.InteropServices": "4.3.0",
  585. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  586. "System.Runtime.Numerics": "4.3.0",
  587. "System.Security.Cryptography.Algorithms": "4.3.0",
  588. "System.Security.Cryptography.Encoding": "4.3.0",
  589. "System.Security.Cryptography.Primitives": "4.3.0",
  590. "System.Security.Cryptography.X509Certificates": "4.3.0",
  591. "System.Text.Encoding": "4.3.0",
  592. "System.Text.Encoding.Extensions": "4.3.0",
  593. "System.Text.RegularExpressions": "4.3.0",
  594. "System.Threading": "4.3.0",
  595. "System.Threading.Tasks": "4.3.0",
  596. "System.Threading.Timer": "4.3.0",
  597. "System.Xml.ReaderWriter": "4.3.0",
  598. "System.Xml.XDocument": "4.3.0"
  599. }
  600. },
  601. "Newtonsoft.Json/12.0.3": {
  602. "type": "package",
  603. "compile": {
  604. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  605. },
  606. "runtime": {
  607. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  608. }
  609. },
  610. "NLog/4.7.5": {
  611. "type": "package",
  612. "compile": {
  613. "lib/netstandard2.0/NLog.dll": {}
  614. },
  615. "runtime": {
  616. "lib/netstandard2.0/NLog.dll": {}
  617. }
  618. },
  619. "NLog.Extensions.Logging/1.6.4": {
  620. "type": "package",
  621. "dependencies": {
  622. "Microsoft.Extensions.Logging": "2.1.0",
  623. "NLog": "4.7.2"
  624. },
  625. "compile": {
  626. "lib/netstandard2.0/NLog.Extensions.Logging.dll": {}
  627. },
  628. "runtime": {
  629. "lib/netstandard2.0/NLog.Extensions.Logging.dll": {}
  630. }
  631. },
  632. "NLog.Web.AspNetCore/4.9.3": {
  633. "type": "package",
  634. "dependencies": {
  635. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0",
  636. "Microsoft.AspNetCore.Http": "2.1.0",
  637. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.0",
  638. "NLog.Extensions.Logging": "1.6.4"
  639. },
  640. "compile": {
  641. "lib/netstandard2.0/NLog.Web.AspNetCore.dll": {}
  642. },
  643. "runtime": {
  644. "lib/netstandard2.0/NLog.Web.AspNetCore.dll": {}
  645. }
  646. },
  647. "Npgsql/3.2.7": {
  648. "type": "package",
  649. "dependencies": {
  650. "System.Threading.Tasks.Extensions": "4.3.0"
  651. },
  652. "compile": {
  653. "lib/netstandard2.0/Npgsql.dll": {}
  654. },
  655. "runtime": {
  656. "lib/netstandard2.0/Npgsql.dll": {}
  657. }
  658. },
  659. "Oracle.ManagedDataAccess.Core/2.18.3": {
  660. "type": "package",
  661. "compile": {
  662. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  663. },
  664. "runtime": {
  665. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  666. }
  667. },
  668. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  669. "type": "package",
  670. "runtimeTargets": {
  671. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  672. "assetType": "native",
  673. "rid": "debian.8-x64"
  674. }
  675. }
  676. },
  677. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  678. "type": "package",
  679. "runtimeTargets": {
  680. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  681. "assetType": "native",
  682. "rid": "fedora.23-x64"
  683. }
  684. }
  685. },
  686. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  687. "type": "package",
  688. "runtimeTargets": {
  689. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  690. "assetType": "native",
  691. "rid": "fedora.24-x64"
  692. }
  693. }
  694. },
  695. "runtime.native.System/4.3.0": {
  696. "type": "package",
  697. "dependencies": {
  698. "Microsoft.NETCore.Platforms": "1.1.0",
  699. "Microsoft.NETCore.Targets": "1.1.0"
  700. },
  701. "compile": {
  702. "lib/netstandard1.0/_._": {}
  703. },
  704. "runtime": {
  705. "lib/netstandard1.0/_._": {}
  706. }
  707. },
  708. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  709. "type": "package",
  710. "dependencies": {
  711. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  712. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  713. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  714. }
  715. },
  716. "runtime.native.System.IO.Compression/4.3.0": {
  717. "type": "package",
  718. "dependencies": {
  719. "Microsoft.NETCore.Platforms": "1.1.0",
  720. "Microsoft.NETCore.Targets": "1.1.0"
  721. },
  722. "compile": {
  723. "lib/netstandard1.0/_._": {}
  724. },
  725. "runtime": {
  726. "lib/netstandard1.0/_._": {}
  727. }
  728. },
  729. "runtime.native.System.Net.Http/4.3.0": {
  730. "type": "package",
  731. "dependencies": {
  732. "Microsoft.NETCore.Platforms": "1.1.0",
  733. "Microsoft.NETCore.Targets": "1.1.0"
  734. },
  735. "compile": {
  736. "lib/netstandard1.0/_._": {}
  737. },
  738. "runtime": {
  739. "lib/netstandard1.0/_._": {}
  740. }
  741. },
  742. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  743. "type": "package",
  744. "dependencies": {
  745. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  746. },
  747. "compile": {
  748. "lib/netstandard1.0/_._": {}
  749. },
  750. "runtime": {
  751. "lib/netstandard1.0/_._": {}
  752. }
  753. },
  754. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  755. "type": "package",
  756. "dependencies": {
  757. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  758. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  759. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  760. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  761. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  762. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  763. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  764. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  765. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  766. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  767. },
  768. "compile": {
  769. "lib/netstandard1.0/_._": {}
  770. },
  771. "runtime": {
  772. "lib/netstandard1.0/_._": {}
  773. }
  774. },
  775. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  776. "type": "package",
  777. "runtimeTargets": {
  778. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  779. "assetType": "native",
  780. "rid": "opensuse.13.2-x64"
  781. }
  782. }
  783. },
  784. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  785. "type": "package",
  786. "runtimeTargets": {
  787. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  788. "assetType": "native",
  789. "rid": "opensuse.42.1-x64"
  790. }
  791. }
  792. },
  793. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  794. "type": "package",
  795. "runtimeTargets": {
  796. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  797. "assetType": "native",
  798. "rid": "osx.10.10-x64"
  799. }
  800. }
  801. },
  802. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  803. "type": "package",
  804. "runtimeTargets": {
  805. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  806. "assetType": "native",
  807. "rid": "osx.10.10-x64"
  808. }
  809. }
  810. },
  811. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  812. "type": "package",
  813. "runtimeTargets": {
  814. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  815. "assetType": "native",
  816. "rid": "rhel.7-x64"
  817. }
  818. }
  819. },
  820. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  821. "type": "package",
  822. "runtimeTargets": {
  823. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  824. "assetType": "native",
  825. "rid": "ubuntu.14.04-x64"
  826. }
  827. }
  828. },
  829. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  830. "type": "package",
  831. "runtimeTargets": {
  832. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  833. "assetType": "native",
  834. "rid": "ubuntu.16.04-x64"
  835. }
  836. }
  837. },
  838. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  839. "type": "package",
  840. "runtimeTargets": {
  841. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  842. "assetType": "native",
  843. "rid": "ubuntu.16.10-x64"
  844. }
  845. }
  846. },
  847. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  848. "type": "package",
  849. "runtimeTargets": {
  850. "runtimes/win-arm64/native/sni.dll": {
  851. "assetType": "native",
  852. "rid": "win-arm64"
  853. }
  854. }
  855. },
  856. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  857. "type": "package",
  858. "runtimeTargets": {
  859. "runtimes/win-x64/native/sni.dll": {
  860. "assetType": "native",
  861. "rid": "win-x64"
  862. }
  863. }
  864. },
  865. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  866. "type": "package",
  867. "runtimeTargets": {
  868. "runtimes/win-x86/native/sni.dll": {
  869. "assetType": "native",
  870. "rid": "win-x86"
  871. }
  872. }
  873. },
  874. "SQLitePCLRaw.bundle_green/1.1.12": {
  875. "type": "package",
  876. "dependencies": {
  877. "NETStandard.Library": "1.6.0",
  878. "SQLitePCLRaw.core": "1.1.12"
  879. },
  880. "compile": {
  881. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll": {},
  882. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll": {}
  883. },
  884. "runtime": {
  885. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll": {},
  886. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll": {}
  887. }
  888. },
  889. "SQLitePCLRaw.core/1.1.12": {
  890. "type": "package",
  891. "dependencies": {
  892. "NETStandard.Library": "1.6.0"
  893. },
  894. "compile": {
  895. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  896. },
  897. "runtime": {
  898. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  899. }
  900. },
  901. "sqlSugarCore/5.0.0.18": {
  902. "type": "package",
  903. "dependencies": {
  904. "Microsoft.Data.Sqlite": "2.2.4",
  905. "MySql.Data": "8.0.15",
  906. "Newtonsoft.Json": "10.0.3",
  907. "Npgsql": "3.2.7",
  908. "Oracle.ManagedDataAccess.Core": "2.18.3",
  909. "System.Data.Common": "4.3.0",
  910. "System.Data.SqlClient": "4.4.0",
  911. "System.Reflection.Emit.Lightweight": "4.3.0"
  912. },
  913. "compile": {
  914. "lib/netstandard2.0/SqlSugar.dll": {}
  915. },
  916. "runtime": {
  917. "lib/netstandard2.0/SqlSugar.dll": {}
  918. }
  919. },
  920. "SSH.NET/2016.1.0": {
  921. "type": "package",
  922. "dependencies": {
  923. "Microsoft.CSharp": "4.0.1",
  924. "SshNet.Security.Cryptography": "[1.2.0]",
  925. "System.Diagnostics.Debug": "4.0.11",
  926. "System.Diagnostics.Tools": "4.0.1",
  927. "System.Diagnostics.TraceSource": "4.0.0",
  928. "System.Globalization": "4.0.11",
  929. "System.IO": "4.1.0",
  930. "System.IO.FileSystem": "4.0.1",
  931. "System.IO.FileSystem.Primitives": "4.0.1",
  932. "System.Linq": "4.1.0",
  933. "System.Net.NameResolution": "4.0.0",
  934. "System.Net.Sockets": "4.1.0",
  935. "System.Reflection.Extensions": "4.0.1",
  936. "System.Runtime.Extensions": "4.1.0",
  937. "System.Security.Cryptography.Algorithms": "4.2.0",
  938. "System.Text.RegularExpressions": "4.1.0",
  939. "System.Threading": "4.0.11",
  940. "System.Threading.Thread": "4.0.0",
  941. "System.Threading.ThreadPool": "4.0.10",
  942. "System.Threading.Timer": "4.0.1",
  943. "System.Xml.XPath.XmlDocument": "4.0.1",
  944. "System.Xml.XmlDocument": "4.0.1"
  945. },
  946. "compile": {
  947. "lib/netstandard1.3/Renci.SshNet.dll": {}
  948. },
  949. "runtime": {
  950. "lib/netstandard1.3/Renci.SshNet.dll": {}
  951. }
  952. },
  953. "SshNet.Security.Cryptography/1.2.0": {
  954. "type": "package",
  955. "dependencies": {
  956. "System.IO": "4.1.0",
  957. "System.Security.Cryptography.Primitives": "4.0.0"
  958. },
  959. "compile": {
  960. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  961. },
  962. "runtime": {
  963. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  964. }
  965. },
  966. "System.AppContext/4.3.0": {
  967. "type": "package",
  968. "dependencies": {
  969. "System.Runtime": "4.3.0"
  970. },
  971. "compile": {
  972. "ref/netstandard1.6/System.AppContext.dll": {}
  973. },
  974. "runtime": {
  975. "lib/netstandard1.6/System.AppContext.dll": {}
  976. }
  977. },
  978. "System.Buffers/4.5.0": {
  979. "type": "package",
  980. "compile": {
  981. "ref/netstandard2.0/System.Buffers.dll": {}
  982. },
  983. "runtime": {
  984. "lib/netstandard2.0/System.Buffers.dll": {}
  985. }
  986. },
  987. "System.Collections/4.3.0": {
  988. "type": "package",
  989. "dependencies": {
  990. "Microsoft.NETCore.Platforms": "1.1.0",
  991. "Microsoft.NETCore.Targets": "1.1.0",
  992. "System.Runtime": "4.3.0"
  993. },
  994. "compile": {
  995. "ref/netstandard1.3/System.Collections.dll": {}
  996. }
  997. },
  998. "System.Collections.Concurrent/4.3.0": {
  999. "type": "package",
  1000. "dependencies": {
  1001. "System.Collections": "4.3.0",
  1002. "System.Diagnostics.Debug": "4.3.0",
  1003. "System.Diagnostics.Tracing": "4.3.0",
  1004. "System.Globalization": "4.3.0",
  1005. "System.Reflection": "4.3.0",
  1006. "System.Resources.ResourceManager": "4.3.0",
  1007. "System.Runtime": "4.3.0",
  1008. "System.Runtime.Extensions": "4.3.0",
  1009. "System.Threading": "4.3.0",
  1010. "System.Threading.Tasks": "4.3.0"
  1011. },
  1012. "compile": {
  1013. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1014. },
  1015. "runtime": {
  1016. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1017. }
  1018. },
  1019. "System.ComponentModel.Annotations/4.7.0": {
  1020. "type": "package",
  1021. "compile": {
  1022. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1023. },
  1024. "runtime": {
  1025. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1026. }
  1027. },
  1028. "System.Configuration.ConfigurationManager/4.4.1": {
  1029. "type": "package",
  1030. "dependencies": {
  1031. "System.Security.Cryptography.ProtectedData": "4.4.0"
  1032. },
  1033. "compile": {
  1034. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1035. },
  1036. "runtime": {
  1037. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1038. }
  1039. },
  1040. "System.Console/4.3.0": {
  1041. "type": "package",
  1042. "dependencies": {
  1043. "Microsoft.NETCore.Platforms": "1.1.0",
  1044. "Microsoft.NETCore.Targets": "1.1.0",
  1045. "System.IO": "4.3.0",
  1046. "System.Runtime": "4.3.0",
  1047. "System.Text.Encoding": "4.3.0"
  1048. },
  1049. "compile": {
  1050. "ref/netstandard1.3/System.Console.dll": {}
  1051. }
  1052. },
  1053. "System.Data.Common/4.3.0": {
  1054. "type": "package",
  1055. "dependencies": {
  1056. "System.Collections": "4.3.0",
  1057. "System.Globalization": "4.3.0",
  1058. "System.IO": "4.3.0",
  1059. "System.Resources.ResourceManager": "4.3.0",
  1060. "System.Runtime": "4.3.0",
  1061. "System.Runtime.Extensions": "4.3.0",
  1062. "System.Text.RegularExpressions": "4.3.0",
  1063. "System.Threading.Tasks": "4.3.0"
  1064. },
  1065. "compile": {
  1066. "ref/netstandard1.2/System.Data.Common.dll": {}
  1067. },
  1068. "runtime": {
  1069. "lib/netstandard1.2/System.Data.Common.dll": {}
  1070. }
  1071. },
  1072. "System.Data.SqlClient/4.4.0": {
  1073. "type": "package",
  1074. "dependencies": {
  1075. "Microsoft.Win32.Registry": "4.4.0",
  1076. "System.Diagnostics.DiagnosticSource": "4.4.1",
  1077. "System.Security.Principal.Windows": "4.4.0",
  1078. "System.Text.Encoding.CodePages": "4.4.0",
  1079. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1080. },
  1081. "compile": {
  1082. "ref/netstandard2.0/System.Data.SqlClient.dll": {}
  1083. },
  1084. "runtime": {
  1085. "lib/netstandard2.0/System.Data.SqlClient.dll": {}
  1086. },
  1087. "runtimeTargets": {
  1088. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1089. "assetType": "runtime",
  1090. "rid": "unix"
  1091. },
  1092. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1093. "assetType": "runtime",
  1094. "rid": "win"
  1095. }
  1096. }
  1097. },
  1098. "System.Diagnostics.Debug/4.3.0": {
  1099. "type": "package",
  1100. "dependencies": {
  1101. "Microsoft.NETCore.Platforms": "1.1.0",
  1102. "Microsoft.NETCore.Targets": "1.1.0",
  1103. "System.Runtime": "4.3.0"
  1104. },
  1105. "compile": {
  1106. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1107. }
  1108. },
  1109. "System.Diagnostics.DiagnosticSource/4.4.1": {
  1110. "type": "package",
  1111. "dependencies": {
  1112. "System.Collections": "4.3.0",
  1113. "System.Diagnostics.Debug": "4.3.0",
  1114. "System.Diagnostics.Tracing": "4.3.0",
  1115. "System.Reflection": "4.3.0",
  1116. "System.Runtime": "4.3.0",
  1117. "System.Runtime.Extensions": "4.3.0",
  1118. "System.Threading": "4.3.0"
  1119. },
  1120. "compile": {
  1121. "lib/netstandard1.3/_._": {}
  1122. },
  1123. "runtime": {
  1124. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1125. }
  1126. },
  1127. "System.Diagnostics.Tools/4.3.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "Microsoft.NETCore.Platforms": "1.1.0",
  1131. "Microsoft.NETCore.Targets": "1.1.0",
  1132. "System.Runtime": "4.3.0"
  1133. },
  1134. "compile": {
  1135. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1136. }
  1137. },
  1138. "System.Diagnostics.TraceSource/4.0.0": {
  1139. "type": "package",
  1140. "dependencies": {
  1141. "Microsoft.NETCore.Platforms": "1.0.1",
  1142. "System.Collections": "4.0.11",
  1143. "System.Diagnostics.Debug": "4.0.11",
  1144. "System.Globalization": "4.0.11",
  1145. "System.Resources.ResourceManager": "4.0.1",
  1146. "System.Runtime": "4.1.0",
  1147. "System.Runtime.Extensions": "4.1.0",
  1148. "System.Threading": "4.0.11",
  1149. "runtime.native.System": "4.0.0"
  1150. },
  1151. "compile": {
  1152. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1153. },
  1154. "runtimeTargets": {
  1155. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1156. "assetType": "runtime",
  1157. "rid": "unix"
  1158. },
  1159. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1160. "assetType": "runtime",
  1161. "rid": "win"
  1162. }
  1163. }
  1164. },
  1165. "System.Diagnostics.Tracing/4.3.0": {
  1166. "type": "package",
  1167. "dependencies": {
  1168. "Microsoft.NETCore.Platforms": "1.1.0",
  1169. "Microsoft.NETCore.Targets": "1.1.0",
  1170. "System.Runtime": "4.3.0"
  1171. },
  1172. "compile": {
  1173. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1174. }
  1175. },
  1176. "System.Drawing.Common/4.7.0": {
  1177. "type": "package",
  1178. "compile": {
  1179. "ref/netstandard2.0/System.Drawing.Common.dll": {}
  1180. },
  1181. "runtime": {
  1182. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1183. }
  1184. },
  1185. "System.Dynamic.Runtime/4.0.11": {
  1186. "type": "package",
  1187. "dependencies": {
  1188. "System.Collections": "4.0.11",
  1189. "System.Diagnostics.Debug": "4.0.11",
  1190. "System.Globalization": "4.0.11",
  1191. "System.Linq": "4.1.0",
  1192. "System.Linq.Expressions": "4.1.0",
  1193. "System.ObjectModel": "4.0.12",
  1194. "System.Reflection": "4.1.0",
  1195. "System.Reflection.Emit": "4.0.1",
  1196. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1197. "System.Reflection.Primitives": "4.0.1",
  1198. "System.Reflection.TypeExtensions": "4.1.0",
  1199. "System.Resources.ResourceManager": "4.0.1",
  1200. "System.Runtime": "4.1.0",
  1201. "System.Runtime.Extensions": "4.1.0",
  1202. "System.Threading": "4.0.11"
  1203. },
  1204. "compile": {
  1205. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1206. },
  1207. "runtime": {
  1208. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1209. }
  1210. },
  1211. "System.Globalization/4.3.0": {
  1212. "type": "package",
  1213. "dependencies": {
  1214. "Microsoft.NETCore.Platforms": "1.1.0",
  1215. "Microsoft.NETCore.Targets": "1.1.0",
  1216. "System.Runtime": "4.3.0"
  1217. },
  1218. "compile": {
  1219. "ref/netstandard1.3/System.Globalization.dll": {}
  1220. }
  1221. },
  1222. "System.Globalization.Calendars/4.3.0": {
  1223. "type": "package",
  1224. "dependencies": {
  1225. "Microsoft.NETCore.Platforms": "1.1.0",
  1226. "Microsoft.NETCore.Targets": "1.1.0",
  1227. "System.Globalization": "4.3.0",
  1228. "System.Runtime": "4.3.0"
  1229. },
  1230. "compile": {
  1231. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1232. }
  1233. },
  1234. "System.Globalization.Extensions/4.3.0": {
  1235. "type": "package",
  1236. "dependencies": {
  1237. "Microsoft.NETCore.Platforms": "1.1.0",
  1238. "System.Globalization": "4.3.0",
  1239. "System.Resources.ResourceManager": "4.3.0",
  1240. "System.Runtime": "4.3.0",
  1241. "System.Runtime.Extensions": "4.3.0",
  1242. "System.Runtime.InteropServices": "4.3.0"
  1243. },
  1244. "compile": {
  1245. "ref/netstandard1.3/_._": {}
  1246. },
  1247. "runtimeTargets": {
  1248. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1249. "assetType": "runtime",
  1250. "rid": "unix"
  1251. },
  1252. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1253. "assetType": "runtime",
  1254. "rid": "win"
  1255. }
  1256. }
  1257. },
  1258. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1259. "type": "package",
  1260. "dependencies": {
  1261. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1262. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1263. "Newtonsoft.Json": "10.0.1"
  1264. },
  1265. "compile": {
  1266. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1267. },
  1268. "runtime": {
  1269. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1270. }
  1271. },
  1272. "System.IO/4.3.0": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.NETCore.Platforms": "1.1.0",
  1276. "Microsoft.NETCore.Targets": "1.1.0",
  1277. "System.Runtime": "4.3.0",
  1278. "System.Text.Encoding": "4.3.0",
  1279. "System.Threading.Tasks": "4.3.0"
  1280. },
  1281. "compile": {
  1282. "ref/netstandard1.5/System.IO.dll": {}
  1283. }
  1284. },
  1285. "System.IO.Compression/4.3.0": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "Microsoft.NETCore.Platforms": "1.1.0",
  1289. "System.Buffers": "4.3.0",
  1290. "System.Collections": "4.3.0",
  1291. "System.Diagnostics.Debug": "4.3.0",
  1292. "System.IO": "4.3.0",
  1293. "System.Resources.ResourceManager": "4.3.0",
  1294. "System.Runtime": "4.3.0",
  1295. "System.Runtime.Extensions": "4.3.0",
  1296. "System.Runtime.Handles": "4.3.0",
  1297. "System.Runtime.InteropServices": "4.3.0",
  1298. "System.Text.Encoding": "4.3.0",
  1299. "System.Threading": "4.3.0",
  1300. "System.Threading.Tasks": "4.3.0",
  1301. "runtime.native.System": "4.3.0",
  1302. "runtime.native.System.IO.Compression": "4.3.0"
  1303. },
  1304. "compile": {
  1305. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1306. },
  1307. "runtimeTargets": {
  1308. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1309. "assetType": "runtime",
  1310. "rid": "unix"
  1311. },
  1312. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1313. "assetType": "runtime",
  1314. "rid": "win"
  1315. }
  1316. }
  1317. },
  1318. "System.IO.Compression.ZipFile/4.3.0": {
  1319. "type": "package",
  1320. "dependencies": {
  1321. "System.Buffers": "4.3.0",
  1322. "System.IO": "4.3.0",
  1323. "System.IO.Compression": "4.3.0",
  1324. "System.IO.FileSystem": "4.3.0",
  1325. "System.IO.FileSystem.Primitives": "4.3.0",
  1326. "System.Resources.ResourceManager": "4.3.0",
  1327. "System.Runtime": "4.3.0",
  1328. "System.Runtime.Extensions": "4.3.0",
  1329. "System.Text.Encoding": "4.3.0"
  1330. },
  1331. "compile": {
  1332. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1333. },
  1334. "runtime": {
  1335. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1336. }
  1337. },
  1338. "System.IO.FileSystem/4.3.0": {
  1339. "type": "package",
  1340. "dependencies": {
  1341. "Microsoft.NETCore.Platforms": "1.1.0",
  1342. "Microsoft.NETCore.Targets": "1.1.0",
  1343. "System.IO": "4.3.0",
  1344. "System.IO.FileSystem.Primitives": "4.3.0",
  1345. "System.Runtime": "4.3.0",
  1346. "System.Runtime.Handles": "4.3.0",
  1347. "System.Text.Encoding": "4.3.0",
  1348. "System.Threading.Tasks": "4.3.0"
  1349. },
  1350. "compile": {
  1351. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1352. }
  1353. },
  1354. "System.IO.FileSystem.Primitives/4.3.0": {
  1355. "type": "package",
  1356. "dependencies": {
  1357. "System.Runtime": "4.3.0"
  1358. },
  1359. "compile": {
  1360. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1361. },
  1362. "runtime": {
  1363. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1364. }
  1365. },
  1366. "System.Linq/4.3.0": {
  1367. "type": "package",
  1368. "dependencies": {
  1369. "System.Collections": "4.3.0",
  1370. "System.Diagnostics.Debug": "4.3.0",
  1371. "System.Resources.ResourceManager": "4.3.0",
  1372. "System.Runtime": "4.3.0",
  1373. "System.Runtime.Extensions": "4.3.0"
  1374. },
  1375. "compile": {
  1376. "ref/netstandard1.6/System.Linq.dll": {}
  1377. },
  1378. "runtime": {
  1379. "lib/netstandard1.6/System.Linq.dll": {}
  1380. }
  1381. },
  1382. "System.Linq.Expressions/4.3.0": {
  1383. "type": "package",
  1384. "dependencies": {
  1385. "System.Collections": "4.3.0",
  1386. "System.Diagnostics.Debug": "4.3.0",
  1387. "System.Globalization": "4.3.0",
  1388. "System.IO": "4.3.0",
  1389. "System.Linq": "4.3.0",
  1390. "System.ObjectModel": "4.3.0",
  1391. "System.Reflection": "4.3.0",
  1392. "System.Reflection.Emit": "4.3.0",
  1393. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1394. "System.Reflection.Emit.Lightweight": "4.3.0",
  1395. "System.Reflection.Extensions": "4.3.0",
  1396. "System.Reflection.Primitives": "4.3.0",
  1397. "System.Reflection.TypeExtensions": "4.3.0",
  1398. "System.Resources.ResourceManager": "4.3.0",
  1399. "System.Runtime": "4.3.0",
  1400. "System.Runtime.Extensions": "4.3.0",
  1401. "System.Threading": "4.3.0"
  1402. },
  1403. "compile": {
  1404. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1405. },
  1406. "runtime": {
  1407. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1408. }
  1409. },
  1410. "System.Memory/4.5.3": {
  1411. "type": "package",
  1412. "dependencies": {
  1413. "System.Buffers": "4.4.0",
  1414. "System.Numerics.Vectors": "4.4.0",
  1415. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  1416. },
  1417. "compile": {
  1418. "lib/netstandard2.0/System.Memory.dll": {}
  1419. },
  1420. "runtime": {
  1421. "lib/netstandard2.0/System.Memory.dll": {}
  1422. }
  1423. },
  1424. "System.Net.Http/4.3.0": {
  1425. "type": "package",
  1426. "dependencies": {
  1427. "Microsoft.NETCore.Platforms": "1.1.0",
  1428. "System.Collections": "4.3.0",
  1429. "System.Diagnostics.Debug": "4.3.0",
  1430. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1431. "System.Diagnostics.Tracing": "4.3.0",
  1432. "System.Globalization": "4.3.0",
  1433. "System.Globalization.Extensions": "4.3.0",
  1434. "System.IO": "4.3.0",
  1435. "System.IO.FileSystem": "4.3.0",
  1436. "System.Net.Primitives": "4.3.0",
  1437. "System.Resources.ResourceManager": "4.3.0",
  1438. "System.Runtime": "4.3.0",
  1439. "System.Runtime.Extensions": "4.3.0",
  1440. "System.Runtime.Handles": "4.3.0",
  1441. "System.Runtime.InteropServices": "4.3.0",
  1442. "System.Security.Cryptography.Algorithms": "4.3.0",
  1443. "System.Security.Cryptography.Encoding": "4.3.0",
  1444. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1445. "System.Security.Cryptography.Primitives": "4.3.0",
  1446. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1447. "System.Text.Encoding": "4.3.0",
  1448. "System.Threading": "4.3.0",
  1449. "System.Threading.Tasks": "4.3.0",
  1450. "runtime.native.System": "4.3.0",
  1451. "runtime.native.System.Net.Http": "4.3.0",
  1452. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1453. },
  1454. "compile": {
  1455. "ref/netstandard1.3/System.Net.Http.dll": {}
  1456. },
  1457. "runtimeTargets": {
  1458. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1459. "assetType": "runtime",
  1460. "rid": "unix"
  1461. },
  1462. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1463. "assetType": "runtime",
  1464. "rid": "win"
  1465. }
  1466. }
  1467. },
  1468. "System.Net.NameResolution/4.0.0": {
  1469. "type": "package",
  1470. "dependencies": {
  1471. "Microsoft.NETCore.Platforms": "1.0.1",
  1472. "System.Collections": "4.0.11",
  1473. "System.Diagnostics.Tracing": "4.1.0",
  1474. "System.Globalization": "4.0.11",
  1475. "System.Net.Primitives": "4.0.11",
  1476. "System.Resources.ResourceManager": "4.0.1",
  1477. "System.Runtime": "4.1.0",
  1478. "System.Runtime.Extensions": "4.1.0",
  1479. "System.Runtime.Handles": "4.0.1",
  1480. "System.Runtime.InteropServices": "4.1.0",
  1481. "System.Security.Principal.Windows": "4.0.0",
  1482. "System.Threading": "4.0.11",
  1483. "System.Threading.Tasks": "4.0.11",
  1484. "runtime.native.System": "4.0.0"
  1485. },
  1486. "compile": {
  1487. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1488. },
  1489. "runtimeTargets": {
  1490. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1491. "assetType": "runtime",
  1492. "rid": "unix"
  1493. },
  1494. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1495. "assetType": "runtime",
  1496. "rid": "win"
  1497. }
  1498. }
  1499. },
  1500. "System.Net.Primitives/4.3.0": {
  1501. "type": "package",
  1502. "dependencies": {
  1503. "Microsoft.NETCore.Platforms": "1.1.0",
  1504. "Microsoft.NETCore.Targets": "1.1.0",
  1505. "System.Runtime": "4.3.0",
  1506. "System.Runtime.Handles": "4.3.0"
  1507. },
  1508. "compile": {
  1509. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1510. }
  1511. },
  1512. "System.Net.Sockets/4.3.0": {
  1513. "type": "package",
  1514. "dependencies": {
  1515. "Microsoft.NETCore.Platforms": "1.1.0",
  1516. "Microsoft.NETCore.Targets": "1.1.0",
  1517. "System.IO": "4.3.0",
  1518. "System.Net.Primitives": "4.3.0",
  1519. "System.Runtime": "4.3.0",
  1520. "System.Threading.Tasks": "4.3.0"
  1521. },
  1522. "compile": {
  1523. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1524. }
  1525. },
  1526. "System.Numerics.Vectors/4.5.0": {
  1527. "type": "package",
  1528. "compile": {
  1529. "ref/netstandard2.0/System.Numerics.Vectors.dll": {}
  1530. },
  1531. "runtime": {
  1532. "lib/netstandard2.0/System.Numerics.Vectors.dll": {}
  1533. }
  1534. },
  1535. "System.ObjectModel/4.3.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "System.Collections": "4.3.0",
  1539. "System.Diagnostics.Debug": "4.3.0",
  1540. "System.Resources.ResourceManager": "4.3.0",
  1541. "System.Runtime": "4.3.0",
  1542. "System.Threading": "4.3.0"
  1543. },
  1544. "compile": {
  1545. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1546. },
  1547. "runtime": {
  1548. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1549. }
  1550. },
  1551. "System.Reflection/4.3.0": {
  1552. "type": "package",
  1553. "dependencies": {
  1554. "Microsoft.NETCore.Platforms": "1.1.0",
  1555. "Microsoft.NETCore.Targets": "1.1.0",
  1556. "System.IO": "4.3.0",
  1557. "System.Reflection.Primitives": "4.3.0",
  1558. "System.Runtime": "4.3.0"
  1559. },
  1560. "compile": {
  1561. "ref/netstandard1.5/System.Reflection.dll": {}
  1562. }
  1563. },
  1564. "System.Reflection.Emit/4.3.0": {
  1565. "type": "package",
  1566. "dependencies": {
  1567. "System.IO": "4.3.0",
  1568. "System.Reflection": "4.3.0",
  1569. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1570. "System.Reflection.Primitives": "4.3.0",
  1571. "System.Runtime": "4.3.0"
  1572. },
  1573. "compile": {
  1574. "ref/netstandard1.1/_._": {}
  1575. },
  1576. "runtime": {
  1577. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1578. }
  1579. },
  1580. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1581. "type": "package",
  1582. "dependencies": {
  1583. "System.Reflection": "4.3.0",
  1584. "System.Reflection.Primitives": "4.3.0",
  1585. "System.Runtime": "4.3.0"
  1586. },
  1587. "compile": {
  1588. "ref/netstandard1.0/_._": {}
  1589. },
  1590. "runtime": {
  1591. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1592. }
  1593. },
  1594. "System.Reflection.Emit.Lightweight/4.6.0": {
  1595. "type": "package",
  1596. "compile": {
  1597. "ref/netstandard2.1/_._": {}
  1598. },
  1599. "runtime": {
  1600. "lib/netstandard2.1/_._": {}
  1601. }
  1602. },
  1603. "System.Reflection.Extensions/4.3.0": {
  1604. "type": "package",
  1605. "dependencies": {
  1606. "Microsoft.NETCore.Platforms": "1.1.0",
  1607. "Microsoft.NETCore.Targets": "1.1.0",
  1608. "System.Reflection": "4.3.0",
  1609. "System.Runtime": "4.3.0"
  1610. },
  1611. "compile": {
  1612. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1613. }
  1614. },
  1615. "System.Reflection.Primitives/4.3.0": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "Microsoft.NETCore.Platforms": "1.1.0",
  1619. "Microsoft.NETCore.Targets": "1.1.0",
  1620. "System.Runtime": "4.3.0"
  1621. },
  1622. "compile": {
  1623. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1624. }
  1625. },
  1626. "System.Reflection.TypeExtensions/4.3.0": {
  1627. "type": "package",
  1628. "dependencies": {
  1629. "System.Reflection": "4.3.0",
  1630. "System.Runtime": "4.3.0"
  1631. },
  1632. "compile": {
  1633. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1634. },
  1635. "runtime": {
  1636. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1637. }
  1638. },
  1639. "System.Resources.ResourceManager/4.3.0": {
  1640. "type": "package",
  1641. "dependencies": {
  1642. "Microsoft.NETCore.Platforms": "1.1.0",
  1643. "Microsoft.NETCore.Targets": "1.1.0",
  1644. "System.Globalization": "4.3.0",
  1645. "System.Reflection": "4.3.0",
  1646. "System.Runtime": "4.3.0"
  1647. },
  1648. "compile": {
  1649. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1650. }
  1651. },
  1652. "System.Runtime/4.3.0": {
  1653. "type": "package",
  1654. "dependencies": {
  1655. "Microsoft.NETCore.Platforms": "1.1.0",
  1656. "Microsoft.NETCore.Targets": "1.1.0"
  1657. },
  1658. "compile": {
  1659. "ref/netstandard1.5/System.Runtime.dll": {}
  1660. }
  1661. },
  1662. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  1663. "type": "package",
  1664. "compile": {
  1665. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1666. },
  1667. "runtime": {
  1668. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1669. }
  1670. },
  1671. "System.Runtime.Extensions/4.3.0": {
  1672. "type": "package",
  1673. "dependencies": {
  1674. "Microsoft.NETCore.Platforms": "1.1.0",
  1675. "Microsoft.NETCore.Targets": "1.1.0",
  1676. "System.Runtime": "4.3.0"
  1677. },
  1678. "compile": {
  1679. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1680. }
  1681. },
  1682. "System.Runtime.Handles/4.3.0": {
  1683. "type": "package",
  1684. "dependencies": {
  1685. "Microsoft.NETCore.Platforms": "1.1.0",
  1686. "Microsoft.NETCore.Targets": "1.1.0",
  1687. "System.Runtime": "4.3.0"
  1688. },
  1689. "compile": {
  1690. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1691. }
  1692. },
  1693. "System.Runtime.InteropServices/4.3.0": {
  1694. "type": "package",
  1695. "dependencies": {
  1696. "Microsoft.NETCore.Platforms": "1.1.0",
  1697. "Microsoft.NETCore.Targets": "1.1.0",
  1698. "System.Reflection": "4.3.0",
  1699. "System.Reflection.Primitives": "4.3.0",
  1700. "System.Runtime": "4.3.0",
  1701. "System.Runtime.Handles": "4.3.0"
  1702. },
  1703. "compile": {
  1704. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1705. }
  1706. },
  1707. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1708. "type": "package",
  1709. "dependencies": {
  1710. "System.Reflection": "4.3.0",
  1711. "System.Reflection.Extensions": "4.3.0",
  1712. "System.Resources.ResourceManager": "4.3.0",
  1713. "System.Runtime": "4.3.0",
  1714. "System.Runtime.InteropServices": "4.3.0",
  1715. "System.Threading": "4.3.0",
  1716. "runtime.native.System": "4.3.0"
  1717. },
  1718. "compile": {
  1719. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1720. },
  1721. "runtime": {
  1722. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1723. },
  1724. "runtimeTargets": {
  1725. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1726. "assetType": "runtime",
  1727. "rid": "unix"
  1728. },
  1729. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1730. "assetType": "runtime",
  1731. "rid": "win"
  1732. }
  1733. }
  1734. },
  1735. "System.Runtime.Numerics/4.3.0": {
  1736. "type": "package",
  1737. "dependencies": {
  1738. "System.Globalization": "4.3.0",
  1739. "System.Resources.ResourceManager": "4.3.0",
  1740. "System.Runtime": "4.3.0",
  1741. "System.Runtime.Extensions": "4.3.0"
  1742. },
  1743. "compile": {
  1744. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1745. },
  1746. "runtime": {
  1747. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1748. }
  1749. },
  1750. "System.Security.AccessControl/4.6.0": {
  1751. "type": "package",
  1752. "dependencies": {
  1753. "System.Security.Principal.Windows": "4.6.0"
  1754. },
  1755. "compile": {
  1756. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1757. },
  1758. "runtime": {
  1759. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1760. },
  1761. "runtimeTargets": {
  1762. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll": {
  1763. "assetType": "runtime",
  1764. "rid": "win"
  1765. }
  1766. }
  1767. },
  1768. "System.Security.Cryptography.Algorithms/4.3.0": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "Microsoft.NETCore.Platforms": "1.1.0",
  1772. "System.Collections": "4.3.0",
  1773. "System.IO": "4.3.0",
  1774. "System.Resources.ResourceManager": "4.3.0",
  1775. "System.Runtime": "4.3.0",
  1776. "System.Runtime.Extensions": "4.3.0",
  1777. "System.Runtime.Handles": "4.3.0",
  1778. "System.Runtime.InteropServices": "4.3.0",
  1779. "System.Runtime.Numerics": "4.3.0",
  1780. "System.Security.Cryptography.Encoding": "4.3.0",
  1781. "System.Security.Cryptography.Primitives": "4.3.0",
  1782. "System.Text.Encoding": "4.3.0",
  1783. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1784. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1785. },
  1786. "compile": {
  1787. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1788. },
  1789. "runtimeTargets": {
  1790. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1791. "assetType": "runtime",
  1792. "rid": "osx"
  1793. },
  1794. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1795. "assetType": "runtime",
  1796. "rid": "unix"
  1797. },
  1798. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1799. "assetType": "runtime",
  1800. "rid": "win"
  1801. }
  1802. }
  1803. },
  1804. "System.Security.Cryptography.Cng/4.5.0": {
  1805. "type": "package",
  1806. "compile": {
  1807. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll": {}
  1808. },
  1809. "runtime": {
  1810. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll": {}
  1811. },
  1812. "runtimeTargets": {
  1813. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1814. "assetType": "runtime",
  1815. "rid": "win"
  1816. }
  1817. }
  1818. },
  1819. "System.Security.Cryptography.Csp/4.3.0": {
  1820. "type": "package",
  1821. "dependencies": {
  1822. "Microsoft.NETCore.Platforms": "1.1.0",
  1823. "System.IO": "4.3.0",
  1824. "System.Reflection": "4.3.0",
  1825. "System.Resources.ResourceManager": "4.3.0",
  1826. "System.Runtime": "4.3.0",
  1827. "System.Runtime.Extensions": "4.3.0",
  1828. "System.Runtime.Handles": "4.3.0",
  1829. "System.Runtime.InteropServices": "4.3.0",
  1830. "System.Security.Cryptography.Algorithms": "4.3.0",
  1831. "System.Security.Cryptography.Encoding": "4.3.0",
  1832. "System.Security.Cryptography.Primitives": "4.3.0",
  1833. "System.Text.Encoding": "4.3.0",
  1834. "System.Threading": "4.3.0"
  1835. },
  1836. "compile": {
  1837. "ref/netstandard1.3/_._": {}
  1838. },
  1839. "runtimeTargets": {
  1840. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1841. "assetType": "runtime",
  1842. "rid": "unix"
  1843. },
  1844. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1845. "assetType": "runtime",
  1846. "rid": "win"
  1847. }
  1848. }
  1849. },
  1850. "System.Security.Cryptography.Encoding/4.3.0": {
  1851. "type": "package",
  1852. "dependencies": {
  1853. "Microsoft.NETCore.Platforms": "1.1.0",
  1854. "System.Collections": "4.3.0",
  1855. "System.Collections.Concurrent": "4.3.0",
  1856. "System.Linq": "4.3.0",
  1857. "System.Resources.ResourceManager": "4.3.0",
  1858. "System.Runtime": "4.3.0",
  1859. "System.Runtime.Extensions": "4.3.0",
  1860. "System.Runtime.Handles": "4.3.0",
  1861. "System.Runtime.InteropServices": "4.3.0",
  1862. "System.Security.Cryptography.Primitives": "4.3.0",
  1863. "System.Text.Encoding": "4.3.0",
  1864. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1865. },
  1866. "compile": {
  1867. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1868. },
  1869. "runtimeTargets": {
  1870. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1871. "assetType": "runtime",
  1872. "rid": "unix"
  1873. },
  1874. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1875. "assetType": "runtime",
  1876. "rid": "win"
  1877. }
  1878. }
  1879. },
  1880. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1881. "type": "package",
  1882. "dependencies": {
  1883. "System.Collections": "4.3.0",
  1884. "System.IO": "4.3.0",
  1885. "System.Resources.ResourceManager": "4.3.0",
  1886. "System.Runtime": "4.3.0",
  1887. "System.Runtime.Extensions": "4.3.0",
  1888. "System.Runtime.Handles": "4.3.0",
  1889. "System.Runtime.InteropServices": "4.3.0",
  1890. "System.Runtime.Numerics": "4.3.0",
  1891. "System.Security.Cryptography.Algorithms": "4.3.0",
  1892. "System.Security.Cryptography.Encoding": "4.3.0",
  1893. "System.Security.Cryptography.Primitives": "4.3.0",
  1894. "System.Text.Encoding": "4.3.0",
  1895. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1896. },
  1897. "compile": {
  1898. "ref/netstandard1.6/_._": {}
  1899. },
  1900. "runtime": {
  1901. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1902. },
  1903. "runtimeTargets": {
  1904. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1905. "assetType": "runtime",
  1906. "rid": "unix"
  1907. }
  1908. }
  1909. },
  1910. "System.Security.Cryptography.Primitives/4.3.0": {
  1911. "type": "package",
  1912. "dependencies": {
  1913. "System.Diagnostics.Debug": "4.3.0",
  1914. "System.Globalization": "4.3.0",
  1915. "System.IO": "4.3.0",
  1916. "System.Resources.ResourceManager": "4.3.0",
  1917. "System.Runtime": "4.3.0",
  1918. "System.Threading": "4.3.0",
  1919. "System.Threading.Tasks": "4.3.0"
  1920. },
  1921. "compile": {
  1922. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1923. },
  1924. "runtime": {
  1925. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1926. }
  1927. },
  1928. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1929. "type": "package",
  1930. "compile": {
  1931. "ref/netstandard2.0/_._": {}
  1932. },
  1933. "runtime": {
  1934. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  1935. },
  1936. "runtimeTargets": {
  1937. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1938. "assetType": "runtime",
  1939. "rid": "win"
  1940. }
  1941. }
  1942. },
  1943. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1944. "type": "package",
  1945. "dependencies": {
  1946. "Microsoft.NETCore.Platforms": "1.1.0",
  1947. "System.Collections": "4.3.0",
  1948. "System.Diagnostics.Debug": "4.3.0",
  1949. "System.Globalization": "4.3.0",
  1950. "System.Globalization.Calendars": "4.3.0",
  1951. "System.IO": "4.3.0",
  1952. "System.IO.FileSystem": "4.3.0",
  1953. "System.IO.FileSystem.Primitives": "4.3.0",
  1954. "System.Resources.ResourceManager": "4.3.0",
  1955. "System.Runtime": "4.3.0",
  1956. "System.Runtime.Extensions": "4.3.0",
  1957. "System.Runtime.Handles": "4.3.0",
  1958. "System.Runtime.InteropServices": "4.3.0",
  1959. "System.Runtime.Numerics": "4.3.0",
  1960. "System.Security.Cryptography.Algorithms": "4.3.0",
  1961. "System.Security.Cryptography.Cng": "4.3.0",
  1962. "System.Security.Cryptography.Csp": "4.3.0",
  1963. "System.Security.Cryptography.Encoding": "4.3.0",
  1964. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1965. "System.Security.Cryptography.Primitives": "4.3.0",
  1966. "System.Text.Encoding": "4.3.0",
  1967. "System.Threading": "4.3.0",
  1968. "runtime.native.System": "4.3.0",
  1969. "runtime.native.System.Net.Http": "4.3.0",
  1970. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1971. },
  1972. "compile": {
  1973. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  1974. },
  1975. "runtimeTargets": {
  1976. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1977. "assetType": "runtime",
  1978. "rid": "unix"
  1979. },
  1980. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1981. "assetType": "runtime",
  1982. "rid": "win"
  1983. }
  1984. }
  1985. },
  1986. "System.Security.Permissions/4.6.0": {
  1987. "type": "package",
  1988. "dependencies": {
  1989. "System.Security.AccessControl": "4.6.0"
  1990. },
  1991. "compile": {
  1992. "ref/netstandard2.0/System.Security.Permissions.dll": {}
  1993. },
  1994. "runtime": {
  1995. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  1996. }
  1997. },
  1998. "System.Security.Principal.Windows/4.6.0": {
  1999. "type": "package",
  2000. "compile": {
  2001. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2002. },
  2003. "runtime": {
  2004. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2005. },
  2006. "runtimeTargets": {
  2007. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  2008. "assetType": "runtime",
  2009. "rid": "win"
  2010. }
  2011. }
  2012. },
  2013. "System.Text.Encoding/4.3.0": {
  2014. "type": "package",
  2015. "dependencies": {
  2016. "Microsoft.NETCore.Platforms": "1.1.0",
  2017. "Microsoft.NETCore.Targets": "1.1.0",
  2018. "System.Runtime": "4.3.0"
  2019. },
  2020. "compile": {
  2021. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2022. }
  2023. },
  2024. "System.Text.Encoding.CodePages/4.4.0": {
  2025. "type": "package",
  2026. "compile": {
  2027. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2028. },
  2029. "runtime": {
  2030. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2031. },
  2032. "runtimeTargets": {
  2033. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2034. "assetType": "runtime",
  2035. "rid": "win"
  2036. }
  2037. }
  2038. },
  2039. "System.Text.Encoding.Extensions/4.3.0": {
  2040. "type": "package",
  2041. "dependencies": {
  2042. "Microsoft.NETCore.Platforms": "1.1.0",
  2043. "Microsoft.NETCore.Targets": "1.1.0",
  2044. "System.Runtime": "4.3.0",
  2045. "System.Text.Encoding": "4.3.0"
  2046. },
  2047. "compile": {
  2048. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2049. }
  2050. },
  2051. "System.Text.Encodings.Web/4.7.0": {
  2052. "type": "package",
  2053. "compile": {
  2054. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {}
  2055. },
  2056. "runtime": {
  2057. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {}
  2058. }
  2059. },
  2060. "System.Text.Json/4.7.1": {
  2061. "type": "package",
  2062. "dependencies": {
  2063. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  2064. "System.Buffers": "4.5.0",
  2065. "System.Memory": "4.5.3",
  2066. "System.Numerics.Vectors": "4.5.0",
  2067. "System.Runtime.CompilerServices.Unsafe": "4.7.0",
  2068. "System.Text.Encodings.Web": "4.7.0",
  2069. "System.Threading.Tasks.Extensions": "4.5.2"
  2070. },
  2071. "compile": {
  2072. "lib/netstandard2.0/System.Text.Json.dll": {}
  2073. },
  2074. "runtime": {
  2075. "lib/netstandard2.0/System.Text.Json.dll": {}
  2076. }
  2077. },
  2078. "System.Text.RegularExpressions/4.3.0": {
  2079. "type": "package",
  2080. "dependencies": {
  2081. "System.Collections": "4.3.0",
  2082. "System.Globalization": "4.3.0",
  2083. "System.Resources.ResourceManager": "4.3.0",
  2084. "System.Runtime": "4.3.0",
  2085. "System.Runtime.Extensions": "4.3.0",
  2086. "System.Threading": "4.3.0"
  2087. },
  2088. "compile": {
  2089. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2090. },
  2091. "runtime": {
  2092. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2093. }
  2094. },
  2095. "System.Threading/4.3.0": {
  2096. "type": "package",
  2097. "dependencies": {
  2098. "System.Runtime": "4.3.0",
  2099. "System.Threading.Tasks": "4.3.0"
  2100. },
  2101. "compile": {
  2102. "ref/netstandard1.3/System.Threading.dll": {}
  2103. },
  2104. "runtime": {
  2105. "lib/netstandard1.3/System.Threading.dll": {}
  2106. }
  2107. },
  2108. "System.Threading.Tasks/4.3.0": {
  2109. "type": "package",
  2110. "dependencies": {
  2111. "Microsoft.NETCore.Platforms": "1.1.0",
  2112. "Microsoft.NETCore.Targets": "1.1.0",
  2113. "System.Runtime": "4.3.0"
  2114. },
  2115. "compile": {
  2116. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2117. }
  2118. },
  2119. "System.Threading.Tasks.Extensions/4.5.2": {
  2120. "type": "package",
  2121. "dependencies": {
  2122. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2123. },
  2124. "compile": {
  2125. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
  2126. },
  2127. "runtime": {
  2128. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
  2129. }
  2130. },
  2131. "System.Threading.Thread/4.0.0": {
  2132. "type": "package",
  2133. "dependencies": {
  2134. "System.Runtime": "4.1.0"
  2135. },
  2136. "compile": {
  2137. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2138. },
  2139. "runtime": {
  2140. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2141. }
  2142. },
  2143. "System.Threading.ThreadPool/4.0.10": {
  2144. "type": "package",
  2145. "dependencies": {
  2146. "System.Runtime": "4.1.0",
  2147. "System.Runtime.Handles": "4.0.1"
  2148. },
  2149. "compile": {
  2150. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2151. },
  2152. "runtime": {
  2153. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2154. }
  2155. },
  2156. "System.Threading.Timer/4.3.0": {
  2157. "type": "package",
  2158. "dependencies": {
  2159. "Microsoft.NETCore.Platforms": "1.1.0",
  2160. "Microsoft.NETCore.Targets": "1.1.0",
  2161. "System.Runtime": "4.3.0"
  2162. },
  2163. "compile": {
  2164. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2165. }
  2166. },
  2167. "System.Xml.ReaderWriter/4.3.0": {
  2168. "type": "package",
  2169. "dependencies": {
  2170. "System.Collections": "4.3.0",
  2171. "System.Diagnostics.Debug": "4.3.0",
  2172. "System.Globalization": "4.3.0",
  2173. "System.IO": "4.3.0",
  2174. "System.IO.FileSystem": "4.3.0",
  2175. "System.IO.FileSystem.Primitives": "4.3.0",
  2176. "System.Resources.ResourceManager": "4.3.0",
  2177. "System.Runtime": "4.3.0",
  2178. "System.Runtime.Extensions": "4.3.0",
  2179. "System.Runtime.InteropServices": "4.3.0",
  2180. "System.Text.Encoding": "4.3.0",
  2181. "System.Text.Encoding.Extensions": "4.3.0",
  2182. "System.Text.RegularExpressions": "4.3.0",
  2183. "System.Threading.Tasks": "4.3.0",
  2184. "System.Threading.Tasks.Extensions": "4.3.0"
  2185. },
  2186. "compile": {
  2187. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2188. },
  2189. "runtime": {
  2190. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2191. }
  2192. },
  2193. "System.Xml.XDocument/4.3.0": {
  2194. "type": "package",
  2195. "dependencies": {
  2196. "System.Collections": "4.3.0",
  2197. "System.Diagnostics.Debug": "4.3.0",
  2198. "System.Diagnostics.Tools": "4.3.0",
  2199. "System.Globalization": "4.3.0",
  2200. "System.IO": "4.3.0",
  2201. "System.Reflection": "4.3.0",
  2202. "System.Resources.ResourceManager": "4.3.0",
  2203. "System.Runtime": "4.3.0",
  2204. "System.Runtime.Extensions": "4.3.0",
  2205. "System.Text.Encoding": "4.3.0",
  2206. "System.Threading": "4.3.0",
  2207. "System.Xml.ReaderWriter": "4.3.0"
  2208. },
  2209. "compile": {
  2210. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2211. },
  2212. "runtime": {
  2213. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2214. }
  2215. },
  2216. "System.Xml.XmlDocument/4.0.1": {
  2217. "type": "package",
  2218. "dependencies": {
  2219. "System.Collections": "4.0.11",
  2220. "System.Diagnostics.Debug": "4.0.11",
  2221. "System.Globalization": "4.0.11",
  2222. "System.IO": "4.1.0",
  2223. "System.Resources.ResourceManager": "4.0.1",
  2224. "System.Runtime": "4.1.0",
  2225. "System.Runtime.Extensions": "4.1.0",
  2226. "System.Text.Encoding": "4.0.11",
  2227. "System.Threading": "4.0.11",
  2228. "System.Xml.ReaderWriter": "4.0.11"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2232. },
  2233. "runtime": {
  2234. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2235. }
  2236. },
  2237. "System.Xml.XPath/4.0.1": {
  2238. "type": "package",
  2239. "dependencies": {
  2240. "System.Collections": "4.0.11",
  2241. "System.Diagnostics.Debug": "4.0.11",
  2242. "System.Globalization": "4.0.11",
  2243. "System.IO": "4.1.0",
  2244. "System.Resources.ResourceManager": "4.0.1",
  2245. "System.Runtime": "4.1.0",
  2246. "System.Runtime.Extensions": "4.1.0",
  2247. "System.Threading": "4.0.11",
  2248. "System.Xml.ReaderWriter": "4.0.11"
  2249. },
  2250. "compile": {
  2251. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2252. },
  2253. "runtime": {
  2254. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2255. }
  2256. },
  2257. "System.Xml.XPath.XmlDocument/4.0.1": {
  2258. "type": "package",
  2259. "dependencies": {
  2260. "System.Collections": "4.0.11",
  2261. "System.Globalization": "4.0.11",
  2262. "System.IO": "4.1.0",
  2263. "System.Resources.ResourceManager": "4.0.1",
  2264. "System.Runtime": "4.1.0",
  2265. "System.Runtime.Extensions": "4.1.0",
  2266. "System.Threading": "4.0.11",
  2267. "System.Xml.ReaderWriter": "4.0.11",
  2268. "System.Xml.XPath": "4.0.1",
  2269. "System.Xml.XmlDocument": "4.0.1"
  2270. },
  2271. "compile": {
  2272. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2273. },
  2274. "runtime": {
  2275. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2276. }
  2277. },
  2278. "WebAPIBase.Data/1.0.0": {
  2279. "type": "project",
  2280. "framework": ".NETStandard,Version=v2.1",
  2281. "dependencies": {
  2282. "Dapper": "2.0.30",
  2283. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  2284. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  2285. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
  2286. "MySql.Data": "8.0.19",
  2287. "WebAPIBase.Model": "1.0.0",
  2288. "sqlSugarCore": "5.0.0.18"
  2289. },
  2290. "compile": {
  2291. "bin/placeholder/WebAPIBase.Data.dll": {}
  2292. },
  2293. "runtime": {
  2294. "bin/placeholder/WebAPIBase.Data.dll": {}
  2295. }
  2296. },
  2297. "WebAPIBase.Model/1.0.0": {
  2298. "type": "project",
  2299. "framework": ".NETStandard,Version=v2.1",
  2300. "compile": {
  2301. "bin/placeholder/WebAPIBase.Model.dll": {}
  2302. },
  2303. "runtime": {
  2304. "bin/placeholder/WebAPIBase.Model.dll": {}
  2305. }
  2306. },
  2307. "WebAPIBase.Utils/1.0.0": {
  2308. "type": "project",
  2309. "framework": ".NETStandard,Version=v2.0",
  2310. "dependencies": {
  2311. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  2312. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  2313. "Microsoft.Extensions.Configuration": "3.1.9",
  2314. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  2315. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  2316. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  2317. "NLog": "4.7.5",
  2318. "NLog.Web.AspNetCore": "4.9.3",
  2319. "System.Drawing.Common": "4.7.0",
  2320. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  2321. },
  2322. "compile": {
  2323. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2324. },
  2325. "runtime": {
  2326. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2327. }
  2328. }
  2329. }
  2330. },
  2331. "libraries": {
  2332. "BouncyCastle.NetCore/1.8.3": {
  2333. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2334. "type": "package",
  2335. "path": "bouncycastle.netcore/1.8.3",
  2336. "files": [
  2337. ".nupkg.metadata",
  2338. ".signature.p7s",
  2339. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2340. "bouncycastle.netcore.nuspec",
  2341. "lib/Mono/BouncyCastle.Crypto.dll",
  2342. "lib/Mono/BouncyCastle.Crypto.xml",
  2343. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2344. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2345. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2346. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2347. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2348. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2349. "lib/net20/BouncyCastle.Crypto.dll",
  2350. "lib/net20/BouncyCastle.Crypto.xml",
  2351. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2352. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2353. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2354. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2355. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2356. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2357. ]
  2358. },
  2359. "Dapper/2.0.30": {
  2360. "sha512": "nL0VEpvunjIQ3jTI1x27b7BS3BnRnn5b2vhxsU2pWEd9SljF5WUQLoV/83qXTm0yaHmejRV/ndI3EApGlrgPqw==",
  2361. "type": "package",
  2362. "path": "dapper/2.0.30",
  2363. "files": [
  2364. ".nupkg.metadata",
  2365. ".signature.p7s",
  2366. "dapper.2.0.30.nupkg.sha512",
  2367. "dapper.nuspec",
  2368. "lib/net461/Dapper.dll",
  2369. "lib/net461/Dapper.xml",
  2370. "lib/netstandard2.0/Dapper.dll",
  2371. "lib/netstandard2.0/Dapper.xml"
  2372. ]
  2373. },
  2374. "Google.Protobuf/3.6.1": {
  2375. "sha512": "741fGeDQjixBJaU2j+0CbrmZXsNJkTn/hWbOh4fLVXndHsCclJmWznCPWrJmPoZKvajBvAz3e8ECJOUvRtwjNQ==",
  2376. "type": "package",
  2377. "path": "google.protobuf/3.6.1",
  2378. "files": [
  2379. ".nupkg.metadata",
  2380. ".signature.p7s",
  2381. "google.protobuf.3.6.1.nupkg.sha512",
  2382. "google.protobuf.nuspec",
  2383. "lib/net45/Google.Protobuf.dll",
  2384. "lib/net45/Google.Protobuf.xml",
  2385. "lib/netstandard1.0/Google.Protobuf.dll",
  2386. "lib/netstandard1.0/Google.Protobuf.xml"
  2387. ]
  2388. },
  2389. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  2390. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  2391. "type": "package",
  2392. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  2393. "files": [
  2394. ".nupkg.metadata",
  2395. ".signature.p7s",
  2396. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  2397. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  2398. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  2399. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  2400. ]
  2401. },
  2402. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  2403. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  2404. "type": "package",
  2405. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  2406. "files": [
  2407. ".nupkg.metadata",
  2408. ".signature.p7s",
  2409. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  2410. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  2411. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  2412. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  2413. ]
  2414. },
  2415. "Microsoft.AspNetCore.Http/2.1.0": {
  2416. "sha512": "eAPryjDRH41EYY2sOMHCu+tHXLI6PUN1AsOPKst6GbiIoMi8wJCiPcE4h9418tKje1oUzmMc2Iz8fFPPVamfaw==",
  2417. "type": "package",
  2418. "path": "microsoft.aspnetcore.http/2.1.0",
  2419. "files": [
  2420. ".nupkg.metadata",
  2421. ".signature.p7s",
  2422. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  2423. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  2424. "microsoft.aspnetcore.http.2.1.0.nupkg.sha512",
  2425. "microsoft.aspnetcore.http.nuspec"
  2426. ]
  2427. },
  2428. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  2429. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2430. "type": "package",
  2431. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2432. "files": [
  2433. ".nupkg.metadata",
  2434. ".signature.p7s",
  2435. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  2436. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  2437. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  2438. "microsoft.aspnetcore.http.abstractions.nuspec"
  2439. ]
  2440. },
  2441. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2442. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2443. "type": "package",
  2444. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2445. "files": [
  2446. ".nupkg.metadata",
  2447. ".signature.p7s",
  2448. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  2449. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  2450. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  2451. "microsoft.aspnetcore.http.features.nuspec"
  2452. ]
  2453. },
  2454. "Microsoft.AspNetCore.Routing.Abstractions/2.1.0": {
  2455. "sha512": "LXmnHeb3v+HTfn74M46s+4wLaMkplj1Yl2pRf+2mfDDsQ7PN0+h8AFtgip5jpvBvFHQ/Pei7S+cSVsSTHE67fQ==",
  2456. "type": "package",
  2457. "path": "microsoft.aspnetcore.routing.abstractions/2.1.0",
  2458. "files": [
  2459. ".nupkg.metadata",
  2460. ".signature.p7s",
  2461. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  2462. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  2463. "microsoft.aspnetcore.routing.abstractions.2.1.0.nupkg.sha512",
  2464. "microsoft.aspnetcore.routing.abstractions.nuspec"
  2465. ]
  2466. },
  2467. "Microsoft.AspNetCore.WebUtilities/2.1.0": {
  2468. "sha512": "xBy8JGXQ3tVSYzLl/LtN3c9EeB75khFSB2Kw2HWmF+McU0Ltva7R4JBRH0Rb4LgkcjYyyJdf+09PZalQFwsT+Q==",
  2469. "type": "package",
  2470. "path": "microsoft.aspnetcore.webutilities/2.1.0",
  2471. "files": [
  2472. ".nupkg.metadata",
  2473. ".signature.p7s",
  2474. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  2475. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  2476. "microsoft.aspnetcore.webutilities.2.1.0.nupkg.sha512",
  2477. "microsoft.aspnetcore.webutilities.nuspec"
  2478. ]
  2479. },
  2480. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2481. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  2482. "type": "package",
  2483. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  2484. "files": [
  2485. ".nupkg.metadata",
  2486. ".signature.p7s",
  2487. "LICENSE.TXT",
  2488. "THIRD-PARTY-NOTICES.TXT",
  2489. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2490. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2491. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2492. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2493. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2494. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2495. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  2496. "microsoft.bcl.asyncinterfaces.nuspec",
  2497. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2498. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2499. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2500. "useSharedDesignerContext.txt",
  2501. "version.txt"
  2502. ]
  2503. },
  2504. "Microsoft.CSharp/4.0.1": {
  2505. "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  2506. "type": "package",
  2507. "path": "microsoft.csharp/4.0.1",
  2508. "files": [
  2509. ".nupkg.metadata",
  2510. ".signature.p7s",
  2511. "ThirdPartyNotices.txt",
  2512. "dotnet_library_license.txt",
  2513. "lib/MonoAndroid10/_._",
  2514. "lib/MonoTouch10/_._",
  2515. "lib/net45/_._",
  2516. "lib/netcore50/Microsoft.CSharp.dll",
  2517. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2518. "lib/portable-net45+win8+wp8+wpa81/_._",
  2519. "lib/win8/_._",
  2520. "lib/wp80/_._",
  2521. "lib/wpa81/_._",
  2522. "lib/xamarinios10/_._",
  2523. "lib/xamarinmac20/_._",
  2524. "lib/xamarintvos10/_._",
  2525. "lib/xamarinwatchos10/_._",
  2526. "microsoft.csharp.4.0.1.nupkg.sha512",
  2527. "microsoft.csharp.nuspec",
  2528. "ref/MonoAndroid10/_._",
  2529. "ref/MonoTouch10/_._",
  2530. "ref/net45/_._",
  2531. "ref/netcore50/Microsoft.CSharp.dll",
  2532. "ref/netcore50/Microsoft.CSharp.xml",
  2533. "ref/netcore50/de/Microsoft.CSharp.xml",
  2534. "ref/netcore50/es/Microsoft.CSharp.xml",
  2535. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2536. "ref/netcore50/it/Microsoft.CSharp.xml",
  2537. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2538. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2539. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2540. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2541. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2542. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2543. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2544. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2545. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2546. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2547. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2548. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2549. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2550. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2551. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2552. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2553. "ref/portable-net45+win8+wp8+wpa81/_._",
  2554. "ref/win8/_._",
  2555. "ref/wp80/_._",
  2556. "ref/wpa81/_._",
  2557. "ref/xamarinios10/_._",
  2558. "ref/xamarinmac20/_._",
  2559. "ref/xamarintvos10/_._",
  2560. "ref/xamarinwatchos10/_._"
  2561. ]
  2562. },
  2563. "Microsoft.Data.Sqlite/2.2.4": {
  2564. "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  2565. "type": "package",
  2566. "path": "microsoft.data.sqlite/2.2.4",
  2567. "files": [
  2568. ".nupkg.metadata",
  2569. ".signature.p7s",
  2570. "lib/netstandard2.0/_._",
  2571. "microsoft.data.sqlite.2.2.4.nupkg.sha512",
  2572. "microsoft.data.sqlite.nuspec"
  2573. ]
  2574. },
  2575. "Microsoft.Data.Sqlite.Core/2.2.4": {
  2576. "sha512": "69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  2577. "type": "package",
  2578. "path": "microsoft.data.sqlite.core/2.2.4",
  2579. "files": [
  2580. ".nupkg.metadata",
  2581. ".signature.p7s",
  2582. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  2583. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  2584. "microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
  2585. "microsoft.data.sqlite.core.nuspec"
  2586. ]
  2587. },
  2588. "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
  2589. "sha512": "UfMC7L+8ha05PUAfVpmMS0kb7C1BoOrWxN70706D50qWohXLYgkUsu22oS7zkd9amCPTCmhRm2z/LisN8SESgg==",
  2590. "type": "package",
  2591. "path": "microsoft.extensions.caching.abstractions/3.1.2",
  2592. "files": [
  2593. ".nupkg.metadata",
  2594. ".signature.p7s",
  2595. "Icon.png",
  2596. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  2597. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  2598. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2599. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2600. "microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512",
  2601. "microsoft.extensions.caching.abstractions.nuspec"
  2602. ]
  2603. },
  2604. "Microsoft.Extensions.Caching.Memory/3.1.2": {
  2605. "sha512": "4O/YgpVhK/ZIYteGy9LyJv+YRcTxLOe7AnMUHBj1m1U40Er1/dbMymFTH1HrRS/fkVB90un24JhG+c1qSWjjjA==",
  2606. "type": "package",
  2607. "path": "microsoft.extensions.caching.memory/3.1.2",
  2608. "files": [
  2609. ".nupkg.metadata",
  2610. ".signature.p7s",
  2611. "Icon.png",
  2612. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  2613. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  2614. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2615. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2616. "microsoft.extensions.caching.memory.3.1.2.nupkg.sha512",
  2617. "microsoft.extensions.caching.memory.nuspec"
  2618. ]
  2619. },
  2620. "Microsoft.Extensions.Configuration/3.1.9": {
  2621. "sha512": "lqdkOGNeTMKG981Q7yWGlRiFbIlsRwTlMMiybT+WOzUCFBS/wc25tZgh7Wm/uRoBbWefgvokzmnea7ZjmFedmA==",
  2622. "type": "package",
  2623. "path": "microsoft.extensions.configuration/3.1.9",
  2624. "files": [
  2625. ".nupkg.metadata",
  2626. ".signature.p7s",
  2627. "Icon.png",
  2628. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  2629. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  2630. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  2631. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  2632. "microsoft.extensions.configuration.3.1.9.nupkg.sha512",
  2633. "microsoft.extensions.configuration.nuspec"
  2634. ]
  2635. },
  2636. "Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
  2637. "sha512": "vOJxPKczaHpXeZFrxARxYwsEulhEouXc5aZGgMdkhV/iEXX9/pfjqKk76rTG+4CsJjHV+G/4eMhvOIaQMHENNA==",
  2638. "type": "package",
  2639. "path": "microsoft.extensions.configuration.abstractions/3.1.9",
  2640. "files": [
  2641. ".nupkg.metadata",
  2642. ".signature.p7s",
  2643. "Icon.png",
  2644. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  2645. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  2646. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2647. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2648. "microsoft.extensions.configuration.abstractions.3.1.9.nupkg.sha512",
  2649. "microsoft.extensions.configuration.abstractions.nuspec"
  2650. ]
  2651. },
  2652. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  2653. "sha512": "IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
  2654. "type": "package",
  2655. "path": "microsoft.extensions.configuration.binder/3.1.2",
  2656. "files": [
  2657. ".nupkg.metadata",
  2658. ".signature.p7s",
  2659. "Icon.png",
  2660. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  2661. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  2662. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  2663. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  2664. "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
  2665. "microsoft.extensions.configuration.binder.nuspec"
  2666. ]
  2667. },
  2668. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  2669. "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  2670. "type": "package",
  2671. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  2672. "files": [
  2673. ".nupkg.metadata",
  2674. ".signature.p7s",
  2675. "Icon.png",
  2676. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2677. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2678. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2679. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2680. "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
  2681. "microsoft.extensions.configuration.fileextensions.nuspec"
  2682. ]
  2683. },
  2684. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  2685. "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  2686. "type": "package",
  2687. "path": "microsoft.extensions.configuration.json/3.1.2",
  2688. "files": [
  2689. ".nupkg.metadata",
  2690. ".signature.p7s",
  2691. "Icon.png",
  2692. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
  2693. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
  2694. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  2695. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  2696. "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
  2697. "microsoft.extensions.configuration.json.nuspec"
  2698. ]
  2699. },
  2700. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  2701. "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
  2702. "type": "package",
  2703. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
  2704. "files": [
  2705. ".nupkg.metadata",
  2706. ".signature.p7s",
  2707. "Icon.png",
  2708. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2709. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2710. "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
  2711. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  2712. ]
  2713. },
  2714. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  2715. "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  2716. "type": "package",
  2717. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  2718. "files": [
  2719. ".nupkg.metadata",
  2720. ".signature.p7s",
  2721. "Icon.png",
  2722. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2723. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2724. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2725. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2726. "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
  2727. "microsoft.extensions.fileproviders.abstractions.nuspec"
  2728. ]
  2729. },
  2730. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  2731. "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  2732. "type": "package",
  2733. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  2734. "files": [
  2735. ".nupkg.metadata",
  2736. ".signature.p7s",
  2737. "Icon.png",
  2738. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
  2739. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
  2740. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  2741. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  2742. "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
  2743. "microsoft.extensions.fileproviders.physical.nuspec"
  2744. ]
  2745. },
  2746. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  2747. "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  2748. "type": "package",
  2749. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  2750. "files": [
  2751. ".nupkg.metadata",
  2752. ".signature.p7s",
  2753. "Icon.png",
  2754. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2755. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  2756. "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
  2757. "microsoft.extensions.filesystemglobbing.nuspec"
  2758. ]
  2759. },
  2760. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  2761. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  2762. "type": "package",
  2763. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  2764. "files": [
  2765. ".nupkg.metadata",
  2766. ".signature.p7s",
  2767. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2768. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2769. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  2770. "microsoft.extensions.hosting.abstractions.nuspec"
  2771. ]
  2772. },
  2773. "Microsoft.Extensions.Logging/2.1.0": {
  2774. "sha512": "kuZbZMMHb7ibzhLdn9/R1+PAAFKntlF10tOw4loB8VuQkHvSrBE6IzW1rhBLsEdmLXOgi2zFbwcXFrxzSM6ybA==",
  2775. "type": "package",
  2776. "path": "microsoft.extensions.logging/2.1.0",
  2777. "files": [
  2778. ".nupkg.metadata",
  2779. ".signature.p7s",
  2780. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2781. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2782. "microsoft.extensions.logging.2.1.0.nupkg.sha512",
  2783. "microsoft.extensions.logging.nuspec"
  2784. ]
  2785. },
  2786. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  2787. "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
  2788. "type": "package",
  2789. "path": "microsoft.extensions.logging.abstractions/3.1.2",
  2790. "files": [
  2791. ".nupkg.metadata",
  2792. ".signature.p7s",
  2793. "Icon.png",
  2794. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2795. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2796. "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
  2797. "microsoft.extensions.logging.abstractions.nuspec"
  2798. ]
  2799. },
  2800. "Microsoft.Extensions.ObjectPool/2.1.0": {
  2801. "sha512": "tIbO45cohqexTJPXBubpwluycDT+6OWy2m7PukG37XMrtQ6Zv4AnoLrgUTaCmpWihSs5RZHKvThiAJFcBlR3AA==",
  2802. "type": "package",
  2803. "path": "microsoft.extensions.objectpool/2.1.0",
  2804. "files": [
  2805. ".nupkg.metadata",
  2806. ".signature.p7s",
  2807. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  2808. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  2809. "microsoft.extensions.objectpool.2.1.0.nupkg.sha512",
  2810. "microsoft.extensions.objectpool.nuspec"
  2811. ]
  2812. },
  2813. "Microsoft.Extensions.Options/3.1.2": {
  2814. "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
  2815. "type": "package",
  2816. "path": "microsoft.extensions.options/3.1.2",
  2817. "files": [
  2818. ".nupkg.metadata",
  2819. ".signature.p7s",
  2820. "Icon.png",
  2821. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  2822. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  2823. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2824. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2825. "microsoft.extensions.options.3.1.2.nupkg.sha512",
  2826. "microsoft.extensions.options.nuspec"
  2827. ]
  2828. },
  2829. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
  2830. "sha512": "NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
  2831. "type": "package",
  2832. "path": "microsoft.extensions.options.configurationextensions/3.1.2",
  2833. "files": [
  2834. ".nupkg.metadata",
  2835. ".signature.p7s",
  2836. "Icon.png",
  2837. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  2838. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  2839. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  2840. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  2841. "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
  2842. "microsoft.extensions.options.configurationextensions.nuspec"
  2843. ]
  2844. },
  2845. "Microsoft.Extensions.Primitives/3.1.9": {
  2846. "sha512": "IrHecH0eGG7/XoeEtv++oLg/sJHRNyeCqlA9RhAo6ig4GpOTjtDr32sBMYuuLtUq8ALahneWkrOzoBAwJ4L4iA==",
  2847. "type": "package",
  2848. "path": "microsoft.extensions.primitives/3.1.9",
  2849. "files": [
  2850. ".nupkg.metadata",
  2851. ".signature.p7s",
  2852. "Icon.png",
  2853. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2854. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2855. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2856. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2857. "microsoft.extensions.primitives.3.1.9.nupkg.sha512",
  2858. "microsoft.extensions.primitives.nuspec"
  2859. ]
  2860. },
  2861. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  2862. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  2863. "type": "package",
  2864. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  2865. "files": [
  2866. ".nupkg.metadata",
  2867. ".signature.p7s",
  2868. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2869. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2870. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  2871. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  2872. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  2873. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  2874. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  2875. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  2876. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2877. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2878. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  2879. "microsoft.identitymodel.jsonwebtokens.nuspec"
  2880. ]
  2881. },
  2882. "Microsoft.IdentityModel.Logging/5.6.0": {
  2883. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  2884. "type": "package",
  2885. "path": "microsoft.identitymodel.logging/5.6.0",
  2886. "files": [
  2887. ".nupkg.metadata",
  2888. ".signature.p7s",
  2889. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  2890. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  2891. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  2892. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  2893. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  2894. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  2895. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  2896. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  2897. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  2898. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  2899. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  2900. "microsoft.identitymodel.logging.nuspec"
  2901. ]
  2902. },
  2903. "Microsoft.IdentityModel.Tokens/5.6.0": {
  2904. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  2905. "type": "package",
  2906. "path": "microsoft.identitymodel.tokens/5.6.0",
  2907. "files": [
  2908. ".nupkg.metadata",
  2909. ".signature.p7s",
  2910. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  2911. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  2912. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  2913. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  2914. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  2915. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  2916. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  2917. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  2918. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  2919. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  2920. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  2921. "microsoft.identitymodel.tokens.nuspec"
  2922. ]
  2923. },
  2924. "Microsoft.Net.Http.Headers/2.1.0": {
  2925. "sha512": "c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==",
  2926. "type": "package",
  2927. "path": "microsoft.net.http.headers/2.1.0",
  2928. "files": [
  2929. ".nupkg.metadata",
  2930. ".signature.p7s",
  2931. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  2932. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  2933. "microsoft.net.http.headers.2.1.0.nupkg.sha512",
  2934. "microsoft.net.http.headers.nuspec"
  2935. ]
  2936. },
  2937. "Microsoft.NETCore.Jit/2.0.8": {
  2938. "sha512": "webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  2939. "type": "package",
  2940. "path": "microsoft.netcore.jit/2.0.8",
  2941. "files": [
  2942. ".nupkg.metadata",
  2943. ".signature.p7s",
  2944. "LICENSE.TXT",
  2945. "THIRD-PARTY-NOTICES.TXT",
  2946. "microsoft.netcore.jit.2.0.8.nupkg.sha512",
  2947. "microsoft.netcore.jit.nuspec",
  2948. "runtime.json",
  2949. "version.txt"
  2950. ]
  2951. },
  2952. "Microsoft.NETCore.Platforms/1.1.0": {
  2953. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  2954. "type": "package",
  2955. "path": "microsoft.netcore.platforms/1.1.0",
  2956. "files": [
  2957. ".nupkg.metadata",
  2958. ".signature.p7s",
  2959. "ThirdPartyNotices.txt",
  2960. "dotnet_library_license.txt",
  2961. "lib/netstandard1.0/_._",
  2962. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  2963. "microsoft.netcore.platforms.nuspec",
  2964. "runtime.json"
  2965. ]
  2966. },
  2967. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  2968. "sha512": "F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  2969. "type": "package",
  2970. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  2971. "files": [
  2972. ".nupkg.metadata",
  2973. ".signature.p7s",
  2974. "LICENSE.TXT",
  2975. "THIRD-PARTY-NOTICES.TXT",
  2976. "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512",
  2977. "microsoft.netcore.runtime.coreclr.nuspec",
  2978. "ref/netstandard1.0/_._",
  2979. "runtime.json",
  2980. "version.txt"
  2981. ]
  2982. },
  2983. "Microsoft.NETCore.Targets/1.1.0": {
  2984. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2985. "type": "package",
  2986. "path": "microsoft.netcore.targets/1.1.0",
  2987. "files": [
  2988. ".nupkg.metadata",
  2989. ".signature.p7s",
  2990. "ThirdPartyNotices.txt",
  2991. "dotnet_library_license.txt",
  2992. "lib/netstandard1.0/_._",
  2993. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2994. "microsoft.netcore.targets.nuspec",
  2995. "runtime.json"
  2996. ]
  2997. },
  2998. "Microsoft.Win32.Primitives/4.3.0": {
  2999. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3000. "type": "package",
  3001. "path": "microsoft.win32.primitives/4.3.0",
  3002. "files": [
  3003. ".nupkg.metadata",
  3004. ".signature.p7s",
  3005. "ThirdPartyNotices.txt",
  3006. "dotnet_library_license.txt",
  3007. "lib/MonoAndroid10/_._",
  3008. "lib/MonoTouch10/_._",
  3009. "lib/net46/Microsoft.Win32.Primitives.dll",
  3010. "lib/xamarinios10/_._",
  3011. "lib/xamarinmac20/_._",
  3012. "lib/xamarintvos10/_._",
  3013. "lib/xamarinwatchos10/_._",
  3014. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3015. "microsoft.win32.primitives.nuspec",
  3016. "ref/MonoAndroid10/_._",
  3017. "ref/MonoTouch10/_._",
  3018. "ref/net46/Microsoft.Win32.Primitives.dll",
  3019. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3020. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3021. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3022. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3023. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3024. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3025. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3026. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3027. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3028. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3029. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3030. "ref/xamarinios10/_._",
  3031. "ref/xamarinmac20/_._",
  3032. "ref/xamarintvos10/_._",
  3033. "ref/xamarinwatchos10/_._"
  3034. ]
  3035. },
  3036. "Microsoft.Win32.Registry/4.4.0": {
  3037. "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
  3038. "type": "package",
  3039. "path": "microsoft.win32.registry/4.4.0",
  3040. "files": [
  3041. ".nupkg.metadata",
  3042. ".signature.p7s",
  3043. "LICENSE.TXT",
  3044. "THIRD-PARTY-NOTICES.TXT",
  3045. "lib/net46/Microsoft.Win32.Registry.dll",
  3046. "lib/net461/Microsoft.Win32.Registry.dll",
  3047. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3048. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3049. "microsoft.win32.registry.4.4.0.nupkg.sha512",
  3050. "microsoft.win32.registry.nuspec",
  3051. "ref/net46/Microsoft.Win32.Registry.dll",
  3052. "ref/net461/Microsoft.Win32.Registry.dll",
  3053. "ref/net461/Microsoft.Win32.Registry.xml",
  3054. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3055. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3056. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3057. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3058. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3059. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3060. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3061. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3062. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3063. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3064. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3065. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3066. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3067. "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  3068. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3069. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3070. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  3071. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3072. "useSharedDesignerContext.txt",
  3073. "version.txt"
  3074. ]
  3075. },
  3076. "MySql.Data/8.0.19": {
  3077. "sha512": "zPFSg8rW3PcFIn27d0lEHQ/XWQhBzGIgKYQYFZN8aHLlpen5D6nz3/wb54V9ZRH3zkWlIWQ7FfxqbQdl3vizjQ==",
  3078. "type": "package",
  3079. "path": "mysql.data/8.0.19",
  3080. "files": [
  3081. ".nupkg.metadata",
  3082. ".signature.p7s",
  3083. "lib/net452/MySql.Data.dll",
  3084. "lib/net452/MySql.Data.xml",
  3085. "lib/net452/Ubiety.Dns.Core.dll",
  3086. "lib/net48/MySql.Data.dll",
  3087. "lib/net48/MySql.Data.xml",
  3088. "lib/net48/Ubiety.Dns.Core.dll",
  3089. "lib/netstandard2.0/MySql.Data.dll",
  3090. "lib/netstandard2.0/MySql.Data.xml",
  3091. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  3092. "lib/netstandard2.1/MySql.Data.dll",
  3093. "lib/netstandard2.1/MySql.Data.xml",
  3094. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  3095. "mysql.data.8.0.19.nupkg.sha512",
  3096. "mysql.data.nuspec"
  3097. ]
  3098. },
  3099. "NETStandard.Library/1.6.1": {
  3100. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  3101. "type": "package",
  3102. "path": "netstandard.library/1.6.1",
  3103. "files": [
  3104. ".nupkg.metadata",
  3105. ".signature.p7s",
  3106. "ThirdPartyNotices.txt",
  3107. "dotnet_library_license.txt",
  3108. "netstandard.library.1.6.1.nupkg.sha512",
  3109. "netstandard.library.nuspec"
  3110. ]
  3111. },
  3112. "Newtonsoft.Json/12.0.3": {
  3113. "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
  3114. "type": "package",
  3115. "path": "newtonsoft.json/12.0.3",
  3116. "files": [
  3117. ".nupkg.metadata",
  3118. ".signature.p7s",
  3119. "LICENSE.md",
  3120. "lib/net20/Newtonsoft.Json.dll",
  3121. "lib/net20/Newtonsoft.Json.xml",
  3122. "lib/net35/Newtonsoft.Json.dll",
  3123. "lib/net35/Newtonsoft.Json.xml",
  3124. "lib/net40/Newtonsoft.Json.dll",
  3125. "lib/net40/Newtonsoft.Json.xml",
  3126. "lib/net45/Newtonsoft.Json.dll",
  3127. "lib/net45/Newtonsoft.Json.xml",
  3128. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3129. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3130. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3131. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3132. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3133. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3134. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3135. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3136. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3137. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3138. "newtonsoft.json.12.0.3.nupkg.sha512",
  3139. "newtonsoft.json.nuspec",
  3140. "packageIcon.png"
  3141. ]
  3142. },
  3143. "NLog/4.7.5": {
  3144. "sha512": "1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  3145. "type": "package",
  3146. "path": "nlog/4.7.5",
  3147. "files": [
  3148. ".nupkg.metadata",
  3149. ".signature.p7s",
  3150. "lib/monoandroid44/NLog.dll",
  3151. "lib/monoandroid44/NLog.xml",
  3152. "lib/net35/NLog.dll",
  3153. "lib/net35/NLog.xml",
  3154. "lib/net40-client/NLog.dll",
  3155. "lib/net40-client/NLog.xml",
  3156. "lib/net45/NLog.dll",
  3157. "lib/net45/NLog.xml",
  3158. "lib/netstandard1.3/NLog.dll",
  3159. "lib/netstandard1.3/NLog.xml",
  3160. "lib/netstandard1.5/NLog.dll",
  3161. "lib/netstandard1.5/NLog.xml",
  3162. "lib/netstandard2.0/NLog.dll",
  3163. "lib/netstandard2.0/NLog.xml",
  3164. "lib/sl4/NLog.dll",
  3165. "lib/sl4/NLog.xml",
  3166. "lib/sl5/NLog.dll",
  3167. "lib/sl5/NLog.xml",
  3168. "lib/wp8/NLog.dll",
  3169. "lib/wp8/NLog.xml",
  3170. "lib/xamarinios10/NLog.dll",
  3171. "lib/xamarinios10/NLog.xml",
  3172. "nlog.4.7.5.nupkg.sha512",
  3173. "nlog.nuspec"
  3174. ]
  3175. },
  3176. "NLog.Extensions.Logging/1.6.4": {
  3177. "sha512": "ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  3178. "type": "package",
  3179. "path": "nlog.extensions.logging/1.6.4",
  3180. "files": [
  3181. ".nupkg.metadata",
  3182. ".signature.p7s",
  3183. "lib/net451/NLog.Extensions.Logging.dll",
  3184. "lib/net451/NLog.Extensions.Logging.xml",
  3185. "lib/net461/NLog.Extensions.Logging.dll",
  3186. "lib/net461/NLog.Extensions.Logging.xml",
  3187. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  3188. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  3189. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  3190. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  3191. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  3192. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  3193. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  3194. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  3195. "nlog.extensions.logging.1.6.4.nupkg.sha512",
  3196. "nlog.extensions.logging.nuspec"
  3197. ]
  3198. },
  3199. "NLog.Web.AspNetCore/4.9.3": {
  3200. "sha512": "v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  3201. "type": "package",
  3202. "path": "nlog.web.aspnetcore/4.9.3",
  3203. "files": [
  3204. ".nupkg.metadata",
  3205. ".signature.p7s",
  3206. "lib/net451/NLog.Web.AspNetCore.dll",
  3207. "lib/net451/NLog.Web.AspNetCore.xml",
  3208. "lib/net461/NLog.Web.AspNetCore.dll",
  3209. "lib/net461/NLog.Web.AspNetCore.xml",
  3210. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  3211. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  3212. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  3213. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  3214. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  3215. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  3216. "nlog.web.aspnetcore.4.9.3.nupkg.sha512",
  3217. "nlog.web.aspnetcore.nuspec"
  3218. ]
  3219. },
  3220. "Npgsql/3.2.7": {
  3221. "sha512": "CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  3222. "type": "package",
  3223. "path": "npgsql/3.2.7",
  3224. "files": [
  3225. ".nupkg.metadata",
  3226. ".signature.p7s",
  3227. "lib/net45/Npgsql.dll",
  3228. "lib/net45/Npgsql.xml",
  3229. "lib/net451/Npgsql.dll",
  3230. "lib/net451/Npgsql.xml",
  3231. "lib/netstandard1.3/Npgsql.dll",
  3232. "lib/netstandard1.3/Npgsql.xml",
  3233. "lib/netstandard2.0/Npgsql.dll",
  3234. "lib/netstandard2.0/Npgsql.xml",
  3235. "npgsql.3.2.7.nupkg.sha512",
  3236. "npgsql.nuspec"
  3237. ]
  3238. },
  3239. "Oracle.ManagedDataAccess.Core/2.18.3": {
  3240. "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  3241. "type": "package",
  3242. "path": "oracle.manageddataaccess.core/2.18.3",
  3243. "files": [
  3244. ".nupkg.metadata",
  3245. ".signature.p7s",
  3246. "info.txt",
  3247. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll",
  3248. "oracle.manageddataaccess.core.2.18.3.nupkg.sha512",
  3249. "oracle.manageddataaccess.core.nuspec",
  3250. "readme.txt"
  3251. ]
  3252. },
  3253. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3254. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  3255. "type": "package",
  3256. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3257. "files": [
  3258. ".nupkg.metadata",
  3259. ".signature.p7s",
  3260. "ThirdPartyNotices.txt",
  3261. "dotnet_library_license.txt",
  3262. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3263. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3264. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3265. ]
  3266. },
  3267. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3268. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  3269. "type": "package",
  3270. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3271. "files": [
  3272. ".nupkg.metadata",
  3273. ".signature.p7s",
  3274. "ThirdPartyNotices.txt",
  3275. "dotnet_library_license.txt",
  3276. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3277. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3278. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3279. ]
  3280. },
  3281. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3282. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  3283. "type": "package",
  3284. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3285. "files": [
  3286. ".nupkg.metadata",
  3287. ".signature.p7s",
  3288. "ThirdPartyNotices.txt",
  3289. "dotnet_library_license.txt",
  3290. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3291. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3292. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3293. ]
  3294. },
  3295. "runtime.native.System/4.3.0": {
  3296. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3297. "type": "package",
  3298. "path": "runtime.native.system/4.3.0",
  3299. "files": [
  3300. ".nupkg.metadata",
  3301. ".signature.p7s",
  3302. "ThirdPartyNotices.txt",
  3303. "dotnet_library_license.txt",
  3304. "lib/netstandard1.0/_._",
  3305. "runtime.native.system.4.3.0.nupkg.sha512",
  3306. "runtime.native.system.nuspec"
  3307. ]
  3308. },
  3309. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3310. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  3311. "type": "package",
  3312. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  3313. "files": [
  3314. ".nupkg.metadata",
  3315. ".signature.p7s",
  3316. "LICENSE.TXT",
  3317. "THIRD-PARTY-NOTICES.TXT",
  3318. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3319. "runtime.native.system.data.sqlclient.sni.nuspec",
  3320. "useSharedDesignerContext.txt",
  3321. "version.txt"
  3322. ]
  3323. },
  3324. "runtime.native.System.IO.Compression/4.3.0": {
  3325. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  3326. "type": "package",
  3327. "path": "runtime.native.system.io.compression/4.3.0",
  3328. "files": [
  3329. ".nupkg.metadata",
  3330. ".signature.p7s",
  3331. "ThirdPartyNotices.txt",
  3332. "dotnet_library_license.txt",
  3333. "lib/netstandard1.0/_._",
  3334. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  3335. "runtime.native.system.io.compression.nuspec"
  3336. ]
  3337. },
  3338. "runtime.native.System.Net.Http/4.3.0": {
  3339. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3340. "type": "package",
  3341. "path": "runtime.native.system.net.http/4.3.0",
  3342. "files": [
  3343. ".nupkg.metadata",
  3344. ".signature.p7s",
  3345. "ThirdPartyNotices.txt",
  3346. "dotnet_library_license.txt",
  3347. "lib/netstandard1.0/_._",
  3348. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3349. "runtime.native.system.net.http.nuspec"
  3350. ]
  3351. },
  3352. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3353. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3354. "type": "package",
  3355. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3356. "files": [
  3357. ".nupkg.metadata",
  3358. ".signature.p7s",
  3359. "ThirdPartyNotices.txt",
  3360. "dotnet_library_license.txt",
  3361. "lib/netstandard1.0/_._",
  3362. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3363. "runtime.native.system.security.cryptography.apple.nuspec"
  3364. ]
  3365. },
  3366. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3367. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  3368. "type": "package",
  3369. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  3370. "files": [
  3371. ".nupkg.metadata",
  3372. ".signature.p7s",
  3373. "ThirdPartyNotices.txt",
  3374. "dotnet_library_license.txt",
  3375. "lib/netstandard1.0/_._",
  3376. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3377. "runtime.native.system.security.cryptography.openssl.nuspec"
  3378. ]
  3379. },
  3380. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3381. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  3382. "type": "package",
  3383. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3384. "files": [
  3385. ".nupkg.metadata",
  3386. ".signature.p7s",
  3387. "ThirdPartyNotices.txt",
  3388. "dotnet_library_license.txt",
  3389. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3390. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3391. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3392. ]
  3393. },
  3394. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3395. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  3396. "type": "package",
  3397. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3398. "files": [
  3399. ".nupkg.metadata",
  3400. ".signature.p7s",
  3401. "ThirdPartyNotices.txt",
  3402. "dotnet_library_license.txt",
  3403. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3404. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3405. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3406. ]
  3407. },
  3408. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3409. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  3410. "type": "package",
  3411. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  3412. "files": [
  3413. ".nupkg.metadata",
  3414. ".signature.p7s",
  3415. "ThirdPartyNotices.txt",
  3416. "dotnet_library_license.txt",
  3417. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3418. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  3419. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  3420. ]
  3421. },
  3422. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3423. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  3424. "type": "package",
  3425. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3426. "files": [
  3427. ".nupkg.metadata",
  3428. ".signature.p7s",
  3429. "ThirdPartyNotices.txt",
  3430. "dotnet_library_license.txt",
  3431. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3432. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3433. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  3434. ]
  3435. },
  3436. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3437. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  3438. "type": "package",
  3439. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3440. "files": [
  3441. ".nupkg.metadata",
  3442. ".signature.p7s",
  3443. "ThirdPartyNotices.txt",
  3444. "dotnet_library_license.txt",
  3445. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3446. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3447. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3448. ]
  3449. },
  3450. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3451. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  3452. "type": "package",
  3453. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3454. "files": [
  3455. ".nupkg.metadata",
  3456. ".signature.p7s",
  3457. "ThirdPartyNotices.txt",
  3458. "dotnet_library_license.txt",
  3459. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3460. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3461. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3462. ]
  3463. },
  3464. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3465. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  3466. "type": "package",
  3467. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3468. "files": [
  3469. ".nupkg.metadata",
  3470. ".signature.p7s",
  3471. "ThirdPartyNotices.txt",
  3472. "dotnet_library_license.txt",
  3473. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3474. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3475. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3476. ]
  3477. },
  3478. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3479. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  3480. "type": "package",
  3481. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3482. "files": [
  3483. ".nupkg.metadata",
  3484. ".signature.p7s",
  3485. "ThirdPartyNotices.txt",
  3486. "dotnet_library_license.txt",
  3487. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3488. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3489. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3490. ]
  3491. },
  3492. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3493. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  3494. "type": "package",
  3495. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  3496. "files": [
  3497. ".nupkg.metadata",
  3498. ".signature.p7s",
  3499. "ThirdPartyNotices.txt",
  3500. "dotnet_library_license.txt",
  3501. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3502. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  3503. "runtimes/win-arm64/native/sni.dll",
  3504. "useSharedDesignerContext.txt",
  3505. "version.txt"
  3506. ]
  3507. },
  3508. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3509. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  3510. "type": "package",
  3511. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  3512. "files": [
  3513. ".nupkg.metadata",
  3514. ".signature.p7s",
  3515. "ThirdPartyNotices.txt",
  3516. "dotnet_library_license.txt",
  3517. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3518. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  3519. "runtimes/win-x64/native/sni.dll",
  3520. "useSharedDesignerContext.txt",
  3521. "version.txt"
  3522. ]
  3523. },
  3524. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3525. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  3526. "type": "package",
  3527. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  3528. "files": [
  3529. ".nupkg.metadata",
  3530. ".signature.p7s",
  3531. "ThirdPartyNotices.txt",
  3532. "dotnet_library_license.txt",
  3533. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3534. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  3535. "runtimes/win-x86/native/sni.dll",
  3536. "useSharedDesignerContext.txt",
  3537. "version.txt"
  3538. ]
  3539. },
  3540. "SQLitePCLRaw.bundle_green/1.1.12": {
  3541. "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  3542. "type": "package",
  3543. "path": "sqlitepclraw.bundle_green/1.1.12",
  3544. "files": [
  3545. ".nupkg.metadata",
  3546. ".signature.p7s",
  3547. "build/wp8/SQLitePCLRaw.bundle_green.targets",
  3548. "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
  3549. "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
  3550. "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
  3551. "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
  3552. "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
  3553. "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
  3554. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
  3555. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
  3556. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  3557. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3558. "lib/net35/SQLitePCLRaw.batteries_green.dll",
  3559. "lib/net35/SQLitePCLRaw.batteries_v2.dll",
  3560. "lib/net40/SQLitePCLRaw.batteries_green.dll",
  3561. "lib/net40/SQLitePCLRaw.batteries_v2.dll",
  3562. "lib/net45/SQLitePCLRaw.batteries_green.dll",
  3563. "lib/net45/SQLitePCLRaw.batteries_v2.dll",
  3564. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
  3565. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
  3566. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
  3567. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
  3568. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  3569. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3570. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  3571. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3572. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  3573. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3574. "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
  3575. "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
  3576. "lib/win8/SQLitePCLRaw.batteries_green.dll",
  3577. "lib/win8/SQLitePCLRaw.batteries_v2.dll",
  3578. "lib/win81/SQLitePCLRaw.batteries_green.dll",
  3579. "lib/win81/SQLitePCLRaw.batteries_v2.dll",
  3580. "lib/wp8/_._",
  3581. "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
  3582. "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
  3583. "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
  3584. "sqlitepclraw.bundle_green.nuspec"
  3585. ]
  3586. },
  3587. "SQLitePCLRaw.core/1.1.12": {
  3588. "sha512": "S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  3589. "type": "package",
  3590. "path": "sqlitepclraw.core/1.1.12",
  3591. "files": [
  3592. ".nupkg.metadata",
  3593. ".signature.p7s",
  3594. "lib/MonoAndroid/SQLitePCLRaw.core.dll",
  3595. "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
  3596. "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
  3597. "lib/net35/SQLitePCLRaw.core.dll",
  3598. "lib/net40/SQLitePCLRaw.core.dll",
  3599. "lib/net45/SQLitePCLRaw.core.dll",
  3600. "lib/netstandard1.0/SQLitePCLRaw.core.dll",
  3601. "lib/netstandard1.1/SQLitePCLRaw.core.dll",
  3602. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  3603. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  3604. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  3605. "lib/uap10.0/SQLitePCLRaw.core.dll",
  3606. "lib/win8/SQLitePCLRaw.core.dll",
  3607. "lib/win81/SQLitePCLRaw.core.dll",
  3608. "lib/wpa81/SQLitePCLRaw.core.dll",
  3609. "sqlitepclraw.core.1.1.12.nupkg.sha512",
  3610. "sqlitepclraw.core.nuspec"
  3611. ]
  3612. },
  3613. "sqlSugarCore/5.0.0.18": {
  3614. "sha512": "AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  3615. "type": "package",
  3616. "path": "sqlsugarcore/5.0.0.18",
  3617. "files": [
  3618. ".nupkg.metadata",
  3619. ".signature.p7s",
  3620. "lib/netstandard2.0/SqlSugar.dll",
  3621. "sqlsugarcore.5.0.0.18.nupkg.sha512",
  3622. "sqlsugarcore.nuspec"
  3623. ]
  3624. },
  3625. "SSH.NET/2016.1.0": {
  3626. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  3627. "type": "package",
  3628. "path": "ssh.net/2016.1.0",
  3629. "files": [
  3630. ".nupkg.metadata",
  3631. ".signature.p7s",
  3632. "lib/net35/Renci.SshNet.dll",
  3633. "lib/net35/Renci.SshNet.xml",
  3634. "lib/net40/Renci.SshNet.dll",
  3635. "lib/net40/Renci.SshNet.xml",
  3636. "lib/netstandard1.3/Renci.SshNet.dll",
  3637. "lib/netstandard1.3/Renci.SshNet.xml",
  3638. "lib/sl4/Renci.SshNet.dll",
  3639. "lib/sl4/Renci.SshNet.xml",
  3640. "lib/sl5/Renci.SshNet.dll",
  3641. "lib/sl5/Renci.SshNet.xml",
  3642. "lib/uap10/Renci.SshNet.dll",
  3643. "lib/uap10/Renci.SshNet.xml",
  3644. "lib/wp71/Renci.SshNet.dll",
  3645. "lib/wp71/Renci.SshNet.xml",
  3646. "lib/wp8/Renci.SshNet.dll",
  3647. "lib/wp8/Renci.SshNet.xml",
  3648. "ssh.net.2016.1.0.nupkg.sha512",
  3649. "ssh.net.nuspec"
  3650. ]
  3651. },
  3652. "SshNet.Security.Cryptography/1.2.0": {
  3653. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  3654. "type": "package",
  3655. "path": "sshnet.security.cryptography/1.2.0",
  3656. "files": [
  3657. ".nupkg.metadata",
  3658. ".signature.p7s",
  3659. "lib/net20/SshNet.Security.Cryptography.dll",
  3660. "lib/net20/SshNet.Security.Cryptography.xml",
  3661. "lib/net40/SshNet.Security.Cryptography.dll",
  3662. "lib/net40/SshNet.Security.Cryptography.xml",
  3663. "lib/net45/SshNet.Security.Cryptography.dll",
  3664. "lib/net45/SshNet.Security.Cryptography.xml",
  3665. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  3666. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  3667. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  3668. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  3669. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  3670. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  3671. "lib/sl4/SshNet.Security.Cryptography.dll",
  3672. "lib/sl4/SshNet.Security.Cryptography.xml",
  3673. "lib/sl5/SshNet.Security.Cryptography.dll",
  3674. "lib/sl5/SshNet.Security.Cryptography.xml",
  3675. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  3676. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  3677. "lib/wp71/SshNet.Security.Cryptography.dll",
  3678. "lib/wp71/SshNet.Security.Cryptography.xml",
  3679. "lib/wp8/SshNet.Security.Cryptography.dll",
  3680. "lib/wp8/SshNet.Security.Cryptography.xml",
  3681. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3682. "sshnet.security.cryptography.nuspec"
  3683. ]
  3684. },
  3685. "System.AppContext/4.3.0": {
  3686. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  3687. "type": "package",
  3688. "path": "system.appcontext/4.3.0",
  3689. "files": [
  3690. ".nupkg.metadata",
  3691. ".signature.p7s",
  3692. "ThirdPartyNotices.txt",
  3693. "dotnet_library_license.txt",
  3694. "lib/MonoAndroid10/_._",
  3695. "lib/MonoTouch10/_._",
  3696. "lib/net46/System.AppContext.dll",
  3697. "lib/net463/System.AppContext.dll",
  3698. "lib/netcore50/System.AppContext.dll",
  3699. "lib/netstandard1.6/System.AppContext.dll",
  3700. "lib/xamarinios10/_._",
  3701. "lib/xamarinmac20/_._",
  3702. "lib/xamarintvos10/_._",
  3703. "lib/xamarinwatchos10/_._",
  3704. "ref/MonoAndroid10/_._",
  3705. "ref/MonoTouch10/_._",
  3706. "ref/net46/System.AppContext.dll",
  3707. "ref/net463/System.AppContext.dll",
  3708. "ref/netstandard/_._",
  3709. "ref/netstandard1.3/System.AppContext.dll",
  3710. "ref/netstandard1.3/System.AppContext.xml",
  3711. "ref/netstandard1.3/de/System.AppContext.xml",
  3712. "ref/netstandard1.3/es/System.AppContext.xml",
  3713. "ref/netstandard1.3/fr/System.AppContext.xml",
  3714. "ref/netstandard1.3/it/System.AppContext.xml",
  3715. "ref/netstandard1.3/ja/System.AppContext.xml",
  3716. "ref/netstandard1.3/ko/System.AppContext.xml",
  3717. "ref/netstandard1.3/ru/System.AppContext.xml",
  3718. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3719. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3720. "ref/netstandard1.6/System.AppContext.dll",
  3721. "ref/netstandard1.6/System.AppContext.xml",
  3722. "ref/netstandard1.6/de/System.AppContext.xml",
  3723. "ref/netstandard1.6/es/System.AppContext.xml",
  3724. "ref/netstandard1.6/fr/System.AppContext.xml",
  3725. "ref/netstandard1.6/it/System.AppContext.xml",
  3726. "ref/netstandard1.6/ja/System.AppContext.xml",
  3727. "ref/netstandard1.6/ko/System.AppContext.xml",
  3728. "ref/netstandard1.6/ru/System.AppContext.xml",
  3729. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3730. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3731. "ref/xamarinios10/_._",
  3732. "ref/xamarinmac20/_._",
  3733. "ref/xamarintvos10/_._",
  3734. "ref/xamarinwatchos10/_._",
  3735. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3736. "system.appcontext.4.3.0.nupkg.sha512",
  3737. "system.appcontext.nuspec"
  3738. ]
  3739. },
  3740. "System.Buffers/4.5.0": {
  3741. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  3742. "type": "package",
  3743. "path": "system.buffers/4.5.0",
  3744. "files": [
  3745. ".nupkg.metadata",
  3746. ".signature.p7s",
  3747. "LICENSE.TXT",
  3748. "THIRD-PARTY-NOTICES.TXT",
  3749. "lib/netcoreapp2.0/_._",
  3750. "lib/netstandard1.1/System.Buffers.dll",
  3751. "lib/netstandard1.1/System.Buffers.xml",
  3752. "lib/netstandard2.0/System.Buffers.dll",
  3753. "lib/netstandard2.0/System.Buffers.xml",
  3754. "lib/uap10.0.16299/_._",
  3755. "ref/net45/System.Buffers.dll",
  3756. "ref/net45/System.Buffers.xml",
  3757. "ref/netcoreapp2.0/_._",
  3758. "ref/netstandard1.1/System.Buffers.dll",
  3759. "ref/netstandard1.1/System.Buffers.xml",
  3760. "ref/netstandard2.0/System.Buffers.dll",
  3761. "ref/netstandard2.0/System.Buffers.xml",
  3762. "ref/uap10.0.16299/_._",
  3763. "system.buffers.4.5.0.nupkg.sha512",
  3764. "system.buffers.nuspec",
  3765. "useSharedDesignerContext.txt",
  3766. "version.txt"
  3767. ]
  3768. },
  3769. "System.Collections/4.3.0": {
  3770. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3771. "type": "package",
  3772. "path": "system.collections/4.3.0",
  3773. "files": [
  3774. ".nupkg.metadata",
  3775. ".signature.p7s",
  3776. "ThirdPartyNotices.txt",
  3777. "dotnet_library_license.txt",
  3778. "lib/MonoAndroid10/_._",
  3779. "lib/MonoTouch10/_._",
  3780. "lib/net45/_._",
  3781. "lib/portable-net45+win8+wp8+wpa81/_._",
  3782. "lib/win8/_._",
  3783. "lib/wp80/_._",
  3784. "lib/wpa81/_._",
  3785. "lib/xamarinios10/_._",
  3786. "lib/xamarinmac20/_._",
  3787. "lib/xamarintvos10/_._",
  3788. "lib/xamarinwatchos10/_._",
  3789. "ref/MonoAndroid10/_._",
  3790. "ref/MonoTouch10/_._",
  3791. "ref/net45/_._",
  3792. "ref/netcore50/System.Collections.dll",
  3793. "ref/netcore50/System.Collections.xml",
  3794. "ref/netcore50/de/System.Collections.xml",
  3795. "ref/netcore50/es/System.Collections.xml",
  3796. "ref/netcore50/fr/System.Collections.xml",
  3797. "ref/netcore50/it/System.Collections.xml",
  3798. "ref/netcore50/ja/System.Collections.xml",
  3799. "ref/netcore50/ko/System.Collections.xml",
  3800. "ref/netcore50/ru/System.Collections.xml",
  3801. "ref/netcore50/zh-hans/System.Collections.xml",
  3802. "ref/netcore50/zh-hant/System.Collections.xml",
  3803. "ref/netstandard1.0/System.Collections.dll",
  3804. "ref/netstandard1.0/System.Collections.xml",
  3805. "ref/netstandard1.0/de/System.Collections.xml",
  3806. "ref/netstandard1.0/es/System.Collections.xml",
  3807. "ref/netstandard1.0/fr/System.Collections.xml",
  3808. "ref/netstandard1.0/it/System.Collections.xml",
  3809. "ref/netstandard1.0/ja/System.Collections.xml",
  3810. "ref/netstandard1.0/ko/System.Collections.xml",
  3811. "ref/netstandard1.0/ru/System.Collections.xml",
  3812. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3813. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3814. "ref/netstandard1.3/System.Collections.dll",
  3815. "ref/netstandard1.3/System.Collections.xml",
  3816. "ref/netstandard1.3/de/System.Collections.xml",
  3817. "ref/netstandard1.3/es/System.Collections.xml",
  3818. "ref/netstandard1.3/fr/System.Collections.xml",
  3819. "ref/netstandard1.3/it/System.Collections.xml",
  3820. "ref/netstandard1.3/ja/System.Collections.xml",
  3821. "ref/netstandard1.3/ko/System.Collections.xml",
  3822. "ref/netstandard1.3/ru/System.Collections.xml",
  3823. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3824. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3825. "ref/portable-net45+win8+wp8+wpa81/_._",
  3826. "ref/win8/_._",
  3827. "ref/wp80/_._",
  3828. "ref/wpa81/_._",
  3829. "ref/xamarinios10/_._",
  3830. "ref/xamarinmac20/_._",
  3831. "ref/xamarintvos10/_._",
  3832. "ref/xamarinwatchos10/_._",
  3833. "system.collections.4.3.0.nupkg.sha512",
  3834. "system.collections.nuspec"
  3835. ]
  3836. },
  3837. "System.Collections.Concurrent/4.3.0": {
  3838. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3839. "type": "package",
  3840. "path": "system.collections.concurrent/4.3.0",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "ThirdPartyNotices.txt",
  3845. "dotnet_library_license.txt",
  3846. "lib/MonoAndroid10/_._",
  3847. "lib/MonoTouch10/_._",
  3848. "lib/net45/_._",
  3849. "lib/netcore50/System.Collections.Concurrent.dll",
  3850. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3851. "lib/portable-net45+win8+wpa81/_._",
  3852. "lib/win8/_._",
  3853. "lib/wpa81/_._",
  3854. "lib/xamarinios10/_._",
  3855. "lib/xamarinmac20/_._",
  3856. "lib/xamarintvos10/_._",
  3857. "lib/xamarinwatchos10/_._",
  3858. "ref/MonoAndroid10/_._",
  3859. "ref/MonoTouch10/_._",
  3860. "ref/net45/_._",
  3861. "ref/netcore50/System.Collections.Concurrent.dll",
  3862. "ref/netcore50/System.Collections.Concurrent.xml",
  3863. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3864. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3865. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3866. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3867. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3868. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3869. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3870. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3871. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3872. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3873. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3874. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3875. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3876. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3877. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3878. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3879. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3880. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3881. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3882. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3883. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3884. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3885. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3886. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3887. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3888. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3889. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3890. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3891. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3892. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3893. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3894. "ref/portable-net45+win8+wpa81/_._",
  3895. "ref/win8/_._",
  3896. "ref/wpa81/_._",
  3897. "ref/xamarinios10/_._",
  3898. "ref/xamarinmac20/_._",
  3899. "ref/xamarintvos10/_._",
  3900. "ref/xamarinwatchos10/_._",
  3901. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3902. "system.collections.concurrent.nuspec"
  3903. ]
  3904. },
  3905. "System.ComponentModel.Annotations/4.7.0": {
  3906. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  3907. "type": "package",
  3908. "path": "system.componentmodel.annotations/4.7.0",
  3909. "files": [
  3910. ".nupkg.metadata",
  3911. ".signature.p7s",
  3912. "LICENSE.TXT",
  3913. "THIRD-PARTY-NOTICES.TXT",
  3914. "lib/MonoAndroid10/_._",
  3915. "lib/MonoTouch10/_._",
  3916. "lib/net45/_._",
  3917. "lib/net461/System.ComponentModel.Annotations.dll",
  3918. "lib/netcore50/System.ComponentModel.Annotations.dll",
  3919. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  3920. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  3921. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  3922. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  3923. "lib/portable-net45+win8/_._",
  3924. "lib/win8/_._",
  3925. "lib/xamarinios10/_._",
  3926. "lib/xamarinmac20/_._",
  3927. "lib/xamarintvos10/_._",
  3928. "lib/xamarinwatchos10/_._",
  3929. "ref/MonoAndroid10/_._",
  3930. "ref/MonoTouch10/_._",
  3931. "ref/net45/_._",
  3932. "ref/net461/System.ComponentModel.Annotations.dll",
  3933. "ref/net461/System.ComponentModel.Annotations.xml",
  3934. "ref/netcore50/System.ComponentModel.Annotations.dll",
  3935. "ref/netcore50/System.ComponentModel.Annotations.xml",
  3936. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  3937. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  3938. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  3939. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  3940. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  3941. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  3942. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  3943. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  3944. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  3945. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  3946. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  3947. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  3948. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  3949. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  3950. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  3951. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  3952. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  3953. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  3954. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  3955. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  3956. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  3957. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  3958. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  3959. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  3960. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  3961. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  3962. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  3963. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  3964. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  3965. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  3966. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  3967. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  3968. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  3969. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  3970. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  3971. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  3972. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  3973. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  3974. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  3975. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  3976. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  3977. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  3978. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  3979. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  3980. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  3981. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  3982. "ref/portable-net45+win8/_._",
  3983. "ref/win8/_._",
  3984. "ref/xamarinios10/_._",
  3985. "ref/xamarinmac20/_._",
  3986. "ref/xamarintvos10/_._",
  3987. "ref/xamarinwatchos10/_._",
  3988. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  3989. "system.componentmodel.annotations.nuspec",
  3990. "useSharedDesignerContext.txt",
  3991. "version.txt"
  3992. ]
  3993. },
  3994. "System.Configuration.ConfigurationManager/4.4.1": {
  3995. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  3996. "type": "package",
  3997. "path": "system.configuration.configurationmanager/4.4.1",
  3998. "files": [
  3999. ".nupkg.metadata",
  4000. ".signature.p7s",
  4001. "LICENSE.TXT",
  4002. "THIRD-PARTY-NOTICES.TXT",
  4003. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4004. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4005. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4006. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4007. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4008. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4009. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  4010. "system.configuration.configurationmanager.nuspec",
  4011. "useSharedDesignerContext.txt",
  4012. "version.txt"
  4013. ]
  4014. },
  4015. "System.Console/4.3.0": {
  4016. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4017. "type": "package",
  4018. "path": "system.console/4.3.0",
  4019. "files": [
  4020. ".nupkg.metadata",
  4021. ".signature.p7s",
  4022. "ThirdPartyNotices.txt",
  4023. "dotnet_library_license.txt",
  4024. "lib/MonoAndroid10/_._",
  4025. "lib/MonoTouch10/_._",
  4026. "lib/net46/System.Console.dll",
  4027. "lib/xamarinios10/_._",
  4028. "lib/xamarinmac20/_._",
  4029. "lib/xamarintvos10/_._",
  4030. "lib/xamarinwatchos10/_._",
  4031. "ref/MonoAndroid10/_._",
  4032. "ref/MonoTouch10/_._",
  4033. "ref/net46/System.Console.dll",
  4034. "ref/netstandard1.3/System.Console.dll",
  4035. "ref/netstandard1.3/System.Console.xml",
  4036. "ref/netstandard1.3/de/System.Console.xml",
  4037. "ref/netstandard1.3/es/System.Console.xml",
  4038. "ref/netstandard1.3/fr/System.Console.xml",
  4039. "ref/netstandard1.3/it/System.Console.xml",
  4040. "ref/netstandard1.3/ja/System.Console.xml",
  4041. "ref/netstandard1.3/ko/System.Console.xml",
  4042. "ref/netstandard1.3/ru/System.Console.xml",
  4043. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4044. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4045. "ref/xamarinios10/_._",
  4046. "ref/xamarinmac20/_._",
  4047. "ref/xamarintvos10/_._",
  4048. "ref/xamarinwatchos10/_._",
  4049. "system.console.4.3.0.nupkg.sha512",
  4050. "system.console.nuspec"
  4051. ]
  4052. },
  4053. "System.Data.Common/4.3.0": {
  4054. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4055. "type": "package",
  4056. "path": "system.data.common/4.3.0",
  4057. "files": [
  4058. ".nupkg.metadata",
  4059. ".signature.p7s",
  4060. "ThirdPartyNotices.txt",
  4061. "dotnet_library_license.txt",
  4062. "lib/MonoAndroid10/_._",
  4063. "lib/MonoTouch10/_._",
  4064. "lib/net451/System.Data.Common.dll",
  4065. "lib/netstandard1.2/System.Data.Common.dll",
  4066. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4067. "lib/xamarinios10/_._",
  4068. "lib/xamarinmac20/_._",
  4069. "lib/xamarintvos10/_._",
  4070. "lib/xamarinwatchos10/_._",
  4071. "ref/MonoAndroid10/_._",
  4072. "ref/MonoTouch10/_._",
  4073. "ref/net451/System.Data.Common.dll",
  4074. "ref/netstandard1.2/System.Data.Common.dll",
  4075. "ref/netstandard1.2/System.Data.Common.xml",
  4076. "ref/netstandard1.2/de/System.Data.Common.xml",
  4077. "ref/netstandard1.2/es/System.Data.Common.xml",
  4078. "ref/netstandard1.2/fr/System.Data.Common.xml",
  4079. "ref/netstandard1.2/it/System.Data.Common.xml",
  4080. "ref/netstandard1.2/ja/System.Data.Common.xml",
  4081. "ref/netstandard1.2/ko/System.Data.Common.xml",
  4082. "ref/netstandard1.2/ru/System.Data.Common.xml",
  4083. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  4084. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  4085. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4086. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  4087. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  4088. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  4089. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  4090. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  4091. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  4092. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  4093. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  4094. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  4095. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  4096. "ref/xamarinios10/_._",
  4097. "ref/xamarinmac20/_._",
  4098. "ref/xamarintvos10/_._",
  4099. "ref/xamarinwatchos10/_._",
  4100. "system.data.common.4.3.0.nupkg.sha512",
  4101. "system.data.common.nuspec"
  4102. ]
  4103. },
  4104. "System.Data.SqlClient/4.4.0": {
  4105. "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  4106. "type": "package",
  4107. "path": "system.data.sqlclient/4.4.0",
  4108. "files": [
  4109. ".nupkg.metadata",
  4110. ".signature.p7s",
  4111. "LICENSE.TXT",
  4112. "THIRD-PARTY-NOTICES.TXT",
  4113. "lib/MonoAndroid10/_._",
  4114. "lib/MonoTouch10/_._",
  4115. "lib/net451/System.Data.SqlClient.dll",
  4116. "lib/net46/System.Data.SqlClient.dll",
  4117. "lib/net461/System.Data.SqlClient.dll",
  4118. "lib/netstandard1.2/System.Data.SqlClient.dll",
  4119. "lib/netstandard1.3/System.Data.SqlClient.dll",
  4120. "lib/netstandard2.0/System.Data.SqlClient.dll",
  4121. "lib/xamarinios10/_._",
  4122. "lib/xamarinmac20/_._",
  4123. "lib/xamarintvos10/_._",
  4124. "lib/xamarinwatchos10/_._",
  4125. "ref/MonoAndroid10/_._",
  4126. "ref/MonoTouch10/_._",
  4127. "ref/net451/System.Data.SqlClient.dll",
  4128. "ref/net46/System.Data.SqlClient.dll",
  4129. "ref/net461/System.Data.SqlClient.dll",
  4130. "ref/net461/System.Data.SqlClient.xml",
  4131. "ref/netstandard1.2/System.Data.SqlClient.dll",
  4132. "ref/netstandard1.2/System.Data.SqlClient.xml",
  4133. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  4134. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  4135. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  4136. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  4137. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  4138. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  4139. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  4140. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  4141. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  4142. "ref/netstandard1.3/System.Data.SqlClient.dll",
  4143. "ref/netstandard1.3/System.Data.SqlClient.xml",
  4144. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  4145. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  4146. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  4147. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  4148. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  4149. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  4150. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  4151. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  4152. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  4153. "ref/netstandard2.0/System.Data.SqlClient.dll",
  4154. "ref/netstandard2.0/System.Data.SqlClient.xml",
  4155. "ref/xamarinios10/_._",
  4156. "ref/xamarinmac20/_._",
  4157. "ref/xamarintvos10/_._",
  4158. "ref/xamarinwatchos10/_._",
  4159. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  4160. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  4161. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  4162. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  4163. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  4164. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  4165. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  4166. "system.data.sqlclient.4.4.0.nupkg.sha512",
  4167. "system.data.sqlclient.nuspec",
  4168. "useSharedDesignerContext.txt",
  4169. "version.txt"
  4170. ]
  4171. },
  4172. "System.Diagnostics.Debug/4.3.0": {
  4173. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4174. "type": "package",
  4175. "path": "system.diagnostics.debug/4.3.0",
  4176. "files": [
  4177. ".nupkg.metadata",
  4178. ".signature.p7s",
  4179. "ThirdPartyNotices.txt",
  4180. "dotnet_library_license.txt",
  4181. "lib/MonoAndroid10/_._",
  4182. "lib/MonoTouch10/_._",
  4183. "lib/net45/_._",
  4184. "lib/portable-net45+win8+wp8+wpa81/_._",
  4185. "lib/win8/_._",
  4186. "lib/wp80/_._",
  4187. "lib/wpa81/_._",
  4188. "lib/xamarinios10/_._",
  4189. "lib/xamarinmac20/_._",
  4190. "lib/xamarintvos10/_._",
  4191. "lib/xamarinwatchos10/_._",
  4192. "ref/MonoAndroid10/_._",
  4193. "ref/MonoTouch10/_._",
  4194. "ref/net45/_._",
  4195. "ref/netcore50/System.Diagnostics.Debug.dll",
  4196. "ref/netcore50/System.Diagnostics.Debug.xml",
  4197. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4198. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4199. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4200. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4201. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4202. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4203. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4204. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4205. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4206. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4207. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4208. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4209. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4210. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4211. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4212. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4213. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4214. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4215. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4216. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4217. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4218. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4219. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4220. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4221. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4222. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4223. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4224. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4225. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4226. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4227. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4228. "ref/portable-net45+win8+wp8+wpa81/_._",
  4229. "ref/win8/_._",
  4230. "ref/wp80/_._",
  4231. "ref/wpa81/_._",
  4232. "ref/xamarinios10/_._",
  4233. "ref/xamarinmac20/_._",
  4234. "ref/xamarintvos10/_._",
  4235. "ref/xamarinwatchos10/_._",
  4236. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4237. "system.diagnostics.debug.nuspec"
  4238. ]
  4239. },
  4240. "System.Diagnostics.DiagnosticSource/4.4.1": {
  4241. "sha512": "U/KcC19fyLsPN1GLmeU2zQq15MMVcPwMOYPADVo1+WIoJpvMHxrzvl+BLLZwTEZSneGwaPFZ0aWr0nJ7B7LSdA==",
  4242. "type": "package",
  4243. "path": "system.diagnostics.diagnosticsource/4.4.1",
  4244. "files": [
  4245. ".nupkg.metadata",
  4246. ".signature.p7s",
  4247. "LICENSE.TXT",
  4248. "THIRD-PARTY-NOTICES.TXT",
  4249. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4250. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4251. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4252. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4253. "lib/netcoreapp2.0/_._",
  4254. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4255. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4256. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4257. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4258. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4259. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4260. "ref/netcoreapp2.0/_._",
  4261. "system.diagnostics.diagnosticsource.4.4.1.nupkg.sha512",
  4262. "system.diagnostics.diagnosticsource.nuspec",
  4263. "useSharedDesignerContext.txt",
  4264. "version.txt"
  4265. ]
  4266. },
  4267. "System.Diagnostics.Tools/4.3.0": {
  4268. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4269. "type": "package",
  4270. "path": "system.diagnostics.tools/4.3.0",
  4271. "files": [
  4272. ".nupkg.metadata",
  4273. ".signature.p7s",
  4274. "ThirdPartyNotices.txt",
  4275. "dotnet_library_license.txt",
  4276. "lib/MonoAndroid10/_._",
  4277. "lib/MonoTouch10/_._",
  4278. "lib/net45/_._",
  4279. "lib/portable-net45+win8+wp8+wpa81/_._",
  4280. "lib/win8/_._",
  4281. "lib/wp80/_._",
  4282. "lib/wpa81/_._",
  4283. "lib/xamarinios10/_._",
  4284. "lib/xamarinmac20/_._",
  4285. "lib/xamarintvos10/_._",
  4286. "lib/xamarinwatchos10/_._",
  4287. "ref/MonoAndroid10/_._",
  4288. "ref/MonoTouch10/_._",
  4289. "ref/net45/_._",
  4290. "ref/netcore50/System.Diagnostics.Tools.dll",
  4291. "ref/netcore50/System.Diagnostics.Tools.xml",
  4292. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4293. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4294. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4295. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4296. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4297. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4298. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4299. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4300. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4301. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4302. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4303. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4304. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4305. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4306. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4307. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4308. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4309. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4310. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4311. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4312. "ref/portable-net45+win8+wp8+wpa81/_._",
  4313. "ref/win8/_._",
  4314. "ref/wp80/_._",
  4315. "ref/wpa81/_._",
  4316. "ref/xamarinios10/_._",
  4317. "ref/xamarinmac20/_._",
  4318. "ref/xamarintvos10/_._",
  4319. "ref/xamarinwatchos10/_._",
  4320. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  4321. "system.diagnostics.tools.nuspec"
  4322. ]
  4323. },
  4324. "System.Diagnostics.TraceSource/4.0.0": {
  4325. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  4326. "type": "package",
  4327. "path": "system.diagnostics.tracesource/4.0.0",
  4328. "files": [
  4329. ".nupkg.metadata",
  4330. ".signature.p7s",
  4331. "ThirdPartyNotices.txt",
  4332. "dotnet_library_license.txt",
  4333. "lib/MonoAndroid10/_._",
  4334. "lib/MonoTouch10/_._",
  4335. "lib/net46/System.Diagnostics.TraceSource.dll",
  4336. "lib/xamarinios10/_._",
  4337. "lib/xamarinmac20/_._",
  4338. "lib/xamarintvos10/_._",
  4339. "lib/xamarinwatchos10/_._",
  4340. "ref/MonoAndroid10/_._",
  4341. "ref/MonoTouch10/_._",
  4342. "ref/net46/System.Diagnostics.TraceSource.dll",
  4343. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4344. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  4345. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  4346. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  4347. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  4348. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  4349. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  4350. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  4351. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  4352. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  4353. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  4354. "ref/xamarinios10/_._",
  4355. "ref/xamarinmac20/_._",
  4356. "ref/xamarintvos10/_._",
  4357. "ref/xamarinwatchos10/_._",
  4358. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4359. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  4360. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4361. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  4362. "system.diagnostics.tracesource.nuspec"
  4363. ]
  4364. },
  4365. "System.Diagnostics.Tracing/4.3.0": {
  4366. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4367. "type": "package",
  4368. "path": "system.diagnostics.tracing/4.3.0",
  4369. "files": [
  4370. ".nupkg.metadata",
  4371. ".signature.p7s",
  4372. "ThirdPartyNotices.txt",
  4373. "dotnet_library_license.txt",
  4374. "lib/MonoAndroid10/_._",
  4375. "lib/MonoTouch10/_._",
  4376. "lib/net45/_._",
  4377. "lib/net462/System.Diagnostics.Tracing.dll",
  4378. "lib/portable-net45+win8+wpa81/_._",
  4379. "lib/win8/_._",
  4380. "lib/wpa81/_._",
  4381. "lib/xamarinios10/_._",
  4382. "lib/xamarinmac20/_._",
  4383. "lib/xamarintvos10/_._",
  4384. "lib/xamarinwatchos10/_._",
  4385. "ref/MonoAndroid10/_._",
  4386. "ref/MonoTouch10/_._",
  4387. "ref/net45/_._",
  4388. "ref/net462/System.Diagnostics.Tracing.dll",
  4389. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4390. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4391. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4392. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4393. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4394. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4395. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4396. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4397. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4398. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4399. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4400. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4401. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4402. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4403. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4404. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4405. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4406. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4407. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4408. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4409. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4410. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4411. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4412. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4413. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4414. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4415. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4416. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4417. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4418. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4419. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4420. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4421. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4422. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4423. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4424. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4425. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4426. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4427. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4428. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4429. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4430. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4431. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4432. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4433. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4434. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4435. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4436. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4437. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4438. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4439. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4440. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4441. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4442. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4443. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4444. "ref/portable-net45+win8+wpa81/_._",
  4445. "ref/win8/_._",
  4446. "ref/wpa81/_._",
  4447. "ref/xamarinios10/_._",
  4448. "ref/xamarinmac20/_._",
  4449. "ref/xamarintvos10/_._",
  4450. "ref/xamarinwatchos10/_._",
  4451. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4452. "system.diagnostics.tracing.nuspec"
  4453. ]
  4454. },
  4455. "System.Drawing.Common/4.7.0": {
  4456. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4457. "type": "package",
  4458. "path": "system.drawing.common/4.7.0",
  4459. "files": [
  4460. ".nupkg.metadata",
  4461. ".signature.p7s",
  4462. "LICENSE.TXT",
  4463. "THIRD-PARTY-NOTICES.TXT",
  4464. "lib/MonoAndroid10/_._",
  4465. "lib/MonoTouch10/_._",
  4466. "lib/net461/System.Drawing.Common.dll",
  4467. "lib/netstandard2.0/System.Drawing.Common.dll",
  4468. "lib/xamarinios10/_._",
  4469. "lib/xamarinmac20/_._",
  4470. "lib/xamarintvos10/_._",
  4471. "lib/xamarinwatchos10/_._",
  4472. "ref/MonoAndroid10/_._",
  4473. "ref/MonoTouch10/_._",
  4474. "ref/net461/System.Drawing.Common.dll",
  4475. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4476. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4477. "ref/netstandard2.0/System.Drawing.Common.dll",
  4478. "ref/xamarinios10/_._",
  4479. "ref/xamarinmac20/_._",
  4480. "ref/xamarintvos10/_._",
  4481. "ref/xamarinwatchos10/_._",
  4482. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4483. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4484. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4485. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4486. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4487. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4488. "system.drawing.common.4.7.0.nupkg.sha512",
  4489. "system.drawing.common.nuspec",
  4490. "useSharedDesignerContext.txt",
  4491. "version.txt"
  4492. ]
  4493. },
  4494. "System.Dynamic.Runtime/4.0.11": {
  4495. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  4496. "type": "package",
  4497. "path": "system.dynamic.runtime/4.0.11",
  4498. "files": [
  4499. ".nupkg.metadata",
  4500. ".signature.p7s",
  4501. "ThirdPartyNotices.txt",
  4502. "dotnet_library_license.txt",
  4503. "lib/MonoAndroid10/_._",
  4504. "lib/MonoTouch10/_._",
  4505. "lib/net45/_._",
  4506. "lib/netcore50/System.Dynamic.Runtime.dll",
  4507. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  4508. "lib/portable-net45+win8+wp8+wpa81/_._",
  4509. "lib/win8/_._",
  4510. "lib/wp80/_._",
  4511. "lib/wpa81/_._",
  4512. "lib/xamarinios10/_._",
  4513. "lib/xamarinmac20/_._",
  4514. "lib/xamarintvos10/_._",
  4515. "lib/xamarinwatchos10/_._",
  4516. "ref/MonoAndroid10/_._",
  4517. "ref/MonoTouch10/_._",
  4518. "ref/net45/_._",
  4519. "ref/netcore50/System.Dynamic.Runtime.dll",
  4520. "ref/netcore50/System.Dynamic.Runtime.xml",
  4521. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  4522. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  4523. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  4524. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  4525. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  4526. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  4527. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  4528. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  4529. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  4530. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  4531. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  4532. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  4533. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  4534. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  4535. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  4536. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  4537. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  4538. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  4539. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  4540. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  4541. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  4542. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  4543. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  4544. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  4545. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  4546. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  4547. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  4548. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  4549. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  4550. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  4551. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  4552. "ref/portable-net45+win8+wp8+wpa81/_._",
  4553. "ref/win8/_._",
  4554. "ref/wp80/_._",
  4555. "ref/wpa81/_._",
  4556. "ref/xamarinios10/_._",
  4557. "ref/xamarinmac20/_._",
  4558. "ref/xamarintvos10/_._",
  4559. "ref/xamarinwatchos10/_._",
  4560. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  4561. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  4562. "system.dynamic.runtime.nuspec"
  4563. ]
  4564. },
  4565. "System.Globalization/4.3.0": {
  4566. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4567. "type": "package",
  4568. "path": "system.globalization/4.3.0",
  4569. "files": [
  4570. ".nupkg.metadata",
  4571. ".signature.p7s",
  4572. "ThirdPartyNotices.txt",
  4573. "dotnet_library_license.txt",
  4574. "lib/MonoAndroid10/_._",
  4575. "lib/MonoTouch10/_._",
  4576. "lib/net45/_._",
  4577. "lib/portable-net45+win8+wp8+wpa81/_._",
  4578. "lib/win8/_._",
  4579. "lib/wp80/_._",
  4580. "lib/wpa81/_._",
  4581. "lib/xamarinios10/_._",
  4582. "lib/xamarinmac20/_._",
  4583. "lib/xamarintvos10/_._",
  4584. "lib/xamarinwatchos10/_._",
  4585. "ref/MonoAndroid10/_._",
  4586. "ref/MonoTouch10/_._",
  4587. "ref/net45/_._",
  4588. "ref/netcore50/System.Globalization.dll",
  4589. "ref/netcore50/System.Globalization.xml",
  4590. "ref/netcore50/de/System.Globalization.xml",
  4591. "ref/netcore50/es/System.Globalization.xml",
  4592. "ref/netcore50/fr/System.Globalization.xml",
  4593. "ref/netcore50/it/System.Globalization.xml",
  4594. "ref/netcore50/ja/System.Globalization.xml",
  4595. "ref/netcore50/ko/System.Globalization.xml",
  4596. "ref/netcore50/ru/System.Globalization.xml",
  4597. "ref/netcore50/zh-hans/System.Globalization.xml",
  4598. "ref/netcore50/zh-hant/System.Globalization.xml",
  4599. "ref/netstandard1.0/System.Globalization.dll",
  4600. "ref/netstandard1.0/System.Globalization.xml",
  4601. "ref/netstandard1.0/de/System.Globalization.xml",
  4602. "ref/netstandard1.0/es/System.Globalization.xml",
  4603. "ref/netstandard1.0/fr/System.Globalization.xml",
  4604. "ref/netstandard1.0/it/System.Globalization.xml",
  4605. "ref/netstandard1.0/ja/System.Globalization.xml",
  4606. "ref/netstandard1.0/ko/System.Globalization.xml",
  4607. "ref/netstandard1.0/ru/System.Globalization.xml",
  4608. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4609. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4610. "ref/netstandard1.3/System.Globalization.dll",
  4611. "ref/netstandard1.3/System.Globalization.xml",
  4612. "ref/netstandard1.3/de/System.Globalization.xml",
  4613. "ref/netstandard1.3/es/System.Globalization.xml",
  4614. "ref/netstandard1.3/fr/System.Globalization.xml",
  4615. "ref/netstandard1.3/it/System.Globalization.xml",
  4616. "ref/netstandard1.3/ja/System.Globalization.xml",
  4617. "ref/netstandard1.3/ko/System.Globalization.xml",
  4618. "ref/netstandard1.3/ru/System.Globalization.xml",
  4619. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4620. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4621. "ref/portable-net45+win8+wp8+wpa81/_._",
  4622. "ref/win8/_._",
  4623. "ref/wp80/_._",
  4624. "ref/wpa81/_._",
  4625. "ref/xamarinios10/_._",
  4626. "ref/xamarinmac20/_._",
  4627. "ref/xamarintvos10/_._",
  4628. "ref/xamarinwatchos10/_._",
  4629. "system.globalization.4.3.0.nupkg.sha512",
  4630. "system.globalization.nuspec"
  4631. ]
  4632. },
  4633. "System.Globalization.Calendars/4.3.0": {
  4634. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4635. "type": "package",
  4636. "path": "system.globalization.calendars/4.3.0",
  4637. "files": [
  4638. ".nupkg.metadata",
  4639. ".signature.p7s",
  4640. "ThirdPartyNotices.txt",
  4641. "dotnet_library_license.txt",
  4642. "lib/MonoAndroid10/_._",
  4643. "lib/MonoTouch10/_._",
  4644. "lib/net46/System.Globalization.Calendars.dll",
  4645. "lib/xamarinios10/_._",
  4646. "lib/xamarinmac20/_._",
  4647. "lib/xamarintvos10/_._",
  4648. "lib/xamarinwatchos10/_._",
  4649. "ref/MonoAndroid10/_._",
  4650. "ref/MonoTouch10/_._",
  4651. "ref/net46/System.Globalization.Calendars.dll",
  4652. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4653. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4654. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4655. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4656. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4657. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4658. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4659. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4660. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4661. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4662. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4663. "ref/xamarinios10/_._",
  4664. "ref/xamarinmac20/_._",
  4665. "ref/xamarintvos10/_._",
  4666. "ref/xamarinwatchos10/_._",
  4667. "system.globalization.calendars.4.3.0.nupkg.sha512",
  4668. "system.globalization.calendars.nuspec"
  4669. ]
  4670. },
  4671. "System.Globalization.Extensions/4.3.0": {
  4672. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4673. "type": "package",
  4674. "path": "system.globalization.extensions/4.3.0",
  4675. "files": [
  4676. ".nupkg.metadata",
  4677. ".signature.p7s",
  4678. "ThirdPartyNotices.txt",
  4679. "dotnet_library_license.txt",
  4680. "lib/MonoAndroid10/_._",
  4681. "lib/MonoTouch10/_._",
  4682. "lib/net46/System.Globalization.Extensions.dll",
  4683. "lib/xamarinios10/_._",
  4684. "lib/xamarinmac20/_._",
  4685. "lib/xamarintvos10/_._",
  4686. "lib/xamarinwatchos10/_._",
  4687. "ref/MonoAndroid10/_._",
  4688. "ref/MonoTouch10/_._",
  4689. "ref/net46/System.Globalization.Extensions.dll",
  4690. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4691. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4692. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4693. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4694. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4695. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4696. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4697. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4698. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4699. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4700. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4701. "ref/xamarinios10/_._",
  4702. "ref/xamarinmac20/_._",
  4703. "ref/xamarintvos10/_._",
  4704. "ref/xamarinwatchos10/_._",
  4705. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4706. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4707. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4708. "system.globalization.extensions.4.3.0.nupkg.sha512",
  4709. "system.globalization.extensions.nuspec"
  4710. ]
  4711. },
  4712. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  4713. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  4714. "type": "package",
  4715. "path": "system.identitymodel.tokens.jwt/5.6.0",
  4716. "files": [
  4717. ".nupkg.metadata",
  4718. ".signature.p7s",
  4719. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4720. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4721. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  4722. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  4723. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4724. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4725. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  4726. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  4727. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4728. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4729. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  4730. "system.identitymodel.tokens.jwt.nuspec"
  4731. ]
  4732. },
  4733. "System.IO/4.3.0": {
  4734. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4735. "type": "package",
  4736. "path": "system.io/4.3.0",
  4737. "files": [
  4738. ".nupkg.metadata",
  4739. ".signature.p7s",
  4740. "ThirdPartyNotices.txt",
  4741. "dotnet_library_license.txt",
  4742. "lib/MonoAndroid10/_._",
  4743. "lib/MonoTouch10/_._",
  4744. "lib/net45/_._",
  4745. "lib/net462/System.IO.dll",
  4746. "lib/portable-net45+win8+wp8+wpa81/_._",
  4747. "lib/win8/_._",
  4748. "lib/wp80/_._",
  4749. "lib/wpa81/_._",
  4750. "lib/xamarinios10/_._",
  4751. "lib/xamarinmac20/_._",
  4752. "lib/xamarintvos10/_._",
  4753. "lib/xamarinwatchos10/_._",
  4754. "ref/MonoAndroid10/_._",
  4755. "ref/MonoTouch10/_._",
  4756. "ref/net45/_._",
  4757. "ref/net462/System.IO.dll",
  4758. "ref/netcore50/System.IO.dll",
  4759. "ref/netcore50/System.IO.xml",
  4760. "ref/netcore50/de/System.IO.xml",
  4761. "ref/netcore50/es/System.IO.xml",
  4762. "ref/netcore50/fr/System.IO.xml",
  4763. "ref/netcore50/it/System.IO.xml",
  4764. "ref/netcore50/ja/System.IO.xml",
  4765. "ref/netcore50/ko/System.IO.xml",
  4766. "ref/netcore50/ru/System.IO.xml",
  4767. "ref/netcore50/zh-hans/System.IO.xml",
  4768. "ref/netcore50/zh-hant/System.IO.xml",
  4769. "ref/netstandard1.0/System.IO.dll",
  4770. "ref/netstandard1.0/System.IO.xml",
  4771. "ref/netstandard1.0/de/System.IO.xml",
  4772. "ref/netstandard1.0/es/System.IO.xml",
  4773. "ref/netstandard1.0/fr/System.IO.xml",
  4774. "ref/netstandard1.0/it/System.IO.xml",
  4775. "ref/netstandard1.0/ja/System.IO.xml",
  4776. "ref/netstandard1.0/ko/System.IO.xml",
  4777. "ref/netstandard1.0/ru/System.IO.xml",
  4778. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4779. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4780. "ref/netstandard1.3/System.IO.dll",
  4781. "ref/netstandard1.3/System.IO.xml",
  4782. "ref/netstandard1.3/de/System.IO.xml",
  4783. "ref/netstandard1.3/es/System.IO.xml",
  4784. "ref/netstandard1.3/fr/System.IO.xml",
  4785. "ref/netstandard1.3/it/System.IO.xml",
  4786. "ref/netstandard1.3/ja/System.IO.xml",
  4787. "ref/netstandard1.3/ko/System.IO.xml",
  4788. "ref/netstandard1.3/ru/System.IO.xml",
  4789. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4790. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4791. "ref/netstandard1.5/System.IO.dll",
  4792. "ref/netstandard1.5/System.IO.xml",
  4793. "ref/netstandard1.5/de/System.IO.xml",
  4794. "ref/netstandard1.5/es/System.IO.xml",
  4795. "ref/netstandard1.5/fr/System.IO.xml",
  4796. "ref/netstandard1.5/it/System.IO.xml",
  4797. "ref/netstandard1.5/ja/System.IO.xml",
  4798. "ref/netstandard1.5/ko/System.IO.xml",
  4799. "ref/netstandard1.5/ru/System.IO.xml",
  4800. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4801. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4802. "ref/portable-net45+win8+wp8+wpa81/_._",
  4803. "ref/win8/_._",
  4804. "ref/wp80/_._",
  4805. "ref/wpa81/_._",
  4806. "ref/xamarinios10/_._",
  4807. "ref/xamarinmac20/_._",
  4808. "ref/xamarintvos10/_._",
  4809. "ref/xamarinwatchos10/_._",
  4810. "system.io.4.3.0.nupkg.sha512",
  4811. "system.io.nuspec"
  4812. ]
  4813. },
  4814. "System.IO.Compression/4.3.0": {
  4815. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  4816. "type": "package",
  4817. "path": "system.io.compression/4.3.0",
  4818. "files": [
  4819. ".nupkg.metadata",
  4820. ".signature.p7s",
  4821. "ThirdPartyNotices.txt",
  4822. "dotnet_library_license.txt",
  4823. "lib/MonoAndroid10/_._",
  4824. "lib/MonoTouch10/_._",
  4825. "lib/net45/_._",
  4826. "lib/net46/System.IO.Compression.dll",
  4827. "lib/portable-net45+win8+wpa81/_._",
  4828. "lib/win8/_._",
  4829. "lib/wpa81/_._",
  4830. "lib/xamarinios10/_._",
  4831. "lib/xamarinmac20/_._",
  4832. "lib/xamarintvos10/_._",
  4833. "lib/xamarinwatchos10/_._",
  4834. "ref/MonoAndroid10/_._",
  4835. "ref/MonoTouch10/_._",
  4836. "ref/net45/_._",
  4837. "ref/net46/System.IO.Compression.dll",
  4838. "ref/netcore50/System.IO.Compression.dll",
  4839. "ref/netcore50/System.IO.Compression.xml",
  4840. "ref/netcore50/de/System.IO.Compression.xml",
  4841. "ref/netcore50/es/System.IO.Compression.xml",
  4842. "ref/netcore50/fr/System.IO.Compression.xml",
  4843. "ref/netcore50/it/System.IO.Compression.xml",
  4844. "ref/netcore50/ja/System.IO.Compression.xml",
  4845. "ref/netcore50/ko/System.IO.Compression.xml",
  4846. "ref/netcore50/ru/System.IO.Compression.xml",
  4847. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  4848. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  4849. "ref/netstandard1.1/System.IO.Compression.dll",
  4850. "ref/netstandard1.1/System.IO.Compression.xml",
  4851. "ref/netstandard1.1/de/System.IO.Compression.xml",
  4852. "ref/netstandard1.1/es/System.IO.Compression.xml",
  4853. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  4854. "ref/netstandard1.1/it/System.IO.Compression.xml",
  4855. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  4856. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  4857. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  4858. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  4859. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  4860. "ref/netstandard1.3/System.IO.Compression.dll",
  4861. "ref/netstandard1.3/System.IO.Compression.xml",
  4862. "ref/netstandard1.3/de/System.IO.Compression.xml",
  4863. "ref/netstandard1.3/es/System.IO.Compression.xml",
  4864. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  4865. "ref/netstandard1.3/it/System.IO.Compression.xml",
  4866. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  4867. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  4868. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  4869. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  4870. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  4871. "ref/portable-net45+win8+wpa81/_._",
  4872. "ref/win8/_._",
  4873. "ref/wpa81/_._",
  4874. "ref/xamarinios10/_._",
  4875. "ref/xamarinmac20/_._",
  4876. "ref/xamarintvos10/_._",
  4877. "ref/xamarinwatchos10/_._",
  4878. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  4879. "runtimes/win/lib/net46/System.IO.Compression.dll",
  4880. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  4881. "system.io.compression.4.3.0.nupkg.sha512",
  4882. "system.io.compression.nuspec"
  4883. ]
  4884. },
  4885. "System.IO.Compression.ZipFile/4.3.0": {
  4886. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  4887. "type": "package",
  4888. "path": "system.io.compression.zipfile/4.3.0",
  4889. "files": [
  4890. ".nupkg.metadata",
  4891. ".signature.p7s",
  4892. "ThirdPartyNotices.txt",
  4893. "dotnet_library_license.txt",
  4894. "lib/MonoAndroid10/_._",
  4895. "lib/MonoTouch10/_._",
  4896. "lib/net46/System.IO.Compression.ZipFile.dll",
  4897. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4898. "lib/xamarinios10/_._",
  4899. "lib/xamarinmac20/_._",
  4900. "lib/xamarintvos10/_._",
  4901. "lib/xamarinwatchos10/_._",
  4902. "ref/MonoAndroid10/_._",
  4903. "ref/MonoTouch10/_._",
  4904. "ref/net46/System.IO.Compression.ZipFile.dll",
  4905. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4906. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  4907. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  4908. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  4909. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  4910. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  4911. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  4912. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  4913. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  4914. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  4915. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  4916. "ref/xamarinios10/_._",
  4917. "ref/xamarinmac20/_._",
  4918. "ref/xamarintvos10/_._",
  4919. "ref/xamarinwatchos10/_._",
  4920. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  4921. "system.io.compression.zipfile.nuspec"
  4922. ]
  4923. },
  4924. "System.IO.FileSystem/4.3.0": {
  4925. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4926. "type": "package",
  4927. "path": "system.io.filesystem/4.3.0",
  4928. "files": [
  4929. ".nupkg.metadata",
  4930. ".signature.p7s",
  4931. "ThirdPartyNotices.txt",
  4932. "dotnet_library_license.txt",
  4933. "lib/MonoAndroid10/_._",
  4934. "lib/MonoTouch10/_._",
  4935. "lib/net46/System.IO.FileSystem.dll",
  4936. "lib/xamarinios10/_._",
  4937. "lib/xamarinmac20/_._",
  4938. "lib/xamarintvos10/_._",
  4939. "lib/xamarinwatchos10/_._",
  4940. "ref/MonoAndroid10/_._",
  4941. "ref/MonoTouch10/_._",
  4942. "ref/net46/System.IO.FileSystem.dll",
  4943. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4944. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4945. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4946. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4947. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4948. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4949. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4950. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4951. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4952. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4953. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4954. "ref/xamarinios10/_._",
  4955. "ref/xamarinmac20/_._",
  4956. "ref/xamarintvos10/_._",
  4957. "ref/xamarinwatchos10/_._",
  4958. "system.io.filesystem.4.3.0.nupkg.sha512",
  4959. "system.io.filesystem.nuspec"
  4960. ]
  4961. },
  4962. "System.IO.FileSystem.Primitives/4.3.0": {
  4963. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  4964. "type": "package",
  4965. "path": "system.io.filesystem.primitives/4.3.0",
  4966. "files": [
  4967. ".nupkg.metadata",
  4968. ".signature.p7s",
  4969. "ThirdPartyNotices.txt",
  4970. "dotnet_library_license.txt",
  4971. "lib/MonoAndroid10/_._",
  4972. "lib/MonoTouch10/_._",
  4973. "lib/net46/System.IO.FileSystem.Primitives.dll",
  4974. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4975. "lib/xamarinios10/_._",
  4976. "lib/xamarinmac20/_._",
  4977. "lib/xamarintvos10/_._",
  4978. "lib/xamarinwatchos10/_._",
  4979. "ref/MonoAndroid10/_._",
  4980. "ref/MonoTouch10/_._",
  4981. "ref/net46/System.IO.FileSystem.Primitives.dll",
  4982. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  4983. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  4984. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  4985. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  4986. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  4987. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  4988. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  4989. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  4990. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  4991. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  4992. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  4993. "ref/xamarinios10/_._",
  4994. "ref/xamarinmac20/_._",
  4995. "ref/xamarintvos10/_._",
  4996. "ref/xamarinwatchos10/_._",
  4997. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  4998. "system.io.filesystem.primitives.nuspec"
  4999. ]
  5000. },
  5001. "System.Linq/4.3.0": {
  5002. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5003. "type": "package",
  5004. "path": "system.linq/4.3.0",
  5005. "files": [
  5006. ".nupkg.metadata",
  5007. ".signature.p7s",
  5008. "ThirdPartyNotices.txt",
  5009. "dotnet_library_license.txt",
  5010. "lib/MonoAndroid10/_._",
  5011. "lib/MonoTouch10/_._",
  5012. "lib/net45/_._",
  5013. "lib/net463/System.Linq.dll",
  5014. "lib/netcore50/System.Linq.dll",
  5015. "lib/netstandard1.6/System.Linq.dll",
  5016. "lib/portable-net45+win8+wp8+wpa81/_._",
  5017. "lib/win8/_._",
  5018. "lib/wp80/_._",
  5019. "lib/wpa81/_._",
  5020. "lib/xamarinios10/_._",
  5021. "lib/xamarinmac20/_._",
  5022. "lib/xamarintvos10/_._",
  5023. "lib/xamarinwatchos10/_._",
  5024. "ref/MonoAndroid10/_._",
  5025. "ref/MonoTouch10/_._",
  5026. "ref/net45/_._",
  5027. "ref/net463/System.Linq.dll",
  5028. "ref/netcore50/System.Linq.dll",
  5029. "ref/netcore50/System.Linq.xml",
  5030. "ref/netcore50/de/System.Linq.xml",
  5031. "ref/netcore50/es/System.Linq.xml",
  5032. "ref/netcore50/fr/System.Linq.xml",
  5033. "ref/netcore50/it/System.Linq.xml",
  5034. "ref/netcore50/ja/System.Linq.xml",
  5035. "ref/netcore50/ko/System.Linq.xml",
  5036. "ref/netcore50/ru/System.Linq.xml",
  5037. "ref/netcore50/zh-hans/System.Linq.xml",
  5038. "ref/netcore50/zh-hant/System.Linq.xml",
  5039. "ref/netstandard1.0/System.Linq.dll",
  5040. "ref/netstandard1.0/System.Linq.xml",
  5041. "ref/netstandard1.0/de/System.Linq.xml",
  5042. "ref/netstandard1.0/es/System.Linq.xml",
  5043. "ref/netstandard1.0/fr/System.Linq.xml",
  5044. "ref/netstandard1.0/it/System.Linq.xml",
  5045. "ref/netstandard1.0/ja/System.Linq.xml",
  5046. "ref/netstandard1.0/ko/System.Linq.xml",
  5047. "ref/netstandard1.0/ru/System.Linq.xml",
  5048. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5049. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5050. "ref/netstandard1.6/System.Linq.dll",
  5051. "ref/netstandard1.6/System.Linq.xml",
  5052. "ref/netstandard1.6/de/System.Linq.xml",
  5053. "ref/netstandard1.6/es/System.Linq.xml",
  5054. "ref/netstandard1.6/fr/System.Linq.xml",
  5055. "ref/netstandard1.6/it/System.Linq.xml",
  5056. "ref/netstandard1.6/ja/System.Linq.xml",
  5057. "ref/netstandard1.6/ko/System.Linq.xml",
  5058. "ref/netstandard1.6/ru/System.Linq.xml",
  5059. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5060. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5061. "ref/portable-net45+win8+wp8+wpa81/_._",
  5062. "ref/win8/_._",
  5063. "ref/wp80/_._",
  5064. "ref/wpa81/_._",
  5065. "ref/xamarinios10/_._",
  5066. "ref/xamarinmac20/_._",
  5067. "ref/xamarintvos10/_._",
  5068. "ref/xamarinwatchos10/_._",
  5069. "system.linq.4.3.0.nupkg.sha512",
  5070. "system.linq.nuspec"
  5071. ]
  5072. },
  5073. "System.Linq.Expressions/4.3.0": {
  5074. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5075. "type": "package",
  5076. "path": "system.linq.expressions/4.3.0",
  5077. "files": [
  5078. ".nupkg.metadata",
  5079. ".signature.p7s",
  5080. "ThirdPartyNotices.txt",
  5081. "dotnet_library_license.txt",
  5082. "lib/MonoAndroid10/_._",
  5083. "lib/MonoTouch10/_._",
  5084. "lib/net45/_._",
  5085. "lib/net463/System.Linq.Expressions.dll",
  5086. "lib/netcore50/System.Linq.Expressions.dll",
  5087. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5088. "lib/portable-net45+win8+wp8+wpa81/_._",
  5089. "lib/win8/_._",
  5090. "lib/wp80/_._",
  5091. "lib/wpa81/_._",
  5092. "lib/xamarinios10/_._",
  5093. "lib/xamarinmac20/_._",
  5094. "lib/xamarintvos10/_._",
  5095. "lib/xamarinwatchos10/_._",
  5096. "ref/MonoAndroid10/_._",
  5097. "ref/MonoTouch10/_._",
  5098. "ref/net45/_._",
  5099. "ref/net463/System.Linq.Expressions.dll",
  5100. "ref/netcore50/System.Linq.Expressions.dll",
  5101. "ref/netcore50/System.Linq.Expressions.xml",
  5102. "ref/netcore50/de/System.Linq.Expressions.xml",
  5103. "ref/netcore50/es/System.Linq.Expressions.xml",
  5104. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5105. "ref/netcore50/it/System.Linq.Expressions.xml",
  5106. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5107. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5108. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5109. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5110. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5111. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5112. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5113. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5114. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5115. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5116. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5117. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5118. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5119. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5120. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5121. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5122. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5123. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5124. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5125. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5126. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5127. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5128. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5129. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5130. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5131. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5132. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5133. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5134. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5135. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5136. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5137. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5138. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5139. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5140. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5141. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5142. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5143. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5144. "ref/portable-net45+win8+wp8+wpa81/_._",
  5145. "ref/win8/_._",
  5146. "ref/wp80/_._",
  5147. "ref/wpa81/_._",
  5148. "ref/xamarinios10/_._",
  5149. "ref/xamarinmac20/_._",
  5150. "ref/xamarintvos10/_._",
  5151. "ref/xamarinwatchos10/_._",
  5152. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5153. "system.linq.expressions.4.3.0.nupkg.sha512",
  5154. "system.linq.expressions.nuspec"
  5155. ]
  5156. },
  5157. "System.Memory/4.5.3": {
  5158. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  5159. "type": "package",
  5160. "path": "system.memory/4.5.3",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. ".signature.p7s",
  5164. "LICENSE.TXT",
  5165. "THIRD-PARTY-NOTICES.TXT",
  5166. "lib/netcoreapp2.1/_._",
  5167. "lib/netstandard1.1/System.Memory.dll",
  5168. "lib/netstandard1.1/System.Memory.xml",
  5169. "lib/netstandard2.0/System.Memory.dll",
  5170. "lib/netstandard2.0/System.Memory.xml",
  5171. "ref/netcoreapp2.1/_._",
  5172. "system.memory.4.5.3.nupkg.sha512",
  5173. "system.memory.nuspec",
  5174. "useSharedDesignerContext.txt",
  5175. "version.txt"
  5176. ]
  5177. },
  5178. "System.Net.Http/4.3.0": {
  5179. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5180. "type": "package",
  5181. "path": "system.net.http/4.3.0",
  5182. "files": [
  5183. ".nupkg.metadata",
  5184. ".signature.p7s",
  5185. "ThirdPartyNotices.txt",
  5186. "dotnet_library_license.txt",
  5187. "lib/Xamarinmac20/_._",
  5188. "lib/monoandroid10/_._",
  5189. "lib/monotouch10/_._",
  5190. "lib/net45/_._",
  5191. "lib/net46/System.Net.Http.dll",
  5192. "lib/portable-net45+win8+wpa81/_._",
  5193. "lib/win8/_._",
  5194. "lib/wpa81/_._",
  5195. "lib/xamarinios10/_._",
  5196. "lib/xamarintvos10/_._",
  5197. "lib/xamarinwatchos10/_._",
  5198. "ref/Xamarinmac20/_._",
  5199. "ref/monoandroid10/_._",
  5200. "ref/monotouch10/_._",
  5201. "ref/net45/_._",
  5202. "ref/net46/System.Net.Http.dll",
  5203. "ref/net46/System.Net.Http.xml",
  5204. "ref/net46/de/System.Net.Http.xml",
  5205. "ref/net46/es/System.Net.Http.xml",
  5206. "ref/net46/fr/System.Net.Http.xml",
  5207. "ref/net46/it/System.Net.Http.xml",
  5208. "ref/net46/ja/System.Net.Http.xml",
  5209. "ref/net46/ko/System.Net.Http.xml",
  5210. "ref/net46/ru/System.Net.Http.xml",
  5211. "ref/net46/zh-hans/System.Net.Http.xml",
  5212. "ref/net46/zh-hant/System.Net.Http.xml",
  5213. "ref/netcore50/System.Net.Http.dll",
  5214. "ref/netcore50/System.Net.Http.xml",
  5215. "ref/netcore50/de/System.Net.Http.xml",
  5216. "ref/netcore50/es/System.Net.Http.xml",
  5217. "ref/netcore50/fr/System.Net.Http.xml",
  5218. "ref/netcore50/it/System.Net.Http.xml",
  5219. "ref/netcore50/ja/System.Net.Http.xml",
  5220. "ref/netcore50/ko/System.Net.Http.xml",
  5221. "ref/netcore50/ru/System.Net.Http.xml",
  5222. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5223. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5224. "ref/netstandard1.1/System.Net.Http.dll",
  5225. "ref/netstandard1.1/System.Net.Http.xml",
  5226. "ref/netstandard1.1/de/System.Net.Http.xml",
  5227. "ref/netstandard1.1/es/System.Net.Http.xml",
  5228. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5229. "ref/netstandard1.1/it/System.Net.Http.xml",
  5230. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5231. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5232. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5233. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5234. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5235. "ref/netstandard1.3/System.Net.Http.dll",
  5236. "ref/netstandard1.3/System.Net.Http.xml",
  5237. "ref/netstandard1.3/de/System.Net.Http.xml",
  5238. "ref/netstandard1.3/es/System.Net.Http.xml",
  5239. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5240. "ref/netstandard1.3/it/System.Net.Http.xml",
  5241. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5242. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5243. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5244. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5245. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5246. "ref/portable-net45+win8+wpa81/_._",
  5247. "ref/win8/_._",
  5248. "ref/wpa81/_._",
  5249. "ref/xamarinios10/_._",
  5250. "ref/xamarintvos10/_._",
  5251. "ref/xamarinwatchos10/_._",
  5252. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5253. "runtimes/win/lib/net46/System.Net.Http.dll",
  5254. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5255. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5256. "system.net.http.4.3.0.nupkg.sha512",
  5257. "system.net.http.nuspec"
  5258. ]
  5259. },
  5260. "System.Net.NameResolution/4.0.0": {
  5261. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  5262. "type": "package",
  5263. "path": "system.net.nameresolution/4.0.0",
  5264. "files": [
  5265. ".nupkg.metadata",
  5266. ".signature.p7s",
  5267. "ThirdPartyNotices.txt",
  5268. "dotnet_library_license.txt",
  5269. "lib/MonoAndroid10/_._",
  5270. "lib/MonoTouch10/_._",
  5271. "lib/net46/System.Net.NameResolution.dll",
  5272. "lib/xamarinios10/_._",
  5273. "lib/xamarinmac20/_._",
  5274. "lib/xamarintvos10/_._",
  5275. "lib/xamarinwatchos10/_._",
  5276. "ref/MonoAndroid10/_._",
  5277. "ref/MonoTouch10/_._",
  5278. "ref/net46/System.Net.NameResolution.dll",
  5279. "ref/netstandard1.3/System.Net.NameResolution.dll",
  5280. "ref/netstandard1.3/System.Net.NameResolution.xml",
  5281. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  5282. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  5283. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  5284. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  5285. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  5286. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  5287. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  5288. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  5289. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  5290. "ref/xamarinios10/_._",
  5291. "ref/xamarinmac20/_._",
  5292. "ref/xamarintvos10/_._",
  5293. "ref/xamarinwatchos10/_._",
  5294. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  5295. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  5296. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  5297. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  5298. "system.net.nameresolution.4.0.0.nupkg.sha512",
  5299. "system.net.nameresolution.nuspec"
  5300. ]
  5301. },
  5302. "System.Net.Primitives/4.3.0": {
  5303. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5304. "type": "package",
  5305. "path": "system.net.primitives/4.3.0",
  5306. "files": [
  5307. ".nupkg.metadata",
  5308. ".signature.p7s",
  5309. "ThirdPartyNotices.txt",
  5310. "dotnet_library_license.txt",
  5311. "lib/MonoAndroid10/_._",
  5312. "lib/MonoTouch10/_._",
  5313. "lib/net45/_._",
  5314. "lib/portable-net45+win8+wp8+wpa81/_._",
  5315. "lib/win8/_._",
  5316. "lib/wp80/_._",
  5317. "lib/wpa81/_._",
  5318. "lib/xamarinios10/_._",
  5319. "lib/xamarinmac20/_._",
  5320. "lib/xamarintvos10/_._",
  5321. "lib/xamarinwatchos10/_._",
  5322. "ref/MonoAndroid10/_._",
  5323. "ref/MonoTouch10/_._",
  5324. "ref/net45/_._",
  5325. "ref/netcore50/System.Net.Primitives.dll",
  5326. "ref/netcore50/System.Net.Primitives.xml",
  5327. "ref/netcore50/de/System.Net.Primitives.xml",
  5328. "ref/netcore50/es/System.Net.Primitives.xml",
  5329. "ref/netcore50/fr/System.Net.Primitives.xml",
  5330. "ref/netcore50/it/System.Net.Primitives.xml",
  5331. "ref/netcore50/ja/System.Net.Primitives.xml",
  5332. "ref/netcore50/ko/System.Net.Primitives.xml",
  5333. "ref/netcore50/ru/System.Net.Primitives.xml",
  5334. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5335. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5336. "ref/netstandard1.0/System.Net.Primitives.dll",
  5337. "ref/netstandard1.0/System.Net.Primitives.xml",
  5338. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5339. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5340. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5341. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5342. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5343. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5344. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5345. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5346. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5347. "ref/netstandard1.1/System.Net.Primitives.dll",
  5348. "ref/netstandard1.1/System.Net.Primitives.xml",
  5349. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5350. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5351. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5352. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5353. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5354. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5355. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5356. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5357. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5358. "ref/netstandard1.3/System.Net.Primitives.dll",
  5359. "ref/netstandard1.3/System.Net.Primitives.xml",
  5360. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5361. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5362. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5363. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5364. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5365. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5366. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5367. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5368. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5369. "ref/portable-net45+win8+wp8+wpa81/_._",
  5370. "ref/win8/_._",
  5371. "ref/wp80/_._",
  5372. "ref/wpa81/_._",
  5373. "ref/xamarinios10/_._",
  5374. "ref/xamarinmac20/_._",
  5375. "ref/xamarintvos10/_._",
  5376. "ref/xamarinwatchos10/_._",
  5377. "system.net.primitives.4.3.0.nupkg.sha512",
  5378. "system.net.primitives.nuspec"
  5379. ]
  5380. },
  5381. "System.Net.Sockets/4.3.0": {
  5382. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  5383. "type": "package",
  5384. "path": "system.net.sockets/4.3.0",
  5385. "files": [
  5386. ".nupkg.metadata",
  5387. ".signature.p7s",
  5388. "ThirdPartyNotices.txt",
  5389. "dotnet_library_license.txt",
  5390. "lib/MonoAndroid10/_._",
  5391. "lib/MonoTouch10/_._",
  5392. "lib/net46/System.Net.Sockets.dll",
  5393. "lib/xamarinios10/_._",
  5394. "lib/xamarinmac20/_._",
  5395. "lib/xamarintvos10/_._",
  5396. "lib/xamarinwatchos10/_._",
  5397. "ref/MonoAndroid10/_._",
  5398. "ref/MonoTouch10/_._",
  5399. "ref/net46/System.Net.Sockets.dll",
  5400. "ref/netstandard1.3/System.Net.Sockets.dll",
  5401. "ref/netstandard1.3/System.Net.Sockets.xml",
  5402. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5403. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5404. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5405. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5406. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5407. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5408. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5409. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5410. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5411. "ref/xamarinios10/_._",
  5412. "ref/xamarinmac20/_._",
  5413. "ref/xamarintvos10/_._",
  5414. "ref/xamarinwatchos10/_._",
  5415. "system.net.sockets.4.3.0.nupkg.sha512",
  5416. "system.net.sockets.nuspec"
  5417. ]
  5418. },
  5419. "System.Numerics.Vectors/4.5.0": {
  5420. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  5421. "type": "package",
  5422. "path": "system.numerics.vectors/4.5.0",
  5423. "files": [
  5424. ".nupkg.metadata",
  5425. ".signature.p7s",
  5426. "LICENSE.TXT",
  5427. "THIRD-PARTY-NOTICES.TXT",
  5428. "lib/MonoAndroid10/_._",
  5429. "lib/MonoTouch10/_._",
  5430. "lib/net46/System.Numerics.Vectors.dll",
  5431. "lib/net46/System.Numerics.Vectors.xml",
  5432. "lib/netcoreapp2.0/_._",
  5433. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  5434. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  5435. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  5436. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  5437. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  5438. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  5439. "lib/uap10.0.16299/_._",
  5440. "lib/xamarinios10/_._",
  5441. "lib/xamarinmac20/_._",
  5442. "lib/xamarintvos10/_._",
  5443. "lib/xamarinwatchos10/_._",
  5444. "ref/MonoAndroid10/_._",
  5445. "ref/MonoTouch10/_._",
  5446. "ref/net45/System.Numerics.Vectors.dll",
  5447. "ref/net45/System.Numerics.Vectors.xml",
  5448. "ref/net46/System.Numerics.Vectors.dll",
  5449. "ref/net46/System.Numerics.Vectors.xml",
  5450. "ref/netcoreapp2.0/_._",
  5451. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  5452. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  5453. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  5454. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  5455. "ref/uap10.0.16299/_._",
  5456. "ref/xamarinios10/_._",
  5457. "ref/xamarinmac20/_._",
  5458. "ref/xamarintvos10/_._",
  5459. "ref/xamarinwatchos10/_._",
  5460. "system.numerics.vectors.4.5.0.nupkg.sha512",
  5461. "system.numerics.vectors.nuspec",
  5462. "useSharedDesignerContext.txt",
  5463. "version.txt"
  5464. ]
  5465. },
  5466. "System.ObjectModel/4.3.0": {
  5467. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  5468. "type": "package",
  5469. "path": "system.objectmodel/4.3.0",
  5470. "files": [
  5471. ".nupkg.metadata",
  5472. ".signature.p7s",
  5473. "ThirdPartyNotices.txt",
  5474. "dotnet_library_license.txt",
  5475. "lib/MonoAndroid10/_._",
  5476. "lib/MonoTouch10/_._",
  5477. "lib/net45/_._",
  5478. "lib/netcore50/System.ObjectModel.dll",
  5479. "lib/netstandard1.3/System.ObjectModel.dll",
  5480. "lib/portable-net45+win8+wp8+wpa81/_._",
  5481. "lib/win8/_._",
  5482. "lib/wp80/_._",
  5483. "lib/wpa81/_._",
  5484. "lib/xamarinios10/_._",
  5485. "lib/xamarinmac20/_._",
  5486. "lib/xamarintvos10/_._",
  5487. "lib/xamarinwatchos10/_._",
  5488. "ref/MonoAndroid10/_._",
  5489. "ref/MonoTouch10/_._",
  5490. "ref/net45/_._",
  5491. "ref/netcore50/System.ObjectModel.dll",
  5492. "ref/netcore50/System.ObjectModel.xml",
  5493. "ref/netcore50/de/System.ObjectModel.xml",
  5494. "ref/netcore50/es/System.ObjectModel.xml",
  5495. "ref/netcore50/fr/System.ObjectModel.xml",
  5496. "ref/netcore50/it/System.ObjectModel.xml",
  5497. "ref/netcore50/ja/System.ObjectModel.xml",
  5498. "ref/netcore50/ko/System.ObjectModel.xml",
  5499. "ref/netcore50/ru/System.ObjectModel.xml",
  5500. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5501. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5502. "ref/netstandard1.0/System.ObjectModel.dll",
  5503. "ref/netstandard1.0/System.ObjectModel.xml",
  5504. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5505. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5506. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5507. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5508. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5509. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5510. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5511. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5512. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5513. "ref/netstandard1.3/System.ObjectModel.dll",
  5514. "ref/netstandard1.3/System.ObjectModel.xml",
  5515. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5516. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5517. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5518. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5519. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5520. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5521. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5522. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5523. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5524. "ref/portable-net45+win8+wp8+wpa81/_._",
  5525. "ref/win8/_._",
  5526. "ref/wp80/_._",
  5527. "ref/wpa81/_._",
  5528. "ref/xamarinios10/_._",
  5529. "ref/xamarinmac20/_._",
  5530. "ref/xamarintvos10/_._",
  5531. "ref/xamarinwatchos10/_._",
  5532. "system.objectmodel.4.3.0.nupkg.sha512",
  5533. "system.objectmodel.nuspec"
  5534. ]
  5535. },
  5536. "System.Reflection/4.3.0": {
  5537. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5538. "type": "package",
  5539. "path": "system.reflection/4.3.0",
  5540. "files": [
  5541. ".nupkg.metadata",
  5542. ".signature.p7s",
  5543. "ThirdPartyNotices.txt",
  5544. "dotnet_library_license.txt",
  5545. "lib/MonoAndroid10/_._",
  5546. "lib/MonoTouch10/_._",
  5547. "lib/net45/_._",
  5548. "lib/net462/System.Reflection.dll",
  5549. "lib/portable-net45+win8+wp8+wpa81/_._",
  5550. "lib/win8/_._",
  5551. "lib/wp80/_._",
  5552. "lib/wpa81/_._",
  5553. "lib/xamarinios10/_._",
  5554. "lib/xamarinmac20/_._",
  5555. "lib/xamarintvos10/_._",
  5556. "lib/xamarinwatchos10/_._",
  5557. "ref/MonoAndroid10/_._",
  5558. "ref/MonoTouch10/_._",
  5559. "ref/net45/_._",
  5560. "ref/net462/System.Reflection.dll",
  5561. "ref/netcore50/System.Reflection.dll",
  5562. "ref/netcore50/System.Reflection.xml",
  5563. "ref/netcore50/de/System.Reflection.xml",
  5564. "ref/netcore50/es/System.Reflection.xml",
  5565. "ref/netcore50/fr/System.Reflection.xml",
  5566. "ref/netcore50/it/System.Reflection.xml",
  5567. "ref/netcore50/ja/System.Reflection.xml",
  5568. "ref/netcore50/ko/System.Reflection.xml",
  5569. "ref/netcore50/ru/System.Reflection.xml",
  5570. "ref/netcore50/zh-hans/System.Reflection.xml",
  5571. "ref/netcore50/zh-hant/System.Reflection.xml",
  5572. "ref/netstandard1.0/System.Reflection.dll",
  5573. "ref/netstandard1.0/System.Reflection.xml",
  5574. "ref/netstandard1.0/de/System.Reflection.xml",
  5575. "ref/netstandard1.0/es/System.Reflection.xml",
  5576. "ref/netstandard1.0/fr/System.Reflection.xml",
  5577. "ref/netstandard1.0/it/System.Reflection.xml",
  5578. "ref/netstandard1.0/ja/System.Reflection.xml",
  5579. "ref/netstandard1.0/ko/System.Reflection.xml",
  5580. "ref/netstandard1.0/ru/System.Reflection.xml",
  5581. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5582. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5583. "ref/netstandard1.3/System.Reflection.dll",
  5584. "ref/netstandard1.3/System.Reflection.xml",
  5585. "ref/netstandard1.3/de/System.Reflection.xml",
  5586. "ref/netstandard1.3/es/System.Reflection.xml",
  5587. "ref/netstandard1.3/fr/System.Reflection.xml",
  5588. "ref/netstandard1.3/it/System.Reflection.xml",
  5589. "ref/netstandard1.3/ja/System.Reflection.xml",
  5590. "ref/netstandard1.3/ko/System.Reflection.xml",
  5591. "ref/netstandard1.3/ru/System.Reflection.xml",
  5592. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5593. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5594. "ref/netstandard1.5/System.Reflection.dll",
  5595. "ref/netstandard1.5/System.Reflection.xml",
  5596. "ref/netstandard1.5/de/System.Reflection.xml",
  5597. "ref/netstandard1.5/es/System.Reflection.xml",
  5598. "ref/netstandard1.5/fr/System.Reflection.xml",
  5599. "ref/netstandard1.5/it/System.Reflection.xml",
  5600. "ref/netstandard1.5/ja/System.Reflection.xml",
  5601. "ref/netstandard1.5/ko/System.Reflection.xml",
  5602. "ref/netstandard1.5/ru/System.Reflection.xml",
  5603. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5604. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5605. "ref/portable-net45+win8+wp8+wpa81/_._",
  5606. "ref/win8/_._",
  5607. "ref/wp80/_._",
  5608. "ref/wpa81/_._",
  5609. "ref/xamarinios10/_._",
  5610. "ref/xamarinmac20/_._",
  5611. "ref/xamarintvos10/_._",
  5612. "ref/xamarinwatchos10/_._",
  5613. "system.reflection.4.3.0.nupkg.sha512",
  5614. "system.reflection.nuspec"
  5615. ]
  5616. },
  5617. "System.Reflection.Emit/4.3.0": {
  5618. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5619. "type": "package",
  5620. "path": "system.reflection.emit/4.3.0",
  5621. "files": [
  5622. ".nupkg.metadata",
  5623. ".signature.p7s",
  5624. "ThirdPartyNotices.txt",
  5625. "dotnet_library_license.txt",
  5626. "lib/MonoAndroid10/_._",
  5627. "lib/monotouch10/_._",
  5628. "lib/net45/_._",
  5629. "lib/netcore50/System.Reflection.Emit.dll",
  5630. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5631. "lib/xamarinios10/_._",
  5632. "lib/xamarinmac20/_._",
  5633. "lib/xamarintvos10/_._",
  5634. "lib/xamarinwatchos10/_._",
  5635. "ref/MonoAndroid10/_._",
  5636. "ref/net45/_._",
  5637. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5638. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5639. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5640. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5641. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5642. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5643. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5644. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5645. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5646. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5647. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5648. "ref/xamarinmac20/_._",
  5649. "system.reflection.emit.4.3.0.nupkg.sha512",
  5650. "system.reflection.emit.nuspec"
  5651. ]
  5652. },
  5653. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5654. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5655. "type": "package",
  5656. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5657. "files": [
  5658. ".nupkg.metadata",
  5659. ".signature.p7s",
  5660. "ThirdPartyNotices.txt",
  5661. "dotnet_library_license.txt",
  5662. "lib/MonoAndroid10/_._",
  5663. "lib/MonoTouch10/_._",
  5664. "lib/net45/_._",
  5665. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5666. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5667. "lib/portable-net45+wp8/_._",
  5668. "lib/wp80/_._",
  5669. "lib/xamarinios10/_._",
  5670. "lib/xamarinmac20/_._",
  5671. "lib/xamarintvos10/_._",
  5672. "lib/xamarinwatchos10/_._",
  5673. "ref/MonoAndroid10/_._",
  5674. "ref/MonoTouch10/_._",
  5675. "ref/net45/_._",
  5676. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5677. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5678. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5679. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5680. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5681. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5682. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5683. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5684. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5685. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5686. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5687. "ref/portable-net45+wp8/_._",
  5688. "ref/wp80/_._",
  5689. "ref/xamarinios10/_._",
  5690. "ref/xamarinmac20/_._",
  5691. "ref/xamarintvos10/_._",
  5692. "ref/xamarinwatchos10/_._",
  5693. "runtimes/aot/lib/netcore50/_._",
  5694. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5695. "system.reflection.emit.ilgeneration.nuspec"
  5696. ]
  5697. },
  5698. "System.Reflection.Emit.Lightweight/4.6.0": {
  5699. "sha512": "j/V5HVvxvBQ7uubYD0PptQW2KGsi1Pc2kZ9yfwLixv3ADdjL/4M78KyC5e+ymW612DY8ZE4PFoZmWpoNmN2mqg==",
  5700. "type": "package",
  5701. "path": "system.reflection.emit.lightweight/4.6.0",
  5702. "files": [
  5703. ".nupkg.metadata",
  5704. ".signature.p7s",
  5705. "LICENSE.TXT",
  5706. "THIRD-PARTY-NOTICES.TXT",
  5707. "lib/MonoAndroid10/_._",
  5708. "lib/MonoTouch10/_._",
  5709. "lib/net45/_._",
  5710. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5711. "lib/netcoreapp2.0/_._",
  5712. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5713. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5714. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5715. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  5716. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  5717. "lib/netstandard2.1/_._",
  5718. "lib/portable-net45+wp8/_._",
  5719. "lib/wp80/_._",
  5720. "lib/xamarinios10/_._",
  5721. "lib/xamarinmac20/_._",
  5722. "lib/xamarintvos10/_._",
  5723. "lib/xamarinwatchos10/_._",
  5724. "ref/MonoAndroid10/_._",
  5725. "ref/MonoTouch10/_._",
  5726. "ref/net45/_._",
  5727. "ref/netcoreapp2.0/_._",
  5728. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5729. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5730. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5731. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5732. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5733. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5734. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5735. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5736. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5737. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5738. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5739. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  5740. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  5741. "ref/netstandard2.1/_._",
  5742. "ref/portable-net45+wp8/_._",
  5743. "ref/wp80/_._",
  5744. "ref/xamarinios10/_._",
  5745. "ref/xamarinmac20/_._",
  5746. "ref/xamarintvos10/_._",
  5747. "ref/xamarinwatchos10/_._",
  5748. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5749. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml",
  5750. "system.reflection.emit.lightweight.4.6.0.nupkg.sha512",
  5751. "system.reflection.emit.lightweight.nuspec",
  5752. "useSharedDesignerContext.txt",
  5753. "version.txt"
  5754. ]
  5755. },
  5756. "System.Reflection.Extensions/4.3.0": {
  5757. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  5758. "type": "package",
  5759. "path": "system.reflection.extensions/4.3.0",
  5760. "files": [
  5761. ".nupkg.metadata",
  5762. ".signature.p7s",
  5763. "ThirdPartyNotices.txt",
  5764. "dotnet_library_license.txt",
  5765. "lib/MonoAndroid10/_._",
  5766. "lib/MonoTouch10/_._",
  5767. "lib/net45/_._",
  5768. "lib/portable-net45+win8+wp8+wpa81/_._",
  5769. "lib/win8/_._",
  5770. "lib/wp80/_._",
  5771. "lib/wpa81/_._",
  5772. "lib/xamarinios10/_._",
  5773. "lib/xamarinmac20/_._",
  5774. "lib/xamarintvos10/_._",
  5775. "lib/xamarinwatchos10/_._",
  5776. "ref/MonoAndroid10/_._",
  5777. "ref/MonoTouch10/_._",
  5778. "ref/net45/_._",
  5779. "ref/netcore50/System.Reflection.Extensions.dll",
  5780. "ref/netcore50/System.Reflection.Extensions.xml",
  5781. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5782. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5783. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5784. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5785. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5786. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5787. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5788. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5789. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5790. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5791. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5792. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5793. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5794. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5795. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5796. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5797. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5798. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5799. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5800. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5801. "ref/portable-net45+win8+wp8+wpa81/_._",
  5802. "ref/win8/_._",
  5803. "ref/wp80/_._",
  5804. "ref/wpa81/_._",
  5805. "ref/xamarinios10/_._",
  5806. "ref/xamarinmac20/_._",
  5807. "ref/xamarintvos10/_._",
  5808. "ref/xamarinwatchos10/_._",
  5809. "system.reflection.extensions.4.3.0.nupkg.sha512",
  5810. "system.reflection.extensions.nuspec"
  5811. ]
  5812. },
  5813. "System.Reflection.Primitives/4.3.0": {
  5814. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5815. "type": "package",
  5816. "path": "system.reflection.primitives/4.3.0",
  5817. "files": [
  5818. ".nupkg.metadata",
  5819. ".signature.p7s",
  5820. "ThirdPartyNotices.txt",
  5821. "dotnet_library_license.txt",
  5822. "lib/MonoAndroid10/_._",
  5823. "lib/MonoTouch10/_._",
  5824. "lib/net45/_._",
  5825. "lib/portable-net45+win8+wp8+wpa81/_._",
  5826. "lib/win8/_._",
  5827. "lib/wp80/_._",
  5828. "lib/wpa81/_._",
  5829. "lib/xamarinios10/_._",
  5830. "lib/xamarinmac20/_._",
  5831. "lib/xamarintvos10/_._",
  5832. "lib/xamarinwatchos10/_._",
  5833. "ref/MonoAndroid10/_._",
  5834. "ref/MonoTouch10/_._",
  5835. "ref/net45/_._",
  5836. "ref/netcore50/System.Reflection.Primitives.dll",
  5837. "ref/netcore50/System.Reflection.Primitives.xml",
  5838. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5839. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5840. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5841. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5842. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5843. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5844. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5845. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5846. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5847. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5848. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5849. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5850. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5851. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5852. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5853. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5854. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5855. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5856. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5857. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5858. "ref/portable-net45+win8+wp8+wpa81/_._",
  5859. "ref/win8/_._",
  5860. "ref/wp80/_._",
  5861. "ref/wpa81/_._",
  5862. "ref/xamarinios10/_._",
  5863. "ref/xamarinmac20/_._",
  5864. "ref/xamarintvos10/_._",
  5865. "ref/xamarinwatchos10/_._",
  5866. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5867. "system.reflection.primitives.nuspec"
  5868. ]
  5869. },
  5870. "System.Reflection.TypeExtensions/4.3.0": {
  5871. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  5872. "type": "package",
  5873. "path": "system.reflection.typeextensions/4.3.0",
  5874. "files": [
  5875. ".nupkg.metadata",
  5876. ".signature.p7s",
  5877. "ThirdPartyNotices.txt",
  5878. "dotnet_library_license.txt",
  5879. "lib/MonoAndroid10/_._",
  5880. "lib/MonoTouch10/_._",
  5881. "lib/net46/System.Reflection.TypeExtensions.dll",
  5882. "lib/net462/System.Reflection.TypeExtensions.dll",
  5883. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5884. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5885. "lib/xamarinios10/_._",
  5886. "lib/xamarinmac20/_._",
  5887. "lib/xamarintvos10/_._",
  5888. "lib/xamarinwatchos10/_._",
  5889. "ref/MonoAndroid10/_._",
  5890. "ref/MonoTouch10/_._",
  5891. "ref/net46/System.Reflection.TypeExtensions.dll",
  5892. "ref/net462/System.Reflection.TypeExtensions.dll",
  5893. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5894. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5895. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5896. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5897. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5898. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5899. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5900. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5901. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5902. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5903. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5904. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5905. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5906. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5907. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5908. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5909. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5910. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5911. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5912. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5913. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5914. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5915. "ref/xamarinios10/_._",
  5916. "ref/xamarinmac20/_._",
  5917. "ref/xamarintvos10/_._",
  5918. "ref/xamarinwatchos10/_._",
  5919. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5920. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  5921. "system.reflection.typeextensions.nuspec"
  5922. ]
  5923. },
  5924. "System.Resources.ResourceManager/4.3.0": {
  5925. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  5926. "type": "package",
  5927. "path": "system.resources.resourcemanager/4.3.0",
  5928. "files": [
  5929. ".nupkg.metadata",
  5930. ".signature.p7s",
  5931. "ThirdPartyNotices.txt",
  5932. "dotnet_library_license.txt",
  5933. "lib/MonoAndroid10/_._",
  5934. "lib/MonoTouch10/_._",
  5935. "lib/net45/_._",
  5936. "lib/portable-net45+win8+wp8+wpa81/_._",
  5937. "lib/win8/_._",
  5938. "lib/wp80/_._",
  5939. "lib/wpa81/_._",
  5940. "lib/xamarinios10/_._",
  5941. "lib/xamarinmac20/_._",
  5942. "lib/xamarintvos10/_._",
  5943. "lib/xamarinwatchos10/_._",
  5944. "ref/MonoAndroid10/_._",
  5945. "ref/MonoTouch10/_._",
  5946. "ref/net45/_._",
  5947. "ref/netcore50/System.Resources.ResourceManager.dll",
  5948. "ref/netcore50/System.Resources.ResourceManager.xml",
  5949. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5950. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5951. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5952. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5953. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5954. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5955. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5956. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5957. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5958. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5959. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5960. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5961. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5962. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5963. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5964. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5965. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5966. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5967. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5968. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5969. "ref/portable-net45+win8+wp8+wpa81/_._",
  5970. "ref/win8/_._",
  5971. "ref/wp80/_._",
  5972. "ref/wpa81/_._",
  5973. "ref/xamarinios10/_._",
  5974. "ref/xamarinmac20/_._",
  5975. "ref/xamarintvos10/_._",
  5976. "ref/xamarinwatchos10/_._",
  5977. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  5978. "system.resources.resourcemanager.nuspec"
  5979. ]
  5980. },
  5981. "System.Runtime/4.3.0": {
  5982. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5983. "type": "package",
  5984. "path": "system.runtime/4.3.0",
  5985. "files": [
  5986. ".nupkg.metadata",
  5987. ".signature.p7s",
  5988. "ThirdPartyNotices.txt",
  5989. "dotnet_library_license.txt",
  5990. "lib/MonoAndroid10/_._",
  5991. "lib/MonoTouch10/_._",
  5992. "lib/net45/_._",
  5993. "lib/net462/System.Runtime.dll",
  5994. "lib/portable-net45+win8+wp80+wpa81/_._",
  5995. "lib/win8/_._",
  5996. "lib/wp80/_._",
  5997. "lib/wpa81/_._",
  5998. "lib/xamarinios10/_._",
  5999. "lib/xamarinmac20/_._",
  6000. "lib/xamarintvos10/_._",
  6001. "lib/xamarinwatchos10/_._",
  6002. "ref/MonoAndroid10/_._",
  6003. "ref/MonoTouch10/_._",
  6004. "ref/net45/_._",
  6005. "ref/net462/System.Runtime.dll",
  6006. "ref/netcore50/System.Runtime.dll",
  6007. "ref/netcore50/System.Runtime.xml",
  6008. "ref/netcore50/de/System.Runtime.xml",
  6009. "ref/netcore50/es/System.Runtime.xml",
  6010. "ref/netcore50/fr/System.Runtime.xml",
  6011. "ref/netcore50/it/System.Runtime.xml",
  6012. "ref/netcore50/ja/System.Runtime.xml",
  6013. "ref/netcore50/ko/System.Runtime.xml",
  6014. "ref/netcore50/ru/System.Runtime.xml",
  6015. "ref/netcore50/zh-hans/System.Runtime.xml",
  6016. "ref/netcore50/zh-hant/System.Runtime.xml",
  6017. "ref/netstandard1.0/System.Runtime.dll",
  6018. "ref/netstandard1.0/System.Runtime.xml",
  6019. "ref/netstandard1.0/de/System.Runtime.xml",
  6020. "ref/netstandard1.0/es/System.Runtime.xml",
  6021. "ref/netstandard1.0/fr/System.Runtime.xml",
  6022. "ref/netstandard1.0/it/System.Runtime.xml",
  6023. "ref/netstandard1.0/ja/System.Runtime.xml",
  6024. "ref/netstandard1.0/ko/System.Runtime.xml",
  6025. "ref/netstandard1.0/ru/System.Runtime.xml",
  6026. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6027. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6028. "ref/netstandard1.2/System.Runtime.dll",
  6029. "ref/netstandard1.2/System.Runtime.xml",
  6030. "ref/netstandard1.2/de/System.Runtime.xml",
  6031. "ref/netstandard1.2/es/System.Runtime.xml",
  6032. "ref/netstandard1.2/fr/System.Runtime.xml",
  6033. "ref/netstandard1.2/it/System.Runtime.xml",
  6034. "ref/netstandard1.2/ja/System.Runtime.xml",
  6035. "ref/netstandard1.2/ko/System.Runtime.xml",
  6036. "ref/netstandard1.2/ru/System.Runtime.xml",
  6037. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6038. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6039. "ref/netstandard1.3/System.Runtime.dll",
  6040. "ref/netstandard1.3/System.Runtime.xml",
  6041. "ref/netstandard1.3/de/System.Runtime.xml",
  6042. "ref/netstandard1.3/es/System.Runtime.xml",
  6043. "ref/netstandard1.3/fr/System.Runtime.xml",
  6044. "ref/netstandard1.3/it/System.Runtime.xml",
  6045. "ref/netstandard1.3/ja/System.Runtime.xml",
  6046. "ref/netstandard1.3/ko/System.Runtime.xml",
  6047. "ref/netstandard1.3/ru/System.Runtime.xml",
  6048. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6049. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6050. "ref/netstandard1.5/System.Runtime.dll",
  6051. "ref/netstandard1.5/System.Runtime.xml",
  6052. "ref/netstandard1.5/de/System.Runtime.xml",
  6053. "ref/netstandard1.5/es/System.Runtime.xml",
  6054. "ref/netstandard1.5/fr/System.Runtime.xml",
  6055. "ref/netstandard1.5/it/System.Runtime.xml",
  6056. "ref/netstandard1.5/ja/System.Runtime.xml",
  6057. "ref/netstandard1.5/ko/System.Runtime.xml",
  6058. "ref/netstandard1.5/ru/System.Runtime.xml",
  6059. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6060. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6061. "ref/portable-net45+win8+wp80+wpa81/_._",
  6062. "ref/win8/_._",
  6063. "ref/wp80/_._",
  6064. "ref/wpa81/_._",
  6065. "ref/xamarinios10/_._",
  6066. "ref/xamarinmac20/_._",
  6067. "ref/xamarintvos10/_._",
  6068. "ref/xamarinwatchos10/_._",
  6069. "system.runtime.4.3.0.nupkg.sha512",
  6070. "system.runtime.nuspec"
  6071. ]
  6072. },
  6073. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  6074. "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  6075. "type": "package",
  6076. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  6077. "files": [
  6078. ".nupkg.metadata",
  6079. ".signature.p7s",
  6080. "Icon.png",
  6081. "LICENSE.TXT",
  6082. "THIRD-PARTY-NOTICES.TXT",
  6083. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6084. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6085. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6086. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6087. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6088. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6089. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6090. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6091. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6092. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6093. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6094. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6095. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6096. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6097. "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
  6098. "system.runtime.compilerservices.unsafe.nuspec",
  6099. "useSharedDesignerContext.txt",
  6100. "version.txt"
  6101. ]
  6102. },
  6103. "System.Runtime.Extensions/4.3.0": {
  6104. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6105. "type": "package",
  6106. "path": "system.runtime.extensions/4.3.0",
  6107. "files": [
  6108. ".nupkg.metadata",
  6109. ".signature.p7s",
  6110. "ThirdPartyNotices.txt",
  6111. "dotnet_library_license.txt",
  6112. "lib/MonoAndroid10/_._",
  6113. "lib/MonoTouch10/_._",
  6114. "lib/net45/_._",
  6115. "lib/net462/System.Runtime.Extensions.dll",
  6116. "lib/portable-net45+win8+wp8+wpa81/_._",
  6117. "lib/win8/_._",
  6118. "lib/wp80/_._",
  6119. "lib/wpa81/_._",
  6120. "lib/xamarinios10/_._",
  6121. "lib/xamarinmac20/_._",
  6122. "lib/xamarintvos10/_._",
  6123. "lib/xamarinwatchos10/_._",
  6124. "ref/MonoAndroid10/_._",
  6125. "ref/MonoTouch10/_._",
  6126. "ref/net45/_._",
  6127. "ref/net462/System.Runtime.Extensions.dll",
  6128. "ref/netcore50/System.Runtime.Extensions.dll",
  6129. "ref/netcore50/System.Runtime.Extensions.xml",
  6130. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6131. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6132. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6133. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6134. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6135. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6136. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6137. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6138. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6139. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6140. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6141. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6142. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6143. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6144. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6145. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6146. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6147. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6148. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6149. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6150. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6151. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6152. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6153. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6154. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6155. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6156. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6157. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6158. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6159. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6160. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6161. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6162. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6163. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6164. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6165. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6166. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6167. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6168. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6169. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6170. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6171. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6172. "ref/portable-net45+win8+wp8+wpa81/_._",
  6173. "ref/win8/_._",
  6174. "ref/wp80/_._",
  6175. "ref/wpa81/_._",
  6176. "ref/xamarinios10/_._",
  6177. "ref/xamarinmac20/_._",
  6178. "ref/xamarintvos10/_._",
  6179. "ref/xamarinwatchos10/_._",
  6180. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6181. "system.runtime.extensions.nuspec"
  6182. ]
  6183. },
  6184. "System.Runtime.Handles/4.3.0": {
  6185. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6186. "type": "package",
  6187. "path": "system.runtime.handles/4.3.0",
  6188. "files": [
  6189. ".nupkg.metadata",
  6190. ".signature.p7s",
  6191. "ThirdPartyNotices.txt",
  6192. "dotnet_library_license.txt",
  6193. "lib/MonoAndroid10/_._",
  6194. "lib/MonoTouch10/_._",
  6195. "lib/net46/_._",
  6196. "lib/xamarinios10/_._",
  6197. "lib/xamarinmac20/_._",
  6198. "lib/xamarintvos10/_._",
  6199. "lib/xamarinwatchos10/_._",
  6200. "ref/MonoAndroid10/_._",
  6201. "ref/MonoTouch10/_._",
  6202. "ref/net46/_._",
  6203. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6204. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6205. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6206. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6207. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6208. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6209. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6210. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6211. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6212. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6213. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6214. "ref/xamarinios10/_._",
  6215. "ref/xamarinmac20/_._",
  6216. "ref/xamarintvos10/_._",
  6217. "ref/xamarinwatchos10/_._",
  6218. "system.runtime.handles.4.3.0.nupkg.sha512",
  6219. "system.runtime.handles.nuspec"
  6220. ]
  6221. },
  6222. "System.Runtime.InteropServices/4.3.0": {
  6223. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6224. "type": "package",
  6225. "path": "system.runtime.interopservices/4.3.0",
  6226. "files": [
  6227. ".nupkg.metadata",
  6228. ".signature.p7s",
  6229. "ThirdPartyNotices.txt",
  6230. "dotnet_library_license.txt",
  6231. "lib/MonoAndroid10/_._",
  6232. "lib/MonoTouch10/_._",
  6233. "lib/net45/_._",
  6234. "lib/net462/System.Runtime.InteropServices.dll",
  6235. "lib/net463/System.Runtime.InteropServices.dll",
  6236. "lib/portable-net45+win8+wpa81/_._",
  6237. "lib/win8/_._",
  6238. "lib/wpa81/_._",
  6239. "lib/xamarinios10/_._",
  6240. "lib/xamarinmac20/_._",
  6241. "lib/xamarintvos10/_._",
  6242. "lib/xamarinwatchos10/_._",
  6243. "ref/MonoAndroid10/_._",
  6244. "ref/MonoTouch10/_._",
  6245. "ref/net45/_._",
  6246. "ref/net462/System.Runtime.InteropServices.dll",
  6247. "ref/net463/System.Runtime.InteropServices.dll",
  6248. "ref/netcore50/System.Runtime.InteropServices.dll",
  6249. "ref/netcore50/System.Runtime.InteropServices.xml",
  6250. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6251. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6252. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6253. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6254. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6255. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6256. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6257. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6258. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6259. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6260. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6261. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6262. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6263. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6264. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6265. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6266. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6267. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6268. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6269. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6270. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6271. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6272. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6273. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6274. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6275. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6276. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6277. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6278. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6279. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6280. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6281. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6282. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6283. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6284. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6285. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6286. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6287. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6288. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6289. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6290. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6291. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6292. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6293. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6294. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6295. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6296. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6297. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6298. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6299. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6300. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6301. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6302. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6303. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6304. "ref/portable-net45+win8+wpa81/_._",
  6305. "ref/win8/_._",
  6306. "ref/wpa81/_._",
  6307. "ref/xamarinios10/_._",
  6308. "ref/xamarinmac20/_._",
  6309. "ref/xamarintvos10/_._",
  6310. "ref/xamarinwatchos10/_._",
  6311. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6312. "system.runtime.interopservices.nuspec"
  6313. ]
  6314. },
  6315. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6316. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6317. "type": "package",
  6318. "path": "system.runtime.interopservices.runtimeinformation/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/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6327. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6328. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6329. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6330. "lib/xamarinios10/_._",
  6331. "lib/xamarinmac20/_._",
  6332. "lib/xamarintvos10/_._",
  6333. "lib/xamarinwatchos10/_._",
  6334. "ref/MonoAndroid10/_._",
  6335. "ref/MonoTouch10/_._",
  6336. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6337. "ref/xamarinios10/_._",
  6338. "ref/xamarinmac20/_._",
  6339. "ref/xamarintvos10/_._",
  6340. "ref/xamarinwatchos10/_._",
  6341. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6342. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6343. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6344. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6345. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6346. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6347. "system.runtime.interopservices.runtimeinformation.nuspec"
  6348. ]
  6349. },
  6350. "System.Runtime.Numerics/4.3.0": {
  6351. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6352. "type": "package",
  6353. "path": "system.runtime.numerics/4.3.0",
  6354. "files": [
  6355. ".nupkg.metadata",
  6356. ".signature.p7s",
  6357. "ThirdPartyNotices.txt",
  6358. "dotnet_library_license.txt",
  6359. "lib/MonoAndroid10/_._",
  6360. "lib/MonoTouch10/_._",
  6361. "lib/net45/_._",
  6362. "lib/netcore50/System.Runtime.Numerics.dll",
  6363. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6364. "lib/portable-net45+win8+wpa81/_._",
  6365. "lib/win8/_._",
  6366. "lib/wpa81/_._",
  6367. "lib/xamarinios10/_._",
  6368. "lib/xamarinmac20/_._",
  6369. "lib/xamarintvos10/_._",
  6370. "lib/xamarinwatchos10/_._",
  6371. "ref/MonoAndroid10/_._",
  6372. "ref/MonoTouch10/_._",
  6373. "ref/net45/_._",
  6374. "ref/netcore50/System.Runtime.Numerics.dll",
  6375. "ref/netcore50/System.Runtime.Numerics.xml",
  6376. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6377. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6378. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6379. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6380. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6381. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6382. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6383. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6384. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6385. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6386. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6387. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6388. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6389. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6390. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6391. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6392. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6393. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6394. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6395. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6396. "ref/portable-net45+win8+wpa81/_._",
  6397. "ref/win8/_._",
  6398. "ref/wpa81/_._",
  6399. "ref/xamarinios10/_._",
  6400. "ref/xamarinmac20/_._",
  6401. "ref/xamarintvos10/_._",
  6402. "ref/xamarinwatchos10/_._",
  6403. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6404. "system.runtime.numerics.nuspec"
  6405. ]
  6406. },
  6407. "System.Security.AccessControl/4.6.0": {
  6408. "sha512": "gmlk6khICtVhiUnVBBtlsH0H/5QFDqhTZgtpp3AX14wWE6OIE+BX95NLD+X4AolXnIy/oXpNNmXYnsNfW1KuDQ==",
  6409. "type": "package",
  6410. "path": "system.security.accesscontrol/4.6.0",
  6411. "files": [
  6412. ".nupkg.metadata",
  6413. ".signature.p7s",
  6414. "LICENSE.TXT",
  6415. "THIRD-PARTY-NOTICES.TXT",
  6416. "lib/net46/System.Security.AccessControl.dll",
  6417. "lib/net461/System.Security.AccessControl.dll",
  6418. "lib/net461/System.Security.AccessControl.xml",
  6419. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6420. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6421. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6422. "lib/uap10.0.16299/_._",
  6423. "ref/net46/System.Security.AccessControl.dll",
  6424. "ref/net461/System.Security.AccessControl.dll",
  6425. "ref/net461/System.Security.AccessControl.xml",
  6426. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6427. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6428. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6429. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6430. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6431. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6432. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6433. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6434. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6435. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6436. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6437. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6438. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6439. "ref/uap10.0.16299/_._",
  6440. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6441. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6442. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6443. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6444. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6445. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6446. "runtimes/win/lib/uap10.0.16299/_._",
  6447. "system.security.accesscontrol.4.6.0.nupkg.sha512",
  6448. "system.security.accesscontrol.nuspec",
  6449. "useSharedDesignerContext.txt",
  6450. "version.txt"
  6451. ]
  6452. },
  6453. "System.Security.Cryptography.Algorithms/4.3.0": {
  6454. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6455. "type": "package",
  6456. "path": "system.security.cryptography.algorithms/4.3.0",
  6457. "files": [
  6458. ".nupkg.metadata",
  6459. ".signature.p7s",
  6460. "ThirdPartyNotices.txt",
  6461. "dotnet_library_license.txt",
  6462. "lib/MonoAndroid10/_._",
  6463. "lib/MonoTouch10/_._",
  6464. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6465. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6466. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6467. "lib/xamarinios10/_._",
  6468. "lib/xamarinmac20/_._",
  6469. "lib/xamarintvos10/_._",
  6470. "lib/xamarinwatchos10/_._",
  6471. "ref/MonoAndroid10/_._",
  6472. "ref/MonoTouch10/_._",
  6473. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6474. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6475. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6476. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6477. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6478. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6479. "ref/xamarinios10/_._",
  6480. "ref/xamarinmac20/_._",
  6481. "ref/xamarintvos10/_._",
  6482. "ref/xamarinwatchos10/_._",
  6483. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6484. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6485. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6486. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6487. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6488. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6489. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6490. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6491. "system.security.cryptography.algorithms.nuspec"
  6492. ]
  6493. },
  6494. "System.Security.Cryptography.Cng/4.5.0": {
  6495. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6496. "type": "package",
  6497. "path": "system.security.cryptography.cng/4.5.0",
  6498. "files": [
  6499. ".nupkg.metadata",
  6500. ".signature.p7s",
  6501. "LICENSE.TXT",
  6502. "THIRD-PARTY-NOTICES.TXT",
  6503. "lib/MonoAndroid10/_._",
  6504. "lib/MonoTouch10/_._",
  6505. "lib/net46/System.Security.Cryptography.Cng.dll",
  6506. "lib/net461/System.Security.Cryptography.Cng.dll",
  6507. "lib/net462/System.Security.Cryptography.Cng.dll",
  6508. "lib/net47/System.Security.Cryptography.Cng.dll",
  6509. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6510. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6511. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6512. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6513. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6514. "lib/uap10.0.16299/_._",
  6515. "lib/xamarinios10/_._",
  6516. "lib/xamarinmac20/_._",
  6517. "lib/xamarintvos10/_._",
  6518. "lib/xamarinwatchos10/_._",
  6519. "ref/MonoAndroid10/_._",
  6520. "ref/MonoTouch10/_._",
  6521. "ref/net46/System.Security.Cryptography.Cng.dll",
  6522. "ref/net461/System.Security.Cryptography.Cng.dll",
  6523. "ref/net461/System.Security.Cryptography.Cng.xml",
  6524. "ref/net462/System.Security.Cryptography.Cng.dll",
  6525. "ref/net462/System.Security.Cryptography.Cng.xml",
  6526. "ref/net47/System.Security.Cryptography.Cng.dll",
  6527. "ref/net47/System.Security.Cryptography.Cng.xml",
  6528. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6529. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6530. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6531. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6532. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6533. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6534. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6535. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6536. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6537. "ref/uap10.0.16299/_._",
  6538. "ref/xamarinios10/_._",
  6539. "ref/xamarinmac20/_._",
  6540. "ref/xamarintvos10/_._",
  6541. "ref/xamarinwatchos10/_._",
  6542. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6543. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6544. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6545. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6546. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6547. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6548. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6549. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6550. "runtimes/win/lib/uap10.0.16299/_._",
  6551. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6552. "system.security.cryptography.cng.nuspec",
  6553. "useSharedDesignerContext.txt",
  6554. "version.txt"
  6555. ]
  6556. },
  6557. "System.Security.Cryptography.Csp/4.3.0": {
  6558. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  6559. "type": "package",
  6560. "path": "system.security.cryptography.csp/4.3.0",
  6561. "files": [
  6562. ".nupkg.metadata",
  6563. ".signature.p7s",
  6564. "ThirdPartyNotices.txt",
  6565. "dotnet_library_license.txt",
  6566. "lib/MonoAndroid10/_._",
  6567. "lib/MonoTouch10/_._",
  6568. "lib/net46/System.Security.Cryptography.Csp.dll",
  6569. "lib/xamarinios10/_._",
  6570. "lib/xamarinmac20/_._",
  6571. "lib/xamarintvos10/_._",
  6572. "lib/xamarinwatchos10/_._",
  6573. "ref/MonoAndroid10/_._",
  6574. "ref/MonoTouch10/_._",
  6575. "ref/net46/System.Security.Cryptography.Csp.dll",
  6576. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6577. "ref/xamarinios10/_._",
  6578. "ref/xamarinmac20/_._",
  6579. "ref/xamarintvos10/_._",
  6580. "ref/xamarinwatchos10/_._",
  6581. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6582. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6583. "runtimes/win/lib/netcore50/_._",
  6584. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6585. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  6586. "system.security.cryptography.csp.nuspec"
  6587. ]
  6588. },
  6589. "System.Security.Cryptography.Encoding/4.3.0": {
  6590. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  6591. "type": "package",
  6592. "path": "system.security.cryptography.encoding/4.3.0",
  6593. "files": [
  6594. ".nupkg.metadata",
  6595. ".signature.p7s",
  6596. "ThirdPartyNotices.txt",
  6597. "dotnet_library_license.txt",
  6598. "lib/MonoAndroid10/_._",
  6599. "lib/MonoTouch10/_._",
  6600. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6601. "lib/xamarinios10/_._",
  6602. "lib/xamarinmac20/_._",
  6603. "lib/xamarintvos10/_._",
  6604. "lib/xamarinwatchos10/_._",
  6605. "ref/MonoAndroid10/_._",
  6606. "ref/MonoTouch10/_._",
  6607. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6608. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6609. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6610. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6611. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6612. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6613. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6614. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6615. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6616. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6617. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6618. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6619. "ref/xamarinios10/_._",
  6620. "ref/xamarinmac20/_._",
  6621. "ref/xamarintvos10/_._",
  6622. "ref/xamarinwatchos10/_._",
  6623. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6624. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6625. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6626. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  6627. "system.security.cryptography.encoding.nuspec"
  6628. ]
  6629. },
  6630. "System.Security.Cryptography.OpenSsl/4.3.0": {
  6631. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  6632. "type": "package",
  6633. "path": "system.security.cryptography.openssl/4.3.0",
  6634. "files": [
  6635. ".nupkg.metadata",
  6636. ".signature.p7s",
  6637. "ThirdPartyNotices.txt",
  6638. "dotnet_library_license.txt",
  6639. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6640. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6641. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6642. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6643. "system.security.cryptography.openssl.nuspec"
  6644. ]
  6645. },
  6646. "System.Security.Cryptography.Primitives/4.3.0": {
  6647. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  6648. "type": "package",
  6649. "path": "system.security.cryptography.primitives/4.3.0",
  6650. "files": [
  6651. ".nupkg.metadata",
  6652. ".signature.p7s",
  6653. "ThirdPartyNotices.txt",
  6654. "dotnet_library_license.txt",
  6655. "lib/MonoAndroid10/_._",
  6656. "lib/MonoTouch10/_._",
  6657. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6658. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6659. "lib/xamarinios10/_._",
  6660. "lib/xamarinmac20/_._",
  6661. "lib/xamarintvos10/_._",
  6662. "lib/xamarinwatchos10/_._",
  6663. "ref/MonoAndroid10/_._",
  6664. "ref/MonoTouch10/_._",
  6665. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6666. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6667. "ref/xamarinios10/_._",
  6668. "ref/xamarinmac20/_._",
  6669. "ref/xamarintvos10/_._",
  6670. "ref/xamarinwatchos10/_._",
  6671. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  6672. "system.security.cryptography.primitives.nuspec"
  6673. ]
  6674. },
  6675. "System.Security.Cryptography.ProtectedData/4.4.0": {
  6676. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  6677. "type": "package",
  6678. "path": "system.security.cryptography.protecteddata/4.4.0",
  6679. "files": [
  6680. ".nupkg.metadata",
  6681. ".signature.p7s",
  6682. "LICENSE.TXT",
  6683. "THIRD-PARTY-NOTICES.TXT",
  6684. "lib/MonoAndroid10/_._",
  6685. "lib/MonoTouch10/_._",
  6686. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6687. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6688. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6689. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6690. "lib/xamarinios10/_._",
  6691. "lib/xamarinmac20/_._",
  6692. "lib/xamarintvos10/_._",
  6693. "lib/xamarinwatchos10/_._",
  6694. "ref/MonoAndroid10/_._",
  6695. "ref/MonoTouch10/_._",
  6696. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  6697. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  6698. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  6699. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6700. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6701. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6702. "ref/xamarinios10/_._",
  6703. "ref/xamarinmac20/_._",
  6704. "ref/xamarintvos10/_._",
  6705. "ref/xamarinwatchos10/_._",
  6706. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6707. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6708. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6709. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6710. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  6711. "system.security.cryptography.protecteddata.nuspec",
  6712. "useSharedDesignerContext.txt",
  6713. "version.txt"
  6714. ]
  6715. },
  6716. "System.Security.Cryptography.X509Certificates/4.3.0": {
  6717. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  6718. "type": "package",
  6719. "path": "system.security.cryptography.x509certificates/4.3.0",
  6720. "files": [
  6721. ".nupkg.metadata",
  6722. ".signature.p7s",
  6723. "ThirdPartyNotices.txt",
  6724. "dotnet_library_license.txt",
  6725. "lib/MonoAndroid10/_._",
  6726. "lib/MonoTouch10/_._",
  6727. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6728. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6729. "lib/xamarinios10/_._",
  6730. "lib/xamarinmac20/_._",
  6731. "lib/xamarintvos10/_._",
  6732. "lib/xamarinwatchos10/_._",
  6733. "ref/MonoAndroid10/_._",
  6734. "ref/MonoTouch10/_._",
  6735. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  6736. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  6737. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  6738. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  6739. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  6740. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  6741. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  6742. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  6743. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  6744. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  6745. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  6746. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6747. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6748. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  6749. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  6750. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  6751. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  6752. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  6753. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  6754. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  6755. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  6756. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  6757. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6758. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6759. "ref/xamarinios10/_._",
  6760. "ref/xamarinmac20/_._",
  6761. "ref/xamarintvos10/_._",
  6762. "ref/xamarinwatchos10/_._",
  6763. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6764. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6765. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6766. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  6767. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6768. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  6769. "system.security.cryptography.x509certificates.nuspec"
  6770. ]
  6771. },
  6772. "System.Security.Permissions/4.6.0": {
  6773. "sha512": "W3Uxog9KCZAmGYsOFHgJnb7L2q+SDbxS3vGnFHmErUnXuIjWYpIh1KVTlua7qmPdrlRCkAcTF9dImv+jciBPOQ==",
  6774. "type": "package",
  6775. "path": "system.security.permissions/4.6.0",
  6776. "files": [
  6777. ".nupkg.metadata",
  6778. ".signature.p7s",
  6779. "LICENSE.TXT",
  6780. "THIRD-PARTY-NOTICES.TXT",
  6781. "lib/net461/System.Security.Permissions.dll",
  6782. "lib/net461/System.Security.Permissions.xml",
  6783. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  6784. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  6785. "lib/netstandard2.0/System.Security.Permissions.dll",
  6786. "lib/netstandard2.0/System.Security.Permissions.xml",
  6787. "ref/net461/System.Security.Permissions.dll",
  6788. "ref/net461/System.Security.Permissions.xml",
  6789. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  6790. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  6791. "ref/netstandard2.0/System.Security.Permissions.dll",
  6792. "ref/netstandard2.0/System.Security.Permissions.xml",
  6793. "system.security.permissions.4.6.0.nupkg.sha512",
  6794. "system.security.permissions.nuspec",
  6795. "useSharedDesignerContext.txt",
  6796. "version.txt"
  6797. ]
  6798. },
  6799. "System.Security.Principal.Windows/4.6.0": {
  6800. "sha512": "Mdukseovp0YIGaz16FMH6nbfgZkrCFOJbtXQptv0aeBO9h775Ilb9+TDwLVTKikoW7y7CY7lpoXl9zmZ5G3ndA==",
  6801. "type": "package",
  6802. "path": "system.security.principal.windows/4.6.0",
  6803. "files": [
  6804. ".nupkg.metadata",
  6805. ".signature.p7s",
  6806. "LICENSE.TXT",
  6807. "THIRD-PARTY-NOTICES.TXT",
  6808. "lib/net46/System.Security.Principal.Windows.dll",
  6809. "lib/net461/System.Security.Principal.Windows.dll",
  6810. "lib/net461/System.Security.Principal.Windows.xml",
  6811. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6812. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  6813. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  6814. "lib/uap10.0.16299/_._",
  6815. "ref/net46/System.Security.Principal.Windows.dll",
  6816. "ref/net461/System.Security.Principal.Windows.dll",
  6817. "ref/net461/System.Security.Principal.Windows.xml",
  6818. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  6819. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  6820. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  6821. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  6822. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  6823. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  6824. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  6825. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  6826. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  6827. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  6828. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  6829. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  6830. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  6831. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  6832. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  6833. "ref/uap10.0.16299/_._",
  6834. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6835. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6836. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6837. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6838. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  6839. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  6840. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  6841. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6842. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6843. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6844. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6845. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6846. "runtimes/win/lib/uap10.0.16299/_._",
  6847. "system.security.principal.windows.4.6.0.nupkg.sha512",
  6848. "system.security.principal.windows.nuspec",
  6849. "useSharedDesignerContext.txt",
  6850. "version.txt"
  6851. ]
  6852. },
  6853. "System.Text.Encoding/4.3.0": {
  6854. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  6855. "type": "package",
  6856. "path": "system.text.encoding/4.3.0",
  6857. "files": [
  6858. ".nupkg.metadata",
  6859. ".signature.p7s",
  6860. "ThirdPartyNotices.txt",
  6861. "dotnet_library_license.txt",
  6862. "lib/MonoAndroid10/_._",
  6863. "lib/MonoTouch10/_._",
  6864. "lib/net45/_._",
  6865. "lib/portable-net45+win8+wp8+wpa81/_._",
  6866. "lib/win8/_._",
  6867. "lib/wp80/_._",
  6868. "lib/wpa81/_._",
  6869. "lib/xamarinios10/_._",
  6870. "lib/xamarinmac20/_._",
  6871. "lib/xamarintvos10/_._",
  6872. "lib/xamarinwatchos10/_._",
  6873. "ref/MonoAndroid10/_._",
  6874. "ref/MonoTouch10/_._",
  6875. "ref/net45/_._",
  6876. "ref/netcore50/System.Text.Encoding.dll",
  6877. "ref/netcore50/System.Text.Encoding.xml",
  6878. "ref/netcore50/de/System.Text.Encoding.xml",
  6879. "ref/netcore50/es/System.Text.Encoding.xml",
  6880. "ref/netcore50/fr/System.Text.Encoding.xml",
  6881. "ref/netcore50/it/System.Text.Encoding.xml",
  6882. "ref/netcore50/ja/System.Text.Encoding.xml",
  6883. "ref/netcore50/ko/System.Text.Encoding.xml",
  6884. "ref/netcore50/ru/System.Text.Encoding.xml",
  6885. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  6886. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  6887. "ref/netstandard1.0/System.Text.Encoding.dll",
  6888. "ref/netstandard1.0/System.Text.Encoding.xml",
  6889. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  6890. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  6891. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  6892. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  6893. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  6894. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  6895. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  6896. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  6897. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  6898. "ref/netstandard1.3/System.Text.Encoding.dll",
  6899. "ref/netstandard1.3/System.Text.Encoding.xml",
  6900. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  6901. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  6902. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  6903. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  6904. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  6905. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  6906. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  6907. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  6908. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  6909. "ref/portable-net45+win8+wp8+wpa81/_._",
  6910. "ref/win8/_._",
  6911. "ref/wp80/_._",
  6912. "ref/wpa81/_._",
  6913. "ref/xamarinios10/_._",
  6914. "ref/xamarinmac20/_._",
  6915. "ref/xamarintvos10/_._",
  6916. "ref/xamarinwatchos10/_._",
  6917. "system.text.encoding.4.3.0.nupkg.sha512",
  6918. "system.text.encoding.nuspec"
  6919. ]
  6920. },
  6921. "System.Text.Encoding.CodePages/4.4.0": {
  6922. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  6923. "type": "package",
  6924. "path": "system.text.encoding.codepages/4.4.0",
  6925. "files": [
  6926. ".nupkg.metadata",
  6927. ".signature.p7s",
  6928. "LICENSE.TXT",
  6929. "THIRD-PARTY-NOTICES.TXT",
  6930. "lib/MonoAndroid10/_._",
  6931. "lib/MonoTouch10/_._",
  6932. "lib/net46/System.Text.Encoding.CodePages.dll",
  6933. "lib/net461/System.Text.Encoding.CodePages.dll",
  6934. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6935. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6936. "lib/xamarinios10/_._",
  6937. "lib/xamarinmac20/_._",
  6938. "lib/xamarintvos10/_._",
  6939. "lib/xamarinwatchos10/_._",
  6940. "ref/MonoAndroid10/_._",
  6941. "ref/MonoTouch10/_._",
  6942. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6943. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  6944. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  6945. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  6946. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  6947. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  6948. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  6949. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  6950. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  6951. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  6952. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  6953. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6954. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  6955. "ref/xamarinios10/_._",
  6956. "ref/xamarinmac20/_._",
  6957. "ref/xamarintvos10/_._",
  6958. "ref/xamarinwatchos10/_._",
  6959. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  6960. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  6961. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  6962. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  6963. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  6964. "system.text.encoding.codepages.nuspec",
  6965. "useSharedDesignerContext.txt",
  6966. "version.txt"
  6967. ]
  6968. },
  6969. "System.Text.Encoding.Extensions/4.3.0": {
  6970. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  6971. "type": "package",
  6972. "path": "system.text.encoding.extensions/4.3.0",
  6973. "files": [
  6974. ".nupkg.metadata",
  6975. ".signature.p7s",
  6976. "ThirdPartyNotices.txt",
  6977. "dotnet_library_license.txt",
  6978. "lib/MonoAndroid10/_._",
  6979. "lib/MonoTouch10/_._",
  6980. "lib/net45/_._",
  6981. "lib/portable-net45+win8+wp8+wpa81/_._",
  6982. "lib/win8/_._",
  6983. "lib/wp80/_._",
  6984. "lib/wpa81/_._",
  6985. "lib/xamarinios10/_._",
  6986. "lib/xamarinmac20/_._",
  6987. "lib/xamarintvos10/_._",
  6988. "lib/xamarinwatchos10/_._",
  6989. "ref/MonoAndroid10/_._",
  6990. "ref/MonoTouch10/_._",
  6991. "ref/net45/_._",
  6992. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  6993. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  6994. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  6995. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  6996. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  6997. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  6998. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  6999. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7000. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7001. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7002. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7003. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7004. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7005. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7006. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7007. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7008. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7009. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7010. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7011. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7012. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7013. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7014. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7015. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7016. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7017. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7018. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7019. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7020. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7021. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7022. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7023. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7024. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7025. "ref/portable-net45+win8+wp8+wpa81/_._",
  7026. "ref/win8/_._",
  7027. "ref/wp80/_._",
  7028. "ref/wpa81/_._",
  7029. "ref/xamarinios10/_._",
  7030. "ref/xamarinmac20/_._",
  7031. "ref/xamarintvos10/_._",
  7032. "ref/xamarinwatchos10/_._",
  7033. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7034. "system.text.encoding.extensions.nuspec"
  7035. ]
  7036. },
  7037. "System.Text.Encodings.Web/4.7.0": {
  7038. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  7039. "type": "package",
  7040. "path": "system.text.encodings.web/4.7.0",
  7041. "files": [
  7042. ".nupkg.metadata",
  7043. ".signature.p7s",
  7044. "LICENSE.TXT",
  7045. "THIRD-PARTY-NOTICES.TXT",
  7046. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7047. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7048. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7049. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7050. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  7051. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  7052. "system.text.encodings.web.4.7.0.nupkg.sha512",
  7053. "system.text.encodings.web.nuspec",
  7054. "useSharedDesignerContext.txt",
  7055. "version.txt"
  7056. ]
  7057. },
  7058. "System.Text.Json/4.7.1": {
  7059. "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  7060. "type": "package",
  7061. "path": "system.text.json/4.7.1",
  7062. "files": [
  7063. ".nupkg.metadata",
  7064. ".signature.p7s",
  7065. "Icon.png",
  7066. "LICENSE.TXT",
  7067. "THIRD-PARTY-NOTICES.TXT",
  7068. "lib/net461/System.Text.Json.dll",
  7069. "lib/net461/System.Text.Json.xml",
  7070. "lib/netcoreapp3.0/System.Text.Json.dll",
  7071. "lib/netcoreapp3.0/System.Text.Json.xml",
  7072. "lib/netstandard2.0/System.Text.Json.dll",
  7073. "lib/netstandard2.0/System.Text.Json.xml",
  7074. "system.text.json.4.7.1.nupkg.sha512",
  7075. "system.text.json.nuspec",
  7076. "useSharedDesignerContext.txt",
  7077. "version.txt"
  7078. ]
  7079. },
  7080. "System.Text.RegularExpressions/4.3.0": {
  7081. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7082. "type": "package",
  7083. "path": "system.text.regularexpressions/4.3.0",
  7084. "files": [
  7085. ".nupkg.metadata",
  7086. ".signature.p7s",
  7087. "ThirdPartyNotices.txt",
  7088. "dotnet_library_license.txt",
  7089. "lib/MonoAndroid10/_._",
  7090. "lib/MonoTouch10/_._",
  7091. "lib/net45/_._",
  7092. "lib/net463/System.Text.RegularExpressions.dll",
  7093. "lib/netcore50/System.Text.RegularExpressions.dll",
  7094. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7095. "lib/portable-net45+win8+wp8+wpa81/_._",
  7096. "lib/win8/_._",
  7097. "lib/wp80/_._",
  7098. "lib/wpa81/_._",
  7099. "lib/xamarinios10/_._",
  7100. "lib/xamarinmac20/_._",
  7101. "lib/xamarintvos10/_._",
  7102. "lib/xamarinwatchos10/_._",
  7103. "ref/MonoAndroid10/_._",
  7104. "ref/MonoTouch10/_._",
  7105. "ref/net45/_._",
  7106. "ref/net463/System.Text.RegularExpressions.dll",
  7107. "ref/netcore50/System.Text.RegularExpressions.dll",
  7108. "ref/netcore50/System.Text.RegularExpressions.xml",
  7109. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7110. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7111. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7112. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7113. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7114. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7115. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7116. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7117. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7118. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7119. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7120. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7121. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7122. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7123. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7124. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7125. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7126. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7127. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7128. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7129. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7130. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7131. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7132. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7133. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7134. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7135. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7136. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7137. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7138. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7139. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7140. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7141. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7142. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7143. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7144. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7145. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7146. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7147. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7148. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7149. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7150. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7151. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7152. "ref/portable-net45+win8+wp8+wpa81/_._",
  7153. "ref/win8/_._",
  7154. "ref/wp80/_._",
  7155. "ref/wpa81/_._",
  7156. "ref/xamarinios10/_._",
  7157. "ref/xamarinmac20/_._",
  7158. "ref/xamarintvos10/_._",
  7159. "ref/xamarinwatchos10/_._",
  7160. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7161. "system.text.regularexpressions.nuspec"
  7162. ]
  7163. },
  7164. "System.Threading/4.3.0": {
  7165. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7166. "type": "package",
  7167. "path": "system.threading/4.3.0",
  7168. "files": [
  7169. ".nupkg.metadata",
  7170. ".signature.p7s",
  7171. "ThirdPartyNotices.txt",
  7172. "dotnet_library_license.txt",
  7173. "lib/MonoAndroid10/_._",
  7174. "lib/MonoTouch10/_._",
  7175. "lib/net45/_._",
  7176. "lib/netcore50/System.Threading.dll",
  7177. "lib/netstandard1.3/System.Threading.dll",
  7178. "lib/portable-net45+win8+wp8+wpa81/_._",
  7179. "lib/win8/_._",
  7180. "lib/wp80/_._",
  7181. "lib/wpa81/_._",
  7182. "lib/xamarinios10/_._",
  7183. "lib/xamarinmac20/_._",
  7184. "lib/xamarintvos10/_._",
  7185. "lib/xamarinwatchos10/_._",
  7186. "ref/MonoAndroid10/_._",
  7187. "ref/MonoTouch10/_._",
  7188. "ref/net45/_._",
  7189. "ref/netcore50/System.Threading.dll",
  7190. "ref/netcore50/System.Threading.xml",
  7191. "ref/netcore50/de/System.Threading.xml",
  7192. "ref/netcore50/es/System.Threading.xml",
  7193. "ref/netcore50/fr/System.Threading.xml",
  7194. "ref/netcore50/it/System.Threading.xml",
  7195. "ref/netcore50/ja/System.Threading.xml",
  7196. "ref/netcore50/ko/System.Threading.xml",
  7197. "ref/netcore50/ru/System.Threading.xml",
  7198. "ref/netcore50/zh-hans/System.Threading.xml",
  7199. "ref/netcore50/zh-hant/System.Threading.xml",
  7200. "ref/netstandard1.0/System.Threading.dll",
  7201. "ref/netstandard1.0/System.Threading.xml",
  7202. "ref/netstandard1.0/de/System.Threading.xml",
  7203. "ref/netstandard1.0/es/System.Threading.xml",
  7204. "ref/netstandard1.0/fr/System.Threading.xml",
  7205. "ref/netstandard1.0/it/System.Threading.xml",
  7206. "ref/netstandard1.0/ja/System.Threading.xml",
  7207. "ref/netstandard1.0/ko/System.Threading.xml",
  7208. "ref/netstandard1.0/ru/System.Threading.xml",
  7209. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7210. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7211. "ref/netstandard1.3/System.Threading.dll",
  7212. "ref/netstandard1.3/System.Threading.xml",
  7213. "ref/netstandard1.3/de/System.Threading.xml",
  7214. "ref/netstandard1.3/es/System.Threading.xml",
  7215. "ref/netstandard1.3/fr/System.Threading.xml",
  7216. "ref/netstandard1.3/it/System.Threading.xml",
  7217. "ref/netstandard1.3/ja/System.Threading.xml",
  7218. "ref/netstandard1.3/ko/System.Threading.xml",
  7219. "ref/netstandard1.3/ru/System.Threading.xml",
  7220. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7221. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7222. "ref/portable-net45+win8+wp8+wpa81/_._",
  7223. "ref/win8/_._",
  7224. "ref/wp80/_._",
  7225. "ref/wpa81/_._",
  7226. "ref/xamarinios10/_._",
  7227. "ref/xamarinmac20/_._",
  7228. "ref/xamarintvos10/_._",
  7229. "ref/xamarinwatchos10/_._",
  7230. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7231. "system.threading.4.3.0.nupkg.sha512",
  7232. "system.threading.nuspec"
  7233. ]
  7234. },
  7235. "System.Threading.Tasks/4.3.0": {
  7236. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7237. "type": "package",
  7238. "path": "system.threading.tasks/4.3.0",
  7239. "files": [
  7240. ".nupkg.metadata",
  7241. ".signature.p7s",
  7242. "ThirdPartyNotices.txt",
  7243. "dotnet_library_license.txt",
  7244. "lib/MonoAndroid10/_._",
  7245. "lib/MonoTouch10/_._",
  7246. "lib/net45/_._",
  7247. "lib/portable-net45+win8+wp8+wpa81/_._",
  7248. "lib/win8/_._",
  7249. "lib/wp80/_._",
  7250. "lib/wpa81/_._",
  7251. "lib/xamarinios10/_._",
  7252. "lib/xamarinmac20/_._",
  7253. "lib/xamarintvos10/_._",
  7254. "lib/xamarinwatchos10/_._",
  7255. "ref/MonoAndroid10/_._",
  7256. "ref/MonoTouch10/_._",
  7257. "ref/net45/_._",
  7258. "ref/netcore50/System.Threading.Tasks.dll",
  7259. "ref/netcore50/System.Threading.Tasks.xml",
  7260. "ref/netcore50/de/System.Threading.Tasks.xml",
  7261. "ref/netcore50/es/System.Threading.Tasks.xml",
  7262. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7263. "ref/netcore50/it/System.Threading.Tasks.xml",
  7264. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7265. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7266. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7267. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7268. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7269. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7270. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7271. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7272. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7273. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7274. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7275. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7276. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7277. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7278. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7279. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7280. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7281. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7282. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7283. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7284. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7285. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7286. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7287. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7288. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7289. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7290. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7291. "ref/portable-net45+win8+wp8+wpa81/_._",
  7292. "ref/win8/_._",
  7293. "ref/wp80/_._",
  7294. "ref/wpa81/_._",
  7295. "ref/xamarinios10/_._",
  7296. "ref/xamarinmac20/_._",
  7297. "ref/xamarintvos10/_._",
  7298. "ref/xamarinwatchos10/_._",
  7299. "system.threading.tasks.4.3.0.nupkg.sha512",
  7300. "system.threading.tasks.nuspec"
  7301. ]
  7302. },
  7303. "System.Threading.Tasks.Extensions/4.5.2": {
  7304. "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  7305. "type": "package",
  7306. "path": "system.threading.tasks.extensions/4.5.2",
  7307. "files": [
  7308. ".nupkg.metadata",
  7309. ".signature.p7s",
  7310. "LICENSE.TXT",
  7311. "THIRD-PARTY-NOTICES.TXT",
  7312. "lib/MonoAndroid10/_._",
  7313. "lib/MonoTouch10/_._",
  7314. "lib/netcoreapp2.1/_._",
  7315. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7316. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7317. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  7318. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  7319. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7320. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7321. "lib/xamarinios10/_._",
  7322. "lib/xamarinmac20/_._",
  7323. "lib/xamarintvos10/_._",
  7324. "lib/xamarinwatchos10/_._",
  7325. "ref/MonoAndroid10/_._",
  7326. "ref/MonoTouch10/_._",
  7327. "ref/netcoreapp2.1/_._",
  7328. "ref/xamarinios10/_._",
  7329. "ref/xamarinmac20/_._",
  7330. "ref/xamarintvos10/_._",
  7331. "ref/xamarinwatchos10/_._",
  7332. "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
  7333. "system.threading.tasks.extensions.nuspec",
  7334. "useSharedDesignerContext.txt",
  7335. "version.txt"
  7336. ]
  7337. },
  7338. "System.Threading.Thread/4.0.0": {
  7339. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  7340. "type": "package",
  7341. "path": "system.threading.thread/4.0.0",
  7342. "files": [
  7343. ".nupkg.metadata",
  7344. ".signature.p7s",
  7345. "ThirdPartyNotices.txt",
  7346. "dotnet_library_license.txt",
  7347. "lib/MonoAndroid10/_._",
  7348. "lib/MonoTouch10/_._",
  7349. "lib/net46/System.Threading.Thread.dll",
  7350. "lib/netcore50/_._",
  7351. "lib/netstandard1.3/System.Threading.Thread.dll",
  7352. "lib/xamarinios10/_._",
  7353. "lib/xamarinmac20/_._",
  7354. "lib/xamarintvos10/_._",
  7355. "lib/xamarinwatchos10/_._",
  7356. "ref/MonoAndroid10/_._",
  7357. "ref/MonoTouch10/_._",
  7358. "ref/net46/System.Threading.Thread.dll",
  7359. "ref/netstandard1.3/System.Threading.Thread.dll",
  7360. "ref/netstandard1.3/System.Threading.Thread.xml",
  7361. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  7362. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  7363. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  7364. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  7365. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  7366. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  7367. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  7368. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  7369. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  7370. "ref/xamarinios10/_._",
  7371. "ref/xamarinmac20/_._",
  7372. "ref/xamarintvos10/_._",
  7373. "ref/xamarinwatchos10/_._",
  7374. "system.threading.thread.4.0.0.nupkg.sha512",
  7375. "system.threading.thread.nuspec"
  7376. ]
  7377. },
  7378. "System.Threading.ThreadPool/4.0.10": {
  7379. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  7380. "type": "package",
  7381. "path": "system.threading.threadpool/4.0.10",
  7382. "files": [
  7383. ".nupkg.metadata",
  7384. ".signature.p7s",
  7385. "ThirdPartyNotices.txt",
  7386. "dotnet_library_license.txt",
  7387. "lib/MonoAndroid10/_._",
  7388. "lib/MonoTouch10/_._",
  7389. "lib/net46/System.Threading.ThreadPool.dll",
  7390. "lib/netcore50/_._",
  7391. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  7392. "lib/xamarinios10/_._",
  7393. "lib/xamarinmac20/_._",
  7394. "lib/xamarintvos10/_._",
  7395. "lib/xamarinwatchos10/_._",
  7396. "ref/MonoAndroid10/_._",
  7397. "ref/MonoTouch10/_._",
  7398. "ref/net46/System.Threading.ThreadPool.dll",
  7399. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  7400. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  7401. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  7402. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  7403. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  7404. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  7405. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  7406. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  7407. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  7408. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  7409. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  7410. "ref/xamarinios10/_._",
  7411. "ref/xamarinmac20/_._",
  7412. "ref/xamarintvos10/_._",
  7413. "ref/xamarinwatchos10/_._",
  7414. "system.threading.threadpool.4.0.10.nupkg.sha512",
  7415. "system.threading.threadpool.nuspec"
  7416. ]
  7417. },
  7418. "System.Threading.Timer/4.3.0": {
  7419. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  7420. "type": "package",
  7421. "path": "system.threading.timer/4.3.0",
  7422. "files": [
  7423. ".nupkg.metadata",
  7424. ".signature.p7s",
  7425. "ThirdPartyNotices.txt",
  7426. "dotnet_library_license.txt",
  7427. "lib/MonoAndroid10/_._",
  7428. "lib/MonoTouch10/_._",
  7429. "lib/net451/_._",
  7430. "lib/portable-net451+win81+wpa81/_._",
  7431. "lib/win81/_._",
  7432. "lib/wpa81/_._",
  7433. "lib/xamarinios10/_._",
  7434. "lib/xamarinmac20/_._",
  7435. "lib/xamarintvos10/_._",
  7436. "lib/xamarinwatchos10/_._",
  7437. "ref/MonoAndroid10/_._",
  7438. "ref/MonoTouch10/_._",
  7439. "ref/net451/_._",
  7440. "ref/netcore50/System.Threading.Timer.dll",
  7441. "ref/netcore50/System.Threading.Timer.xml",
  7442. "ref/netcore50/de/System.Threading.Timer.xml",
  7443. "ref/netcore50/es/System.Threading.Timer.xml",
  7444. "ref/netcore50/fr/System.Threading.Timer.xml",
  7445. "ref/netcore50/it/System.Threading.Timer.xml",
  7446. "ref/netcore50/ja/System.Threading.Timer.xml",
  7447. "ref/netcore50/ko/System.Threading.Timer.xml",
  7448. "ref/netcore50/ru/System.Threading.Timer.xml",
  7449. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7450. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7451. "ref/netstandard1.2/System.Threading.Timer.dll",
  7452. "ref/netstandard1.2/System.Threading.Timer.xml",
  7453. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7454. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7455. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7456. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7457. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7458. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7459. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7460. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7461. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7462. "ref/portable-net451+win81+wpa81/_._",
  7463. "ref/win81/_._",
  7464. "ref/wpa81/_._",
  7465. "ref/xamarinios10/_._",
  7466. "ref/xamarinmac20/_._",
  7467. "ref/xamarintvos10/_._",
  7468. "ref/xamarinwatchos10/_._",
  7469. "system.threading.timer.4.3.0.nupkg.sha512",
  7470. "system.threading.timer.nuspec"
  7471. ]
  7472. },
  7473. "System.Xml.ReaderWriter/4.3.0": {
  7474. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  7475. "type": "package",
  7476. "path": "system.xml.readerwriter/4.3.0",
  7477. "files": [
  7478. ".nupkg.metadata",
  7479. ".signature.p7s",
  7480. "ThirdPartyNotices.txt",
  7481. "dotnet_library_license.txt",
  7482. "lib/MonoAndroid10/_._",
  7483. "lib/MonoTouch10/_._",
  7484. "lib/net45/_._",
  7485. "lib/net46/System.Xml.ReaderWriter.dll",
  7486. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7487. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7488. "lib/portable-net45+win8+wp8+wpa81/_._",
  7489. "lib/win8/_._",
  7490. "lib/wp80/_._",
  7491. "lib/wpa81/_._",
  7492. "lib/xamarinios10/_._",
  7493. "lib/xamarinmac20/_._",
  7494. "lib/xamarintvos10/_._",
  7495. "lib/xamarinwatchos10/_._",
  7496. "ref/MonoAndroid10/_._",
  7497. "ref/MonoTouch10/_._",
  7498. "ref/net45/_._",
  7499. "ref/net46/System.Xml.ReaderWriter.dll",
  7500. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7501. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7502. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7503. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7504. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7505. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7506. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7507. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7508. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7509. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7510. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7511. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7512. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7513. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7514. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7515. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7516. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7517. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7518. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7519. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7520. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7521. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7522. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7523. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7524. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7525. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7526. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7527. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7528. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7529. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7530. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7531. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7532. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7533. "ref/portable-net45+win8+wp8+wpa81/_._",
  7534. "ref/win8/_._",
  7535. "ref/wp80/_._",
  7536. "ref/wpa81/_._",
  7537. "ref/xamarinios10/_._",
  7538. "ref/xamarinmac20/_._",
  7539. "ref/xamarintvos10/_._",
  7540. "ref/xamarinwatchos10/_._",
  7541. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  7542. "system.xml.readerwriter.nuspec"
  7543. ]
  7544. },
  7545. "System.Xml.XDocument/4.3.0": {
  7546. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  7547. "type": "package",
  7548. "path": "system.xml.xdocument/4.3.0",
  7549. "files": [
  7550. ".nupkg.metadata",
  7551. ".signature.p7s",
  7552. "ThirdPartyNotices.txt",
  7553. "dotnet_library_license.txt",
  7554. "lib/MonoAndroid10/_._",
  7555. "lib/MonoTouch10/_._",
  7556. "lib/net45/_._",
  7557. "lib/netcore50/System.Xml.XDocument.dll",
  7558. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7559. "lib/portable-net45+win8+wp8+wpa81/_._",
  7560. "lib/win8/_._",
  7561. "lib/wp80/_._",
  7562. "lib/wpa81/_._",
  7563. "lib/xamarinios10/_._",
  7564. "lib/xamarinmac20/_._",
  7565. "lib/xamarintvos10/_._",
  7566. "lib/xamarinwatchos10/_._",
  7567. "ref/MonoAndroid10/_._",
  7568. "ref/MonoTouch10/_._",
  7569. "ref/net45/_._",
  7570. "ref/netcore50/System.Xml.XDocument.dll",
  7571. "ref/netcore50/System.Xml.XDocument.xml",
  7572. "ref/netcore50/de/System.Xml.XDocument.xml",
  7573. "ref/netcore50/es/System.Xml.XDocument.xml",
  7574. "ref/netcore50/fr/System.Xml.XDocument.xml",
  7575. "ref/netcore50/it/System.Xml.XDocument.xml",
  7576. "ref/netcore50/ja/System.Xml.XDocument.xml",
  7577. "ref/netcore50/ko/System.Xml.XDocument.xml",
  7578. "ref/netcore50/ru/System.Xml.XDocument.xml",
  7579. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  7580. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  7581. "ref/netstandard1.0/System.Xml.XDocument.dll",
  7582. "ref/netstandard1.0/System.Xml.XDocument.xml",
  7583. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  7584. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  7585. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  7586. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  7587. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  7588. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  7589. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  7590. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  7591. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  7592. "ref/netstandard1.3/System.Xml.XDocument.dll",
  7593. "ref/netstandard1.3/System.Xml.XDocument.xml",
  7594. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  7595. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  7596. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  7597. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  7598. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  7599. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  7600. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  7601. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  7602. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  7603. "ref/portable-net45+win8+wp8+wpa81/_._",
  7604. "ref/win8/_._",
  7605. "ref/wp80/_._",
  7606. "ref/wpa81/_._",
  7607. "ref/xamarinios10/_._",
  7608. "ref/xamarinmac20/_._",
  7609. "ref/xamarintvos10/_._",
  7610. "ref/xamarinwatchos10/_._",
  7611. "system.xml.xdocument.4.3.0.nupkg.sha512",
  7612. "system.xml.xdocument.nuspec"
  7613. ]
  7614. },
  7615. "System.Xml.XmlDocument/4.0.1": {
  7616. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  7617. "type": "package",
  7618. "path": "system.xml.xmldocument/4.0.1",
  7619. "files": [
  7620. ".nupkg.metadata",
  7621. ".signature.p7s",
  7622. "ThirdPartyNotices.txt",
  7623. "dotnet_library_license.txt",
  7624. "lib/MonoAndroid10/_._",
  7625. "lib/MonoTouch10/_._",
  7626. "lib/net46/System.Xml.XmlDocument.dll",
  7627. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  7628. "lib/xamarinios10/_._",
  7629. "lib/xamarinmac20/_._",
  7630. "lib/xamarintvos10/_._",
  7631. "lib/xamarinwatchos10/_._",
  7632. "ref/MonoAndroid10/_._",
  7633. "ref/MonoTouch10/_._",
  7634. "ref/net46/System.Xml.XmlDocument.dll",
  7635. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  7636. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  7637. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  7638. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  7639. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  7640. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  7641. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  7642. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  7643. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  7644. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  7645. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  7646. "ref/xamarinios10/_._",
  7647. "ref/xamarinmac20/_._",
  7648. "ref/xamarintvos10/_._",
  7649. "ref/xamarinwatchos10/_._",
  7650. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  7651. "system.xml.xmldocument.nuspec"
  7652. ]
  7653. },
  7654. "System.Xml.XPath/4.0.1": {
  7655. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  7656. "type": "package",
  7657. "path": "system.xml.xpath/4.0.1",
  7658. "files": [
  7659. ".nupkg.metadata",
  7660. ".signature.p7s",
  7661. "ThirdPartyNotices.txt",
  7662. "dotnet_library_license.txt",
  7663. "lib/MonoAndroid10/_._",
  7664. "lib/MonoTouch10/_._",
  7665. "lib/net46/System.Xml.XPath.dll",
  7666. "lib/netstandard1.3/System.Xml.XPath.dll",
  7667. "lib/xamarinios10/_._",
  7668. "lib/xamarinmac20/_._",
  7669. "lib/xamarintvos10/_._",
  7670. "lib/xamarinwatchos10/_._",
  7671. "ref/MonoAndroid10/_._",
  7672. "ref/MonoTouch10/_._",
  7673. "ref/net46/System.Xml.XPath.dll",
  7674. "ref/netstandard1.3/System.Xml.XPath.dll",
  7675. "ref/netstandard1.3/System.Xml.XPath.xml",
  7676. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  7677. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  7678. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  7679. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  7680. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  7681. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  7682. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  7683. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  7684. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  7685. "ref/xamarinios10/_._",
  7686. "ref/xamarinmac20/_._",
  7687. "ref/xamarintvos10/_._",
  7688. "ref/xamarinwatchos10/_._",
  7689. "system.xml.xpath.4.0.1.nupkg.sha512",
  7690. "system.xml.xpath.nuspec"
  7691. ]
  7692. },
  7693. "System.Xml.XPath.XmlDocument/4.0.1": {
  7694. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  7695. "type": "package",
  7696. "path": "system.xml.xpath.xmldocument/4.0.1",
  7697. "files": [
  7698. ".nupkg.metadata",
  7699. ".signature.p7s",
  7700. "ThirdPartyNotices.txt",
  7701. "dotnet_library_license.txt",
  7702. "lib/MonoAndroid10/_._",
  7703. "lib/MonoTouch10/_._",
  7704. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7705. "lib/xamarinios10/_._",
  7706. "lib/xamarinmac20/_._",
  7707. "lib/xamarintvos10/_._",
  7708. "lib/xamarinwatchos10/_._",
  7709. "ref/MonoAndroid10/_._",
  7710. "ref/MonoTouch10/_._",
  7711. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7712. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  7713. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  7714. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  7715. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  7716. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  7717. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  7718. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  7719. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  7720. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  7721. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  7722. "ref/xamarinios10/_._",
  7723. "ref/xamarinmac20/_._",
  7724. "ref/xamarintvos10/_._",
  7725. "ref/xamarinwatchos10/_._",
  7726. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  7727. "system.xml.xpath.xmldocument.nuspec"
  7728. ]
  7729. },
  7730. "WebAPIBase.Data/1.0.0": {
  7731. "type": "project",
  7732. "path": "../Data/WebAPIBase.Data.csproj",
  7733. "msbuildProject": "../Data/WebAPIBase.Data.csproj"
  7734. },
  7735. "WebAPIBase.Model/1.0.0": {
  7736. "type": "project",
  7737. "path": "../Model/WebAPIBase.Model.csproj",
  7738. "msbuildProject": "../Model/WebAPIBase.Model.csproj"
  7739. },
  7740. "WebAPIBase.Utils/1.0.0": {
  7741. "type": "project",
  7742. "path": "../Utils/WebAPIBase.Utils.csproj",
  7743. "msbuildProject": "../Utils/WebAPIBase.Utils.csproj"
  7744. }
  7745. },
  7746. "projectFileDependencyGroups": {
  7747. ".NETStandard,Version=v2.1": [
  7748. "Newtonsoft.Json >= 12.0.3",
  7749. "WebAPIBase.Data >= 1.0.0",
  7750. "WebAPIBase.Model >= 1.0.0",
  7751. "WebAPIBase.Utils >= 1.0.0"
  7752. ]
  7753. },
  7754. "packageFolders": {
  7755. "C:\\Users\\lulu\\.nuget\\packages\\": {},
  7756. "D:\\Microsoft\\Xamarin\\NuGet\\": {}
  7757. },
  7758. "project": {
  7759. "version": "1.0.0",
  7760. "restore": {
  7761. "projectUniqueName": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Service\\WebAPIBase.Service.csproj",
  7762. "projectName": "WebAPIBase.Service",
  7763. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Service\\WebAPIBase.Service.csproj",
  7764. "packagesPath": "C:\\Users\\lulu\\.nuget\\packages\\",
  7765. "outputPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Service\\obj\\",
  7766. "projectStyle": "PackageReference",
  7767. "fallbackFolders": [
  7768. "D:\\Microsoft\\Xamarin\\NuGet\\"
  7769. ],
  7770. "configFilePaths": [
  7771. "C:\\Users\\lulu\\AppData\\Roaming\\NuGet\\NuGet.Config",
  7772. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  7773. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  7774. ],
  7775. "originalTargetFrameworks": [
  7776. "netstandard2.1"
  7777. ],
  7778. "sources": {
  7779. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  7780. "https://api.nuget.org/v3/index.json": {}
  7781. },
  7782. "frameworks": {
  7783. "netstandard2.1": {
  7784. "projectReferences": {
  7785. "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Data\\WebAPIBase.Data.csproj": {
  7786. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Data\\WebAPIBase.Data.csproj"
  7787. },
  7788. "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Model\\WebAPIBase.Model.csproj": {
  7789. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Model\\WebAPIBase.Model.csproj"
  7790. },
  7791. "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Utils\\WebAPIBase.Utils.csproj": {
  7792. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Utils\\WebAPIBase.Utils.csproj"
  7793. }
  7794. }
  7795. }
  7796. },
  7797. "warningProperties": {
  7798. "warnAsError": [
  7799. "NU1605"
  7800. ]
  7801. }
  7802. },
  7803. "frameworks": {
  7804. "netstandard2.1": {
  7805. "dependencies": {
  7806. "Newtonsoft.Json": {
  7807. "target": "Package",
  7808. "version": "[12.0.3, )"
  7809. }
  7810. },
  7811. "imports": [
  7812. "net461",
  7813. "net462",
  7814. "net47",
  7815. "net471",
  7816. "net472",
  7817. "net48"
  7818. ],
  7819. "assetTargetFallback": true,
  7820. "warn": true,
  7821. "frameworkReferences": {
  7822. "NETStandard.Library": {
  7823. "privateAssets": "all"
  7824. }
  7825. },
  7826. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.401\\RuntimeIdentifierGraph.json"
  7827. }
  7828. }
  7829. }
  7830. }