project.assets.json 330 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Autofac/6.4.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Diagnostics.DiagnosticSource": "4.7.1"
  9. },
  10. "compile": {
  11. "lib/net6.0/Autofac.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/net6.0/Autofac.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "Autofac.Extensions.DependencyInjection/8.0.0": {
  22. "type": "package",
  23. "dependencies": {
  24. "Autofac": "6.4.0",
  25. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  29. "related": ".xml"
  30. }
  31. },
  32. "runtime": {
  33. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  34. "related": ".xml"
  35. }
  36. }
  37. },
  38. "AutoMapper/12.0.0": {
  39. "type": "package",
  40. "dependencies": {
  41. "Microsoft.CSharp": "4.7.0"
  42. },
  43. "compile": {
  44. "lib/netstandard2.1/AutoMapper.dll": {
  45. "related": ".xml"
  46. }
  47. },
  48. "runtime": {
  49. "lib/netstandard2.1/AutoMapper.dll": {
  50. "related": ".xml"
  51. }
  52. }
  53. },
  54. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  55. "type": "package",
  56. "dependencies": {
  57. "AutoMapper": "12.0.0",
  58. "Microsoft.Extensions.Options": "6.0.0"
  59. },
  60. "compile": {
  61. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  62. },
  63. "runtime": {
  64. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  65. }
  66. },
  67. "BouncyCastle.NetCore/1.8.5": {
  68. "type": "package",
  69. "compile": {
  70. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  71. "related": ".xml"
  72. }
  73. },
  74. "runtime": {
  75. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  76. "related": ".xml"
  77. }
  78. }
  79. },
  80. "Google.Protobuf/3.19.4": {
  81. "type": "package",
  82. "compile": {
  83. "lib/net5.0/Google.Protobuf.dll": {
  84. "related": ".pdb;.xml"
  85. }
  86. },
  87. "runtime": {
  88. "lib/net5.0/Google.Protobuf.dll": {
  89. "related": ".pdb;.xml"
  90. }
  91. }
  92. },
  93. "K4os.Compression.LZ4/1.2.6": {
  94. "type": "package",
  95. "dependencies": {
  96. "System.Memory": "4.5.4"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  100. "related": ".xml"
  101. }
  102. },
  103. "runtime": {
  104. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  105. "related": ".xml"
  106. }
  107. }
  108. },
  109. "K4os.Compression.LZ4.Streams/1.2.6": {
  110. "type": "package",
  111. "dependencies": {
  112. "K4os.Compression.LZ4": "1.2.6",
  113. "K4os.Hash.xxHash": "1.0.6"
  114. },
  115. "compile": {
  116. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  117. "related": ".xml"
  118. }
  119. },
  120. "runtime": {
  121. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  122. "related": ".xml"
  123. }
  124. }
  125. },
  126. "K4os.Hash.xxHash/1.0.6": {
  127. "type": "package",
  128. "dependencies": {
  129. "System.Memory": "4.5.3"
  130. },
  131. "compile": {
  132. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  133. "related": ".xml"
  134. }
  135. },
  136. "runtime": {
  137. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  138. "related": ".xml"
  139. }
  140. }
  141. },
  142. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  143. "type": "package",
  144. "dependencies": {
  145. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  146. "System.Text.Encodings.Web": "4.5.0"
  147. },
  148. "compile": {
  149. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  150. "related": ".xml"
  151. }
  152. },
  153. "runtime": {
  154. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  155. "related": ".xml"
  156. }
  157. }
  158. },
  159. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  160. "type": "package",
  161. "dependencies": {
  162. "Microsoft.Extensions.Primitives": "2.2.0"
  163. },
  164. "compile": {
  165. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  166. "related": ".xml"
  167. }
  168. },
  169. "runtime": {
  170. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  171. "related": ".xml"
  172. }
  173. }
  174. },
  175. "Microsoft.CSharp/4.7.0": {
  176. "type": "package",
  177. "compile": {
  178. "ref/netcoreapp2.0/_._": {}
  179. },
  180. "runtime": {
  181. "lib/netcoreapp2.0/_._": {}
  182. }
  183. },
  184. "Microsoft.Data.SqlClient/2.1.1": {
  185. "type": "package",
  186. "dependencies": {
  187. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  188. "Microsoft.Identity.Client": "4.21.1",
  189. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  190. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  191. "Microsoft.Win32.Registry": "4.7.0",
  192. "System.Configuration.ConfigurationManager": "4.7.0",
  193. "System.Diagnostics.DiagnosticSource": "4.7.0",
  194. "System.Runtime.Caching": "4.7.0",
  195. "System.Security.Principal.Windows": "4.7.0",
  196. "System.Text.Encoding.CodePages": "4.7.0"
  197. },
  198. "compile": {
  199. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  200. "related": ".pdb;.xml"
  201. }
  202. },
  203. "runtime": {
  204. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  205. "related": ".pdb;.xml"
  206. }
  207. },
  208. "runtimeTargets": {
  209. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  210. "assetType": "runtime",
  211. "rid": "unix"
  212. },
  213. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  214. "assetType": "runtime",
  215. "rid": "win"
  216. }
  217. }
  218. },
  219. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  220. "type": "package",
  221. "runtimeTargets": {
  222. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  223. "assetType": "native",
  224. "rid": "win-arm"
  225. },
  226. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  227. "assetType": "native",
  228. "rid": "win-arm64"
  229. },
  230. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  231. "assetType": "native",
  232. "rid": "win-x64"
  233. },
  234. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  235. "assetType": "native",
  236. "rid": "win-x86"
  237. }
  238. }
  239. },
  240. "Microsoft.Data.Sqlite/5.0.5": {
  241. "type": "package",
  242. "dependencies": {
  243. "Microsoft.Data.Sqlite.Core": "5.0.5",
  244. "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4"
  245. },
  246. "compile": {
  247. "lib/netstandard2.0/_._": {}
  248. },
  249. "runtime": {
  250. "lib/netstandard2.0/_._": {}
  251. }
  252. },
  253. "Microsoft.Data.Sqlite.Core/5.0.5": {
  254. "type": "package",
  255. "dependencies": {
  256. "SQLitePCLRaw.core": "2.0.4"
  257. },
  258. "compile": {
  259. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  260. "related": ".xml"
  261. }
  262. },
  263. "runtime": {
  264. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  265. "related": ".xml"
  266. }
  267. }
  268. },
  269. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  270. "type": "package",
  271. "dependencies": {
  272. "Microsoft.Extensions.Primitives": "7.0.0"
  273. },
  274. "compile": {
  275. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  276. "related": ".xml"
  277. }
  278. },
  279. "runtime": {
  280. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  281. "related": ".xml"
  282. }
  283. },
  284. "build": {
  285. "buildTransitive/net6.0/_._": {}
  286. }
  287. },
  288. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  289. "type": "package",
  290. "dependencies": {
  291. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
  292. },
  293. "compile": {
  294. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll": {
  295. "related": ".xml"
  296. }
  297. },
  298. "runtime": {
  299. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll": {
  300. "related": ".xml"
  301. }
  302. },
  303. "build": {
  304. "buildTransitive/net6.0/_._": {}
  305. }
  306. },
  307. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  308. "type": "package",
  309. "compile": {
  310. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  311. "related": ".xml"
  312. }
  313. },
  314. "runtime": {
  315. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  316. "related": ".xml"
  317. }
  318. },
  319. "build": {
  320. "buildTransitive/netcoreapp3.1/_._": {}
  321. }
  322. },
  323. "Microsoft.Extensions.Options/6.0.0": {
  324. "type": "package",
  325. "dependencies": {
  326. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  327. "Microsoft.Extensions.Primitives": "6.0.0"
  328. },
  329. "compile": {
  330. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  331. "related": ".xml"
  332. }
  333. },
  334. "runtime": {
  335. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  336. "related": ".xml"
  337. }
  338. }
  339. },
  340. "Microsoft.Extensions.Primitives/7.0.0": {
  341. "type": "package",
  342. "dependencies": {
  343. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  344. },
  345. "compile": {
  346. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  347. "related": ".xml"
  348. }
  349. },
  350. "runtime": {
  351. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  352. "related": ".xml"
  353. }
  354. },
  355. "build": {
  356. "buildTransitive/net6.0/_._": {}
  357. }
  358. },
  359. "Microsoft.Identity.Client/4.21.1": {
  360. "type": "package",
  361. "compile": {
  362. "ref/netcoreapp2.1/_._": {
  363. "related": ".xml"
  364. }
  365. },
  366. "runtime": {
  367. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  368. "related": ".xml"
  369. }
  370. }
  371. },
  372. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  373. "type": "package",
  374. "dependencies": {
  375. "Microsoft.IdentityModel.Tokens": "6.8.0"
  376. },
  377. "compile": {
  378. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  379. "related": ".xml"
  380. }
  381. },
  382. "runtime": {
  383. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  384. "related": ".xml"
  385. }
  386. }
  387. },
  388. "Microsoft.IdentityModel.Logging/6.8.0": {
  389. "type": "package",
  390. "compile": {
  391. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  392. "related": ".xml"
  393. }
  394. },
  395. "runtime": {
  396. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  397. "related": ".xml"
  398. }
  399. }
  400. },
  401. "Microsoft.IdentityModel.Protocols/6.8.0": {
  402. "type": "package",
  403. "dependencies": {
  404. "Microsoft.IdentityModel.Logging": "6.8.0",
  405. "Microsoft.IdentityModel.Tokens": "6.8.0"
  406. },
  407. "compile": {
  408. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  409. "related": ".xml"
  410. }
  411. },
  412. "runtime": {
  413. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  414. "related": ".xml"
  415. }
  416. }
  417. },
  418. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  419. "type": "package",
  420. "dependencies": {
  421. "Microsoft.IdentityModel.Protocols": "6.8.0",
  422. "System.IdentityModel.Tokens.Jwt": "6.8.0"
  423. },
  424. "compile": {
  425. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  426. "related": ".xml"
  427. }
  428. },
  429. "runtime": {
  430. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  431. "related": ".xml"
  432. }
  433. }
  434. },
  435. "Microsoft.IdentityModel.Tokens/6.8.0": {
  436. "type": "package",
  437. "dependencies": {
  438. "Microsoft.CSharp": "4.5.0",
  439. "Microsoft.IdentityModel.Logging": "6.8.0",
  440. "System.Security.Cryptography.Cng": "4.5.0"
  441. },
  442. "compile": {
  443. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  444. "related": ".xml"
  445. }
  446. },
  447. "runtime": {
  448. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  449. "related": ".xml"
  450. }
  451. }
  452. },
  453. "Microsoft.NETCore.Platforms/3.1.0": {
  454. "type": "package",
  455. "compile": {
  456. "lib/netstandard1.0/_._": {}
  457. },
  458. "runtime": {
  459. "lib/netstandard1.0/_._": {}
  460. }
  461. },
  462. "Microsoft.NETCore.Targets/1.1.0": {
  463. "type": "package",
  464. "compile": {
  465. "lib/netstandard1.0/_._": {}
  466. },
  467. "runtime": {
  468. "lib/netstandard1.0/_._": {}
  469. }
  470. },
  471. "Microsoft.Win32.Primitives/4.3.0": {
  472. "type": "package",
  473. "dependencies": {
  474. "Microsoft.NETCore.Platforms": "1.1.0",
  475. "Microsoft.NETCore.Targets": "1.1.0",
  476. "System.Runtime": "4.3.0"
  477. },
  478. "compile": {
  479. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  480. "related": ".xml"
  481. }
  482. }
  483. },
  484. "Microsoft.Win32.Registry/4.7.0": {
  485. "type": "package",
  486. "dependencies": {
  487. "System.Security.AccessControl": "4.7.0",
  488. "System.Security.Principal.Windows": "4.7.0"
  489. },
  490. "compile": {
  491. "ref/netstandard2.0/_._": {
  492. "related": ".xml"
  493. }
  494. },
  495. "runtime": {
  496. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  497. "related": ".xml"
  498. }
  499. },
  500. "runtimeTargets": {
  501. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  502. "assetType": "runtime",
  503. "rid": "unix"
  504. },
  505. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  506. "assetType": "runtime",
  507. "rid": "win"
  508. }
  509. }
  510. },
  511. "Microsoft.Win32.SystemEvents/4.7.0": {
  512. "type": "package",
  513. "dependencies": {
  514. "Microsoft.NETCore.Platforms": "3.1.0"
  515. },
  516. "compile": {
  517. "ref/netstandard2.0/_._": {
  518. "related": ".xml"
  519. }
  520. },
  521. "runtime": {
  522. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  523. "related": ".xml"
  524. }
  525. },
  526. "runtimeTargets": {
  527. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  528. "assetType": "runtime",
  529. "rid": "win"
  530. }
  531. }
  532. },
  533. "MySql.Data/8.0.29": {
  534. "type": "package",
  535. "dependencies": {
  536. "BouncyCastle.NetCore": "1.8.5",
  537. "Google.Protobuf": "3.19.4",
  538. "K4os.Compression.LZ4.Streams": "1.2.6",
  539. "System.Buffers": "4.5.1",
  540. "System.Configuration.ConfigurationManager": "4.4.1",
  541. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  542. "System.Security.Permissions": "4.7.0",
  543. "System.Text.Encoding.CodePages": "4.4.0"
  544. },
  545. "compile": {
  546. "lib/net6.0/MySql.Data.dll": {
  547. "related": ".xml"
  548. },
  549. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  550. "lib/net6.0/ZstdNet.dll": {}
  551. },
  552. "runtime": {
  553. "lib/net6.0/MySql.Data.dll": {
  554. "related": ".xml"
  555. },
  556. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  557. "lib/net6.0/ZstdNet.dll": {}
  558. }
  559. },
  560. "NETStandard.Library/1.6.1": {
  561. "type": "package",
  562. "dependencies": {
  563. "Microsoft.NETCore.Platforms": "1.1.0",
  564. "Microsoft.Win32.Primitives": "4.3.0",
  565. "System.AppContext": "4.3.0",
  566. "System.Collections": "4.3.0",
  567. "System.Collections.Concurrent": "4.3.0",
  568. "System.Console": "4.3.0",
  569. "System.Diagnostics.Debug": "4.3.0",
  570. "System.Diagnostics.Tools": "4.3.0",
  571. "System.Diagnostics.Tracing": "4.3.0",
  572. "System.Globalization": "4.3.0",
  573. "System.Globalization.Calendars": "4.3.0",
  574. "System.IO": "4.3.0",
  575. "System.IO.Compression": "4.3.0",
  576. "System.IO.Compression.ZipFile": "4.3.0",
  577. "System.IO.FileSystem": "4.3.0",
  578. "System.IO.FileSystem.Primitives": "4.3.0",
  579. "System.Linq": "4.3.0",
  580. "System.Linq.Expressions": "4.3.0",
  581. "System.Net.Http": "4.3.0",
  582. "System.Net.Primitives": "4.3.0",
  583. "System.Net.Sockets": "4.3.0",
  584. "System.ObjectModel": "4.3.0",
  585. "System.Reflection": "4.3.0",
  586. "System.Reflection.Extensions": "4.3.0",
  587. "System.Reflection.Primitives": "4.3.0",
  588. "System.Resources.ResourceManager": "4.3.0",
  589. "System.Runtime": "4.3.0",
  590. "System.Runtime.Extensions": "4.3.0",
  591. "System.Runtime.Handles": "4.3.0",
  592. "System.Runtime.InteropServices": "4.3.0",
  593. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  594. "System.Runtime.Numerics": "4.3.0",
  595. "System.Security.Cryptography.Algorithms": "4.3.0",
  596. "System.Security.Cryptography.Encoding": "4.3.0",
  597. "System.Security.Cryptography.Primitives": "4.3.0",
  598. "System.Security.Cryptography.X509Certificates": "4.3.0",
  599. "System.Text.Encoding": "4.3.0",
  600. "System.Text.Encoding.Extensions": "4.3.0",
  601. "System.Text.RegularExpressions": "4.3.0",
  602. "System.Threading": "4.3.0",
  603. "System.Threading.Tasks": "4.3.0",
  604. "System.Threading.Timer": "4.3.0",
  605. "System.Xml.ReaderWriter": "4.3.0",
  606. "System.Xml.XDocument": "4.3.0"
  607. }
  608. },
  609. "Newtonsoft.Json/10.0.3": {
  610. "type": "package",
  611. "dependencies": {
  612. "Microsoft.CSharp": "4.3.0",
  613. "NETStandard.Library": "1.6.1",
  614. "System.ComponentModel.TypeConverter": "4.3.0",
  615. "System.Runtime.Serialization.Formatters": "4.3.0",
  616. "System.Runtime.Serialization.Primitives": "4.3.0",
  617. "System.Xml.XmlDocument": "4.3.0"
  618. },
  619. "compile": {
  620. "lib/netstandard1.3/Newtonsoft.Json.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "runtime": {
  625. "lib/netstandard1.3/Newtonsoft.Json.dll": {
  626. "related": ".xml"
  627. }
  628. }
  629. },
  630. "Npgsql/5.0.7": {
  631. "type": "package",
  632. "dependencies": {
  633. "System.Runtime.CompilerServices.Unsafe": "4.6.0"
  634. },
  635. "compile": {
  636. "lib/net5.0/Npgsql.dll": {
  637. "related": ".xml"
  638. }
  639. },
  640. "runtime": {
  641. "lib/net5.0/Npgsql.dll": {
  642. "related": ".xml"
  643. }
  644. }
  645. },
  646. "Oracle.ManagedDataAccess.Core/3.21.1": {
  647. "type": "package",
  648. "dependencies": {
  649. "System.Diagnostics.PerformanceCounter": "4.7.0",
  650. "System.DirectoryServices": "4.7.0",
  651. "System.DirectoryServices.Protocols": "4.7.0",
  652. "System.Text.Json": "4.7.1"
  653. },
  654. "compile": {
  655. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  656. },
  657. "runtime": {
  658. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  659. }
  660. },
  661. "Pipelines.Sockets.Unofficial/2.2.2": {
  662. "type": "package",
  663. "dependencies": {
  664. "System.IO.Pipelines": "5.0.1"
  665. },
  666. "compile": {
  667. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  668. "related": ".xml"
  669. }
  670. },
  671. "runtime": {
  672. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  673. "related": ".xml"
  674. }
  675. }
  676. },
  677. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  678. "type": "package",
  679. "runtimeTargets": {
  680. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  681. "assetType": "native",
  682. "rid": "debian.8-x64"
  683. }
  684. }
  685. },
  686. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  687. "type": "package",
  688. "runtimeTargets": {
  689. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  690. "assetType": "native",
  691. "rid": "fedora.23-x64"
  692. }
  693. }
  694. },
  695. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  696. "type": "package",
  697. "runtimeTargets": {
  698. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  699. "assetType": "native",
  700. "rid": "fedora.24-x64"
  701. }
  702. }
  703. },
  704. "runtime.native.System/4.3.0": {
  705. "type": "package",
  706. "dependencies": {
  707. "Microsoft.NETCore.Platforms": "1.1.0",
  708. "Microsoft.NETCore.Targets": "1.1.0"
  709. },
  710. "compile": {
  711. "lib/netstandard1.0/_._": {}
  712. },
  713. "runtime": {
  714. "lib/netstandard1.0/_._": {}
  715. }
  716. },
  717. "runtime.native.System.IO.Compression/4.3.0": {
  718. "type": "package",
  719. "dependencies": {
  720. "Microsoft.NETCore.Platforms": "1.1.0",
  721. "Microsoft.NETCore.Targets": "1.1.0"
  722. },
  723. "compile": {
  724. "lib/netstandard1.0/_._": {}
  725. },
  726. "runtime": {
  727. "lib/netstandard1.0/_._": {}
  728. }
  729. },
  730. "runtime.native.System.Net.Http/4.3.0": {
  731. "type": "package",
  732. "dependencies": {
  733. "Microsoft.NETCore.Platforms": "1.1.0",
  734. "Microsoft.NETCore.Targets": "1.1.0"
  735. },
  736. "compile": {
  737. "lib/netstandard1.0/_._": {}
  738. },
  739. "runtime": {
  740. "lib/netstandard1.0/_._": {}
  741. }
  742. },
  743. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  744. "type": "package",
  745. "dependencies": {
  746. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  747. },
  748. "compile": {
  749. "lib/netstandard1.0/_._": {}
  750. },
  751. "runtime": {
  752. "lib/netstandard1.0/_._": {}
  753. }
  754. },
  755. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  756. "type": "package",
  757. "dependencies": {
  758. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  759. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  760. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  761. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  762. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  763. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  764. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  765. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  766. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  767. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  768. },
  769. "compile": {
  770. "lib/netstandard1.0/_._": {}
  771. },
  772. "runtime": {
  773. "lib/netstandard1.0/_._": {}
  774. }
  775. },
  776. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  777. "type": "package",
  778. "runtimeTargets": {
  779. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  780. "assetType": "native",
  781. "rid": "opensuse.13.2-x64"
  782. }
  783. }
  784. },
  785. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  786. "type": "package",
  787. "runtimeTargets": {
  788. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  789. "assetType": "native",
  790. "rid": "opensuse.42.1-x64"
  791. }
  792. }
  793. },
  794. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  795. "type": "package",
  796. "runtimeTargets": {
  797. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  798. "assetType": "native",
  799. "rid": "osx.10.10-x64"
  800. }
  801. }
  802. },
  803. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  804. "type": "package",
  805. "runtimeTargets": {
  806. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  807. "assetType": "native",
  808. "rid": "osx.10.10-x64"
  809. }
  810. }
  811. },
  812. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  813. "type": "package",
  814. "runtimeTargets": {
  815. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  816. "assetType": "native",
  817. "rid": "rhel.7-x64"
  818. }
  819. }
  820. },
  821. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  822. "type": "package",
  823. "runtimeTargets": {
  824. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  825. "assetType": "native",
  826. "rid": "ubuntu.14.04-x64"
  827. }
  828. }
  829. },
  830. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  831. "type": "package",
  832. "runtimeTargets": {
  833. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  834. "assetType": "native",
  835. "rid": "ubuntu.16.04-x64"
  836. }
  837. }
  838. },
  839. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  840. "type": "package",
  841. "runtimeTargets": {
  842. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  843. "assetType": "native",
  844. "rid": "ubuntu.16.10-x64"
  845. }
  846. }
  847. },
  848. "Serilog/2.10.0": {
  849. "type": "package",
  850. "compile": {
  851. "lib/netstandard2.1/Serilog.dll": {
  852. "related": ".xml"
  853. }
  854. },
  855. "runtime": {
  856. "lib/netstandard2.1/Serilog.dll": {
  857. "related": ".xml"
  858. }
  859. }
  860. },
  861. "Serilog.Sinks.File/5.0.0": {
  862. "type": "package",
  863. "dependencies": {
  864. "Serilog": "2.10.0"
  865. },
  866. "compile": {
  867. "lib/net5.0/Serilog.Sinks.File.dll": {
  868. "related": ".pdb;.xml"
  869. }
  870. },
  871. "runtime": {
  872. "lib/net5.0/Serilog.Sinks.File.dll": {
  873. "related": ".pdb;.xml"
  874. }
  875. }
  876. },
  877. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  878. "type": "package",
  879. "dependencies": {
  880. "SQLitePCLRaw.core": "2.0.4",
  881. "SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
  882. "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4"
  883. },
  884. "compile": {
  885. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  886. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  887. },
  888. "runtime": {
  889. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  890. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  891. }
  892. },
  893. "SQLitePCLRaw.core/2.0.4": {
  894. "type": "package",
  895. "dependencies": {
  896. "System.Memory": "4.5.3"
  897. },
  898. "compile": {
  899. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  900. },
  901. "runtime": {
  902. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  903. }
  904. },
  905. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  906. "type": "package",
  907. "compile": {
  908. "lib/netstandard2.0/_._": {}
  909. },
  910. "runtime": {
  911. "lib/netstandard2.0/_._": {}
  912. },
  913. "runtimeTargets": {
  914. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  915. "assetType": "native",
  916. "rid": "alpine-x64"
  917. },
  918. "runtimes/linux-arm/native/libe_sqlite3.so": {
  919. "assetType": "native",
  920. "rid": "linux-arm"
  921. },
  922. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  923. "assetType": "native",
  924. "rid": "linux-arm64"
  925. },
  926. "runtimes/linux-armel/native/libe_sqlite3.so": {
  927. "assetType": "native",
  928. "rid": "linux-armel"
  929. },
  930. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  931. "assetType": "native",
  932. "rid": "linux-mips64"
  933. },
  934. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  935. "assetType": "native",
  936. "rid": "linux-musl-x64"
  937. },
  938. "runtimes/linux-x64/native/libe_sqlite3.so": {
  939. "assetType": "native",
  940. "rid": "linux-x64"
  941. },
  942. "runtimes/linux-x86/native/libe_sqlite3.so": {
  943. "assetType": "native",
  944. "rid": "linux-x86"
  945. },
  946. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  947. "assetType": "native",
  948. "rid": "osx-x64"
  949. },
  950. "runtimes/win-arm/native/e_sqlite3.dll": {
  951. "assetType": "native",
  952. "rid": "win-arm"
  953. },
  954. "runtimes/win-arm64/native/e_sqlite3.dll": {
  955. "assetType": "native",
  956. "rid": "win-arm64"
  957. },
  958. "runtimes/win-x64/native/e_sqlite3.dll": {
  959. "assetType": "native",
  960. "rid": "win-x64"
  961. },
  962. "runtimes/win-x86/native/e_sqlite3.dll": {
  963. "assetType": "native",
  964. "rid": "win-x86"
  965. }
  966. }
  967. },
  968. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  969. "type": "package",
  970. "dependencies": {
  971. "SQLitePCLRaw.core": "2.0.4"
  972. },
  973. "compile": {
  974. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  975. },
  976. "runtime": {
  977. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  978. }
  979. },
  980. "SqlSugarCore/5.1.3.32": {
  981. "type": "package",
  982. "dependencies": {
  983. "Microsoft.Data.SqlClient": "2.1.1",
  984. "Microsoft.Data.Sqlite": "5.0.5",
  985. "MySql.Data": "8.0.29",
  986. "Newtonsoft.Json": "10.0.3",
  987. "Npgsql": "5.0.7",
  988. "Oracle.ManagedDataAccess.Core": "3.21.1",
  989. "SqlSugarCore.Dm": "1.0.0",
  990. "SqlSugarCore.Kdbndp": "1.0.0",
  991. "System.Data.Common": "4.3.0",
  992. "System.Reflection.Emit.Lightweight": "4.3.0"
  993. },
  994. "compile": {
  995. "lib/netstandard2.1/SqlSugar.dll": {}
  996. },
  997. "runtime": {
  998. "lib/netstandard2.1/SqlSugar.dll": {}
  999. }
  1000. },
  1001. "SqlSugarCore.Dm/1.0.0": {
  1002. "type": "package",
  1003. "compile": {
  1004. "lib/netstandard2.0/DmProvider.dll": {}
  1005. },
  1006. "runtime": {
  1007. "lib/netstandard2.0/DmProvider.dll": {}
  1008. }
  1009. },
  1010. "SqlSugarCore.Kdbndp/1.0.0": {
  1011. "type": "package",
  1012. "compile": {
  1013. "lib/netstandard2.0/Kdbndp.dll": {}
  1014. },
  1015. "runtime": {
  1016. "lib/netstandard2.0/Kdbndp.dll": {}
  1017. }
  1018. },
  1019. "StackExchange.Redis/2.6.96": {
  1020. "type": "package",
  1021. "dependencies": {
  1022. "Pipelines.Sockets.Unofficial": "2.2.2"
  1023. },
  1024. "compile": {
  1025. "lib/net5.0/StackExchange.Redis.dll": {
  1026. "related": ".xml"
  1027. }
  1028. },
  1029. "runtime": {
  1030. "lib/net5.0/StackExchange.Redis.dll": {
  1031. "related": ".xml"
  1032. }
  1033. }
  1034. },
  1035. "System.AppContext/4.3.0": {
  1036. "type": "package",
  1037. "dependencies": {
  1038. "System.Runtime": "4.3.0"
  1039. },
  1040. "compile": {
  1041. "ref/netstandard1.6/System.AppContext.dll": {
  1042. "related": ".xml"
  1043. }
  1044. },
  1045. "runtime": {
  1046. "lib/netstandard1.6/System.AppContext.dll": {}
  1047. }
  1048. },
  1049. "System.Buffers/4.5.1": {
  1050. "type": "package",
  1051. "compile": {
  1052. "ref/netcoreapp2.0/_._": {}
  1053. },
  1054. "runtime": {
  1055. "lib/netcoreapp2.0/_._": {}
  1056. }
  1057. },
  1058. "System.Collections/4.3.0": {
  1059. "type": "package",
  1060. "dependencies": {
  1061. "Microsoft.NETCore.Platforms": "1.1.0",
  1062. "Microsoft.NETCore.Targets": "1.1.0",
  1063. "System.Runtime": "4.3.0"
  1064. },
  1065. "compile": {
  1066. "ref/netstandard1.3/System.Collections.dll": {
  1067. "related": ".xml"
  1068. }
  1069. }
  1070. },
  1071. "System.Collections.Concurrent/4.3.0": {
  1072. "type": "package",
  1073. "dependencies": {
  1074. "System.Collections": "4.3.0",
  1075. "System.Diagnostics.Debug": "4.3.0",
  1076. "System.Diagnostics.Tracing": "4.3.0",
  1077. "System.Globalization": "4.3.0",
  1078. "System.Reflection": "4.3.0",
  1079. "System.Resources.ResourceManager": "4.3.0",
  1080. "System.Runtime": "4.3.0",
  1081. "System.Runtime.Extensions": "4.3.0",
  1082. "System.Threading": "4.3.0",
  1083. "System.Threading.Tasks": "4.3.0"
  1084. },
  1085. "compile": {
  1086. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1087. "related": ".xml"
  1088. }
  1089. },
  1090. "runtime": {
  1091. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1092. }
  1093. },
  1094. "System.Collections.NonGeneric/4.3.0": {
  1095. "type": "package",
  1096. "dependencies": {
  1097. "System.Diagnostics.Debug": "4.3.0",
  1098. "System.Globalization": "4.3.0",
  1099. "System.Resources.ResourceManager": "4.3.0",
  1100. "System.Runtime": "4.3.0",
  1101. "System.Runtime.Extensions": "4.3.0",
  1102. "System.Threading": "4.3.0"
  1103. },
  1104. "compile": {
  1105. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1106. "related": ".xml"
  1107. }
  1108. },
  1109. "runtime": {
  1110. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1111. }
  1112. },
  1113. "System.Collections.Specialized/4.3.0": {
  1114. "type": "package",
  1115. "dependencies": {
  1116. "System.Collections.NonGeneric": "4.3.0",
  1117. "System.Globalization": "4.3.0",
  1118. "System.Globalization.Extensions": "4.3.0",
  1119. "System.Resources.ResourceManager": "4.3.0",
  1120. "System.Runtime": "4.3.0",
  1121. "System.Runtime.Extensions": "4.3.0",
  1122. "System.Threading": "4.3.0"
  1123. },
  1124. "compile": {
  1125. "ref/netstandard1.3/_._": {
  1126. "related": ".xml"
  1127. }
  1128. },
  1129. "runtime": {
  1130. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1131. }
  1132. },
  1133. "System.ComponentModel/4.3.0": {
  1134. "type": "package",
  1135. "dependencies": {
  1136. "System.Runtime": "4.3.0"
  1137. },
  1138. "compile": {
  1139. "ref/netstandard1.0/System.ComponentModel.dll": {
  1140. "related": ".xml"
  1141. }
  1142. },
  1143. "runtime": {
  1144. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1145. }
  1146. },
  1147. "System.ComponentModel.Primitives/4.3.0": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "System.ComponentModel": "4.3.0",
  1151. "System.Resources.ResourceManager": "4.3.0",
  1152. "System.Runtime": "4.3.0"
  1153. },
  1154. "compile": {
  1155. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1156. "related": ".xml"
  1157. }
  1158. },
  1159. "runtime": {
  1160. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1161. }
  1162. },
  1163. "System.ComponentModel.TypeConverter/4.3.0": {
  1164. "type": "package",
  1165. "dependencies": {
  1166. "System.Collections": "4.3.0",
  1167. "System.Collections.NonGeneric": "4.3.0",
  1168. "System.Collections.Specialized": "4.3.0",
  1169. "System.ComponentModel": "4.3.0",
  1170. "System.ComponentModel.Primitives": "4.3.0",
  1171. "System.Globalization": "4.3.0",
  1172. "System.Linq": "4.3.0",
  1173. "System.Reflection": "4.3.0",
  1174. "System.Reflection.Extensions": "4.3.0",
  1175. "System.Reflection.Primitives": "4.3.0",
  1176. "System.Reflection.TypeExtensions": "4.3.0",
  1177. "System.Resources.ResourceManager": "4.3.0",
  1178. "System.Runtime": "4.3.0",
  1179. "System.Runtime.Extensions": "4.3.0",
  1180. "System.Threading": "4.3.0"
  1181. },
  1182. "compile": {
  1183. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1184. "related": ".xml"
  1185. }
  1186. },
  1187. "runtime": {
  1188. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1189. }
  1190. },
  1191. "System.Configuration.ConfigurationManager/4.7.0": {
  1192. "type": "package",
  1193. "dependencies": {
  1194. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1195. "System.Security.Permissions": "4.7.0"
  1196. },
  1197. "compile": {
  1198. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1199. "related": ".xml"
  1200. }
  1201. },
  1202. "runtime": {
  1203. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1204. "related": ".xml"
  1205. }
  1206. }
  1207. },
  1208. "System.Console/4.3.0": {
  1209. "type": "package",
  1210. "dependencies": {
  1211. "Microsoft.NETCore.Platforms": "1.1.0",
  1212. "Microsoft.NETCore.Targets": "1.1.0",
  1213. "System.IO": "4.3.0",
  1214. "System.Runtime": "4.3.0",
  1215. "System.Text.Encoding": "4.3.0"
  1216. },
  1217. "compile": {
  1218. "ref/netstandard1.3/System.Console.dll": {
  1219. "related": ".xml"
  1220. }
  1221. }
  1222. },
  1223. "System.Data.Common/4.3.0": {
  1224. "type": "package",
  1225. "dependencies": {
  1226. "System.Collections": "4.3.0",
  1227. "System.Globalization": "4.3.0",
  1228. "System.IO": "4.3.0",
  1229. "System.Resources.ResourceManager": "4.3.0",
  1230. "System.Runtime": "4.3.0",
  1231. "System.Runtime.Extensions": "4.3.0",
  1232. "System.Text.RegularExpressions": "4.3.0",
  1233. "System.Threading.Tasks": "4.3.0"
  1234. },
  1235. "compile": {
  1236. "ref/netstandard1.2/System.Data.Common.dll": {
  1237. "related": ".xml"
  1238. }
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard1.2/System.Data.Common.dll": {}
  1242. }
  1243. },
  1244. "System.Diagnostics.Debug/4.3.0": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Microsoft.NETCore.Platforms": "1.1.0",
  1248. "Microsoft.NETCore.Targets": "1.1.0",
  1249. "System.Runtime": "4.3.0"
  1250. },
  1251. "compile": {
  1252. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1253. "related": ".xml"
  1254. }
  1255. }
  1256. },
  1257. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1258. "type": "package",
  1259. "compile": {
  1260. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1261. "related": ".xml"
  1262. }
  1263. },
  1264. "runtime": {
  1265. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1266. "related": ".xml"
  1267. }
  1268. }
  1269. },
  1270. "System.Diagnostics.PerformanceCounter/4.7.0": {
  1271. "type": "package",
  1272. "dependencies": {
  1273. "Microsoft.NETCore.Platforms": "3.1.0",
  1274. "Microsoft.Win32.Registry": "4.7.0",
  1275. "System.Configuration.ConfigurationManager": "4.7.0",
  1276. "System.Security.Principal.Windows": "4.7.0"
  1277. },
  1278. "compile": {
  1279. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1280. "related": ".xml"
  1281. }
  1282. },
  1283. "runtime": {
  1284. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1285. "related": ".xml"
  1286. }
  1287. },
  1288. "runtimeTargets": {
  1289. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1290. "assetType": "runtime",
  1291. "rid": "win"
  1292. }
  1293. }
  1294. },
  1295. "System.Diagnostics.Tools/4.3.0": {
  1296. "type": "package",
  1297. "dependencies": {
  1298. "Microsoft.NETCore.Platforms": "1.1.0",
  1299. "Microsoft.NETCore.Targets": "1.1.0",
  1300. "System.Runtime": "4.3.0"
  1301. },
  1302. "compile": {
  1303. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1304. "related": ".xml"
  1305. }
  1306. }
  1307. },
  1308. "System.Diagnostics.Tracing/4.3.0": {
  1309. "type": "package",
  1310. "dependencies": {
  1311. "Microsoft.NETCore.Platforms": "1.1.0",
  1312. "Microsoft.NETCore.Targets": "1.1.0",
  1313. "System.Runtime": "4.3.0"
  1314. },
  1315. "compile": {
  1316. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1317. "related": ".xml"
  1318. }
  1319. }
  1320. },
  1321. "System.DirectoryServices/4.7.0": {
  1322. "type": "package",
  1323. "dependencies": {
  1324. "Microsoft.NETCore.Platforms": "3.1.0",
  1325. "System.IO.FileSystem.AccessControl": "4.7.0",
  1326. "System.Security.AccessControl": "4.7.0",
  1327. "System.Security.Permissions": "4.7.0",
  1328. "System.Security.Principal.Windows": "4.7.0"
  1329. },
  1330. "compile": {
  1331. "ref/netstandard2.0/System.DirectoryServices.dll": {
  1332. "related": ".xml"
  1333. }
  1334. },
  1335. "runtime": {
  1336. "lib/netstandard2.0/System.DirectoryServices.dll": {
  1337. "related": ".xml"
  1338. }
  1339. },
  1340. "runtimeTargets": {
  1341. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
  1342. "assetType": "runtime",
  1343. "rid": "win"
  1344. }
  1345. }
  1346. },
  1347. "System.DirectoryServices.Protocols/4.7.0": {
  1348. "type": "package",
  1349. "dependencies": {
  1350. "Microsoft.NETCore.Platforms": "3.1.0",
  1351. "System.Security.Principal.Windows": "4.7.0"
  1352. },
  1353. "compile": {
  1354. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1355. "related": ".xml"
  1356. }
  1357. },
  1358. "runtime": {
  1359. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1360. "related": ".xml"
  1361. }
  1362. },
  1363. "runtimeTargets": {
  1364. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
  1365. "assetType": "runtime",
  1366. "rid": "win"
  1367. }
  1368. }
  1369. },
  1370. "System.Drawing.Common/4.7.0": {
  1371. "type": "package",
  1372. "dependencies": {
  1373. "Microsoft.NETCore.Platforms": "3.1.0",
  1374. "Microsoft.Win32.SystemEvents": "4.7.0"
  1375. },
  1376. "compile": {
  1377. "ref/netcoreapp3.0/_._": {
  1378. "related": ".xml"
  1379. }
  1380. },
  1381. "runtime": {
  1382. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1383. },
  1384. "runtimeTargets": {
  1385. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1386. "assetType": "runtime",
  1387. "rid": "unix"
  1388. },
  1389. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1390. "assetType": "runtime",
  1391. "rid": "win"
  1392. }
  1393. }
  1394. },
  1395. "System.Globalization/4.3.0": {
  1396. "type": "package",
  1397. "dependencies": {
  1398. "Microsoft.NETCore.Platforms": "1.1.0",
  1399. "Microsoft.NETCore.Targets": "1.1.0",
  1400. "System.Runtime": "4.3.0"
  1401. },
  1402. "compile": {
  1403. "ref/netstandard1.3/System.Globalization.dll": {
  1404. "related": ".xml"
  1405. }
  1406. }
  1407. },
  1408. "System.Globalization.Calendars/4.3.0": {
  1409. "type": "package",
  1410. "dependencies": {
  1411. "Microsoft.NETCore.Platforms": "1.1.0",
  1412. "Microsoft.NETCore.Targets": "1.1.0",
  1413. "System.Globalization": "4.3.0",
  1414. "System.Runtime": "4.3.0"
  1415. },
  1416. "compile": {
  1417. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1418. "related": ".xml"
  1419. }
  1420. }
  1421. },
  1422. "System.Globalization.Extensions/4.3.0": {
  1423. "type": "package",
  1424. "dependencies": {
  1425. "Microsoft.NETCore.Platforms": "1.1.0",
  1426. "System.Globalization": "4.3.0",
  1427. "System.Resources.ResourceManager": "4.3.0",
  1428. "System.Runtime": "4.3.0",
  1429. "System.Runtime.Extensions": "4.3.0",
  1430. "System.Runtime.InteropServices": "4.3.0"
  1431. },
  1432. "compile": {
  1433. "ref/netstandard1.3/_._": {
  1434. "related": ".xml"
  1435. }
  1436. },
  1437. "runtimeTargets": {
  1438. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1439. "assetType": "runtime",
  1440. "rid": "unix"
  1441. },
  1442. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1443. "assetType": "runtime",
  1444. "rid": "win"
  1445. }
  1446. }
  1447. },
  1448. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  1449. "type": "package",
  1450. "dependencies": {
  1451. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  1452. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1453. },
  1454. "compile": {
  1455. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1456. "related": ".xml"
  1457. }
  1458. },
  1459. "runtime": {
  1460. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1461. "related": ".xml"
  1462. }
  1463. }
  1464. },
  1465. "System.IO/4.3.0": {
  1466. "type": "package",
  1467. "dependencies": {
  1468. "Microsoft.NETCore.Platforms": "1.1.0",
  1469. "Microsoft.NETCore.Targets": "1.1.0",
  1470. "System.Runtime": "4.3.0",
  1471. "System.Text.Encoding": "4.3.0",
  1472. "System.Threading.Tasks": "4.3.0"
  1473. },
  1474. "compile": {
  1475. "ref/netstandard1.5/System.IO.dll": {
  1476. "related": ".xml"
  1477. }
  1478. }
  1479. },
  1480. "System.IO.Compression/4.3.0": {
  1481. "type": "package",
  1482. "dependencies": {
  1483. "Microsoft.NETCore.Platforms": "1.1.0",
  1484. "System.Buffers": "4.3.0",
  1485. "System.Collections": "4.3.0",
  1486. "System.Diagnostics.Debug": "4.3.0",
  1487. "System.IO": "4.3.0",
  1488. "System.Resources.ResourceManager": "4.3.0",
  1489. "System.Runtime": "4.3.0",
  1490. "System.Runtime.Extensions": "4.3.0",
  1491. "System.Runtime.Handles": "4.3.0",
  1492. "System.Runtime.InteropServices": "4.3.0",
  1493. "System.Text.Encoding": "4.3.0",
  1494. "System.Threading": "4.3.0",
  1495. "System.Threading.Tasks": "4.3.0",
  1496. "runtime.native.System": "4.3.0",
  1497. "runtime.native.System.IO.Compression": "4.3.0"
  1498. },
  1499. "compile": {
  1500. "ref/netstandard1.3/System.IO.Compression.dll": {
  1501. "related": ".xml"
  1502. }
  1503. },
  1504. "runtimeTargets": {
  1505. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1506. "assetType": "runtime",
  1507. "rid": "unix"
  1508. },
  1509. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1510. "assetType": "runtime",
  1511. "rid": "win"
  1512. }
  1513. }
  1514. },
  1515. "System.IO.Compression.ZipFile/4.3.0": {
  1516. "type": "package",
  1517. "dependencies": {
  1518. "System.Buffers": "4.3.0",
  1519. "System.IO": "4.3.0",
  1520. "System.IO.Compression": "4.3.0",
  1521. "System.IO.FileSystem": "4.3.0",
  1522. "System.IO.FileSystem.Primitives": "4.3.0",
  1523. "System.Resources.ResourceManager": "4.3.0",
  1524. "System.Runtime": "4.3.0",
  1525. "System.Runtime.Extensions": "4.3.0",
  1526. "System.Text.Encoding": "4.3.0"
  1527. },
  1528. "compile": {
  1529. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1530. "related": ".xml"
  1531. }
  1532. },
  1533. "runtime": {
  1534. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1535. }
  1536. },
  1537. "System.IO.FileSystem/4.3.0": {
  1538. "type": "package",
  1539. "dependencies": {
  1540. "Microsoft.NETCore.Platforms": "1.1.0",
  1541. "Microsoft.NETCore.Targets": "1.1.0",
  1542. "System.IO": "4.3.0",
  1543. "System.IO.FileSystem.Primitives": "4.3.0",
  1544. "System.Runtime": "4.3.0",
  1545. "System.Runtime.Handles": "4.3.0",
  1546. "System.Text.Encoding": "4.3.0",
  1547. "System.Threading.Tasks": "4.3.0"
  1548. },
  1549. "compile": {
  1550. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1551. "related": ".xml"
  1552. }
  1553. }
  1554. },
  1555. "System.IO.FileSystem.AccessControl/4.7.0": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "System.Security.AccessControl": "4.7.0",
  1559. "System.Security.Principal.Windows": "4.7.0"
  1560. },
  1561. "compile": {
  1562. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1563. "related": ".xml"
  1564. }
  1565. },
  1566. "runtime": {
  1567. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1568. "related": ".xml"
  1569. }
  1570. },
  1571. "runtimeTargets": {
  1572. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1573. "assetType": "runtime",
  1574. "rid": "win"
  1575. }
  1576. }
  1577. },
  1578. "System.IO.FileSystem.Primitives/4.3.0": {
  1579. "type": "package",
  1580. "dependencies": {
  1581. "System.Runtime": "4.3.0"
  1582. },
  1583. "compile": {
  1584. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1585. "related": ".xml"
  1586. }
  1587. },
  1588. "runtime": {
  1589. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1590. }
  1591. },
  1592. "System.IO.Pipelines/5.0.1": {
  1593. "type": "package",
  1594. "compile": {
  1595. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1596. "related": ".xml"
  1597. }
  1598. },
  1599. "runtime": {
  1600. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1601. "related": ".xml"
  1602. }
  1603. }
  1604. },
  1605. "System.Linq/4.3.0": {
  1606. "type": "package",
  1607. "dependencies": {
  1608. "System.Collections": "4.3.0",
  1609. "System.Diagnostics.Debug": "4.3.0",
  1610. "System.Resources.ResourceManager": "4.3.0",
  1611. "System.Runtime": "4.3.0",
  1612. "System.Runtime.Extensions": "4.3.0"
  1613. },
  1614. "compile": {
  1615. "ref/netstandard1.6/System.Linq.dll": {
  1616. "related": ".xml"
  1617. }
  1618. },
  1619. "runtime": {
  1620. "lib/netstandard1.6/System.Linq.dll": {}
  1621. }
  1622. },
  1623. "System.Linq.Expressions/4.3.0": {
  1624. "type": "package",
  1625. "dependencies": {
  1626. "System.Collections": "4.3.0",
  1627. "System.Diagnostics.Debug": "4.3.0",
  1628. "System.Globalization": "4.3.0",
  1629. "System.IO": "4.3.0",
  1630. "System.Linq": "4.3.0",
  1631. "System.ObjectModel": "4.3.0",
  1632. "System.Reflection": "4.3.0",
  1633. "System.Reflection.Emit": "4.3.0",
  1634. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1635. "System.Reflection.Emit.Lightweight": "4.3.0",
  1636. "System.Reflection.Extensions": "4.3.0",
  1637. "System.Reflection.Primitives": "4.3.0",
  1638. "System.Reflection.TypeExtensions": "4.3.0",
  1639. "System.Resources.ResourceManager": "4.3.0",
  1640. "System.Runtime": "4.3.0",
  1641. "System.Runtime.Extensions": "4.3.0",
  1642. "System.Threading": "4.3.0"
  1643. },
  1644. "compile": {
  1645. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1646. "related": ".xml"
  1647. }
  1648. },
  1649. "runtime": {
  1650. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1651. }
  1652. },
  1653. "System.Memory/4.5.4": {
  1654. "type": "package",
  1655. "compile": {
  1656. "ref/netcoreapp2.1/_._": {}
  1657. },
  1658. "runtime": {
  1659. "lib/netcoreapp2.1/_._": {}
  1660. }
  1661. },
  1662. "System.Net.Http/4.3.0": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "Microsoft.NETCore.Platforms": "1.1.0",
  1666. "System.Collections": "4.3.0",
  1667. "System.Diagnostics.Debug": "4.3.0",
  1668. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1669. "System.Diagnostics.Tracing": "4.3.0",
  1670. "System.Globalization": "4.3.0",
  1671. "System.Globalization.Extensions": "4.3.0",
  1672. "System.IO": "4.3.0",
  1673. "System.IO.FileSystem": "4.3.0",
  1674. "System.Net.Primitives": "4.3.0",
  1675. "System.Resources.ResourceManager": "4.3.0",
  1676. "System.Runtime": "4.3.0",
  1677. "System.Runtime.Extensions": "4.3.0",
  1678. "System.Runtime.Handles": "4.3.0",
  1679. "System.Runtime.InteropServices": "4.3.0",
  1680. "System.Security.Cryptography.Algorithms": "4.3.0",
  1681. "System.Security.Cryptography.Encoding": "4.3.0",
  1682. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1683. "System.Security.Cryptography.Primitives": "4.3.0",
  1684. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1685. "System.Text.Encoding": "4.3.0",
  1686. "System.Threading": "4.3.0",
  1687. "System.Threading.Tasks": "4.3.0",
  1688. "runtime.native.System": "4.3.0",
  1689. "runtime.native.System.Net.Http": "4.3.0",
  1690. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1691. },
  1692. "compile": {
  1693. "ref/netstandard1.3/System.Net.Http.dll": {
  1694. "related": ".xml"
  1695. }
  1696. },
  1697. "runtimeTargets": {
  1698. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1699. "assetType": "runtime",
  1700. "rid": "unix"
  1701. },
  1702. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1703. "assetType": "runtime",
  1704. "rid": "win"
  1705. }
  1706. }
  1707. },
  1708. "System.Net.Primitives/4.3.0": {
  1709. "type": "package",
  1710. "dependencies": {
  1711. "Microsoft.NETCore.Platforms": "1.1.0",
  1712. "Microsoft.NETCore.Targets": "1.1.0",
  1713. "System.Runtime": "4.3.0",
  1714. "System.Runtime.Handles": "4.3.0"
  1715. },
  1716. "compile": {
  1717. "ref/netstandard1.3/System.Net.Primitives.dll": {
  1718. "related": ".xml"
  1719. }
  1720. }
  1721. },
  1722. "System.Net.Sockets/4.3.0": {
  1723. "type": "package",
  1724. "dependencies": {
  1725. "Microsoft.NETCore.Platforms": "1.1.0",
  1726. "Microsoft.NETCore.Targets": "1.1.0",
  1727. "System.IO": "4.3.0",
  1728. "System.Net.Primitives": "4.3.0",
  1729. "System.Runtime": "4.3.0",
  1730. "System.Threading.Tasks": "4.3.0"
  1731. },
  1732. "compile": {
  1733. "ref/netstandard1.3/System.Net.Sockets.dll": {
  1734. "related": ".xml"
  1735. }
  1736. }
  1737. },
  1738. "System.ObjectModel/4.3.0": {
  1739. "type": "package",
  1740. "dependencies": {
  1741. "System.Collections": "4.3.0",
  1742. "System.Diagnostics.Debug": "4.3.0",
  1743. "System.Resources.ResourceManager": "4.3.0",
  1744. "System.Runtime": "4.3.0",
  1745. "System.Threading": "4.3.0"
  1746. },
  1747. "compile": {
  1748. "ref/netstandard1.3/System.ObjectModel.dll": {
  1749. "related": ".xml"
  1750. }
  1751. },
  1752. "runtime": {
  1753. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1754. }
  1755. },
  1756. "System.Reflection/4.3.0": {
  1757. "type": "package",
  1758. "dependencies": {
  1759. "Microsoft.NETCore.Platforms": "1.1.0",
  1760. "Microsoft.NETCore.Targets": "1.1.0",
  1761. "System.IO": "4.3.0",
  1762. "System.Reflection.Primitives": "4.3.0",
  1763. "System.Runtime": "4.3.0"
  1764. },
  1765. "compile": {
  1766. "ref/netstandard1.5/System.Reflection.dll": {
  1767. "related": ".xml"
  1768. }
  1769. }
  1770. },
  1771. "System.Reflection.Emit/4.3.0": {
  1772. "type": "package",
  1773. "dependencies": {
  1774. "System.IO": "4.3.0",
  1775. "System.Reflection": "4.3.0",
  1776. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1777. "System.Reflection.Primitives": "4.3.0",
  1778. "System.Runtime": "4.3.0"
  1779. },
  1780. "compile": {
  1781. "ref/netstandard1.1/_._": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1787. }
  1788. },
  1789. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1790. "type": "package",
  1791. "dependencies": {
  1792. "System.Reflection": "4.3.0",
  1793. "System.Reflection.Primitives": "4.3.0",
  1794. "System.Runtime": "4.3.0"
  1795. },
  1796. "compile": {
  1797. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  1798. "related": ".xml"
  1799. }
  1800. },
  1801. "runtime": {
  1802. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1803. }
  1804. },
  1805. "System.Reflection.Emit.Lightweight/4.3.0": {
  1806. "type": "package",
  1807. "dependencies": {
  1808. "System.Reflection": "4.3.0",
  1809. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1810. "System.Reflection.Primitives": "4.3.0",
  1811. "System.Runtime": "4.3.0"
  1812. },
  1813. "compile": {
  1814. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  1815. "related": ".xml"
  1816. }
  1817. },
  1818. "runtime": {
  1819. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1820. }
  1821. },
  1822. "System.Reflection.Extensions/4.3.0": {
  1823. "type": "package",
  1824. "dependencies": {
  1825. "Microsoft.NETCore.Platforms": "1.1.0",
  1826. "Microsoft.NETCore.Targets": "1.1.0",
  1827. "System.Reflection": "4.3.0",
  1828. "System.Runtime": "4.3.0"
  1829. },
  1830. "compile": {
  1831. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  1832. "related": ".xml"
  1833. }
  1834. }
  1835. },
  1836. "System.Reflection.Primitives/4.3.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "Microsoft.NETCore.Platforms": "1.1.0",
  1840. "Microsoft.NETCore.Targets": "1.1.0",
  1841. "System.Runtime": "4.3.0"
  1842. },
  1843. "compile": {
  1844. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1845. "related": ".xml"
  1846. }
  1847. }
  1848. },
  1849. "System.Reflection.TypeExtensions/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Reflection": "4.3.0",
  1853. "System.Runtime": "4.3.0"
  1854. },
  1855. "compile": {
  1856. "ref/netstandard1.5/_._": {
  1857. "related": ".xml"
  1858. }
  1859. },
  1860. "runtime": {
  1861. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1862. }
  1863. },
  1864. "System.Resources.ResourceManager/4.3.0": {
  1865. "type": "package",
  1866. "dependencies": {
  1867. "Microsoft.NETCore.Platforms": "1.1.0",
  1868. "Microsoft.NETCore.Targets": "1.1.0",
  1869. "System.Globalization": "4.3.0",
  1870. "System.Reflection": "4.3.0",
  1871. "System.Runtime": "4.3.0"
  1872. },
  1873. "compile": {
  1874. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  1875. "related": ".xml"
  1876. }
  1877. }
  1878. },
  1879. "System.Runtime/4.3.0": {
  1880. "type": "package",
  1881. "dependencies": {
  1882. "Microsoft.NETCore.Platforms": "1.1.0",
  1883. "Microsoft.NETCore.Targets": "1.1.0"
  1884. },
  1885. "compile": {
  1886. "ref/netstandard1.5/System.Runtime.dll": {
  1887. "related": ".xml"
  1888. }
  1889. }
  1890. },
  1891. "System.Runtime.Caching/4.7.0": {
  1892. "type": "package",
  1893. "dependencies": {
  1894. "System.Configuration.ConfigurationManager": "4.7.0"
  1895. },
  1896. "compile": {
  1897. "ref/netstandard2.0/_._": {
  1898. "related": ".xml"
  1899. }
  1900. },
  1901. "runtime": {
  1902. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1903. "related": ".xml"
  1904. }
  1905. },
  1906. "runtimeTargets": {
  1907. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1908. "assetType": "runtime",
  1909. "rid": "win"
  1910. }
  1911. }
  1912. },
  1913. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1914. "type": "package",
  1915. "compile": {
  1916. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1917. "related": ".xml"
  1918. }
  1919. },
  1920. "runtime": {
  1921. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1922. "related": ".xml"
  1923. }
  1924. },
  1925. "build": {
  1926. "buildTransitive/netcoreapp3.1/_._": {}
  1927. }
  1928. },
  1929. "System.Runtime.Extensions/4.3.0": {
  1930. "type": "package",
  1931. "dependencies": {
  1932. "Microsoft.NETCore.Platforms": "1.1.0",
  1933. "Microsoft.NETCore.Targets": "1.1.0",
  1934. "System.Runtime": "4.3.0"
  1935. },
  1936. "compile": {
  1937. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  1938. "related": ".xml"
  1939. }
  1940. }
  1941. },
  1942. "System.Runtime.Handles/4.3.0": {
  1943. "type": "package",
  1944. "dependencies": {
  1945. "Microsoft.NETCore.Platforms": "1.1.0",
  1946. "Microsoft.NETCore.Targets": "1.1.0",
  1947. "System.Runtime": "4.3.0"
  1948. },
  1949. "compile": {
  1950. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  1951. "related": ".xml"
  1952. }
  1953. }
  1954. },
  1955. "System.Runtime.InteropServices/4.3.0": {
  1956. "type": "package",
  1957. "dependencies": {
  1958. "Microsoft.NETCore.Platforms": "1.1.0",
  1959. "Microsoft.NETCore.Targets": "1.1.0",
  1960. "System.Reflection": "4.3.0",
  1961. "System.Reflection.Primitives": "4.3.0",
  1962. "System.Runtime": "4.3.0",
  1963. "System.Runtime.Handles": "4.3.0"
  1964. },
  1965. "compile": {
  1966. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  1967. }
  1968. },
  1969. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1970. "type": "package",
  1971. "dependencies": {
  1972. "System.Reflection": "4.3.0",
  1973. "System.Reflection.Extensions": "4.3.0",
  1974. "System.Resources.ResourceManager": "4.3.0",
  1975. "System.Runtime": "4.3.0",
  1976. "System.Runtime.InteropServices": "4.3.0",
  1977. "System.Threading": "4.3.0",
  1978. "runtime.native.System": "4.3.0"
  1979. },
  1980. "compile": {
  1981. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1982. },
  1983. "runtime": {
  1984. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1985. },
  1986. "runtimeTargets": {
  1987. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1988. "assetType": "runtime",
  1989. "rid": "unix"
  1990. },
  1991. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1992. "assetType": "runtime",
  1993. "rid": "win"
  1994. }
  1995. }
  1996. },
  1997. "System.Runtime.Numerics/4.3.0": {
  1998. "type": "package",
  1999. "dependencies": {
  2000. "System.Globalization": "4.3.0",
  2001. "System.Resources.ResourceManager": "4.3.0",
  2002. "System.Runtime": "4.3.0",
  2003. "System.Runtime.Extensions": "4.3.0"
  2004. },
  2005. "compile": {
  2006. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2007. "related": ".xml"
  2008. }
  2009. },
  2010. "runtime": {
  2011. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2012. }
  2013. },
  2014. "System.Runtime.Serialization.Formatters/4.3.0": {
  2015. "type": "package",
  2016. "dependencies": {
  2017. "System.Collections": "4.3.0",
  2018. "System.Reflection": "4.3.0",
  2019. "System.Resources.ResourceManager": "4.3.0",
  2020. "System.Runtime": "4.3.0",
  2021. "System.Runtime.Serialization.Primitives": "4.3.0"
  2022. },
  2023. "compile": {
  2024. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  2025. },
  2026. "runtime": {
  2027. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2028. }
  2029. },
  2030. "System.Runtime.Serialization.Primitives/4.3.0": {
  2031. "type": "package",
  2032. "dependencies": {
  2033. "System.Resources.ResourceManager": "4.3.0",
  2034. "System.Runtime": "4.3.0"
  2035. },
  2036. "compile": {
  2037. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2038. "related": ".xml"
  2039. }
  2040. },
  2041. "runtime": {
  2042. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2043. }
  2044. },
  2045. "System.Security.AccessControl/4.7.0": {
  2046. "type": "package",
  2047. "dependencies": {
  2048. "Microsoft.NETCore.Platforms": "3.1.0",
  2049. "System.Security.Principal.Windows": "4.7.0"
  2050. },
  2051. "compile": {
  2052. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2053. "related": ".xml"
  2054. }
  2055. },
  2056. "runtime": {
  2057. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2058. "related": ".xml"
  2059. }
  2060. },
  2061. "runtimeTargets": {
  2062. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2063. "assetType": "runtime",
  2064. "rid": "win"
  2065. }
  2066. }
  2067. },
  2068. "System.Security.Cryptography.Algorithms/4.3.0": {
  2069. "type": "package",
  2070. "dependencies": {
  2071. "Microsoft.NETCore.Platforms": "1.1.0",
  2072. "System.Collections": "4.3.0",
  2073. "System.IO": "4.3.0",
  2074. "System.Resources.ResourceManager": "4.3.0",
  2075. "System.Runtime": "4.3.0",
  2076. "System.Runtime.Extensions": "4.3.0",
  2077. "System.Runtime.Handles": "4.3.0",
  2078. "System.Runtime.InteropServices": "4.3.0",
  2079. "System.Runtime.Numerics": "4.3.0",
  2080. "System.Security.Cryptography.Encoding": "4.3.0",
  2081. "System.Security.Cryptography.Primitives": "4.3.0",
  2082. "System.Text.Encoding": "4.3.0",
  2083. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2084. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2085. },
  2086. "compile": {
  2087. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2088. },
  2089. "runtimeTargets": {
  2090. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "osx"
  2093. },
  2094. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2095. "assetType": "runtime",
  2096. "rid": "unix"
  2097. },
  2098. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2099. "assetType": "runtime",
  2100. "rid": "win"
  2101. }
  2102. }
  2103. },
  2104. "System.Security.Cryptography.Cng/4.5.0": {
  2105. "type": "package",
  2106. "compile": {
  2107. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2108. "related": ".xml"
  2109. }
  2110. },
  2111. "runtime": {
  2112. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2113. },
  2114. "runtimeTargets": {
  2115. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2116. "assetType": "runtime",
  2117. "rid": "win"
  2118. }
  2119. }
  2120. },
  2121. "System.Security.Cryptography.Csp/4.3.0": {
  2122. "type": "package",
  2123. "dependencies": {
  2124. "Microsoft.NETCore.Platforms": "1.1.0",
  2125. "System.IO": "4.3.0",
  2126. "System.Reflection": "4.3.0",
  2127. "System.Resources.ResourceManager": "4.3.0",
  2128. "System.Runtime": "4.3.0",
  2129. "System.Runtime.Extensions": "4.3.0",
  2130. "System.Runtime.Handles": "4.3.0",
  2131. "System.Runtime.InteropServices": "4.3.0",
  2132. "System.Security.Cryptography.Algorithms": "4.3.0",
  2133. "System.Security.Cryptography.Encoding": "4.3.0",
  2134. "System.Security.Cryptography.Primitives": "4.3.0",
  2135. "System.Text.Encoding": "4.3.0",
  2136. "System.Threading": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.3/_._": {}
  2140. },
  2141. "runtimeTargets": {
  2142. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2143. "assetType": "runtime",
  2144. "rid": "unix"
  2145. },
  2146. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2147. "assetType": "runtime",
  2148. "rid": "win"
  2149. }
  2150. }
  2151. },
  2152. "System.Security.Cryptography.Encoding/4.3.0": {
  2153. "type": "package",
  2154. "dependencies": {
  2155. "Microsoft.NETCore.Platforms": "1.1.0",
  2156. "System.Collections": "4.3.0",
  2157. "System.Collections.Concurrent": "4.3.0",
  2158. "System.Linq": "4.3.0",
  2159. "System.Resources.ResourceManager": "4.3.0",
  2160. "System.Runtime": "4.3.0",
  2161. "System.Runtime.Extensions": "4.3.0",
  2162. "System.Runtime.Handles": "4.3.0",
  2163. "System.Runtime.InteropServices": "4.3.0",
  2164. "System.Security.Cryptography.Primitives": "4.3.0",
  2165. "System.Text.Encoding": "4.3.0",
  2166. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2167. },
  2168. "compile": {
  2169. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2170. "related": ".xml"
  2171. }
  2172. },
  2173. "runtimeTargets": {
  2174. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2175. "assetType": "runtime",
  2176. "rid": "unix"
  2177. },
  2178. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2179. "assetType": "runtime",
  2180. "rid": "win"
  2181. }
  2182. }
  2183. },
  2184. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2185. "type": "package",
  2186. "dependencies": {
  2187. "System.Collections": "4.3.0",
  2188. "System.IO": "4.3.0",
  2189. "System.Resources.ResourceManager": "4.3.0",
  2190. "System.Runtime": "4.3.0",
  2191. "System.Runtime.Extensions": "4.3.0",
  2192. "System.Runtime.Handles": "4.3.0",
  2193. "System.Runtime.InteropServices": "4.3.0",
  2194. "System.Runtime.Numerics": "4.3.0",
  2195. "System.Security.Cryptography.Algorithms": "4.3.0",
  2196. "System.Security.Cryptography.Encoding": "4.3.0",
  2197. "System.Security.Cryptography.Primitives": "4.3.0",
  2198. "System.Text.Encoding": "4.3.0",
  2199. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2200. },
  2201. "compile": {
  2202. "ref/netstandard1.6/_._": {}
  2203. },
  2204. "runtime": {
  2205. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2206. },
  2207. "runtimeTargets": {
  2208. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2209. "assetType": "runtime",
  2210. "rid": "unix"
  2211. }
  2212. }
  2213. },
  2214. "System.Security.Cryptography.Primitives/4.3.0": {
  2215. "type": "package",
  2216. "dependencies": {
  2217. "System.Diagnostics.Debug": "4.3.0",
  2218. "System.Globalization": "4.3.0",
  2219. "System.IO": "4.3.0",
  2220. "System.Resources.ResourceManager": "4.3.0",
  2221. "System.Runtime": "4.3.0",
  2222. "System.Threading": "4.3.0",
  2223. "System.Threading.Tasks": "4.3.0"
  2224. },
  2225. "compile": {
  2226. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2227. },
  2228. "runtime": {
  2229. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2230. }
  2231. },
  2232. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2233. "type": "package",
  2234. "compile": {
  2235. "ref/netstandard2.0/_._": {
  2236. "related": ".xml"
  2237. }
  2238. },
  2239. "runtime": {
  2240. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2241. "related": ".xml"
  2242. }
  2243. },
  2244. "runtimeTargets": {
  2245. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2246. "assetType": "runtime",
  2247. "rid": "win"
  2248. }
  2249. }
  2250. },
  2251. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2252. "type": "package",
  2253. "dependencies": {
  2254. "Microsoft.NETCore.Platforms": "1.1.0",
  2255. "System.Collections": "4.3.0",
  2256. "System.Diagnostics.Debug": "4.3.0",
  2257. "System.Globalization": "4.3.0",
  2258. "System.Globalization.Calendars": "4.3.0",
  2259. "System.IO": "4.3.0",
  2260. "System.IO.FileSystem": "4.3.0",
  2261. "System.IO.FileSystem.Primitives": "4.3.0",
  2262. "System.Resources.ResourceManager": "4.3.0",
  2263. "System.Runtime": "4.3.0",
  2264. "System.Runtime.Extensions": "4.3.0",
  2265. "System.Runtime.Handles": "4.3.0",
  2266. "System.Runtime.InteropServices": "4.3.0",
  2267. "System.Runtime.Numerics": "4.3.0",
  2268. "System.Security.Cryptography.Algorithms": "4.3.0",
  2269. "System.Security.Cryptography.Cng": "4.3.0",
  2270. "System.Security.Cryptography.Csp": "4.3.0",
  2271. "System.Security.Cryptography.Encoding": "4.3.0",
  2272. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2273. "System.Security.Cryptography.Primitives": "4.3.0",
  2274. "System.Text.Encoding": "4.3.0",
  2275. "System.Threading": "4.3.0",
  2276. "runtime.native.System": "4.3.0",
  2277. "runtime.native.System.Net.Http": "4.3.0",
  2278. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2279. },
  2280. "compile": {
  2281. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2282. "related": ".xml"
  2283. }
  2284. },
  2285. "runtimeTargets": {
  2286. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2287. "assetType": "runtime",
  2288. "rid": "unix"
  2289. },
  2290. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2291. "assetType": "runtime",
  2292. "rid": "win"
  2293. }
  2294. }
  2295. },
  2296. "System.Security.Permissions/4.7.0": {
  2297. "type": "package",
  2298. "dependencies": {
  2299. "System.Security.AccessControl": "4.7.0",
  2300. "System.Windows.Extensions": "4.7.0"
  2301. },
  2302. "compile": {
  2303. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2304. "related": ".xml"
  2305. }
  2306. },
  2307. "runtime": {
  2308. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2309. "related": ".xml"
  2310. }
  2311. }
  2312. },
  2313. "System.Security.Principal.Windows/4.7.0": {
  2314. "type": "package",
  2315. "compile": {
  2316. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2317. "related": ".xml"
  2318. }
  2319. },
  2320. "runtime": {
  2321. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2322. "related": ".xml"
  2323. }
  2324. },
  2325. "runtimeTargets": {
  2326. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2327. "assetType": "runtime",
  2328. "rid": "unix"
  2329. },
  2330. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2331. "assetType": "runtime",
  2332. "rid": "win"
  2333. }
  2334. }
  2335. },
  2336. "System.Text.Encoding/4.3.0": {
  2337. "type": "package",
  2338. "dependencies": {
  2339. "Microsoft.NETCore.Platforms": "1.1.0",
  2340. "Microsoft.NETCore.Targets": "1.1.0",
  2341. "System.Runtime": "4.3.0"
  2342. },
  2343. "compile": {
  2344. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2345. "related": ".xml"
  2346. }
  2347. }
  2348. },
  2349. "System.Text.Encoding.CodePages/4.7.0": {
  2350. "type": "package",
  2351. "dependencies": {
  2352. "Microsoft.NETCore.Platforms": "3.1.0"
  2353. },
  2354. "compile": {
  2355. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2356. "related": ".xml"
  2357. }
  2358. },
  2359. "runtime": {
  2360. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2361. "related": ".xml"
  2362. }
  2363. },
  2364. "runtimeTargets": {
  2365. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2366. "assetType": "runtime",
  2367. "rid": "win"
  2368. }
  2369. }
  2370. },
  2371. "System.Text.Encoding.Extensions/4.3.0": {
  2372. "type": "package",
  2373. "dependencies": {
  2374. "Microsoft.NETCore.Platforms": "1.1.0",
  2375. "Microsoft.NETCore.Targets": "1.1.0",
  2376. "System.Runtime": "4.3.0",
  2377. "System.Text.Encoding": "4.3.0"
  2378. },
  2379. "compile": {
  2380. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2381. "related": ".xml"
  2382. }
  2383. }
  2384. },
  2385. "System.Text.Encodings.Web/4.5.0": {
  2386. "type": "package",
  2387. "compile": {
  2388. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2389. "related": ".xml"
  2390. }
  2391. },
  2392. "runtime": {
  2393. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2394. "related": ".xml"
  2395. }
  2396. }
  2397. },
  2398. "System.Text.Json/4.7.1": {
  2399. "type": "package",
  2400. "compile": {
  2401. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2402. "related": ".xml"
  2403. }
  2404. },
  2405. "runtime": {
  2406. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2407. "related": ".xml"
  2408. }
  2409. }
  2410. },
  2411. "System.Text.RegularExpressions/4.3.0": {
  2412. "type": "package",
  2413. "dependencies": {
  2414. "System.Runtime": "4.3.0"
  2415. },
  2416. "compile": {
  2417. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2418. },
  2419. "runtime": {
  2420. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2421. }
  2422. },
  2423. "System.Threading/4.3.0": {
  2424. "type": "package",
  2425. "dependencies": {
  2426. "System.Runtime": "4.3.0",
  2427. "System.Threading.Tasks": "4.3.0"
  2428. },
  2429. "compile": {
  2430. "ref/netstandard1.3/System.Threading.dll": {
  2431. "related": ".xml"
  2432. }
  2433. },
  2434. "runtime": {
  2435. "lib/netstandard1.3/System.Threading.dll": {}
  2436. }
  2437. },
  2438. "System.Threading.Tasks/4.3.0": {
  2439. "type": "package",
  2440. "dependencies": {
  2441. "Microsoft.NETCore.Platforms": "1.1.0",
  2442. "Microsoft.NETCore.Targets": "1.1.0",
  2443. "System.Runtime": "4.3.0"
  2444. },
  2445. "compile": {
  2446. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2447. "related": ".xml"
  2448. }
  2449. }
  2450. },
  2451. "System.Threading.Tasks.Extensions/4.3.0": {
  2452. "type": "package",
  2453. "dependencies": {
  2454. "System.Collections": "4.3.0",
  2455. "System.Runtime": "4.3.0",
  2456. "System.Threading.Tasks": "4.3.0"
  2457. },
  2458. "compile": {
  2459. "lib/netstandard1.0/_._": {
  2460. "related": ".xml"
  2461. }
  2462. },
  2463. "runtime": {
  2464. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2465. "related": ".xml"
  2466. }
  2467. }
  2468. },
  2469. "System.Threading.Timer/4.3.0": {
  2470. "type": "package",
  2471. "dependencies": {
  2472. "Microsoft.NETCore.Platforms": "1.1.0",
  2473. "Microsoft.NETCore.Targets": "1.1.0",
  2474. "System.Runtime": "4.3.0"
  2475. },
  2476. "compile": {
  2477. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2478. "related": ".xml"
  2479. }
  2480. }
  2481. },
  2482. "System.Windows.Extensions/4.7.0": {
  2483. "type": "package",
  2484. "dependencies": {
  2485. "System.Drawing.Common": "4.7.0"
  2486. },
  2487. "compile": {
  2488. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2489. "related": ".xml"
  2490. }
  2491. },
  2492. "runtime": {
  2493. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2494. "related": ".xml"
  2495. }
  2496. },
  2497. "runtimeTargets": {
  2498. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2499. "assetType": "runtime",
  2500. "rid": "win"
  2501. }
  2502. }
  2503. },
  2504. "System.Xml.ReaderWriter/4.3.0": {
  2505. "type": "package",
  2506. "dependencies": {
  2507. "System.Collections": "4.3.0",
  2508. "System.Diagnostics.Debug": "4.3.0",
  2509. "System.Globalization": "4.3.0",
  2510. "System.IO": "4.3.0",
  2511. "System.IO.FileSystem": "4.3.0",
  2512. "System.IO.FileSystem.Primitives": "4.3.0",
  2513. "System.Resources.ResourceManager": "4.3.0",
  2514. "System.Runtime": "4.3.0",
  2515. "System.Runtime.Extensions": "4.3.0",
  2516. "System.Runtime.InteropServices": "4.3.0",
  2517. "System.Text.Encoding": "4.3.0",
  2518. "System.Text.Encoding.Extensions": "4.3.0",
  2519. "System.Text.RegularExpressions": "4.3.0",
  2520. "System.Threading.Tasks": "4.3.0",
  2521. "System.Threading.Tasks.Extensions": "4.3.0"
  2522. },
  2523. "compile": {
  2524. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2525. "related": ".xml"
  2526. }
  2527. },
  2528. "runtime": {
  2529. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2530. }
  2531. },
  2532. "System.Xml.XDocument/4.3.0": {
  2533. "type": "package",
  2534. "dependencies": {
  2535. "System.Collections": "4.3.0",
  2536. "System.Diagnostics.Debug": "4.3.0",
  2537. "System.Diagnostics.Tools": "4.3.0",
  2538. "System.Globalization": "4.3.0",
  2539. "System.IO": "4.3.0",
  2540. "System.Reflection": "4.3.0",
  2541. "System.Resources.ResourceManager": "4.3.0",
  2542. "System.Runtime": "4.3.0",
  2543. "System.Runtime.Extensions": "4.3.0",
  2544. "System.Text.Encoding": "4.3.0",
  2545. "System.Threading": "4.3.0",
  2546. "System.Xml.ReaderWriter": "4.3.0"
  2547. },
  2548. "compile": {
  2549. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2550. "related": ".xml"
  2551. }
  2552. },
  2553. "runtime": {
  2554. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2555. }
  2556. },
  2557. "System.Xml.XmlDocument/4.3.0": {
  2558. "type": "package",
  2559. "dependencies": {
  2560. "System.Collections": "4.3.0",
  2561. "System.Diagnostics.Debug": "4.3.0",
  2562. "System.Globalization": "4.3.0",
  2563. "System.IO": "4.3.0",
  2564. "System.Resources.ResourceManager": "4.3.0",
  2565. "System.Runtime": "4.3.0",
  2566. "System.Runtime.Extensions": "4.3.0",
  2567. "System.Text.Encoding": "4.3.0",
  2568. "System.Threading": "4.3.0",
  2569. "System.Xml.ReaderWriter": "4.3.0"
  2570. },
  2571. "compile": {
  2572. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2573. "related": ".xml"
  2574. }
  2575. },
  2576. "runtime": {
  2577. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2578. }
  2579. },
  2580. "OASystem.Domain/1.0.0": {
  2581. "type": "project",
  2582. "framework": ".NETCoreApp,Version=v6.0",
  2583. "dependencies": {
  2584. "AutoMapper": "12.0.0",
  2585. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  2586. "Autofac": "6.4.0",
  2587. "Autofac.Extensions.DependencyInjection": "8.0.0",
  2588. "Serilog.Sinks.File": "5.0.0",
  2589. "SqlSugarCore": "5.1.3.32"
  2590. },
  2591. "compile": {
  2592. "bin/placeholder/OASystem.Domain.dll": {}
  2593. },
  2594. "runtime": {
  2595. "bin/placeholder/OASystem.Domain.dll": {}
  2596. }
  2597. }
  2598. }
  2599. },
  2600. "libraries": {
  2601. "Autofac/6.4.0": {
  2602. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  2603. "type": "package",
  2604. "path": "autofac/6.4.0",
  2605. "files": [
  2606. ".nupkg.metadata",
  2607. ".signature.p7s",
  2608. "README.md",
  2609. "autofac.6.4.0.nupkg.sha512",
  2610. "autofac.nuspec",
  2611. "icon.png",
  2612. "lib/net5.0/Autofac.dll",
  2613. "lib/net5.0/Autofac.xml",
  2614. "lib/net6.0/Autofac.dll",
  2615. "lib/net6.0/Autofac.xml",
  2616. "lib/netstandard2.0/Autofac.dll",
  2617. "lib/netstandard2.0/Autofac.xml",
  2618. "lib/netstandard2.1/Autofac.dll",
  2619. "lib/netstandard2.1/Autofac.xml"
  2620. ]
  2621. },
  2622. "Autofac.Extensions.DependencyInjection/8.0.0": {
  2623. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  2624. "type": "package",
  2625. "path": "autofac.extensions.dependencyinjection/8.0.0",
  2626. "files": [
  2627. ".nupkg.metadata",
  2628. ".signature.p7s",
  2629. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2630. "autofac.extensions.dependencyinjection.nuspec",
  2631. "icon.png",
  2632. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  2633. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  2634. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  2635. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  2636. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  2637. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  2638. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  2639. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  2640. ]
  2641. },
  2642. "AutoMapper/12.0.0": {
  2643. "sha512": "0Rmg0zI5AFu1O/y//o9VGyhxKjhggWpk9mOA1tp0DEVx40c61bs+lnQv+0jUq8XbniF7FKgIVvI1perqiMtLrA==",
  2644. "type": "package",
  2645. "path": "automapper/12.0.0",
  2646. "files": [
  2647. ".nupkg.metadata",
  2648. ".signature.p7s",
  2649. "README.md",
  2650. "automapper.12.0.0.nupkg.sha512",
  2651. "automapper.nuspec",
  2652. "icon.png",
  2653. "lib/netstandard2.1/AutoMapper.dll",
  2654. "lib/netstandard2.1/AutoMapper.xml"
  2655. ]
  2656. },
  2657. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  2658. "sha512": "XCJ4E3oKrbRl1qY9Mr+7uyC0xZj1+bqQjmQRWTiTKiVuuXTny+7YFWHi20tPjwkMukLbicN6yGlDy5PZ4wyi1w==",
  2659. "type": "package",
  2660. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.0",
  2661. "files": [
  2662. ".nupkg.metadata",
  2663. ".signature.p7s",
  2664. "README.md",
  2665. "automapper.extensions.microsoft.dependencyinjection.12.0.0.nupkg.sha512",
  2666. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2667. "icon.png",
  2668. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2669. ]
  2670. },
  2671. "BouncyCastle.NetCore/1.8.5": {
  2672. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  2673. "type": "package",
  2674. "path": "bouncycastle.netcore/1.8.5",
  2675. "files": [
  2676. ".nupkg.metadata",
  2677. ".signature.p7s",
  2678. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  2679. "bouncycastle.netcore.nuspec",
  2680. "lib/Mono/BouncyCastle.Crypto.dll",
  2681. "lib/Mono/BouncyCastle.Crypto.xml",
  2682. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2683. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2684. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2685. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2686. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2687. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2688. "lib/net20/BouncyCastle.Crypto.dll",
  2689. "lib/net20/BouncyCastle.Crypto.xml",
  2690. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2691. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2692. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2693. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2694. ]
  2695. },
  2696. "Google.Protobuf/3.19.4": {
  2697. "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
  2698. "type": "package",
  2699. "path": "google.protobuf/3.19.4",
  2700. "files": [
  2701. ".nupkg.metadata",
  2702. ".signature.p7s",
  2703. "google.protobuf.3.19.4.nupkg.sha512",
  2704. "google.protobuf.nuspec",
  2705. "lib/net45/Google.Protobuf.dll",
  2706. "lib/net45/Google.Protobuf.pdb",
  2707. "lib/net45/Google.Protobuf.xml",
  2708. "lib/net5.0/Google.Protobuf.dll",
  2709. "lib/net5.0/Google.Protobuf.pdb",
  2710. "lib/net5.0/Google.Protobuf.xml",
  2711. "lib/netstandard1.1/Google.Protobuf.dll",
  2712. "lib/netstandard1.1/Google.Protobuf.pdb",
  2713. "lib/netstandard1.1/Google.Protobuf.xml",
  2714. "lib/netstandard2.0/Google.Protobuf.dll",
  2715. "lib/netstandard2.0/Google.Protobuf.pdb",
  2716. "lib/netstandard2.0/Google.Protobuf.xml"
  2717. ]
  2718. },
  2719. "K4os.Compression.LZ4/1.2.6": {
  2720. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  2721. "type": "package",
  2722. "path": "k4os.compression.lz4/1.2.6",
  2723. "files": [
  2724. ".nupkg.metadata",
  2725. ".signature.p7s",
  2726. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  2727. "k4os.compression.lz4.nuspec",
  2728. "lib/net45/K4os.Compression.LZ4.dll",
  2729. "lib/net45/K4os.Compression.LZ4.xml",
  2730. "lib/net46/K4os.Compression.LZ4.dll",
  2731. "lib/net46/K4os.Compression.LZ4.xml",
  2732. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2733. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2734. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2735. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2736. ]
  2737. },
  2738. "K4os.Compression.LZ4.Streams/1.2.6": {
  2739. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  2740. "type": "package",
  2741. "path": "k4os.compression.lz4.streams/1.2.6",
  2742. "files": [
  2743. ".nupkg.metadata",
  2744. ".signature.p7s",
  2745. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  2746. "k4os.compression.lz4.streams.nuspec",
  2747. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2748. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2749. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2750. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2751. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2752. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2753. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2754. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  2755. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  2756. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  2757. ]
  2758. },
  2759. "K4os.Hash.xxHash/1.0.6": {
  2760. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2761. "type": "package",
  2762. "path": "k4os.hash.xxhash/1.0.6",
  2763. "files": [
  2764. ".nupkg.metadata",
  2765. ".signature.p7s",
  2766. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2767. "k4os.hash.xxhash.nuspec",
  2768. "lib/net45/K4os.Hash.xxHash.dll",
  2769. "lib/net45/K4os.Hash.xxHash.xml",
  2770. "lib/net46/K4os.Hash.xxHash.dll",
  2771. "lib/net46/K4os.Hash.xxHash.xml",
  2772. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2773. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2774. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2775. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2776. ]
  2777. },
  2778. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  2779. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2780. "type": "package",
  2781. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2782. "files": [
  2783. ".nupkg.metadata",
  2784. ".signature.p7s",
  2785. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  2786. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  2787. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  2788. "microsoft.aspnetcore.http.abstractions.nuspec"
  2789. ]
  2790. },
  2791. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2792. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2793. "type": "package",
  2794. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2795. "files": [
  2796. ".nupkg.metadata",
  2797. ".signature.p7s",
  2798. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  2799. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  2800. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  2801. "microsoft.aspnetcore.http.features.nuspec"
  2802. ]
  2803. },
  2804. "Microsoft.CSharp/4.7.0": {
  2805. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2806. "type": "package",
  2807. "path": "microsoft.csharp/4.7.0",
  2808. "files": [
  2809. ".nupkg.metadata",
  2810. ".signature.p7s",
  2811. "LICENSE.TXT",
  2812. "THIRD-PARTY-NOTICES.TXT",
  2813. "lib/MonoAndroid10/_._",
  2814. "lib/MonoTouch10/_._",
  2815. "lib/net45/_._",
  2816. "lib/netcore50/Microsoft.CSharp.dll",
  2817. "lib/netcoreapp2.0/_._",
  2818. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2819. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2820. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2821. "lib/portable-net45+win8+wp8+wpa81/_._",
  2822. "lib/uap10.0.16299/_._",
  2823. "lib/win8/_._",
  2824. "lib/wp80/_._",
  2825. "lib/wpa81/_._",
  2826. "lib/xamarinios10/_._",
  2827. "lib/xamarinmac20/_._",
  2828. "lib/xamarintvos10/_._",
  2829. "lib/xamarinwatchos10/_._",
  2830. "microsoft.csharp.4.7.0.nupkg.sha512",
  2831. "microsoft.csharp.nuspec",
  2832. "ref/MonoAndroid10/_._",
  2833. "ref/MonoTouch10/_._",
  2834. "ref/net45/_._",
  2835. "ref/netcore50/Microsoft.CSharp.dll",
  2836. "ref/netcore50/Microsoft.CSharp.xml",
  2837. "ref/netcore50/de/Microsoft.CSharp.xml",
  2838. "ref/netcore50/es/Microsoft.CSharp.xml",
  2839. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2840. "ref/netcore50/it/Microsoft.CSharp.xml",
  2841. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2842. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2843. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2844. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2845. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2846. "ref/netcoreapp2.0/_._",
  2847. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2848. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2849. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2850. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2851. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2852. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2853. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2854. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2855. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2856. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2857. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2858. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2859. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2860. "ref/portable-net45+win8+wp8+wpa81/_._",
  2861. "ref/uap10.0.16299/_._",
  2862. "ref/win8/_._",
  2863. "ref/wp80/_._",
  2864. "ref/wpa81/_._",
  2865. "ref/xamarinios10/_._",
  2866. "ref/xamarinmac20/_._",
  2867. "ref/xamarintvos10/_._",
  2868. "ref/xamarinwatchos10/_._",
  2869. "useSharedDesignerContext.txt",
  2870. "version.txt"
  2871. ]
  2872. },
  2873. "Microsoft.Data.SqlClient/2.1.1": {
  2874. "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
  2875. "type": "package",
  2876. "path": "microsoft.data.sqlclient/2.1.1",
  2877. "files": [
  2878. ".nupkg.metadata",
  2879. ".signature.p7s",
  2880. "dotnet.png",
  2881. "lib/net46/Microsoft.Data.SqlClient.dll",
  2882. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2883. "lib/net46/Microsoft.Data.SqlClient.xml",
  2884. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2885. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2886. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2887. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2888. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2889. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2890. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2891. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2892. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2893. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2894. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2895. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2896. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2897. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2898. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2899. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2900. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2901. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2902. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2903. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2904. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2905. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2906. "microsoft.data.sqlclient.2.1.1.nupkg.sha512",
  2907. "microsoft.data.sqlclient.nuspec",
  2908. "ref/net46/Microsoft.Data.SqlClient.dll",
  2909. "ref/net46/Microsoft.Data.SqlClient.pdb",
  2910. "ref/net46/Microsoft.Data.SqlClient.xml",
  2911. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2912. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2913. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2914. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2915. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2916. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2917. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2918. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2919. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2920. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2921. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2922. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2923. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2924. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2925. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2926. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2927. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2928. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2929. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2930. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2931. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  2932. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  2933. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2934. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2935. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2936. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2937. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2938. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2939. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2940. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2941. ]
  2942. },
  2943. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2944. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2945. "type": "package",
  2946. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2947. "files": [
  2948. ".nupkg.metadata",
  2949. ".signature.p7s",
  2950. "LICENSE.txt",
  2951. "dotnet.png",
  2952. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  2953. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2954. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2955. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2956. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2957. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2958. ]
  2959. },
  2960. "Microsoft.Data.Sqlite/5.0.5": {
  2961. "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  2962. "type": "package",
  2963. "path": "microsoft.data.sqlite/5.0.5",
  2964. "files": [
  2965. ".nupkg.metadata",
  2966. ".signature.p7s",
  2967. "Icon.png",
  2968. "lib/netstandard2.0/_._",
  2969. "microsoft.data.sqlite.5.0.5.nupkg.sha512",
  2970. "microsoft.data.sqlite.nuspec"
  2971. ]
  2972. },
  2973. "Microsoft.Data.Sqlite.Core/5.0.5": {
  2974. "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  2975. "type": "package",
  2976. "path": "microsoft.data.sqlite.core/5.0.5",
  2977. "files": [
  2978. ".nupkg.metadata",
  2979. ".signature.p7s",
  2980. "Icon.png",
  2981. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  2982. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  2983. "microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
  2984. "microsoft.data.sqlite.core.nuspec"
  2985. ]
  2986. },
  2987. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  2988. "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  2989. "type": "package",
  2990. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  2991. "files": [
  2992. ".nupkg.metadata",
  2993. ".signature.p7s",
  2994. "Icon.png",
  2995. "LICENSE.TXT",
  2996. "THIRD-PARTY-NOTICES.TXT",
  2997. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  2998. "buildTransitive/net462/_._",
  2999. "buildTransitive/net6.0/_._",
  3000. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  3001. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  3002. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  3003. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3004. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3005. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3006. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3007. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3008. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3009. "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
  3010. "microsoft.extensions.configuration.abstractions.nuspec",
  3011. "useSharedDesignerContext.txt"
  3012. ]
  3013. },
  3014. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  3015. "sha512": "tgU4u7bZsoS9MKVRiotVMAwHtbREHr5/5zSEV+JPhg46+ox47Au84E3D2IacAaB0bk5ePNaNieTlPrfjbbRJkg==",
  3016. "type": "package",
  3017. "path": "microsoft.extensions.configuration.binder/7.0.0",
  3018. "files": [
  3019. ".nupkg.metadata",
  3020. ".signature.p7s",
  3021. "Icon.png",
  3022. "LICENSE.TXT",
  3023. "THIRD-PARTY-NOTICES.TXT",
  3024. "buildTransitive/net461/Microsoft.Extensions.Configuration.Binder.targets",
  3025. "buildTransitive/net462/_._",
  3026. "buildTransitive/net6.0/_._",
  3027. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Binder.targets",
  3028. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  3029. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  3030. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  3031. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  3032. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  3033. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  3034. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3035. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3036. "microsoft.extensions.configuration.binder.7.0.0.nupkg.sha512",
  3037. "microsoft.extensions.configuration.binder.nuspec",
  3038. "useSharedDesignerContext.txt"
  3039. ]
  3040. },
  3041. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  3042. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  3043. "type": "package",
  3044. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  3045. "files": [
  3046. ".nupkg.metadata",
  3047. ".signature.p7s",
  3048. "Icon.png",
  3049. "LICENSE.TXT",
  3050. "THIRD-PARTY-NOTICES.TXT",
  3051. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3052. "buildTransitive/netcoreapp3.1/_._",
  3053. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3054. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3055. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3056. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3057. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3058. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3059. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3060. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3061. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  3062. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3063. "useSharedDesignerContext.txt"
  3064. ]
  3065. },
  3066. "Microsoft.Extensions.Options/6.0.0": {
  3067. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  3068. "type": "package",
  3069. "path": "microsoft.extensions.options/6.0.0",
  3070. "files": [
  3071. ".nupkg.metadata",
  3072. ".signature.p7s",
  3073. "Icon.png",
  3074. "LICENSE.TXT",
  3075. "THIRD-PARTY-NOTICES.TXT",
  3076. "lib/net461/Microsoft.Extensions.Options.dll",
  3077. "lib/net461/Microsoft.Extensions.Options.xml",
  3078. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3079. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3080. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3081. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3082. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  3083. "microsoft.extensions.options.nuspec",
  3084. "useSharedDesignerContext.txt"
  3085. ]
  3086. },
  3087. "Microsoft.Extensions.Primitives/7.0.0": {
  3088. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  3089. "type": "package",
  3090. "path": "microsoft.extensions.primitives/7.0.0",
  3091. "files": [
  3092. ".nupkg.metadata",
  3093. ".signature.p7s",
  3094. "Icon.png",
  3095. "LICENSE.TXT",
  3096. "THIRD-PARTY-NOTICES.TXT",
  3097. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3098. "buildTransitive/net462/_._",
  3099. "buildTransitive/net6.0/_._",
  3100. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3101. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3102. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3103. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3104. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3105. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3106. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3107. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3108. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3109. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  3110. "microsoft.extensions.primitives.nuspec",
  3111. "useSharedDesignerContext.txt"
  3112. ]
  3113. },
  3114. "Microsoft.Identity.Client/4.21.1": {
  3115. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  3116. "type": "package",
  3117. "path": "microsoft.identity.client/4.21.1",
  3118. "files": [
  3119. ".nupkg.metadata",
  3120. ".signature.p7s",
  3121. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3122. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3123. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3124. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3125. "lib/net45/Microsoft.Identity.Client.dll",
  3126. "lib/net45/Microsoft.Identity.Client.xml",
  3127. "lib/net461/Microsoft.Identity.Client.dll",
  3128. "lib/net461/Microsoft.Identity.Client.xml",
  3129. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3130. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3131. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3132. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3133. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3134. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3135. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3136. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3137. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3138. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3139. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3140. "microsoft.identity.client.4.21.1.nupkg.sha512",
  3141. "microsoft.identity.client.nuspec",
  3142. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  3143. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  3144. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3145. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3146. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3147. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3148. "ref/net45/Microsoft.Identity.Client.dll",
  3149. "ref/net45/Microsoft.Identity.Client.xml",
  3150. "ref/net461/Microsoft.Identity.Client.dll",
  3151. "ref/net461/Microsoft.Identity.Client.xml",
  3152. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3153. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3154. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3155. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3156. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3157. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3158. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3159. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3160. ]
  3161. },
  3162. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  3163. "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  3164. "type": "package",
  3165. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  3166. "files": [
  3167. ".nupkg.metadata",
  3168. ".signature.p7s",
  3169. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3170. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3171. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3172. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3173. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3174. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3175. "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
  3176. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3177. ]
  3178. },
  3179. "Microsoft.IdentityModel.Logging/6.8.0": {
  3180. "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  3181. "type": "package",
  3182. "path": "microsoft.identitymodel.logging/6.8.0",
  3183. "files": [
  3184. ".nupkg.metadata",
  3185. ".signature.p7s",
  3186. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3187. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3188. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3189. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3190. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3191. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3192. "microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
  3193. "microsoft.identitymodel.logging.nuspec"
  3194. ]
  3195. },
  3196. "Microsoft.IdentityModel.Protocols/6.8.0": {
  3197. "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  3198. "type": "package",
  3199. "path": "microsoft.identitymodel.protocols/6.8.0",
  3200. "files": [
  3201. ".nupkg.metadata",
  3202. ".signature.p7s",
  3203. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3204. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3205. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3206. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3207. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3208. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3209. "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
  3210. "microsoft.identitymodel.protocols.nuspec"
  3211. ]
  3212. },
  3213. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  3214. "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  3215. "type": "package",
  3216. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  3217. "files": [
  3218. ".nupkg.metadata",
  3219. ".signature.p7s",
  3220. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3221. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3222. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3223. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3224. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3225. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3226. "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
  3227. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3228. ]
  3229. },
  3230. "Microsoft.IdentityModel.Tokens/6.8.0": {
  3231. "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  3232. "type": "package",
  3233. "path": "microsoft.identitymodel.tokens/6.8.0",
  3234. "files": [
  3235. ".nupkg.metadata",
  3236. ".signature.p7s",
  3237. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3238. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3239. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3240. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3241. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3242. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3243. "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
  3244. "microsoft.identitymodel.tokens.nuspec"
  3245. ]
  3246. },
  3247. "Microsoft.NETCore.Platforms/3.1.0": {
  3248. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3249. "type": "package",
  3250. "path": "microsoft.netcore.platforms/3.1.0",
  3251. "files": [
  3252. ".nupkg.metadata",
  3253. ".signature.p7s",
  3254. "LICENSE.TXT",
  3255. "THIRD-PARTY-NOTICES.TXT",
  3256. "lib/netstandard1.0/_._",
  3257. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3258. "microsoft.netcore.platforms.nuspec",
  3259. "runtime.json",
  3260. "useSharedDesignerContext.txt",
  3261. "version.txt"
  3262. ]
  3263. },
  3264. "Microsoft.NETCore.Targets/1.1.0": {
  3265. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3266. "type": "package",
  3267. "path": "microsoft.netcore.targets/1.1.0",
  3268. "files": [
  3269. ".nupkg.metadata",
  3270. ".signature.p7s",
  3271. "ThirdPartyNotices.txt",
  3272. "dotnet_library_license.txt",
  3273. "lib/netstandard1.0/_._",
  3274. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3275. "microsoft.netcore.targets.nuspec",
  3276. "runtime.json"
  3277. ]
  3278. },
  3279. "Microsoft.Win32.Primitives/4.3.0": {
  3280. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3281. "type": "package",
  3282. "path": "microsoft.win32.primitives/4.3.0",
  3283. "files": [
  3284. ".nupkg.metadata",
  3285. ".signature.p7s",
  3286. "ThirdPartyNotices.txt",
  3287. "dotnet_library_license.txt",
  3288. "lib/MonoAndroid10/_._",
  3289. "lib/MonoTouch10/_._",
  3290. "lib/net46/Microsoft.Win32.Primitives.dll",
  3291. "lib/xamarinios10/_._",
  3292. "lib/xamarinmac20/_._",
  3293. "lib/xamarintvos10/_._",
  3294. "lib/xamarinwatchos10/_._",
  3295. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3296. "microsoft.win32.primitives.nuspec",
  3297. "ref/MonoAndroid10/_._",
  3298. "ref/MonoTouch10/_._",
  3299. "ref/net46/Microsoft.Win32.Primitives.dll",
  3300. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3301. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3302. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3303. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3304. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3305. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3306. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3307. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3308. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3309. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3310. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3311. "ref/xamarinios10/_._",
  3312. "ref/xamarinmac20/_._",
  3313. "ref/xamarintvos10/_._",
  3314. "ref/xamarinwatchos10/_._"
  3315. ]
  3316. },
  3317. "Microsoft.Win32.Registry/4.7.0": {
  3318. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3319. "type": "package",
  3320. "path": "microsoft.win32.registry/4.7.0",
  3321. "files": [
  3322. ".nupkg.metadata",
  3323. ".signature.p7s",
  3324. "LICENSE.TXT",
  3325. "THIRD-PARTY-NOTICES.TXT",
  3326. "lib/net46/Microsoft.Win32.Registry.dll",
  3327. "lib/net461/Microsoft.Win32.Registry.dll",
  3328. "lib/net461/Microsoft.Win32.Registry.xml",
  3329. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3330. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3331. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3332. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3333. "microsoft.win32.registry.nuspec",
  3334. "ref/net46/Microsoft.Win32.Registry.dll",
  3335. "ref/net461/Microsoft.Win32.Registry.dll",
  3336. "ref/net461/Microsoft.Win32.Registry.xml",
  3337. "ref/net472/Microsoft.Win32.Registry.dll",
  3338. "ref/net472/Microsoft.Win32.Registry.xml",
  3339. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3340. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3341. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3342. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3343. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3344. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3345. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3346. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3347. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3348. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3349. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3350. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3351. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3352. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3353. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3354. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3355. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3356. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3357. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3358. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3359. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3360. "useSharedDesignerContext.txt",
  3361. "version.txt"
  3362. ]
  3363. },
  3364. "Microsoft.Win32.SystemEvents/4.7.0": {
  3365. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3366. "type": "package",
  3367. "path": "microsoft.win32.systemevents/4.7.0",
  3368. "files": [
  3369. ".nupkg.metadata",
  3370. ".signature.p7s",
  3371. "LICENSE.TXT",
  3372. "THIRD-PARTY-NOTICES.TXT",
  3373. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3374. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3375. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3376. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3377. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3378. "microsoft.win32.systemevents.nuspec",
  3379. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3380. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3381. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3382. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3383. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3384. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3385. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3386. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3387. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3388. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3389. "useSharedDesignerContext.txt",
  3390. "version.txt"
  3391. ]
  3392. },
  3393. "MySql.Data/8.0.29": {
  3394. "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==",
  3395. "type": "package",
  3396. "path": "mysql.data/8.0.29",
  3397. "files": [
  3398. ".nupkg.metadata",
  3399. ".signature.p7s",
  3400. "lib/net452/MySql.Data.dll",
  3401. "lib/net452/MySql.Data.xml",
  3402. "lib/net452/Ubiety.Dns.Core.dll",
  3403. "lib/net452/ZstdNet.dll",
  3404. "lib/net48/MySql.Data.dll",
  3405. "lib/net48/MySql.Data.xml",
  3406. "lib/net48/Ubiety.Dns.Core.dll",
  3407. "lib/net48/ZstdNet.dll",
  3408. "lib/net5.0/MySql.Data.dll",
  3409. "lib/net5.0/MySql.Data.xml",
  3410. "lib/net5.0/Ubiety.Dns.Core.dll",
  3411. "lib/net5.0/ZstdNet.dll",
  3412. "lib/net6.0/MySql.Data.dll",
  3413. "lib/net6.0/MySql.Data.xml",
  3414. "lib/net6.0/Ubiety.Dns.Core.dll",
  3415. "lib/net6.0/ZstdNet.dll",
  3416. "lib/netstandard2.0/MySql.Data.dll",
  3417. "lib/netstandard2.0/MySql.Data.xml",
  3418. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  3419. "lib/netstandard2.0/ZstdNet.dll",
  3420. "lib/netstandard2.1/MySql.Data.dll",
  3421. "lib/netstandard2.1/MySql.Data.xml",
  3422. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  3423. "lib/netstandard2.1/ZstdNet.dll",
  3424. "mysql.data.8.0.29.nupkg.sha512",
  3425. "mysql.data.nuspec"
  3426. ]
  3427. },
  3428. "NETStandard.Library/1.6.1": {
  3429. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  3430. "type": "package",
  3431. "path": "netstandard.library/1.6.1",
  3432. "files": [
  3433. ".nupkg.metadata",
  3434. ".signature.p7s",
  3435. "ThirdPartyNotices.txt",
  3436. "dotnet_library_license.txt",
  3437. "netstandard.library.1.6.1.nupkg.sha512",
  3438. "netstandard.library.nuspec"
  3439. ]
  3440. },
  3441. "Newtonsoft.Json/10.0.3": {
  3442. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  3443. "type": "package",
  3444. "path": "newtonsoft.json/10.0.3",
  3445. "hasTools": true,
  3446. "files": [
  3447. ".nupkg.metadata",
  3448. ".signature.p7s",
  3449. "LICENSE.md",
  3450. "lib/net20/Newtonsoft.Json.dll",
  3451. "lib/net20/Newtonsoft.Json.xml",
  3452. "lib/net35/Newtonsoft.Json.dll",
  3453. "lib/net35/Newtonsoft.Json.xml",
  3454. "lib/net40/Newtonsoft.Json.dll",
  3455. "lib/net40/Newtonsoft.Json.xml",
  3456. "lib/net45/Newtonsoft.Json.dll",
  3457. "lib/net45/Newtonsoft.Json.xml",
  3458. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3459. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3460. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3461. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3462. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3463. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3464. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3465. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3466. "newtonsoft.json.10.0.3.nupkg.sha512",
  3467. "newtonsoft.json.nuspec",
  3468. "tools/install.ps1"
  3469. ]
  3470. },
  3471. "Npgsql/5.0.7": {
  3472. "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  3473. "type": "package",
  3474. "path": "npgsql/5.0.7",
  3475. "files": [
  3476. ".nupkg.metadata",
  3477. ".signature.p7s",
  3478. "lib/net5.0/Npgsql.dll",
  3479. "lib/net5.0/Npgsql.xml",
  3480. "lib/netcoreapp3.1/Npgsql.dll",
  3481. "lib/netcoreapp3.1/Npgsql.xml",
  3482. "lib/netstandard2.0/Npgsql.dll",
  3483. "lib/netstandard2.0/Npgsql.xml",
  3484. "lib/netstandard2.1/Npgsql.dll",
  3485. "lib/netstandard2.1/Npgsql.xml",
  3486. "npgsql.5.0.7.nupkg.sha512",
  3487. "npgsql.nuspec",
  3488. "postgresql.png"
  3489. ]
  3490. },
  3491. "Oracle.ManagedDataAccess.Core/3.21.1": {
  3492. "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  3493. "type": "package",
  3494. "path": "oracle.manageddataaccess.core/3.21.1",
  3495. "files": [
  3496. ".nupkg.metadata",
  3497. ".signature.p7s",
  3498. "PerfCounters/register_odpc_perfmon_counters.ps1",
  3499. "PerfCounters/unregister_odpc_perfmon_counters.ps1",
  3500. "info.txt",
  3501. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
  3502. "oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
  3503. "oracle.manageddataaccess.core.nuspec",
  3504. "readme.txt"
  3505. ]
  3506. },
  3507. "Pipelines.Sockets.Unofficial/2.2.2": {
  3508. "sha512": "Bhk0FWxH1paI+18zr1g5cTL+ebeuDcBCR+rRFO+fKEhretgjs7MF2Mc1P64FGLecWp4zKCUOPzngBNrqVyY7Zg==",
  3509. "type": "package",
  3510. "path": "pipelines.sockets.unofficial/2.2.2",
  3511. "files": [
  3512. ".nupkg.metadata",
  3513. ".signature.p7s",
  3514. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  3515. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  3516. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  3517. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  3518. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  3519. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  3520. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  3521. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  3522. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  3523. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  3524. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  3525. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  3526. "pipelines.sockets.unofficial.2.2.2.nupkg.sha512",
  3527. "pipelines.sockets.unofficial.nuspec"
  3528. ]
  3529. },
  3530. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3531. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  3532. "type": "package",
  3533. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3534. "files": [
  3535. ".nupkg.metadata",
  3536. ".signature.p7s",
  3537. "ThirdPartyNotices.txt",
  3538. "dotnet_library_license.txt",
  3539. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3540. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3541. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3542. ]
  3543. },
  3544. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3545. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  3546. "type": "package",
  3547. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3548. "files": [
  3549. ".nupkg.metadata",
  3550. ".signature.p7s",
  3551. "ThirdPartyNotices.txt",
  3552. "dotnet_library_license.txt",
  3553. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3554. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3555. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3556. ]
  3557. },
  3558. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3559. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  3560. "type": "package",
  3561. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3562. "files": [
  3563. ".nupkg.metadata",
  3564. ".signature.p7s",
  3565. "ThirdPartyNotices.txt",
  3566. "dotnet_library_license.txt",
  3567. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3568. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3569. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3570. ]
  3571. },
  3572. "runtime.native.System/4.3.0": {
  3573. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3574. "type": "package",
  3575. "path": "runtime.native.system/4.3.0",
  3576. "files": [
  3577. ".nupkg.metadata",
  3578. ".signature.p7s",
  3579. "ThirdPartyNotices.txt",
  3580. "dotnet_library_license.txt",
  3581. "lib/netstandard1.0/_._",
  3582. "runtime.native.system.4.3.0.nupkg.sha512",
  3583. "runtime.native.system.nuspec"
  3584. ]
  3585. },
  3586. "runtime.native.System.IO.Compression/4.3.0": {
  3587. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  3588. "type": "package",
  3589. "path": "runtime.native.system.io.compression/4.3.0",
  3590. "files": [
  3591. ".nupkg.metadata",
  3592. ".signature.p7s",
  3593. "ThirdPartyNotices.txt",
  3594. "dotnet_library_license.txt",
  3595. "lib/netstandard1.0/_._",
  3596. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  3597. "runtime.native.system.io.compression.nuspec"
  3598. ]
  3599. },
  3600. "runtime.native.System.Net.Http/4.3.0": {
  3601. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3602. "type": "package",
  3603. "path": "runtime.native.system.net.http/4.3.0",
  3604. "files": [
  3605. ".nupkg.metadata",
  3606. ".signature.p7s",
  3607. "ThirdPartyNotices.txt",
  3608. "dotnet_library_license.txt",
  3609. "lib/netstandard1.0/_._",
  3610. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3611. "runtime.native.system.net.http.nuspec"
  3612. ]
  3613. },
  3614. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3615. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3616. "type": "package",
  3617. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3618. "files": [
  3619. ".nupkg.metadata",
  3620. ".signature.p7s",
  3621. "ThirdPartyNotices.txt",
  3622. "dotnet_library_license.txt",
  3623. "lib/netstandard1.0/_._",
  3624. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3625. "runtime.native.system.security.cryptography.apple.nuspec"
  3626. ]
  3627. },
  3628. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3629. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  3630. "type": "package",
  3631. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  3632. "files": [
  3633. ".nupkg.metadata",
  3634. ".signature.p7s",
  3635. "ThirdPartyNotices.txt",
  3636. "dotnet_library_license.txt",
  3637. "lib/netstandard1.0/_._",
  3638. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3639. "runtime.native.system.security.cryptography.openssl.nuspec"
  3640. ]
  3641. },
  3642. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3643. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  3644. "type": "package",
  3645. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3646. "files": [
  3647. ".nupkg.metadata",
  3648. ".signature.p7s",
  3649. "ThirdPartyNotices.txt",
  3650. "dotnet_library_license.txt",
  3651. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3652. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3653. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3654. ]
  3655. },
  3656. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3657. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  3658. "type": "package",
  3659. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3660. "files": [
  3661. ".nupkg.metadata",
  3662. ".signature.p7s",
  3663. "ThirdPartyNotices.txt",
  3664. "dotnet_library_license.txt",
  3665. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3666. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3667. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3668. ]
  3669. },
  3670. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3671. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  3672. "type": "package",
  3673. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  3674. "files": [
  3675. ".nupkg.metadata",
  3676. ".signature.p7s",
  3677. "ThirdPartyNotices.txt",
  3678. "dotnet_library_license.txt",
  3679. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3680. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  3681. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  3682. ]
  3683. },
  3684. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3685. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  3686. "type": "package",
  3687. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3688. "files": [
  3689. ".nupkg.metadata",
  3690. ".signature.p7s",
  3691. "ThirdPartyNotices.txt",
  3692. "dotnet_library_license.txt",
  3693. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3694. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3695. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  3696. ]
  3697. },
  3698. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3699. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  3700. "type": "package",
  3701. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3702. "files": [
  3703. ".nupkg.metadata",
  3704. ".signature.p7s",
  3705. "ThirdPartyNotices.txt",
  3706. "dotnet_library_license.txt",
  3707. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3708. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3709. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3710. ]
  3711. },
  3712. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3713. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  3714. "type": "package",
  3715. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3716. "files": [
  3717. ".nupkg.metadata",
  3718. ".signature.p7s",
  3719. "ThirdPartyNotices.txt",
  3720. "dotnet_library_license.txt",
  3721. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3722. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3723. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3724. ]
  3725. },
  3726. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3727. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  3728. "type": "package",
  3729. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3730. "files": [
  3731. ".nupkg.metadata",
  3732. ".signature.p7s",
  3733. "ThirdPartyNotices.txt",
  3734. "dotnet_library_license.txt",
  3735. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3736. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3737. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3738. ]
  3739. },
  3740. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3741. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  3742. "type": "package",
  3743. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3744. "files": [
  3745. ".nupkg.metadata",
  3746. ".signature.p7s",
  3747. "ThirdPartyNotices.txt",
  3748. "dotnet_library_license.txt",
  3749. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3750. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3751. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3752. ]
  3753. },
  3754. "Serilog/2.10.0": {
  3755. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  3756. "type": "package",
  3757. "path": "serilog/2.10.0",
  3758. "files": [
  3759. ".nupkg.metadata",
  3760. ".signature.p7s",
  3761. "icon.png",
  3762. "lib/net45/Serilog.dll",
  3763. "lib/net45/Serilog.xml",
  3764. "lib/net46/Serilog.dll",
  3765. "lib/net46/Serilog.xml",
  3766. "lib/netstandard1.0/Serilog.dll",
  3767. "lib/netstandard1.0/Serilog.xml",
  3768. "lib/netstandard1.3/Serilog.dll",
  3769. "lib/netstandard1.3/Serilog.xml",
  3770. "lib/netstandard2.0/Serilog.dll",
  3771. "lib/netstandard2.0/Serilog.xml",
  3772. "lib/netstandard2.1/Serilog.dll",
  3773. "lib/netstandard2.1/Serilog.xml",
  3774. "serilog.2.10.0.nupkg.sha512",
  3775. "serilog.nuspec"
  3776. ]
  3777. },
  3778. "Serilog.Sinks.File/5.0.0": {
  3779. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  3780. "type": "package",
  3781. "path": "serilog.sinks.file/5.0.0",
  3782. "files": [
  3783. ".nupkg.metadata",
  3784. ".signature.p7s",
  3785. "images/icon.png",
  3786. "lib/net45/Serilog.Sinks.File.dll",
  3787. "lib/net45/Serilog.Sinks.File.pdb",
  3788. "lib/net45/Serilog.Sinks.File.xml",
  3789. "lib/net5.0/Serilog.Sinks.File.dll",
  3790. "lib/net5.0/Serilog.Sinks.File.pdb",
  3791. "lib/net5.0/Serilog.Sinks.File.xml",
  3792. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  3793. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  3794. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  3795. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  3796. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  3797. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  3798. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  3799. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  3800. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  3801. "serilog.sinks.file.5.0.0.nupkg.sha512",
  3802. "serilog.sinks.file.nuspec"
  3803. ]
  3804. },
  3805. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  3806. "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  3807. "type": "package",
  3808. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  3809. "files": [
  3810. ".nupkg.metadata",
  3811. ".signature.p7s",
  3812. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3813. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  3814. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  3815. "lib/net461/SQLitePCLRaw.nativelibrary.dll",
  3816. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
  3817. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
  3818. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  3819. "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
  3820. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  3821. ]
  3822. },
  3823. "SQLitePCLRaw.core/2.0.4": {
  3824. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  3825. "type": "package",
  3826. "path": "sqlitepclraw.core/2.0.4",
  3827. "files": [
  3828. ".nupkg.metadata",
  3829. ".signature.p7s",
  3830. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  3831. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  3832. "sqlitepclraw.core.nuspec"
  3833. ]
  3834. },
  3835. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  3836. "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  3837. "type": "package",
  3838. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  3839. "files": [
  3840. ".nupkg.metadata",
  3841. ".signature.p7s",
  3842. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  3843. "lib/net461/_._",
  3844. "lib/netstandard2.0/_._",
  3845. "runtimes/alpine-x64/native/libe_sqlite3.so",
  3846. "runtimes/linux-arm/native/libe_sqlite3.so",
  3847. "runtimes/linux-arm64/native/libe_sqlite3.so",
  3848. "runtimes/linux-armel/native/libe_sqlite3.so",
  3849. "runtimes/linux-mips64/native/libe_sqlite3.so",
  3850. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  3851. "runtimes/linux-x64/native/libe_sqlite3.so",
  3852. "runtimes/linux-x86/native/libe_sqlite3.so",
  3853. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  3854. "runtimes/win-arm/native/e_sqlite3.dll",
  3855. "runtimes/win-arm64/native/e_sqlite3.dll",
  3856. "runtimes/win-x64/native/e_sqlite3.dll",
  3857. "runtimes/win-x86/native/e_sqlite3.dll",
  3858. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  3859. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  3860. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  3861. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  3862. "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
  3863. "sqlitepclraw.lib.e_sqlite3.nuspec"
  3864. ]
  3865. },
  3866. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  3867. "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  3868. "type": "package",
  3869. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  3870. "files": [
  3871. ".nupkg.metadata",
  3872. ".signature.p7s",
  3873. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
  3874. "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
  3875. "sqlitepclraw.provider.dynamic_cdecl.nuspec"
  3876. ]
  3877. },
  3878. "SqlSugarCore/5.1.3.32": {
  3879. "sha512": "Rd+N9idSgHMmAZ3c93UV/h2xMDqkR+0uFXxiJMKDwOEeqIVcG207OzoXt15/D4Sk6oxwksZuqK4AMft35QPSjA==",
  3880. "type": "package",
  3881. "path": "sqlsugarcore/5.1.3.32",
  3882. "files": [
  3883. ".nupkg.metadata",
  3884. ".signature.p7s",
  3885. "lib/netstandard2.1/SqlSugar.dll",
  3886. "sqlsugarcore.5.1.3.32.nupkg.sha512",
  3887. "sqlsugarcore.nuspec"
  3888. ]
  3889. },
  3890. "SqlSugarCore.Dm/1.0.0": {
  3891. "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  3892. "type": "package",
  3893. "path": "sqlsugarcore.dm/1.0.0",
  3894. "files": [
  3895. ".nupkg.metadata",
  3896. ".signature.p7s",
  3897. "lib/netstandard2.0/DmProvider.dll",
  3898. "sqlsugarcore.dm.1.0.0.nupkg.sha512",
  3899. "sqlsugarcore.dm.nuspec"
  3900. ]
  3901. },
  3902. "SqlSugarCore.Kdbndp/1.0.0": {
  3903. "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==",
  3904. "type": "package",
  3905. "path": "sqlsugarcore.kdbndp/1.0.0",
  3906. "files": [
  3907. ".nupkg.metadata",
  3908. ".signature.p7s",
  3909. "lib/netstandard2.0/Kdbndp.dll",
  3910. "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
  3911. "sqlsugarcore.kdbndp.nuspec"
  3912. ]
  3913. },
  3914. "StackExchange.Redis/2.6.96": {
  3915. "sha512": "JDj94bTwBZ6zA1vknEYJppRXRejTnl5u2z6cRBQ0DJ+Uy94qvn0XsQZ2M+1/VkqtxQ+LUU1h4JZWwcvVojGiQg==",
  3916. "type": "package",
  3917. "path": "stackexchange.redis/2.6.96",
  3918. "files": [
  3919. ".nupkg.metadata",
  3920. ".signature.p7s",
  3921. "lib/net461/StackExchange.Redis.dll",
  3922. "lib/net461/StackExchange.Redis.xml",
  3923. "lib/net472/StackExchange.Redis.dll",
  3924. "lib/net472/StackExchange.Redis.xml",
  3925. "lib/net5.0/StackExchange.Redis.dll",
  3926. "lib/net5.0/StackExchange.Redis.xml",
  3927. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  3928. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  3929. "lib/netstandard2.0/StackExchange.Redis.dll",
  3930. "lib/netstandard2.0/StackExchange.Redis.xml",
  3931. "stackexchange.redis.2.6.96.nupkg.sha512",
  3932. "stackexchange.redis.nuspec"
  3933. ]
  3934. },
  3935. "System.AppContext/4.3.0": {
  3936. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  3937. "type": "package",
  3938. "path": "system.appcontext/4.3.0",
  3939. "files": [
  3940. ".nupkg.metadata",
  3941. ".signature.p7s",
  3942. "ThirdPartyNotices.txt",
  3943. "dotnet_library_license.txt",
  3944. "lib/MonoAndroid10/_._",
  3945. "lib/MonoTouch10/_._",
  3946. "lib/net46/System.AppContext.dll",
  3947. "lib/net463/System.AppContext.dll",
  3948. "lib/netcore50/System.AppContext.dll",
  3949. "lib/netstandard1.6/System.AppContext.dll",
  3950. "lib/xamarinios10/_._",
  3951. "lib/xamarinmac20/_._",
  3952. "lib/xamarintvos10/_._",
  3953. "lib/xamarinwatchos10/_._",
  3954. "ref/MonoAndroid10/_._",
  3955. "ref/MonoTouch10/_._",
  3956. "ref/net46/System.AppContext.dll",
  3957. "ref/net463/System.AppContext.dll",
  3958. "ref/netstandard/_._",
  3959. "ref/netstandard1.3/System.AppContext.dll",
  3960. "ref/netstandard1.3/System.AppContext.xml",
  3961. "ref/netstandard1.3/de/System.AppContext.xml",
  3962. "ref/netstandard1.3/es/System.AppContext.xml",
  3963. "ref/netstandard1.3/fr/System.AppContext.xml",
  3964. "ref/netstandard1.3/it/System.AppContext.xml",
  3965. "ref/netstandard1.3/ja/System.AppContext.xml",
  3966. "ref/netstandard1.3/ko/System.AppContext.xml",
  3967. "ref/netstandard1.3/ru/System.AppContext.xml",
  3968. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3969. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3970. "ref/netstandard1.6/System.AppContext.dll",
  3971. "ref/netstandard1.6/System.AppContext.xml",
  3972. "ref/netstandard1.6/de/System.AppContext.xml",
  3973. "ref/netstandard1.6/es/System.AppContext.xml",
  3974. "ref/netstandard1.6/fr/System.AppContext.xml",
  3975. "ref/netstandard1.6/it/System.AppContext.xml",
  3976. "ref/netstandard1.6/ja/System.AppContext.xml",
  3977. "ref/netstandard1.6/ko/System.AppContext.xml",
  3978. "ref/netstandard1.6/ru/System.AppContext.xml",
  3979. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3980. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3981. "ref/xamarinios10/_._",
  3982. "ref/xamarinmac20/_._",
  3983. "ref/xamarintvos10/_._",
  3984. "ref/xamarinwatchos10/_._",
  3985. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3986. "system.appcontext.4.3.0.nupkg.sha512",
  3987. "system.appcontext.nuspec"
  3988. ]
  3989. },
  3990. "System.Buffers/4.5.1": {
  3991. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  3992. "type": "package",
  3993. "path": "system.buffers/4.5.1",
  3994. "files": [
  3995. ".nupkg.metadata",
  3996. ".signature.p7s",
  3997. "LICENSE.TXT",
  3998. "THIRD-PARTY-NOTICES.TXT",
  3999. "lib/net461/System.Buffers.dll",
  4000. "lib/net461/System.Buffers.xml",
  4001. "lib/netcoreapp2.0/_._",
  4002. "lib/netstandard1.1/System.Buffers.dll",
  4003. "lib/netstandard1.1/System.Buffers.xml",
  4004. "lib/netstandard2.0/System.Buffers.dll",
  4005. "lib/netstandard2.0/System.Buffers.xml",
  4006. "lib/uap10.0.16299/_._",
  4007. "ref/net45/System.Buffers.dll",
  4008. "ref/net45/System.Buffers.xml",
  4009. "ref/netcoreapp2.0/_._",
  4010. "ref/netstandard1.1/System.Buffers.dll",
  4011. "ref/netstandard1.1/System.Buffers.xml",
  4012. "ref/netstandard2.0/System.Buffers.dll",
  4013. "ref/netstandard2.0/System.Buffers.xml",
  4014. "ref/uap10.0.16299/_._",
  4015. "system.buffers.4.5.1.nupkg.sha512",
  4016. "system.buffers.nuspec",
  4017. "useSharedDesignerContext.txt",
  4018. "version.txt"
  4019. ]
  4020. },
  4021. "System.Collections/4.3.0": {
  4022. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4023. "type": "package",
  4024. "path": "system.collections/4.3.0",
  4025. "files": [
  4026. ".nupkg.metadata",
  4027. ".signature.p7s",
  4028. "ThirdPartyNotices.txt",
  4029. "dotnet_library_license.txt",
  4030. "lib/MonoAndroid10/_._",
  4031. "lib/MonoTouch10/_._",
  4032. "lib/net45/_._",
  4033. "lib/portable-net45+win8+wp8+wpa81/_._",
  4034. "lib/win8/_._",
  4035. "lib/wp80/_._",
  4036. "lib/wpa81/_._",
  4037. "lib/xamarinios10/_._",
  4038. "lib/xamarinmac20/_._",
  4039. "lib/xamarintvos10/_._",
  4040. "lib/xamarinwatchos10/_._",
  4041. "ref/MonoAndroid10/_._",
  4042. "ref/MonoTouch10/_._",
  4043. "ref/net45/_._",
  4044. "ref/netcore50/System.Collections.dll",
  4045. "ref/netcore50/System.Collections.xml",
  4046. "ref/netcore50/de/System.Collections.xml",
  4047. "ref/netcore50/es/System.Collections.xml",
  4048. "ref/netcore50/fr/System.Collections.xml",
  4049. "ref/netcore50/it/System.Collections.xml",
  4050. "ref/netcore50/ja/System.Collections.xml",
  4051. "ref/netcore50/ko/System.Collections.xml",
  4052. "ref/netcore50/ru/System.Collections.xml",
  4053. "ref/netcore50/zh-hans/System.Collections.xml",
  4054. "ref/netcore50/zh-hant/System.Collections.xml",
  4055. "ref/netstandard1.0/System.Collections.dll",
  4056. "ref/netstandard1.0/System.Collections.xml",
  4057. "ref/netstandard1.0/de/System.Collections.xml",
  4058. "ref/netstandard1.0/es/System.Collections.xml",
  4059. "ref/netstandard1.0/fr/System.Collections.xml",
  4060. "ref/netstandard1.0/it/System.Collections.xml",
  4061. "ref/netstandard1.0/ja/System.Collections.xml",
  4062. "ref/netstandard1.0/ko/System.Collections.xml",
  4063. "ref/netstandard1.0/ru/System.Collections.xml",
  4064. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4065. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4066. "ref/netstandard1.3/System.Collections.dll",
  4067. "ref/netstandard1.3/System.Collections.xml",
  4068. "ref/netstandard1.3/de/System.Collections.xml",
  4069. "ref/netstandard1.3/es/System.Collections.xml",
  4070. "ref/netstandard1.3/fr/System.Collections.xml",
  4071. "ref/netstandard1.3/it/System.Collections.xml",
  4072. "ref/netstandard1.3/ja/System.Collections.xml",
  4073. "ref/netstandard1.3/ko/System.Collections.xml",
  4074. "ref/netstandard1.3/ru/System.Collections.xml",
  4075. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4076. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4077. "ref/portable-net45+win8+wp8+wpa81/_._",
  4078. "ref/win8/_._",
  4079. "ref/wp80/_._",
  4080. "ref/wpa81/_._",
  4081. "ref/xamarinios10/_._",
  4082. "ref/xamarinmac20/_._",
  4083. "ref/xamarintvos10/_._",
  4084. "ref/xamarinwatchos10/_._",
  4085. "system.collections.4.3.0.nupkg.sha512",
  4086. "system.collections.nuspec"
  4087. ]
  4088. },
  4089. "System.Collections.Concurrent/4.3.0": {
  4090. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4091. "type": "package",
  4092. "path": "system.collections.concurrent/4.3.0",
  4093. "files": [
  4094. ".nupkg.metadata",
  4095. ".signature.p7s",
  4096. "ThirdPartyNotices.txt",
  4097. "dotnet_library_license.txt",
  4098. "lib/MonoAndroid10/_._",
  4099. "lib/MonoTouch10/_._",
  4100. "lib/net45/_._",
  4101. "lib/netcore50/System.Collections.Concurrent.dll",
  4102. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4103. "lib/portable-net45+win8+wpa81/_._",
  4104. "lib/win8/_._",
  4105. "lib/wpa81/_._",
  4106. "lib/xamarinios10/_._",
  4107. "lib/xamarinmac20/_._",
  4108. "lib/xamarintvos10/_._",
  4109. "lib/xamarinwatchos10/_._",
  4110. "ref/MonoAndroid10/_._",
  4111. "ref/MonoTouch10/_._",
  4112. "ref/net45/_._",
  4113. "ref/netcore50/System.Collections.Concurrent.dll",
  4114. "ref/netcore50/System.Collections.Concurrent.xml",
  4115. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4116. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4117. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4118. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4119. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4120. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4121. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4122. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4123. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4124. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4125. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4126. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4127. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4128. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4129. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4130. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4131. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4132. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4133. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4134. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4135. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4136. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4137. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4138. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4139. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4140. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4141. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4142. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4143. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4144. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4145. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4146. "ref/portable-net45+win8+wpa81/_._",
  4147. "ref/win8/_._",
  4148. "ref/wpa81/_._",
  4149. "ref/xamarinios10/_._",
  4150. "ref/xamarinmac20/_._",
  4151. "ref/xamarintvos10/_._",
  4152. "ref/xamarinwatchos10/_._",
  4153. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4154. "system.collections.concurrent.nuspec"
  4155. ]
  4156. },
  4157. "System.Collections.NonGeneric/4.3.0": {
  4158. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4159. "type": "package",
  4160. "path": "system.collections.nongeneric/4.3.0",
  4161. "files": [
  4162. ".nupkg.metadata",
  4163. ".signature.p7s",
  4164. "ThirdPartyNotices.txt",
  4165. "dotnet_library_license.txt",
  4166. "lib/MonoAndroid10/_._",
  4167. "lib/MonoTouch10/_._",
  4168. "lib/net46/System.Collections.NonGeneric.dll",
  4169. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4170. "lib/xamarinios10/_._",
  4171. "lib/xamarinmac20/_._",
  4172. "lib/xamarintvos10/_._",
  4173. "lib/xamarinwatchos10/_._",
  4174. "ref/MonoAndroid10/_._",
  4175. "ref/MonoTouch10/_._",
  4176. "ref/net46/System.Collections.NonGeneric.dll",
  4177. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4178. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4179. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4180. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4181. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4182. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4183. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4184. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4185. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4186. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4187. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4188. "ref/xamarinios10/_._",
  4189. "ref/xamarinmac20/_._",
  4190. "ref/xamarintvos10/_._",
  4191. "ref/xamarinwatchos10/_._",
  4192. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4193. "system.collections.nongeneric.nuspec"
  4194. ]
  4195. },
  4196. "System.Collections.Specialized/4.3.0": {
  4197. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4198. "type": "package",
  4199. "path": "system.collections.specialized/4.3.0",
  4200. "files": [
  4201. ".nupkg.metadata",
  4202. ".signature.p7s",
  4203. "ThirdPartyNotices.txt",
  4204. "dotnet_library_license.txt",
  4205. "lib/MonoAndroid10/_._",
  4206. "lib/MonoTouch10/_._",
  4207. "lib/net46/System.Collections.Specialized.dll",
  4208. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4209. "lib/xamarinios10/_._",
  4210. "lib/xamarinmac20/_._",
  4211. "lib/xamarintvos10/_._",
  4212. "lib/xamarinwatchos10/_._",
  4213. "ref/MonoAndroid10/_._",
  4214. "ref/MonoTouch10/_._",
  4215. "ref/net46/System.Collections.Specialized.dll",
  4216. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4217. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4218. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4219. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4220. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4221. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4222. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4223. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4224. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4225. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4226. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4227. "ref/xamarinios10/_._",
  4228. "ref/xamarinmac20/_._",
  4229. "ref/xamarintvos10/_._",
  4230. "ref/xamarinwatchos10/_._",
  4231. "system.collections.specialized.4.3.0.nupkg.sha512",
  4232. "system.collections.specialized.nuspec"
  4233. ]
  4234. },
  4235. "System.ComponentModel/4.3.0": {
  4236. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4237. "type": "package",
  4238. "path": "system.componentmodel/4.3.0",
  4239. "files": [
  4240. ".nupkg.metadata",
  4241. ".signature.p7s",
  4242. "ThirdPartyNotices.txt",
  4243. "dotnet_library_license.txt",
  4244. "lib/MonoAndroid10/_._",
  4245. "lib/MonoTouch10/_._",
  4246. "lib/net45/_._",
  4247. "lib/netcore50/System.ComponentModel.dll",
  4248. "lib/netstandard1.3/System.ComponentModel.dll",
  4249. "lib/portable-net45+win8+wp8+wpa81/_._",
  4250. "lib/win8/_._",
  4251. "lib/wp80/_._",
  4252. "lib/wpa81/_._",
  4253. "lib/xamarinios10/_._",
  4254. "lib/xamarinmac20/_._",
  4255. "lib/xamarintvos10/_._",
  4256. "lib/xamarinwatchos10/_._",
  4257. "ref/MonoAndroid10/_._",
  4258. "ref/MonoTouch10/_._",
  4259. "ref/net45/_._",
  4260. "ref/netcore50/System.ComponentModel.dll",
  4261. "ref/netcore50/System.ComponentModel.xml",
  4262. "ref/netcore50/de/System.ComponentModel.xml",
  4263. "ref/netcore50/es/System.ComponentModel.xml",
  4264. "ref/netcore50/fr/System.ComponentModel.xml",
  4265. "ref/netcore50/it/System.ComponentModel.xml",
  4266. "ref/netcore50/ja/System.ComponentModel.xml",
  4267. "ref/netcore50/ko/System.ComponentModel.xml",
  4268. "ref/netcore50/ru/System.ComponentModel.xml",
  4269. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4270. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4271. "ref/netstandard1.0/System.ComponentModel.dll",
  4272. "ref/netstandard1.0/System.ComponentModel.xml",
  4273. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4274. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4275. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4276. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4277. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4278. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4279. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4280. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4281. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4282. "ref/portable-net45+win8+wp8+wpa81/_._",
  4283. "ref/win8/_._",
  4284. "ref/wp80/_._",
  4285. "ref/wpa81/_._",
  4286. "ref/xamarinios10/_._",
  4287. "ref/xamarinmac20/_._",
  4288. "ref/xamarintvos10/_._",
  4289. "ref/xamarinwatchos10/_._",
  4290. "system.componentmodel.4.3.0.nupkg.sha512",
  4291. "system.componentmodel.nuspec"
  4292. ]
  4293. },
  4294. "System.ComponentModel.Primitives/4.3.0": {
  4295. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4296. "type": "package",
  4297. "path": "system.componentmodel.primitives/4.3.0",
  4298. "files": [
  4299. ".nupkg.metadata",
  4300. ".signature.p7s",
  4301. "ThirdPartyNotices.txt",
  4302. "dotnet_library_license.txt",
  4303. "lib/MonoAndroid10/_._",
  4304. "lib/MonoTouch10/_._",
  4305. "lib/net45/System.ComponentModel.Primitives.dll",
  4306. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4307. "lib/xamarinios10/_._",
  4308. "lib/xamarinmac20/_._",
  4309. "lib/xamarintvos10/_._",
  4310. "lib/xamarinwatchos10/_._",
  4311. "ref/MonoAndroid10/_._",
  4312. "ref/MonoTouch10/_._",
  4313. "ref/net45/System.ComponentModel.Primitives.dll",
  4314. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4315. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4316. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4317. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4318. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4319. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4320. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4321. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4322. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4323. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4324. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4325. "ref/xamarinios10/_._",
  4326. "ref/xamarinmac20/_._",
  4327. "ref/xamarintvos10/_._",
  4328. "ref/xamarinwatchos10/_._",
  4329. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4330. "system.componentmodel.primitives.nuspec"
  4331. ]
  4332. },
  4333. "System.ComponentModel.TypeConverter/4.3.0": {
  4334. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4335. "type": "package",
  4336. "path": "system.componentmodel.typeconverter/4.3.0",
  4337. "files": [
  4338. ".nupkg.metadata",
  4339. ".signature.p7s",
  4340. "ThirdPartyNotices.txt",
  4341. "dotnet_library_license.txt",
  4342. "lib/MonoAndroid10/_._",
  4343. "lib/MonoTouch10/_._",
  4344. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4345. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4346. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4347. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4348. "lib/xamarinios10/_._",
  4349. "lib/xamarinmac20/_._",
  4350. "lib/xamarintvos10/_._",
  4351. "lib/xamarinwatchos10/_._",
  4352. "ref/MonoAndroid10/_._",
  4353. "ref/MonoTouch10/_._",
  4354. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4355. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4356. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4357. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4358. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4359. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4360. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4361. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4362. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4363. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4364. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4365. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4366. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4367. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4368. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4369. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4370. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4371. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4372. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4373. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4374. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4375. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4376. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4377. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4378. "ref/xamarinios10/_._",
  4379. "ref/xamarinmac20/_._",
  4380. "ref/xamarintvos10/_._",
  4381. "ref/xamarinwatchos10/_._",
  4382. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4383. "system.componentmodel.typeconverter.nuspec"
  4384. ]
  4385. },
  4386. "System.Configuration.ConfigurationManager/4.7.0": {
  4387. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4388. "type": "package",
  4389. "path": "system.configuration.configurationmanager/4.7.0",
  4390. "files": [
  4391. ".nupkg.metadata",
  4392. ".signature.p7s",
  4393. "LICENSE.TXT",
  4394. "THIRD-PARTY-NOTICES.TXT",
  4395. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4396. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4397. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4398. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4399. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4400. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4401. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4402. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4403. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4404. "system.configuration.configurationmanager.nuspec",
  4405. "useSharedDesignerContext.txt",
  4406. "version.txt"
  4407. ]
  4408. },
  4409. "System.Console/4.3.0": {
  4410. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4411. "type": "package",
  4412. "path": "system.console/4.3.0",
  4413. "files": [
  4414. ".nupkg.metadata",
  4415. ".signature.p7s",
  4416. "ThirdPartyNotices.txt",
  4417. "dotnet_library_license.txt",
  4418. "lib/MonoAndroid10/_._",
  4419. "lib/MonoTouch10/_._",
  4420. "lib/net46/System.Console.dll",
  4421. "lib/xamarinios10/_._",
  4422. "lib/xamarinmac20/_._",
  4423. "lib/xamarintvos10/_._",
  4424. "lib/xamarinwatchos10/_._",
  4425. "ref/MonoAndroid10/_._",
  4426. "ref/MonoTouch10/_._",
  4427. "ref/net46/System.Console.dll",
  4428. "ref/netstandard1.3/System.Console.dll",
  4429. "ref/netstandard1.3/System.Console.xml",
  4430. "ref/netstandard1.3/de/System.Console.xml",
  4431. "ref/netstandard1.3/es/System.Console.xml",
  4432. "ref/netstandard1.3/fr/System.Console.xml",
  4433. "ref/netstandard1.3/it/System.Console.xml",
  4434. "ref/netstandard1.3/ja/System.Console.xml",
  4435. "ref/netstandard1.3/ko/System.Console.xml",
  4436. "ref/netstandard1.3/ru/System.Console.xml",
  4437. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4438. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4439. "ref/xamarinios10/_._",
  4440. "ref/xamarinmac20/_._",
  4441. "ref/xamarintvos10/_._",
  4442. "ref/xamarinwatchos10/_._",
  4443. "system.console.4.3.0.nupkg.sha512",
  4444. "system.console.nuspec"
  4445. ]
  4446. },
  4447. "System.Data.Common/4.3.0": {
  4448. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4449. "type": "package",
  4450. "path": "system.data.common/4.3.0",
  4451. "files": [
  4452. ".nupkg.metadata",
  4453. ".signature.p7s",
  4454. "ThirdPartyNotices.txt",
  4455. "dotnet_library_license.txt",
  4456. "lib/MonoAndroid10/_._",
  4457. "lib/MonoTouch10/_._",
  4458. "lib/net451/System.Data.Common.dll",
  4459. "lib/netstandard1.2/System.Data.Common.dll",
  4460. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4461. "lib/xamarinios10/_._",
  4462. "lib/xamarinmac20/_._",
  4463. "lib/xamarintvos10/_._",
  4464. "lib/xamarinwatchos10/_._",
  4465. "ref/MonoAndroid10/_._",
  4466. "ref/MonoTouch10/_._",
  4467. "ref/net451/System.Data.Common.dll",
  4468. "ref/netstandard1.2/System.Data.Common.dll",
  4469. "ref/netstandard1.2/System.Data.Common.xml",
  4470. "ref/netstandard1.2/de/System.Data.Common.xml",
  4471. "ref/netstandard1.2/es/System.Data.Common.xml",
  4472. "ref/netstandard1.2/fr/System.Data.Common.xml",
  4473. "ref/netstandard1.2/it/System.Data.Common.xml",
  4474. "ref/netstandard1.2/ja/System.Data.Common.xml",
  4475. "ref/netstandard1.2/ko/System.Data.Common.xml",
  4476. "ref/netstandard1.2/ru/System.Data.Common.xml",
  4477. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  4478. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  4479. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4480. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  4481. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  4482. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  4483. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  4484. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  4485. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  4486. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  4487. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  4488. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  4489. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  4490. "ref/xamarinios10/_._",
  4491. "ref/xamarinmac20/_._",
  4492. "ref/xamarintvos10/_._",
  4493. "ref/xamarinwatchos10/_._",
  4494. "system.data.common.4.3.0.nupkg.sha512",
  4495. "system.data.common.nuspec"
  4496. ]
  4497. },
  4498. "System.Diagnostics.Debug/4.3.0": {
  4499. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4500. "type": "package",
  4501. "path": "system.diagnostics.debug/4.3.0",
  4502. "files": [
  4503. ".nupkg.metadata",
  4504. ".signature.p7s",
  4505. "ThirdPartyNotices.txt",
  4506. "dotnet_library_license.txt",
  4507. "lib/MonoAndroid10/_._",
  4508. "lib/MonoTouch10/_._",
  4509. "lib/net45/_._",
  4510. "lib/portable-net45+win8+wp8+wpa81/_._",
  4511. "lib/win8/_._",
  4512. "lib/wp80/_._",
  4513. "lib/wpa81/_._",
  4514. "lib/xamarinios10/_._",
  4515. "lib/xamarinmac20/_._",
  4516. "lib/xamarintvos10/_._",
  4517. "lib/xamarinwatchos10/_._",
  4518. "ref/MonoAndroid10/_._",
  4519. "ref/MonoTouch10/_._",
  4520. "ref/net45/_._",
  4521. "ref/netcore50/System.Diagnostics.Debug.dll",
  4522. "ref/netcore50/System.Diagnostics.Debug.xml",
  4523. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4524. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4525. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4526. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4527. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4528. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4529. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4530. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4531. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4532. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4533. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4534. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4535. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4536. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4537. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4538. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4539. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4540. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4541. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4542. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4543. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4544. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4545. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4546. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4547. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4548. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4549. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4550. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4551. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4552. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4553. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4554. "ref/portable-net45+win8+wp8+wpa81/_._",
  4555. "ref/win8/_._",
  4556. "ref/wp80/_._",
  4557. "ref/wpa81/_._",
  4558. "ref/xamarinios10/_._",
  4559. "ref/xamarinmac20/_._",
  4560. "ref/xamarintvos10/_._",
  4561. "ref/xamarinwatchos10/_._",
  4562. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4563. "system.diagnostics.debug.nuspec"
  4564. ]
  4565. },
  4566. "System.Diagnostics.DiagnosticSource/4.7.1": {
  4567. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  4568. "type": "package",
  4569. "path": "system.diagnostics.diagnosticsource/4.7.1",
  4570. "files": [
  4571. ".nupkg.metadata",
  4572. ".signature.p7s",
  4573. "Icon.png",
  4574. "LICENSE.TXT",
  4575. "THIRD-PARTY-NOTICES.TXT",
  4576. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4577. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4578. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4579. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4580. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4581. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4582. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4583. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4584. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4585. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4586. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  4587. "system.diagnostics.diagnosticsource.nuspec",
  4588. "useSharedDesignerContext.txt",
  4589. "version.txt"
  4590. ]
  4591. },
  4592. "System.Diagnostics.PerformanceCounter/4.7.0": {
  4593. "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  4594. "type": "package",
  4595. "path": "system.diagnostics.performancecounter/4.7.0",
  4596. "files": [
  4597. ".nupkg.metadata",
  4598. ".signature.p7s",
  4599. "LICENSE.TXT",
  4600. "THIRD-PARTY-NOTICES.TXT",
  4601. "lib/MonoAndroid10/_._",
  4602. "lib/MonoTouch10/_._",
  4603. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  4604. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  4605. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4606. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4607. "lib/xamarinios10/_._",
  4608. "lib/xamarinmac20/_._",
  4609. "lib/xamarintvos10/_._",
  4610. "lib/xamarinwatchos10/_._",
  4611. "ref/MonoAndroid10/_._",
  4612. "ref/MonoTouch10/_._",
  4613. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  4614. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  4615. "ref/net472/System.Diagnostics.PerformanceCounter.dll",
  4616. "ref/net472/System.Diagnostics.PerformanceCounter.xml",
  4617. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4618. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4619. "ref/xamarinios10/_._",
  4620. "ref/xamarinmac20/_._",
  4621. "ref/xamarintvos10/_._",
  4622. "ref/xamarinwatchos10/_._",
  4623. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  4624. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  4625. "system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
  4626. "system.diagnostics.performancecounter.nuspec",
  4627. "useSharedDesignerContext.txt",
  4628. "version.txt"
  4629. ]
  4630. },
  4631. "System.Diagnostics.Tools/4.3.0": {
  4632. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4633. "type": "package",
  4634. "path": "system.diagnostics.tools/4.3.0",
  4635. "files": [
  4636. ".nupkg.metadata",
  4637. ".signature.p7s",
  4638. "ThirdPartyNotices.txt",
  4639. "dotnet_library_license.txt",
  4640. "lib/MonoAndroid10/_._",
  4641. "lib/MonoTouch10/_._",
  4642. "lib/net45/_._",
  4643. "lib/portable-net45+win8+wp8+wpa81/_._",
  4644. "lib/win8/_._",
  4645. "lib/wp80/_._",
  4646. "lib/wpa81/_._",
  4647. "lib/xamarinios10/_._",
  4648. "lib/xamarinmac20/_._",
  4649. "lib/xamarintvos10/_._",
  4650. "lib/xamarinwatchos10/_._",
  4651. "ref/MonoAndroid10/_._",
  4652. "ref/MonoTouch10/_._",
  4653. "ref/net45/_._",
  4654. "ref/netcore50/System.Diagnostics.Tools.dll",
  4655. "ref/netcore50/System.Diagnostics.Tools.xml",
  4656. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4657. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4658. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4659. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4660. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4661. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4662. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4663. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4664. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4665. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4666. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4667. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4668. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4669. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4670. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4671. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4672. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4673. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4674. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4675. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4676. "ref/portable-net45+win8+wp8+wpa81/_._",
  4677. "ref/win8/_._",
  4678. "ref/wp80/_._",
  4679. "ref/wpa81/_._",
  4680. "ref/xamarinios10/_._",
  4681. "ref/xamarinmac20/_._",
  4682. "ref/xamarintvos10/_._",
  4683. "ref/xamarinwatchos10/_._",
  4684. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  4685. "system.diagnostics.tools.nuspec"
  4686. ]
  4687. },
  4688. "System.Diagnostics.Tracing/4.3.0": {
  4689. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4690. "type": "package",
  4691. "path": "system.diagnostics.tracing/4.3.0",
  4692. "files": [
  4693. ".nupkg.metadata",
  4694. ".signature.p7s",
  4695. "ThirdPartyNotices.txt",
  4696. "dotnet_library_license.txt",
  4697. "lib/MonoAndroid10/_._",
  4698. "lib/MonoTouch10/_._",
  4699. "lib/net45/_._",
  4700. "lib/net462/System.Diagnostics.Tracing.dll",
  4701. "lib/portable-net45+win8+wpa81/_._",
  4702. "lib/win8/_._",
  4703. "lib/wpa81/_._",
  4704. "lib/xamarinios10/_._",
  4705. "lib/xamarinmac20/_._",
  4706. "lib/xamarintvos10/_._",
  4707. "lib/xamarinwatchos10/_._",
  4708. "ref/MonoAndroid10/_._",
  4709. "ref/MonoTouch10/_._",
  4710. "ref/net45/_._",
  4711. "ref/net462/System.Diagnostics.Tracing.dll",
  4712. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4713. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4714. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4715. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4716. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4717. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4718. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4719. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4720. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4721. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4722. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4723. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4724. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4725. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4726. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4727. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4728. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4729. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4730. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4731. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4732. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4733. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4734. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4735. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4736. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4737. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4738. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4739. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4740. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4741. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4742. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4743. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4744. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4745. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4746. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4747. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4748. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4749. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4750. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4751. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4752. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4753. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4754. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4755. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4756. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4757. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4758. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4759. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4760. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4761. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4762. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4763. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4764. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4765. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4766. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4767. "ref/portable-net45+win8+wpa81/_._",
  4768. "ref/win8/_._",
  4769. "ref/wpa81/_._",
  4770. "ref/xamarinios10/_._",
  4771. "ref/xamarinmac20/_._",
  4772. "ref/xamarintvos10/_._",
  4773. "ref/xamarinwatchos10/_._",
  4774. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4775. "system.diagnostics.tracing.nuspec"
  4776. ]
  4777. },
  4778. "System.DirectoryServices/4.7.0": {
  4779. "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  4780. "type": "package",
  4781. "path": "system.directoryservices/4.7.0",
  4782. "files": [
  4783. ".nupkg.metadata",
  4784. ".signature.p7s",
  4785. "LICENSE.TXT",
  4786. "THIRD-PARTY-NOTICES.TXT",
  4787. "lib/net45/_._",
  4788. "lib/netstandard2.0/System.DirectoryServices.dll",
  4789. "lib/netstandard2.0/System.DirectoryServices.xml",
  4790. "ref/net45/_._",
  4791. "ref/netstandard2.0/System.DirectoryServices.dll",
  4792. "ref/netstandard2.0/System.DirectoryServices.xml",
  4793. "runtimes/win/lib/net45/_._",
  4794. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
  4795. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
  4796. "system.directoryservices.4.7.0.nupkg.sha512",
  4797. "system.directoryservices.nuspec",
  4798. "useSharedDesignerContext.txt",
  4799. "version.txt"
  4800. ]
  4801. },
  4802. "System.DirectoryServices.Protocols/4.7.0": {
  4803. "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  4804. "type": "package",
  4805. "path": "system.directoryservices.protocols/4.7.0",
  4806. "files": [
  4807. ".nupkg.metadata",
  4808. ".signature.p7s",
  4809. "LICENSE.TXT",
  4810. "THIRD-PARTY-NOTICES.TXT",
  4811. "lib/net45/_._",
  4812. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4813. "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4814. "ref/net45/_._",
  4815. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4816. "ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4817. "runtimes/win/lib/net45/_._",
  4818. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
  4819. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
  4820. "system.directoryservices.protocols.4.7.0.nupkg.sha512",
  4821. "system.directoryservices.protocols.nuspec",
  4822. "useSharedDesignerContext.txt",
  4823. "version.txt"
  4824. ]
  4825. },
  4826. "System.Drawing.Common/4.7.0": {
  4827. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4828. "type": "package",
  4829. "path": "system.drawing.common/4.7.0",
  4830. "files": [
  4831. ".nupkg.metadata",
  4832. ".signature.p7s",
  4833. "LICENSE.TXT",
  4834. "THIRD-PARTY-NOTICES.TXT",
  4835. "lib/MonoAndroid10/_._",
  4836. "lib/MonoTouch10/_._",
  4837. "lib/net461/System.Drawing.Common.dll",
  4838. "lib/netstandard2.0/System.Drawing.Common.dll",
  4839. "lib/xamarinios10/_._",
  4840. "lib/xamarinmac20/_._",
  4841. "lib/xamarintvos10/_._",
  4842. "lib/xamarinwatchos10/_._",
  4843. "ref/MonoAndroid10/_._",
  4844. "ref/MonoTouch10/_._",
  4845. "ref/net461/System.Drawing.Common.dll",
  4846. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4847. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4848. "ref/netstandard2.0/System.Drawing.Common.dll",
  4849. "ref/xamarinios10/_._",
  4850. "ref/xamarinmac20/_._",
  4851. "ref/xamarintvos10/_._",
  4852. "ref/xamarinwatchos10/_._",
  4853. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4854. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4855. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4856. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4857. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4858. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4859. "system.drawing.common.4.7.0.nupkg.sha512",
  4860. "system.drawing.common.nuspec",
  4861. "useSharedDesignerContext.txt",
  4862. "version.txt"
  4863. ]
  4864. },
  4865. "System.Globalization/4.3.0": {
  4866. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4867. "type": "package",
  4868. "path": "system.globalization/4.3.0",
  4869. "files": [
  4870. ".nupkg.metadata",
  4871. ".signature.p7s",
  4872. "ThirdPartyNotices.txt",
  4873. "dotnet_library_license.txt",
  4874. "lib/MonoAndroid10/_._",
  4875. "lib/MonoTouch10/_._",
  4876. "lib/net45/_._",
  4877. "lib/portable-net45+win8+wp8+wpa81/_._",
  4878. "lib/win8/_._",
  4879. "lib/wp80/_._",
  4880. "lib/wpa81/_._",
  4881. "lib/xamarinios10/_._",
  4882. "lib/xamarinmac20/_._",
  4883. "lib/xamarintvos10/_._",
  4884. "lib/xamarinwatchos10/_._",
  4885. "ref/MonoAndroid10/_._",
  4886. "ref/MonoTouch10/_._",
  4887. "ref/net45/_._",
  4888. "ref/netcore50/System.Globalization.dll",
  4889. "ref/netcore50/System.Globalization.xml",
  4890. "ref/netcore50/de/System.Globalization.xml",
  4891. "ref/netcore50/es/System.Globalization.xml",
  4892. "ref/netcore50/fr/System.Globalization.xml",
  4893. "ref/netcore50/it/System.Globalization.xml",
  4894. "ref/netcore50/ja/System.Globalization.xml",
  4895. "ref/netcore50/ko/System.Globalization.xml",
  4896. "ref/netcore50/ru/System.Globalization.xml",
  4897. "ref/netcore50/zh-hans/System.Globalization.xml",
  4898. "ref/netcore50/zh-hant/System.Globalization.xml",
  4899. "ref/netstandard1.0/System.Globalization.dll",
  4900. "ref/netstandard1.0/System.Globalization.xml",
  4901. "ref/netstandard1.0/de/System.Globalization.xml",
  4902. "ref/netstandard1.0/es/System.Globalization.xml",
  4903. "ref/netstandard1.0/fr/System.Globalization.xml",
  4904. "ref/netstandard1.0/it/System.Globalization.xml",
  4905. "ref/netstandard1.0/ja/System.Globalization.xml",
  4906. "ref/netstandard1.0/ko/System.Globalization.xml",
  4907. "ref/netstandard1.0/ru/System.Globalization.xml",
  4908. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4909. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4910. "ref/netstandard1.3/System.Globalization.dll",
  4911. "ref/netstandard1.3/System.Globalization.xml",
  4912. "ref/netstandard1.3/de/System.Globalization.xml",
  4913. "ref/netstandard1.3/es/System.Globalization.xml",
  4914. "ref/netstandard1.3/fr/System.Globalization.xml",
  4915. "ref/netstandard1.3/it/System.Globalization.xml",
  4916. "ref/netstandard1.3/ja/System.Globalization.xml",
  4917. "ref/netstandard1.3/ko/System.Globalization.xml",
  4918. "ref/netstandard1.3/ru/System.Globalization.xml",
  4919. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4920. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4921. "ref/portable-net45+win8+wp8+wpa81/_._",
  4922. "ref/win8/_._",
  4923. "ref/wp80/_._",
  4924. "ref/wpa81/_._",
  4925. "ref/xamarinios10/_._",
  4926. "ref/xamarinmac20/_._",
  4927. "ref/xamarintvos10/_._",
  4928. "ref/xamarinwatchos10/_._",
  4929. "system.globalization.4.3.0.nupkg.sha512",
  4930. "system.globalization.nuspec"
  4931. ]
  4932. },
  4933. "System.Globalization.Calendars/4.3.0": {
  4934. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4935. "type": "package",
  4936. "path": "system.globalization.calendars/4.3.0",
  4937. "files": [
  4938. ".nupkg.metadata",
  4939. ".signature.p7s",
  4940. "ThirdPartyNotices.txt",
  4941. "dotnet_library_license.txt",
  4942. "lib/MonoAndroid10/_._",
  4943. "lib/MonoTouch10/_._",
  4944. "lib/net46/System.Globalization.Calendars.dll",
  4945. "lib/xamarinios10/_._",
  4946. "lib/xamarinmac20/_._",
  4947. "lib/xamarintvos10/_._",
  4948. "lib/xamarinwatchos10/_._",
  4949. "ref/MonoAndroid10/_._",
  4950. "ref/MonoTouch10/_._",
  4951. "ref/net46/System.Globalization.Calendars.dll",
  4952. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4953. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4954. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4955. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4956. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4957. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4958. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4959. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4960. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4961. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4962. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4963. "ref/xamarinios10/_._",
  4964. "ref/xamarinmac20/_._",
  4965. "ref/xamarintvos10/_._",
  4966. "ref/xamarinwatchos10/_._",
  4967. "system.globalization.calendars.4.3.0.nupkg.sha512",
  4968. "system.globalization.calendars.nuspec"
  4969. ]
  4970. },
  4971. "System.Globalization.Extensions/4.3.0": {
  4972. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4973. "type": "package",
  4974. "path": "system.globalization.extensions/4.3.0",
  4975. "files": [
  4976. ".nupkg.metadata",
  4977. ".signature.p7s",
  4978. "ThirdPartyNotices.txt",
  4979. "dotnet_library_license.txt",
  4980. "lib/MonoAndroid10/_._",
  4981. "lib/MonoTouch10/_._",
  4982. "lib/net46/System.Globalization.Extensions.dll",
  4983. "lib/xamarinios10/_._",
  4984. "lib/xamarinmac20/_._",
  4985. "lib/xamarintvos10/_._",
  4986. "lib/xamarinwatchos10/_._",
  4987. "ref/MonoAndroid10/_._",
  4988. "ref/MonoTouch10/_._",
  4989. "ref/net46/System.Globalization.Extensions.dll",
  4990. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4991. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4992. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4993. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4994. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4995. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4996. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4997. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4998. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4999. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5000. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5001. "ref/xamarinios10/_._",
  5002. "ref/xamarinmac20/_._",
  5003. "ref/xamarintvos10/_._",
  5004. "ref/xamarinwatchos10/_._",
  5005. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5006. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5007. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5008. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5009. "system.globalization.extensions.nuspec"
  5010. ]
  5011. },
  5012. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  5013. "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  5014. "type": "package",
  5015. "path": "system.identitymodel.tokens.jwt/6.8.0",
  5016. "files": [
  5017. ".nupkg.metadata",
  5018. ".signature.p7s",
  5019. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  5020. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  5021. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5022. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5023. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5024. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5025. "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
  5026. "system.identitymodel.tokens.jwt.nuspec"
  5027. ]
  5028. },
  5029. "System.IO/4.3.0": {
  5030. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5031. "type": "package",
  5032. "path": "system.io/4.3.0",
  5033. "files": [
  5034. ".nupkg.metadata",
  5035. ".signature.p7s",
  5036. "ThirdPartyNotices.txt",
  5037. "dotnet_library_license.txt",
  5038. "lib/MonoAndroid10/_._",
  5039. "lib/MonoTouch10/_._",
  5040. "lib/net45/_._",
  5041. "lib/net462/System.IO.dll",
  5042. "lib/portable-net45+win8+wp8+wpa81/_._",
  5043. "lib/win8/_._",
  5044. "lib/wp80/_._",
  5045. "lib/wpa81/_._",
  5046. "lib/xamarinios10/_._",
  5047. "lib/xamarinmac20/_._",
  5048. "lib/xamarintvos10/_._",
  5049. "lib/xamarinwatchos10/_._",
  5050. "ref/MonoAndroid10/_._",
  5051. "ref/MonoTouch10/_._",
  5052. "ref/net45/_._",
  5053. "ref/net462/System.IO.dll",
  5054. "ref/netcore50/System.IO.dll",
  5055. "ref/netcore50/System.IO.xml",
  5056. "ref/netcore50/de/System.IO.xml",
  5057. "ref/netcore50/es/System.IO.xml",
  5058. "ref/netcore50/fr/System.IO.xml",
  5059. "ref/netcore50/it/System.IO.xml",
  5060. "ref/netcore50/ja/System.IO.xml",
  5061. "ref/netcore50/ko/System.IO.xml",
  5062. "ref/netcore50/ru/System.IO.xml",
  5063. "ref/netcore50/zh-hans/System.IO.xml",
  5064. "ref/netcore50/zh-hant/System.IO.xml",
  5065. "ref/netstandard1.0/System.IO.dll",
  5066. "ref/netstandard1.0/System.IO.xml",
  5067. "ref/netstandard1.0/de/System.IO.xml",
  5068. "ref/netstandard1.0/es/System.IO.xml",
  5069. "ref/netstandard1.0/fr/System.IO.xml",
  5070. "ref/netstandard1.0/it/System.IO.xml",
  5071. "ref/netstandard1.0/ja/System.IO.xml",
  5072. "ref/netstandard1.0/ko/System.IO.xml",
  5073. "ref/netstandard1.0/ru/System.IO.xml",
  5074. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5075. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5076. "ref/netstandard1.3/System.IO.dll",
  5077. "ref/netstandard1.3/System.IO.xml",
  5078. "ref/netstandard1.3/de/System.IO.xml",
  5079. "ref/netstandard1.3/es/System.IO.xml",
  5080. "ref/netstandard1.3/fr/System.IO.xml",
  5081. "ref/netstandard1.3/it/System.IO.xml",
  5082. "ref/netstandard1.3/ja/System.IO.xml",
  5083. "ref/netstandard1.3/ko/System.IO.xml",
  5084. "ref/netstandard1.3/ru/System.IO.xml",
  5085. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5086. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5087. "ref/netstandard1.5/System.IO.dll",
  5088. "ref/netstandard1.5/System.IO.xml",
  5089. "ref/netstandard1.5/de/System.IO.xml",
  5090. "ref/netstandard1.5/es/System.IO.xml",
  5091. "ref/netstandard1.5/fr/System.IO.xml",
  5092. "ref/netstandard1.5/it/System.IO.xml",
  5093. "ref/netstandard1.5/ja/System.IO.xml",
  5094. "ref/netstandard1.5/ko/System.IO.xml",
  5095. "ref/netstandard1.5/ru/System.IO.xml",
  5096. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5097. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5098. "ref/portable-net45+win8+wp8+wpa81/_._",
  5099. "ref/win8/_._",
  5100. "ref/wp80/_._",
  5101. "ref/wpa81/_._",
  5102. "ref/xamarinios10/_._",
  5103. "ref/xamarinmac20/_._",
  5104. "ref/xamarintvos10/_._",
  5105. "ref/xamarinwatchos10/_._",
  5106. "system.io.4.3.0.nupkg.sha512",
  5107. "system.io.nuspec"
  5108. ]
  5109. },
  5110. "System.IO.Compression/4.3.0": {
  5111. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5112. "type": "package",
  5113. "path": "system.io.compression/4.3.0",
  5114. "files": [
  5115. ".nupkg.metadata",
  5116. ".signature.p7s",
  5117. "ThirdPartyNotices.txt",
  5118. "dotnet_library_license.txt",
  5119. "lib/MonoAndroid10/_._",
  5120. "lib/MonoTouch10/_._",
  5121. "lib/net45/_._",
  5122. "lib/net46/System.IO.Compression.dll",
  5123. "lib/portable-net45+win8+wpa81/_._",
  5124. "lib/win8/_._",
  5125. "lib/wpa81/_._",
  5126. "lib/xamarinios10/_._",
  5127. "lib/xamarinmac20/_._",
  5128. "lib/xamarintvos10/_._",
  5129. "lib/xamarinwatchos10/_._",
  5130. "ref/MonoAndroid10/_._",
  5131. "ref/MonoTouch10/_._",
  5132. "ref/net45/_._",
  5133. "ref/net46/System.IO.Compression.dll",
  5134. "ref/netcore50/System.IO.Compression.dll",
  5135. "ref/netcore50/System.IO.Compression.xml",
  5136. "ref/netcore50/de/System.IO.Compression.xml",
  5137. "ref/netcore50/es/System.IO.Compression.xml",
  5138. "ref/netcore50/fr/System.IO.Compression.xml",
  5139. "ref/netcore50/it/System.IO.Compression.xml",
  5140. "ref/netcore50/ja/System.IO.Compression.xml",
  5141. "ref/netcore50/ko/System.IO.Compression.xml",
  5142. "ref/netcore50/ru/System.IO.Compression.xml",
  5143. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5144. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5145. "ref/netstandard1.1/System.IO.Compression.dll",
  5146. "ref/netstandard1.1/System.IO.Compression.xml",
  5147. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5148. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5149. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5150. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5151. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5152. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5153. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5154. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5155. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5156. "ref/netstandard1.3/System.IO.Compression.dll",
  5157. "ref/netstandard1.3/System.IO.Compression.xml",
  5158. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5159. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5160. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5161. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5162. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5163. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5164. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5165. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5166. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5167. "ref/portable-net45+win8+wpa81/_._",
  5168. "ref/win8/_._",
  5169. "ref/wpa81/_._",
  5170. "ref/xamarinios10/_._",
  5171. "ref/xamarinmac20/_._",
  5172. "ref/xamarintvos10/_._",
  5173. "ref/xamarinwatchos10/_._",
  5174. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5175. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5176. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5177. "system.io.compression.4.3.0.nupkg.sha512",
  5178. "system.io.compression.nuspec"
  5179. ]
  5180. },
  5181. "System.IO.Compression.ZipFile/4.3.0": {
  5182. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5183. "type": "package",
  5184. "path": "system.io.compression.zipfile/4.3.0",
  5185. "files": [
  5186. ".nupkg.metadata",
  5187. ".signature.p7s",
  5188. "ThirdPartyNotices.txt",
  5189. "dotnet_library_license.txt",
  5190. "lib/MonoAndroid10/_._",
  5191. "lib/MonoTouch10/_._",
  5192. "lib/net46/System.IO.Compression.ZipFile.dll",
  5193. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5194. "lib/xamarinios10/_._",
  5195. "lib/xamarinmac20/_._",
  5196. "lib/xamarintvos10/_._",
  5197. "lib/xamarinwatchos10/_._",
  5198. "ref/MonoAndroid10/_._",
  5199. "ref/MonoTouch10/_._",
  5200. "ref/net46/System.IO.Compression.ZipFile.dll",
  5201. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5202. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5203. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5204. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5205. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5206. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5207. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5208. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5209. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5210. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5211. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5212. "ref/xamarinios10/_._",
  5213. "ref/xamarinmac20/_._",
  5214. "ref/xamarintvos10/_._",
  5215. "ref/xamarinwatchos10/_._",
  5216. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5217. "system.io.compression.zipfile.nuspec"
  5218. ]
  5219. },
  5220. "System.IO.FileSystem/4.3.0": {
  5221. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5222. "type": "package",
  5223. "path": "system.io.filesystem/4.3.0",
  5224. "files": [
  5225. ".nupkg.metadata",
  5226. ".signature.p7s",
  5227. "ThirdPartyNotices.txt",
  5228. "dotnet_library_license.txt",
  5229. "lib/MonoAndroid10/_._",
  5230. "lib/MonoTouch10/_._",
  5231. "lib/net46/System.IO.FileSystem.dll",
  5232. "lib/xamarinios10/_._",
  5233. "lib/xamarinmac20/_._",
  5234. "lib/xamarintvos10/_._",
  5235. "lib/xamarinwatchos10/_._",
  5236. "ref/MonoAndroid10/_._",
  5237. "ref/MonoTouch10/_._",
  5238. "ref/net46/System.IO.FileSystem.dll",
  5239. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5240. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5241. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5242. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5243. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5244. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5245. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5246. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5247. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5248. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5249. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5250. "ref/xamarinios10/_._",
  5251. "ref/xamarinmac20/_._",
  5252. "ref/xamarintvos10/_._",
  5253. "ref/xamarinwatchos10/_._",
  5254. "system.io.filesystem.4.3.0.nupkg.sha512",
  5255. "system.io.filesystem.nuspec"
  5256. ]
  5257. },
  5258. "System.IO.FileSystem.AccessControl/4.7.0": {
  5259. "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  5260. "type": "package",
  5261. "path": "system.io.filesystem.accesscontrol/4.7.0",
  5262. "files": [
  5263. ".nupkg.metadata",
  5264. ".signature.p7s",
  5265. "LICENSE.TXT",
  5266. "THIRD-PARTY-NOTICES.TXT",
  5267. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  5268. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  5269. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  5270. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5271. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5272. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5273. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  5274. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  5275. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  5276. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5277. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  5278. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  5279. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  5280. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  5281. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  5282. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  5283. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  5284. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  5285. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  5286. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  5287. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5288. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5289. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  5290. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  5291. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  5292. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5293. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5294. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5295. "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
  5296. "system.io.filesystem.accesscontrol.nuspec",
  5297. "useSharedDesignerContext.txt",
  5298. "version.txt"
  5299. ]
  5300. },
  5301. "System.IO.FileSystem.Primitives/4.3.0": {
  5302. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5303. "type": "package",
  5304. "path": "system.io.filesystem.primitives/4.3.0",
  5305. "files": [
  5306. ".nupkg.metadata",
  5307. ".signature.p7s",
  5308. "ThirdPartyNotices.txt",
  5309. "dotnet_library_license.txt",
  5310. "lib/MonoAndroid10/_._",
  5311. "lib/MonoTouch10/_._",
  5312. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5313. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5314. "lib/xamarinios10/_._",
  5315. "lib/xamarinmac20/_._",
  5316. "lib/xamarintvos10/_._",
  5317. "lib/xamarinwatchos10/_._",
  5318. "ref/MonoAndroid10/_._",
  5319. "ref/MonoTouch10/_._",
  5320. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5321. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5322. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5323. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5324. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5325. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5326. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5327. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5328. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5329. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5330. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5331. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5332. "ref/xamarinios10/_._",
  5333. "ref/xamarinmac20/_._",
  5334. "ref/xamarintvos10/_._",
  5335. "ref/xamarinwatchos10/_._",
  5336. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5337. "system.io.filesystem.primitives.nuspec"
  5338. ]
  5339. },
  5340. "System.IO.Pipelines/5.0.1": {
  5341. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  5342. "type": "package",
  5343. "path": "system.io.pipelines/5.0.1",
  5344. "files": [
  5345. ".nupkg.metadata",
  5346. ".signature.p7s",
  5347. "Icon.png",
  5348. "LICENSE.TXT",
  5349. "THIRD-PARTY-NOTICES.TXT",
  5350. "lib/net461/System.IO.Pipelines.dll",
  5351. "lib/net461/System.IO.Pipelines.xml",
  5352. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  5353. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  5354. "lib/netstandard1.3/System.IO.Pipelines.dll",
  5355. "lib/netstandard1.3/System.IO.Pipelines.xml",
  5356. "lib/netstandard2.0/System.IO.Pipelines.dll",
  5357. "lib/netstandard2.0/System.IO.Pipelines.xml",
  5358. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  5359. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  5360. "system.io.pipelines.5.0.1.nupkg.sha512",
  5361. "system.io.pipelines.nuspec",
  5362. "useSharedDesignerContext.txt",
  5363. "version.txt"
  5364. ]
  5365. },
  5366. "System.Linq/4.3.0": {
  5367. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5368. "type": "package",
  5369. "path": "system.linq/4.3.0",
  5370. "files": [
  5371. ".nupkg.metadata",
  5372. ".signature.p7s",
  5373. "ThirdPartyNotices.txt",
  5374. "dotnet_library_license.txt",
  5375. "lib/MonoAndroid10/_._",
  5376. "lib/MonoTouch10/_._",
  5377. "lib/net45/_._",
  5378. "lib/net463/System.Linq.dll",
  5379. "lib/netcore50/System.Linq.dll",
  5380. "lib/netstandard1.6/System.Linq.dll",
  5381. "lib/portable-net45+win8+wp8+wpa81/_._",
  5382. "lib/win8/_._",
  5383. "lib/wp80/_._",
  5384. "lib/wpa81/_._",
  5385. "lib/xamarinios10/_._",
  5386. "lib/xamarinmac20/_._",
  5387. "lib/xamarintvos10/_._",
  5388. "lib/xamarinwatchos10/_._",
  5389. "ref/MonoAndroid10/_._",
  5390. "ref/MonoTouch10/_._",
  5391. "ref/net45/_._",
  5392. "ref/net463/System.Linq.dll",
  5393. "ref/netcore50/System.Linq.dll",
  5394. "ref/netcore50/System.Linq.xml",
  5395. "ref/netcore50/de/System.Linq.xml",
  5396. "ref/netcore50/es/System.Linq.xml",
  5397. "ref/netcore50/fr/System.Linq.xml",
  5398. "ref/netcore50/it/System.Linq.xml",
  5399. "ref/netcore50/ja/System.Linq.xml",
  5400. "ref/netcore50/ko/System.Linq.xml",
  5401. "ref/netcore50/ru/System.Linq.xml",
  5402. "ref/netcore50/zh-hans/System.Linq.xml",
  5403. "ref/netcore50/zh-hant/System.Linq.xml",
  5404. "ref/netstandard1.0/System.Linq.dll",
  5405. "ref/netstandard1.0/System.Linq.xml",
  5406. "ref/netstandard1.0/de/System.Linq.xml",
  5407. "ref/netstandard1.0/es/System.Linq.xml",
  5408. "ref/netstandard1.0/fr/System.Linq.xml",
  5409. "ref/netstandard1.0/it/System.Linq.xml",
  5410. "ref/netstandard1.0/ja/System.Linq.xml",
  5411. "ref/netstandard1.0/ko/System.Linq.xml",
  5412. "ref/netstandard1.0/ru/System.Linq.xml",
  5413. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5414. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5415. "ref/netstandard1.6/System.Linq.dll",
  5416. "ref/netstandard1.6/System.Linq.xml",
  5417. "ref/netstandard1.6/de/System.Linq.xml",
  5418. "ref/netstandard1.6/es/System.Linq.xml",
  5419. "ref/netstandard1.6/fr/System.Linq.xml",
  5420. "ref/netstandard1.6/it/System.Linq.xml",
  5421. "ref/netstandard1.6/ja/System.Linq.xml",
  5422. "ref/netstandard1.6/ko/System.Linq.xml",
  5423. "ref/netstandard1.6/ru/System.Linq.xml",
  5424. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5425. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5426. "ref/portable-net45+win8+wp8+wpa81/_._",
  5427. "ref/win8/_._",
  5428. "ref/wp80/_._",
  5429. "ref/wpa81/_._",
  5430. "ref/xamarinios10/_._",
  5431. "ref/xamarinmac20/_._",
  5432. "ref/xamarintvos10/_._",
  5433. "ref/xamarinwatchos10/_._",
  5434. "system.linq.4.3.0.nupkg.sha512",
  5435. "system.linq.nuspec"
  5436. ]
  5437. },
  5438. "System.Linq.Expressions/4.3.0": {
  5439. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5440. "type": "package",
  5441. "path": "system.linq.expressions/4.3.0",
  5442. "files": [
  5443. ".nupkg.metadata",
  5444. ".signature.p7s",
  5445. "ThirdPartyNotices.txt",
  5446. "dotnet_library_license.txt",
  5447. "lib/MonoAndroid10/_._",
  5448. "lib/MonoTouch10/_._",
  5449. "lib/net45/_._",
  5450. "lib/net463/System.Linq.Expressions.dll",
  5451. "lib/netcore50/System.Linq.Expressions.dll",
  5452. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5453. "lib/portable-net45+win8+wp8+wpa81/_._",
  5454. "lib/win8/_._",
  5455. "lib/wp80/_._",
  5456. "lib/wpa81/_._",
  5457. "lib/xamarinios10/_._",
  5458. "lib/xamarinmac20/_._",
  5459. "lib/xamarintvos10/_._",
  5460. "lib/xamarinwatchos10/_._",
  5461. "ref/MonoAndroid10/_._",
  5462. "ref/MonoTouch10/_._",
  5463. "ref/net45/_._",
  5464. "ref/net463/System.Linq.Expressions.dll",
  5465. "ref/netcore50/System.Linq.Expressions.dll",
  5466. "ref/netcore50/System.Linq.Expressions.xml",
  5467. "ref/netcore50/de/System.Linq.Expressions.xml",
  5468. "ref/netcore50/es/System.Linq.Expressions.xml",
  5469. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5470. "ref/netcore50/it/System.Linq.Expressions.xml",
  5471. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5472. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5473. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5474. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5475. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5476. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5477. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5478. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5479. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5480. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5481. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5482. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5483. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5484. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5485. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5486. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5487. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5488. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5489. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5490. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5491. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5492. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5493. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5494. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5495. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5496. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5497. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5498. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5499. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5500. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5501. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5502. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5503. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5504. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5505. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5506. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5507. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5508. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5509. "ref/portable-net45+win8+wp8+wpa81/_._",
  5510. "ref/win8/_._",
  5511. "ref/wp80/_._",
  5512. "ref/wpa81/_._",
  5513. "ref/xamarinios10/_._",
  5514. "ref/xamarinmac20/_._",
  5515. "ref/xamarintvos10/_._",
  5516. "ref/xamarinwatchos10/_._",
  5517. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5518. "system.linq.expressions.4.3.0.nupkg.sha512",
  5519. "system.linq.expressions.nuspec"
  5520. ]
  5521. },
  5522. "System.Memory/4.5.4": {
  5523. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  5524. "type": "package",
  5525. "path": "system.memory/4.5.4",
  5526. "files": [
  5527. ".nupkg.metadata",
  5528. ".signature.p7s",
  5529. "LICENSE.TXT",
  5530. "THIRD-PARTY-NOTICES.TXT",
  5531. "lib/net461/System.Memory.dll",
  5532. "lib/net461/System.Memory.xml",
  5533. "lib/netcoreapp2.1/_._",
  5534. "lib/netstandard1.1/System.Memory.dll",
  5535. "lib/netstandard1.1/System.Memory.xml",
  5536. "lib/netstandard2.0/System.Memory.dll",
  5537. "lib/netstandard2.0/System.Memory.xml",
  5538. "ref/netcoreapp2.1/_._",
  5539. "system.memory.4.5.4.nupkg.sha512",
  5540. "system.memory.nuspec",
  5541. "useSharedDesignerContext.txt",
  5542. "version.txt"
  5543. ]
  5544. },
  5545. "System.Net.Http/4.3.0": {
  5546. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5547. "type": "package",
  5548. "path": "system.net.http/4.3.0",
  5549. "files": [
  5550. ".nupkg.metadata",
  5551. ".signature.p7s",
  5552. "ThirdPartyNotices.txt",
  5553. "dotnet_library_license.txt",
  5554. "lib/Xamarinmac20/_._",
  5555. "lib/monoandroid10/_._",
  5556. "lib/monotouch10/_._",
  5557. "lib/net45/_._",
  5558. "lib/net46/System.Net.Http.dll",
  5559. "lib/portable-net45+win8+wpa81/_._",
  5560. "lib/win8/_._",
  5561. "lib/wpa81/_._",
  5562. "lib/xamarinios10/_._",
  5563. "lib/xamarintvos10/_._",
  5564. "lib/xamarinwatchos10/_._",
  5565. "ref/Xamarinmac20/_._",
  5566. "ref/monoandroid10/_._",
  5567. "ref/monotouch10/_._",
  5568. "ref/net45/_._",
  5569. "ref/net46/System.Net.Http.dll",
  5570. "ref/net46/System.Net.Http.xml",
  5571. "ref/net46/de/System.Net.Http.xml",
  5572. "ref/net46/es/System.Net.Http.xml",
  5573. "ref/net46/fr/System.Net.Http.xml",
  5574. "ref/net46/it/System.Net.Http.xml",
  5575. "ref/net46/ja/System.Net.Http.xml",
  5576. "ref/net46/ko/System.Net.Http.xml",
  5577. "ref/net46/ru/System.Net.Http.xml",
  5578. "ref/net46/zh-hans/System.Net.Http.xml",
  5579. "ref/net46/zh-hant/System.Net.Http.xml",
  5580. "ref/netcore50/System.Net.Http.dll",
  5581. "ref/netcore50/System.Net.Http.xml",
  5582. "ref/netcore50/de/System.Net.Http.xml",
  5583. "ref/netcore50/es/System.Net.Http.xml",
  5584. "ref/netcore50/fr/System.Net.Http.xml",
  5585. "ref/netcore50/it/System.Net.Http.xml",
  5586. "ref/netcore50/ja/System.Net.Http.xml",
  5587. "ref/netcore50/ko/System.Net.Http.xml",
  5588. "ref/netcore50/ru/System.Net.Http.xml",
  5589. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5590. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5591. "ref/netstandard1.1/System.Net.Http.dll",
  5592. "ref/netstandard1.1/System.Net.Http.xml",
  5593. "ref/netstandard1.1/de/System.Net.Http.xml",
  5594. "ref/netstandard1.1/es/System.Net.Http.xml",
  5595. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5596. "ref/netstandard1.1/it/System.Net.Http.xml",
  5597. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5598. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5599. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5600. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5601. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5602. "ref/netstandard1.3/System.Net.Http.dll",
  5603. "ref/netstandard1.3/System.Net.Http.xml",
  5604. "ref/netstandard1.3/de/System.Net.Http.xml",
  5605. "ref/netstandard1.3/es/System.Net.Http.xml",
  5606. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5607. "ref/netstandard1.3/it/System.Net.Http.xml",
  5608. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5609. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5610. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5611. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5612. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5613. "ref/portable-net45+win8+wpa81/_._",
  5614. "ref/win8/_._",
  5615. "ref/wpa81/_._",
  5616. "ref/xamarinios10/_._",
  5617. "ref/xamarintvos10/_._",
  5618. "ref/xamarinwatchos10/_._",
  5619. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5620. "runtimes/win/lib/net46/System.Net.Http.dll",
  5621. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5622. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5623. "system.net.http.4.3.0.nupkg.sha512",
  5624. "system.net.http.nuspec"
  5625. ]
  5626. },
  5627. "System.Net.Primitives/4.3.0": {
  5628. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5629. "type": "package",
  5630. "path": "system.net.primitives/4.3.0",
  5631. "files": [
  5632. ".nupkg.metadata",
  5633. ".signature.p7s",
  5634. "ThirdPartyNotices.txt",
  5635. "dotnet_library_license.txt",
  5636. "lib/MonoAndroid10/_._",
  5637. "lib/MonoTouch10/_._",
  5638. "lib/net45/_._",
  5639. "lib/portable-net45+win8+wp8+wpa81/_._",
  5640. "lib/win8/_._",
  5641. "lib/wp80/_._",
  5642. "lib/wpa81/_._",
  5643. "lib/xamarinios10/_._",
  5644. "lib/xamarinmac20/_._",
  5645. "lib/xamarintvos10/_._",
  5646. "lib/xamarinwatchos10/_._",
  5647. "ref/MonoAndroid10/_._",
  5648. "ref/MonoTouch10/_._",
  5649. "ref/net45/_._",
  5650. "ref/netcore50/System.Net.Primitives.dll",
  5651. "ref/netcore50/System.Net.Primitives.xml",
  5652. "ref/netcore50/de/System.Net.Primitives.xml",
  5653. "ref/netcore50/es/System.Net.Primitives.xml",
  5654. "ref/netcore50/fr/System.Net.Primitives.xml",
  5655. "ref/netcore50/it/System.Net.Primitives.xml",
  5656. "ref/netcore50/ja/System.Net.Primitives.xml",
  5657. "ref/netcore50/ko/System.Net.Primitives.xml",
  5658. "ref/netcore50/ru/System.Net.Primitives.xml",
  5659. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5660. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5661. "ref/netstandard1.0/System.Net.Primitives.dll",
  5662. "ref/netstandard1.0/System.Net.Primitives.xml",
  5663. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5664. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5665. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5666. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5667. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5668. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5669. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5670. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5671. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5672. "ref/netstandard1.1/System.Net.Primitives.dll",
  5673. "ref/netstandard1.1/System.Net.Primitives.xml",
  5674. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5675. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5676. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5677. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5678. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5679. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5680. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5681. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5682. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5683. "ref/netstandard1.3/System.Net.Primitives.dll",
  5684. "ref/netstandard1.3/System.Net.Primitives.xml",
  5685. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5686. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5687. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5688. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5689. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5690. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5691. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5692. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5693. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5694. "ref/portable-net45+win8+wp8+wpa81/_._",
  5695. "ref/win8/_._",
  5696. "ref/wp80/_._",
  5697. "ref/wpa81/_._",
  5698. "ref/xamarinios10/_._",
  5699. "ref/xamarinmac20/_._",
  5700. "ref/xamarintvos10/_._",
  5701. "ref/xamarinwatchos10/_._",
  5702. "system.net.primitives.4.3.0.nupkg.sha512",
  5703. "system.net.primitives.nuspec"
  5704. ]
  5705. },
  5706. "System.Net.Sockets/4.3.0": {
  5707. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  5708. "type": "package",
  5709. "path": "system.net.sockets/4.3.0",
  5710. "files": [
  5711. ".nupkg.metadata",
  5712. ".signature.p7s",
  5713. "ThirdPartyNotices.txt",
  5714. "dotnet_library_license.txt",
  5715. "lib/MonoAndroid10/_._",
  5716. "lib/MonoTouch10/_._",
  5717. "lib/net46/System.Net.Sockets.dll",
  5718. "lib/xamarinios10/_._",
  5719. "lib/xamarinmac20/_._",
  5720. "lib/xamarintvos10/_._",
  5721. "lib/xamarinwatchos10/_._",
  5722. "ref/MonoAndroid10/_._",
  5723. "ref/MonoTouch10/_._",
  5724. "ref/net46/System.Net.Sockets.dll",
  5725. "ref/netstandard1.3/System.Net.Sockets.dll",
  5726. "ref/netstandard1.3/System.Net.Sockets.xml",
  5727. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5728. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5729. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5730. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5731. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5732. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5733. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5734. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5735. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5736. "ref/xamarinios10/_._",
  5737. "ref/xamarinmac20/_._",
  5738. "ref/xamarintvos10/_._",
  5739. "ref/xamarinwatchos10/_._",
  5740. "system.net.sockets.4.3.0.nupkg.sha512",
  5741. "system.net.sockets.nuspec"
  5742. ]
  5743. },
  5744. "System.ObjectModel/4.3.0": {
  5745. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  5746. "type": "package",
  5747. "path": "system.objectmodel/4.3.0",
  5748. "files": [
  5749. ".nupkg.metadata",
  5750. ".signature.p7s",
  5751. "ThirdPartyNotices.txt",
  5752. "dotnet_library_license.txt",
  5753. "lib/MonoAndroid10/_._",
  5754. "lib/MonoTouch10/_._",
  5755. "lib/net45/_._",
  5756. "lib/netcore50/System.ObjectModel.dll",
  5757. "lib/netstandard1.3/System.ObjectModel.dll",
  5758. "lib/portable-net45+win8+wp8+wpa81/_._",
  5759. "lib/win8/_._",
  5760. "lib/wp80/_._",
  5761. "lib/wpa81/_._",
  5762. "lib/xamarinios10/_._",
  5763. "lib/xamarinmac20/_._",
  5764. "lib/xamarintvos10/_._",
  5765. "lib/xamarinwatchos10/_._",
  5766. "ref/MonoAndroid10/_._",
  5767. "ref/MonoTouch10/_._",
  5768. "ref/net45/_._",
  5769. "ref/netcore50/System.ObjectModel.dll",
  5770. "ref/netcore50/System.ObjectModel.xml",
  5771. "ref/netcore50/de/System.ObjectModel.xml",
  5772. "ref/netcore50/es/System.ObjectModel.xml",
  5773. "ref/netcore50/fr/System.ObjectModel.xml",
  5774. "ref/netcore50/it/System.ObjectModel.xml",
  5775. "ref/netcore50/ja/System.ObjectModel.xml",
  5776. "ref/netcore50/ko/System.ObjectModel.xml",
  5777. "ref/netcore50/ru/System.ObjectModel.xml",
  5778. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5779. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5780. "ref/netstandard1.0/System.ObjectModel.dll",
  5781. "ref/netstandard1.0/System.ObjectModel.xml",
  5782. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5783. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5784. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5785. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5786. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5787. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5788. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5789. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5790. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5791. "ref/netstandard1.3/System.ObjectModel.dll",
  5792. "ref/netstandard1.3/System.ObjectModel.xml",
  5793. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5794. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5795. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5796. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5797. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5798. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5799. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5800. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5801. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5802. "ref/portable-net45+win8+wp8+wpa81/_._",
  5803. "ref/win8/_._",
  5804. "ref/wp80/_._",
  5805. "ref/wpa81/_._",
  5806. "ref/xamarinios10/_._",
  5807. "ref/xamarinmac20/_._",
  5808. "ref/xamarintvos10/_._",
  5809. "ref/xamarinwatchos10/_._",
  5810. "system.objectmodel.4.3.0.nupkg.sha512",
  5811. "system.objectmodel.nuspec"
  5812. ]
  5813. },
  5814. "System.Reflection/4.3.0": {
  5815. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5816. "type": "package",
  5817. "path": "system.reflection/4.3.0",
  5818. "files": [
  5819. ".nupkg.metadata",
  5820. ".signature.p7s",
  5821. "ThirdPartyNotices.txt",
  5822. "dotnet_library_license.txt",
  5823. "lib/MonoAndroid10/_._",
  5824. "lib/MonoTouch10/_._",
  5825. "lib/net45/_._",
  5826. "lib/net462/System.Reflection.dll",
  5827. "lib/portable-net45+win8+wp8+wpa81/_._",
  5828. "lib/win8/_._",
  5829. "lib/wp80/_._",
  5830. "lib/wpa81/_._",
  5831. "lib/xamarinios10/_._",
  5832. "lib/xamarinmac20/_._",
  5833. "lib/xamarintvos10/_._",
  5834. "lib/xamarinwatchos10/_._",
  5835. "ref/MonoAndroid10/_._",
  5836. "ref/MonoTouch10/_._",
  5837. "ref/net45/_._",
  5838. "ref/net462/System.Reflection.dll",
  5839. "ref/netcore50/System.Reflection.dll",
  5840. "ref/netcore50/System.Reflection.xml",
  5841. "ref/netcore50/de/System.Reflection.xml",
  5842. "ref/netcore50/es/System.Reflection.xml",
  5843. "ref/netcore50/fr/System.Reflection.xml",
  5844. "ref/netcore50/it/System.Reflection.xml",
  5845. "ref/netcore50/ja/System.Reflection.xml",
  5846. "ref/netcore50/ko/System.Reflection.xml",
  5847. "ref/netcore50/ru/System.Reflection.xml",
  5848. "ref/netcore50/zh-hans/System.Reflection.xml",
  5849. "ref/netcore50/zh-hant/System.Reflection.xml",
  5850. "ref/netstandard1.0/System.Reflection.dll",
  5851. "ref/netstandard1.0/System.Reflection.xml",
  5852. "ref/netstandard1.0/de/System.Reflection.xml",
  5853. "ref/netstandard1.0/es/System.Reflection.xml",
  5854. "ref/netstandard1.0/fr/System.Reflection.xml",
  5855. "ref/netstandard1.0/it/System.Reflection.xml",
  5856. "ref/netstandard1.0/ja/System.Reflection.xml",
  5857. "ref/netstandard1.0/ko/System.Reflection.xml",
  5858. "ref/netstandard1.0/ru/System.Reflection.xml",
  5859. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5860. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5861. "ref/netstandard1.3/System.Reflection.dll",
  5862. "ref/netstandard1.3/System.Reflection.xml",
  5863. "ref/netstandard1.3/de/System.Reflection.xml",
  5864. "ref/netstandard1.3/es/System.Reflection.xml",
  5865. "ref/netstandard1.3/fr/System.Reflection.xml",
  5866. "ref/netstandard1.3/it/System.Reflection.xml",
  5867. "ref/netstandard1.3/ja/System.Reflection.xml",
  5868. "ref/netstandard1.3/ko/System.Reflection.xml",
  5869. "ref/netstandard1.3/ru/System.Reflection.xml",
  5870. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5871. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5872. "ref/netstandard1.5/System.Reflection.dll",
  5873. "ref/netstandard1.5/System.Reflection.xml",
  5874. "ref/netstandard1.5/de/System.Reflection.xml",
  5875. "ref/netstandard1.5/es/System.Reflection.xml",
  5876. "ref/netstandard1.5/fr/System.Reflection.xml",
  5877. "ref/netstandard1.5/it/System.Reflection.xml",
  5878. "ref/netstandard1.5/ja/System.Reflection.xml",
  5879. "ref/netstandard1.5/ko/System.Reflection.xml",
  5880. "ref/netstandard1.5/ru/System.Reflection.xml",
  5881. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5882. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5883. "ref/portable-net45+win8+wp8+wpa81/_._",
  5884. "ref/win8/_._",
  5885. "ref/wp80/_._",
  5886. "ref/wpa81/_._",
  5887. "ref/xamarinios10/_._",
  5888. "ref/xamarinmac20/_._",
  5889. "ref/xamarintvos10/_._",
  5890. "ref/xamarinwatchos10/_._",
  5891. "system.reflection.4.3.0.nupkg.sha512",
  5892. "system.reflection.nuspec"
  5893. ]
  5894. },
  5895. "System.Reflection.Emit/4.3.0": {
  5896. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5897. "type": "package",
  5898. "path": "system.reflection.emit/4.3.0",
  5899. "files": [
  5900. ".nupkg.metadata",
  5901. ".signature.p7s",
  5902. "ThirdPartyNotices.txt",
  5903. "dotnet_library_license.txt",
  5904. "lib/MonoAndroid10/_._",
  5905. "lib/monotouch10/_._",
  5906. "lib/net45/_._",
  5907. "lib/netcore50/System.Reflection.Emit.dll",
  5908. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5909. "lib/xamarinios10/_._",
  5910. "lib/xamarinmac20/_._",
  5911. "lib/xamarintvos10/_._",
  5912. "lib/xamarinwatchos10/_._",
  5913. "ref/MonoAndroid10/_._",
  5914. "ref/net45/_._",
  5915. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5916. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5917. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5918. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5919. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5920. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5921. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5922. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5923. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5924. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5925. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5926. "ref/xamarinmac20/_._",
  5927. "system.reflection.emit.4.3.0.nupkg.sha512",
  5928. "system.reflection.emit.nuspec"
  5929. ]
  5930. },
  5931. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5932. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5933. "type": "package",
  5934. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5935. "files": [
  5936. ".nupkg.metadata",
  5937. ".signature.p7s",
  5938. "ThirdPartyNotices.txt",
  5939. "dotnet_library_license.txt",
  5940. "lib/MonoAndroid10/_._",
  5941. "lib/MonoTouch10/_._",
  5942. "lib/net45/_._",
  5943. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5944. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5945. "lib/portable-net45+wp8/_._",
  5946. "lib/wp80/_._",
  5947. "lib/xamarinios10/_._",
  5948. "lib/xamarinmac20/_._",
  5949. "lib/xamarintvos10/_._",
  5950. "lib/xamarinwatchos10/_._",
  5951. "ref/MonoAndroid10/_._",
  5952. "ref/MonoTouch10/_._",
  5953. "ref/net45/_._",
  5954. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5955. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5956. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5957. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5958. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5959. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5960. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5961. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5962. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5963. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5964. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5965. "ref/portable-net45+wp8/_._",
  5966. "ref/wp80/_._",
  5967. "ref/xamarinios10/_._",
  5968. "ref/xamarinmac20/_._",
  5969. "ref/xamarintvos10/_._",
  5970. "ref/xamarinwatchos10/_._",
  5971. "runtimes/aot/lib/netcore50/_._",
  5972. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5973. "system.reflection.emit.ilgeneration.nuspec"
  5974. ]
  5975. },
  5976. "System.Reflection.Emit.Lightweight/4.3.0": {
  5977. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5978. "type": "package",
  5979. "path": "system.reflection.emit.lightweight/4.3.0",
  5980. "files": [
  5981. ".nupkg.metadata",
  5982. ".signature.p7s",
  5983. "ThirdPartyNotices.txt",
  5984. "dotnet_library_license.txt",
  5985. "lib/MonoAndroid10/_._",
  5986. "lib/MonoTouch10/_._",
  5987. "lib/net45/_._",
  5988. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5989. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5990. "lib/portable-net45+wp8/_._",
  5991. "lib/wp80/_._",
  5992. "lib/xamarinios10/_._",
  5993. "lib/xamarinmac20/_._",
  5994. "lib/xamarintvos10/_._",
  5995. "lib/xamarinwatchos10/_._",
  5996. "ref/MonoAndroid10/_._",
  5997. "ref/MonoTouch10/_._",
  5998. "ref/net45/_._",
  5999. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6000. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6001. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6002. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6003. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6004. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6005. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6006. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6007. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6008. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6009. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6010. "ref/portable-net45+wp8/_._",
  6011. "ref/wp80/_._",
  6012. "ref/xamarinios10/_._",
  6013. "ref/xamarinmac20/_._",
  6014. "ref/xamarintvos10/_._",
  6015. "ref/xamarinwatchos10/_._",
  6016. "runtimes/aot/lib/netcore50/_._",
  6017. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6018. "system.reflection.emit.lightweight.nuspec"
  6019. ]
  6020. },
  6021. "System.Reflection.Extensions/4.3.0": {
  6022. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6023. "type": "package",
  6024. "path": "system.reflection.extensions/4.3.0",
  6025. "files": [
  6026. ".nupkg.metadata",
  6027. ".signature.p7s",
  6028. "ThirdPartyNotices.txt",
  6029. "dotnet_library_license.txt",
  6030. "lib/MonoAndroid10/_._",
  6031. "lib/MonoTouch10/_._",
  6032. "lib/net45/_._",
  6033. "lib/portable-net45+win8+wp8+wpa81/_._",
  6034. "lib/win8/_._",
  6035. "lib/wp80/_._",
  6036. "lib/wpa81/_._",
  6037. "lib/xamarinios10/_._",
  6038. "lib/xamarinmac20/_._",
  6039. "lib/xamarintvos10/_._",
  6040. "lib/xamarinwatchos10/_._",
  6041. "ref/MonoAndroid10/_._",
  6042. "ref/MonoTouch10/_._",
  6043. "ref/net45/_._",
  6044. "ref/netcore50/System.Reflection.Extensions.dll",
  6045. "ref/netcore50/System.Reflection.Extensions.xml",
  6046. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6047. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6048. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6049. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6050. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6051. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6052. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6053. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6054. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6055. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6056. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6057. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6058. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6059. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6060. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6061. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6062. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6063. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6064. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6065. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6066. "ref/portable-net45+win8+wp8+wpa81/_._",
  6067. "ref/win8/_._",
  6068. "ref/wp80/_._",
  6069. "ref/wpa81/_._",
  6070. "ref/xamarinios10/_._",
  6071. "ref/xamarinmac20/_._",
  6072. "ref/xamarintvos10/_._",
  6073. "ref/xamarinwatchos10/_._",
  6074. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6075. "system.reflection.extensions.nuspec"
  6076. ]
  6077. },
  6078. "System.Reflection.Primitives/4.3.0": {
  6079. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6080. "type": "package",
  6081. "path": "system.reflection.primitives/4.3.0",
  6082. "files": [
  6083. ".nupkg.metadata",
  6084. ".signature.p7s",
  6085. "ThirdPartyNotices.txt",
  6086. "dotnet_library_license.txt",
  6087. "lib/MonoAndroid10/_._",
  6088. "lib/MonoTouch10/_._",
  6089. "lib/net45/_._",
  6090. "lib/portable-net45+win8+wp8+wpa81/_._",
  6091. "lib/win8/_._",
  6092. "lib/wp80/_._",
  6093. "lib/wpa81/_._",
  6094. "lib/xamarinios10/_._",
  6095. "lib/xamarinmac20/_._",
  6096. "lib/xamarintvos10/_._",
  6097. "lib/xamarinwatchos10/_._",
  6098. "ref/MonoAndroid10/_._",
  6099. "ref/MonoTouch10/_._",
  6100. "ref/net45/_._",
  6101. "ref/netcore50/System.Reflection.Primitives.dll",
  6102. "ref/netcore50/System.Reflection.Primitives.xml",
  6103. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6104. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6105. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6106. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6107. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6108. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6109. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6110. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6111. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6112. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6113. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6114. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6115. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6116. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6117. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6118. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6119. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6120. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6121. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6122. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6123. "ref/portable-net45+win8+wp8+wpa81/_._",
  6124. "ref/win8/_._",
  6125. "ref/wp80/_._",
  6126. "ref/wpa81/_._",
  6127. "ref/xamarinios10/_._",
  6128. "ref/xamarinmac20/_._",
  6129. "ref/xamarintvos10/_._",
  6130. "ref/xamarinwatchos10/_._",
  6131. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6132. "system.reflection.primitives.nuspec"
  6133. ]
  6134. },
  6135. "System.Reflection.TypeExtensions/4.3.0": {
  6136. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6137. "type": "package",
  6138. "path": "system.reflection.typeextensions/4.3.0",
  6139. "files": [
  6140. ".nupkg.metadata",
  6141. ".signature.p7s",
  6142. "ThirdPartyNotices.txt",
  6143. "dotnet_library_license.txt",
  6144. "lib/MonoAndroid10/_._",
  6145. "lib/MonoTouch10/_._",
  6146. "lib/net46/System.Reflection.TypeExtensions.dll",
  6147. "lib/net462/System.Reflection.TypeExtensions.dll",
  6148. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6149. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6150. "lib/xamarinios10/_._",
  6151. "lib/xamarinmac20/_._",
  6152. "lib/xamarintvos10/_._",
  6153. "lib/xamarinwatchos10/_._",
  6154. "ref/MonoAndroid10/_._",
  6155. "ref/MonoTouch10/_._",
  6156. "ref/net46/System.Reflection.TypeExtensions.dll",
  6157. "ref/net462/System.Reflection.TypeExtensions.dll",
  6158. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6159. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6160. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6161. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6162. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6163. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6164. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6165. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6166. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6167. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6168. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6169. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6170. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6171. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6172. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6173. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6174. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6175. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6176. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6177. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6178. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6179. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6180. "ref/xamarinios10/_._",
  6181. "ref/xamarinmac20/_._",
  6182. "ref/xamarintvos10/_._",
  6183. "ref/xamarinwatchos10/_._",
  6184. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6185. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6186. "system.reflection.typeextensions.nuspec"
  6187. ]
  6188. },
  6189. "System.Resources.ResourceManager/4.3.0": {
  6190. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6191. "type": "package",
  6192. "path": "system.resources.resourcemanager/4.3.0",
  6193. "files": [
  6194. ".nupkg.metadata",
  6195. ".signature.p7s",
  6196. "ThirdPartyNotices.txt",
  6197. "dotnet_library_license.txt",
  6198. "lib/MonoAndroid10/_._",
  6199. "lib/MonoTouch10/_._",
  6200. "lib/net45/_._",
  6201. "lib/portable-net45+win8+wp8+wpa81/_._",
  6202. "lib/win8/_._",
  6203. "lib/wp80/_._",
  6204. "lib/wpa81/_._",
  6205. "lib/xamarinios10/_._",
  6206. "lib/xamarinmac20/_._",
  6207. "lib/xamarintvos10/_._",
  6208. "lib/xamarinwatchos10/_._",
  6209. "ref/MonoAndroid10/_._",
  6210. "ref/MonoTouch10/_._",
  6211. "ref/net45/_._",
  6212. "ref/netcore50/System.Resources.ResourceManager.dll",
  6213. "ref/netcore50/System.Resources.ResourceManager.xml",
  6214. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6215. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6216. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6217. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6218. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6219. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6220. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6221. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6222. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6223. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6224. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6225. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6226. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6227. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6228. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6229. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6230. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6231. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6232. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6233. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6234. "ref/portable-net45+win8+wp8+wpa81/_._",
  6235. "ref/win8/_._",
  6236. "ref/wp80/_._",
  6237. "ref/wpa81/_._",
  6238. "ref/xamarinios10/_._",
  6239. "ref/xamarinmac20/_._",
  6240. "ref/xamarintvos10/_._",
  6241. "ref/xamarinwatchos10/_._",
  6242. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6243. "system.resources.resourcemanager.nuspec"
  6244. ]
  6245. },
  6246. "System.Runtime/4.3.0": {
  6247. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6248. "type": "package",
  6249. "path": "system.runtime/4.3.0",
  6250. "files": [
  6251. ".nupkg.metadata",
  6252. ".signature.p7s",
  6253. "ThirdPartyNotices.txt",
  6254. "dotnet_library_license.txt",
  6255. "lib/MonoAndroid10/_._",
  6256. "lib/MonoTouch10/_._",
  6257. "lib/net45/_._",
  6258. "lib/net462/System.Runtime.dll",
  6259. "lib/portable-net45+win8+wp80+wpa81/_._",
  6260. "lib/win8/_._",
  6261. "lib/wp80/_._",
  6262. "lib/wpa81/_._",
  6263. "lib/xamarinios10/_._",
  6264. "lib/xamarinmac20/_._",
  6265. "lib/xamarintvos10/_._",
  6266. "lib/xamarinwatchos10/_._",
  6267. "ref/MonoAndroid10/_._",
  6268. "ref/MonoTouch10/_._",
  6269. "ref/net45/_._",
  6270. "ref/net462/System.Runtime.dll",
  6271. "ref/netcore50/System.Runtime.dll",
  6272. "ref/netcore50/System.Runtime.xml",
  6273. "ref/netcore50/de/System.Runtime.xml",
  6274. "ref/netcore50/es/System.Runtime.xml",
  6275. "ref/netcore50/fr/System.Runtime.xml",
  6276. "ref/netcore50/it/System.Runtime.xml",
  6277. "ref/netcore50/ja/System.Runtime.xml",
  6278. "ref/netcore50/ko/System.Runtime.xml",
  6279. "ref/netcore50/ru/System.Runtime.xml",
  6280. "ref/netcore50/zh-hans/System.Runtime.xml",
  6281. "ref/netcore50/zh-hant/System.Runtime.xml",
  6282. "ref/netstandard1.0/System.Runtime.dll",
  6283. "ref/netstandard1.0/System.Runtime.xml",
  6284. "ref/netstandard1.0/de/System.Runtime.xml",
  6285. "ref/netstandard1.0/es/System.Runtime.xml",
  6286. "ref/netstandard1.0/fr/System.Runtime.xml",
  6287. "ref/netstandard1.0/it/System.Runtime.xml",
  6288. "ref/netstandard1.0/ja/System.Runtime.xml",
  6289. "ref/netstandard1.0/ko/System.Runtime.xml",
  6290. "ref/netstandard1.0/ru/System.Runtime.xml",
  6291. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6292. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6293. "ref/netstandard1.2/System.Runtime.dll",
  6294. "ref/netstandard1.2/System.Runtime.xml",
  6295. "ref/netstandard1.2/de/System.Runtime.xml",
  6296. "ref/netstandard1.2/es/System.Runtime.xml",
  6297. "ref/netstandard1.2/fr/System.Runtime.xml",
  6298. "ref/netstandard1.2/it/System.Runtime.xml",
  6299. "ref/netstandard1.2/ja/System.Runtime.xml",
  6300. "ref/netstandard1.2/ko/System.Runtime.xml",
  6301. "ref/netstandard1.2/ru/System.Runtime.xml",
  6302. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6303. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6304. "ref/netstandard1.3/System.Runtime.dll",
  6305. "ref/netstandard1.3/System.Runtime.xml",
  6306. "ref/netstandard1.3/de/System.Runtime.xml",
  6307. "ref/netstandard1.3/es/System.Runtime.xml",
  6308. "ref/netstandard1.3/fr/System.Runtime.xml",
  6309. "ref/netstandard1.3/it/System.Runtime.xml",
  6310. "ref/netstandard1.3/ja/System.Runtime.xml",
  6311. "ref/netstandard1.3/ko/System.Runtime.xml",
  6312. "ref/netstandard1.3/ru/System.Runtime.xml",
  6313. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6314. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6315. "ref/netstandard1.5/System.Runtime.dll",
  6316. "ref/netstandard1.5/System.Runtime.xml",
  6317. "ref/netstandard1.5/de/System.Runtime.xml",
  6318. "ref/netstandard1.5/es/System.Runtime.xml",
  6319. "ref/netstandard1.5/fr/System.Runtime.xml",
  6320. "ref/netstandard1.5/it/System.Runtime.xml",
  6321. "ref/netstandard1.5/ja/System.Runtime.xml",
  6322. "ref/netstandard1.5/ko/System.Runtime.xml",
  6323. "ref/netstandard1.5/ru/System.Runtime.xml",
  6324. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6325. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6326. "ref/portable-net45+win8+wp80+wpa81/_._",
  6327. "ref/win8/_._",
  6328. "ref/wp80/_._",
  6329. "ref/wpa81/_._",
  6330. "ref/xamarinios10/_._",
  6331. "ref/xamarinmac20/_._",
  6332. "ref/xamarintvos10/_._",
  6333. "ref/xamarinwatchos10/_._",
  6334. "system.runtime.4.3.0.nupkg.sha512",
  6335. "system.runtime.nuspec"
  6336. ]
  6337. },
  6338. "System.Runtime.Caching/4.7.0": {
  6339. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  6340. "type": "package",
  6341. "path": "system.runtime.caching/4.7.0",
  6342. "files": [
  6343. ".nupkg.metadata",
  6344. ".signature.p7s",
  6345. "LICENSE.TXT",
  6346. "THIRD-PARTY-NOTICES.TXT",
  6347. "lib/MonoAndroid10/_._",
  6348. "lib/MonoTouch10/_._",
  6349. "lib/net45/_._",
  6350. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6351. "lib/netstandard2.0/System.Runtime.Caching.xml",
  6352. "lib/xamarinios10/_._",
  6353. "lib/xamarinmac20/_._",
  6354. "lib/xamarintvos10/_._",
  6355. "lib/xamarinwatchos10/_._",
  6356. "ref/MonoAndroid10/_._",
  6357. "ref/MonoTouch10/_._",
  6358. "ref/net45/_._",
  6359. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6360. "ref/netstandard2.0/System.Runtime.Caching.xml",
  6361. "ref/xamarinios10/_._",
  6362. "ref/xamarinmac20/_._",
  6363. "ref/xamarintvos10/_._",
  6364. "ref/xamarinwatchos10/_._",
  6365. "runtimes/win/lib/net45/_._",
  6366. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  6367. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  6368. "system.runtime.caching.4.7.0.nupkg.sha512",
  6369. "system.runtime.caching.nuspec",
  6370. "useSharedDesignerContext.txt",
  6371. "version.txt"
  6372. ]
  6373. },
  6374. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6375. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6376. "type": "package",
  6377. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6378. "files": [
  6379. ".nupkg.metadata",
  6380. ".signature.p7s",
  6381. "Icon.png",
  6382. "LICENSE.TXT",
  6383. "THIRD-PARTY-NOTICES.TXT",
  6384. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6385. "buildTransitive/netcoreapp3.1/_._",
  6386. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6387. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6388. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6389. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6390. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6391. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6392. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6393. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6394. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6395. "system.runtime.compilerservices.unsafe.nuspec",
  6396. "useSharedDesignerContext.txt"
  6397. ]
  6398. },
  6399. "System.Runtime.Extensions/4.3.0": {
  6400. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6401. "type": "package",
  6402. "path": "system.runtime.extensions/4.3.0",
  6403. "files": [
  6404. ".nupkg.metadata",
  6405. ".signature.p7s",
  6406. "ThirdPartyNotices.txt",
  6407. "dotnet_library_license.txt",
  6408. "lib/MonoAndroid10/_._",
  6409. "lib/MonoTouch10/_._",
  6410. "lib/net45/_._",
  6411. "lib/net462/System.Runtime.Extensions.dll",
  6412. "lib/portable-net45+win8+wp8+wpa81/_._",
  6413. "lib/win8/_._",
  6414. "lib/wp80/_._",
  6415. "lib/wpa81/_._",
  6416. "lib/xamarinios10/_._",
  6417. "lib/xamarinmac20/_._",
  6418. "lib/xamarintvos10/_._",
  6419. "lib/xamarinwatchos10/_._",
  6420. "ref/MonoAndroid10/_._",
  6421. "ref/MonoTouch10/_._",
  6422. "ref/net45/_._",
  6423. "ref/net462/System.Runtime.Extensions.dll",
  6424. "ref/netcore50/System.Runtime.Extensions.dll",
  6425. "ref/netcore50/System.Runtime.Extensions.xml",
  6426. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6427. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6428. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6429. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6430. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6431. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6432. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6433. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6434. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6435. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6436. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6437. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6438. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6439. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6440. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6441. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6442. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6443. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6444. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6445. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6446. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6447. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6448. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6449. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6450. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6451. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6452. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6453. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6454. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6455. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6456. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6457. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6458. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6459. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6460. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6461. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6462. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6463. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6464. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6465. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6466. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6467. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6468. "ref/portable-net45+win8+wp8+wpa81/_._",
  6469. "ref/win8/_._",
  6470. "ref/wp80/_._",
  6471. "ref/wpa81/_._",
  6472. "ref/xamarinios10/_._",
  6473. "ref/xamarinmac20/_._",
  6474. "ref/xamarintvos10/_._",
  6475. "ref/xamarinwatchos10/_._",
  6476. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6477. "system.runtime.extensions.nuspec"
  6478. ]
  6479. },
  6480. "System.Runtime.Handles/4.3.0": {
  6481. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6482. "type": "package",
  6483. "path": "system.runtime.handles/4.3.0",
  6484. "files": [
  6485. ".nupkg.metadata",
  6486. ".signature.p7s",
  6487. "ThirdPartyNotices.txt",
  6488. "dotnet_library_license.txt",
  6489. "lib/MonoAndroid10/_._",
  6490. "lib/MonoTouch10/_._",
  6491. "lib/net46/_._",
  6492. "lib/xamarinios10/_._",
  6493. "lib/xamarinmac20/_._",
  6494. "lib/xamarintvos10/_._",
  6495. "lib/xamarinwatchos10/_._",
  6496. "ref/MonoAndroid10/_._",
  6497. "ref/MonoTouch10/_._",
  6498. "ref/net46/_._",
  6499. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6500. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6501. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6502. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6503. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6504. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6505. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6506. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6507. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6508. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6509. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6510. "ref/xamarinios10/_._",
  6511. "ref/xamarinmac20/_._",
  6512. "ref/xamarintvos10/_._",
  6513. "ref/xamarinwatchos10/_._",
  6514. "system.runtime.handles.4.3.0.nupkg.sha512",
  6515. "system.runtime.handles.nuspec"
  6516. ]
  6517. },
  6518. "System.Runtime.InteropServices/4.3.0": {
  6519. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6520. "type": "package",
  6521. "path": "system.runtime.interopservices/4.3.0",
  6522. "files": [
  6523. ".nupkg.metadata",
  6524. ".signature.p7s",
  6525. "ThirdPartyNotices.txt",
  6526. "dotnet_library_license.txt",
  6527. "lib/MonoAndroid10/_._",
  6528. "lib/MonoTouch10/_._",
  6529. "lib/net45/_._",
  6530. "lib/net462/System.Runtime.InteropServices.dll",
  6531. "lib/net463/System.Runtime.InteropServices.dll",
  6532. "lib/portable-net45+win8+wpa81/_._",
  6533. "lib/win8/_._",
  6534. "lib/wpa81/_._",
  6535. "lib/xamarinios10/_._",
  6536. "lib/xamarinmac20/_._",
  6537. "lib/xamarintvos10/_._",
  6538. "lib/xamarinwatchos10/_._",
  6539. "ref/MonoAndroid10/_._",
  6540. "ref/MonoTouch10/_._",
  6541. "ref/net45/_._",
  6542. "ref/net462/System.Runtime.InteropServices.dll",
  6543. "ref/net463/System.Runtime.InteropServices.dll",
  6544. "ref/netcore50/System.Runtime.InteropServices.dll",
  6545. "ref/netcore50/System.Runtime.InteropServices.xml",
  6546. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6547. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6548. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6549. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6550. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6551. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6552. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6553. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6554. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6555. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6556. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6557. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6558. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6559. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6560. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6561. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6562. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6563. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6564. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6565. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6566. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6567. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6568. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6569. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6570. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6571. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6572. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6573. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6574. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6575. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6576. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6577. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6578. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6579. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6580. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6581. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6582. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6583. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6584. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6585. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6586. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6587. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6588. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6589. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6590. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6591. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6592. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6593. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6594. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6595. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6596. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6597. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6598. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6599. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6600. "ref/portable-net45+win8+wpa81/_._",
  6601. "ref/win8/_._",
  6602. "ref/wpa81/_._",
  6603. "ref/xamarinios10/_._",
  6604. "ref/xamarinmac20/_._",
  6605. "ref/xamarintvos10/_._",
  6606. "ref/xamarinwatchos10/_._",
  6607. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6608. "system.runtime.interopservices.nuspec"
  6609. ]
  6610. },
  6611. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6612. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6613. "type": "package",
  6614. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6615. "files": [
  6616. ".nupkg.metadata",
  6617. ".signature.p7s",
  6618. "ThirdPartyNotices.txt",
  6619. "dotnet_library_license.txt",
  6620. "lib/MonoAndroid10/_._",
  6621. "lib/MonoTouch10/_._",
  6622. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6623. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6624. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6625. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6626. "lib/xamarinios10/_._",
  6627. "lib/xamarinmac20/_._",
  6628. "lib/xamarintvos10/_._",
  6629. "lib/xamarinwatchos10/_._",
  6630. "ref/MonoAndroid10/_._",
  6631. "ref/MonoTouch10/_._",
  6632. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6633. "ref/xamarinios10/_._",
  6634. "ref/xamarinmac20/_._",
  6635. "ref/xamarintvos10/_._",
  6636. "ref/xamarinwatchos10/_._",
  6637. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6638. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6639. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6640. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6641. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6642. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6643. "system.runtime.interopservices.runtimeinformation.nuspec"
  6644. ]
  6645. },
  6646. "System.Runtime.Numerics/4.3.0": {
  6647. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6648. "type": "package",
  6649. "path": "system.runtime.numerics/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/net45/_._",
  6658. "lib/netcore50/System.Runtime.Numerics.dll",
  6659. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6660. "lib/portable-net45+win8+wpa81/_._",
  6661. "lib/win8/_._",
  6662. "lib/wpa81/_._",
  6663. "lib/xamarinios10/_._",
  6664. "lib/xamarinmac20/_._",
  6665. "lib/xamarintvos10/_._",
  6666. "lib/xamarinwatchos10/_._",
  6667. "ref/MonoAndroid10/_._",
  6668. "ref/MonoTouch10/_._",
  6669. "ref/net45/_._",
  6670. "ref/netcore50/System.Runtime.Numerics.dll",
  6671. "ref/netcore50/System.Runtime.Numerics.xml",
  6672. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6673. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6674. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6675. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6676. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6677. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6678. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6679. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6680. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6681. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6682. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6683. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6684. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6685. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6686. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6687. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6688. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6689. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6690. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6691. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6692. "ref/portable-net45+win8+wpa81/_._",
  6693. "ref/win8/_._",
  6694. "ref/wpa81/_._",
  6695. "ref/xamarinios10/_._",
  6696. "ref/xamarinmac20/_._",
  6697. "ref/xamarintvos10/_._",
  6698. "ref/xamarinwatchos10/_._",
  6699. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6700. "system.runtime.numerics.nuspec"
  6701. ]
  6702. },
  6703. "System.Runtime.Serialization.Formatters/4.3.0": {
  6704. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  6705. "type": "package",
  6706. "path": "system.runtime.serialization.formatters/4.3.0",
  6707. "files": [
  6708. ".nupkg.metadata",
  6709. ".signature.p7s",
  6710. "ThirdPartyNotices.txt",
  6711. "dotnet_library_license.txt",
  6712. "lib/MonoAndroid10/_._",
  6713. "lib/MonoTouch10/_._",
  6714. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  6715. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  6716. "lib/xamarinios10/_._",
  6717. "lib/xamarinmac20/_._",
  6718. "lib/xamarintvos10/_._",
  6719. "lib/xamarinwatchos10/_._",
  6720. "ref/MonoAndroid10/_._",
  6721. "ref/MonoTouch10/_._",
  6722. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  6723. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  6724. "ref/xamarinios10/_._",
  6725. "ref/xamarinmac20/_._",
  6726. "ref/xamarintvos10/_._",
  6727. "ref/xamarinwatchos10/_._",
  6728. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  6729. "system.runtime.serialization.formatters.nuspec"
  6730. ]
  6731. },
  6732. "System.Runtime.Serialization.Primitives/4.3.0": {
  6733. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  6734. "type": "package",
  6735. "path": "system.runtime.serialization.primitives/4.3.0",
  6736. "files": [
  6737. ".nupkg.metadata",
  6738. ".signature.p7s",
  6739. "ThirdPartyNotices.txt",
  6740. "dotnet_library_license.txt",
  6741. "lib/MonoAndroid10/_._",
  6742. "lib/MonoTouch10/_._",
  6743. "lib/net45/_._",
  6744. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  6745. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6746. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6747. "lib/portable-net45+win8+wp8+wpa81/_._",
  6748. "lib/win8/_._",
  6749. "lib/wp80/_._",
  6750. "lib/wpa81/_._",
  6751. "lib/xamarinios10/_._",
  6752. "lib/xamarinmac20/_._",
  6753. "lib/xamarintvos10/_._",
  6754. "lib/xamarinwatchos10/_._",
  6755. "ref/MonoAndroid10/_._",
  6756. "ref/MonoTouch10/_._",
  6757. "ref/net45/_._",
  6758. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  6759. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  6760. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  6761. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  6762. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  6763. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  6764. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  6765. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  6766. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  6767. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  6768. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6769. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6770. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  6771. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  6772. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  6773. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  6774. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  6775. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  6776. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  6777. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  6778. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  6779. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6780. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6781. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6782. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  6783. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  6784. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  6785. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  6786. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  6787. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  6788. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  6789. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  6790. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6791. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6792. "ref/portable-net45+win8+wp8+wpa81/_._",
  6793. "ref/win8/_._",
  6794. "ref/wp80/_._",
  6795. "ref/wpa81/_._",
  6796. "ref/xamarinios10/_._",
  6797. "ref/xamarinmac20/_._",
  6798. "ref/xamarintvos10/_._",
  6799. "ref/xamarinwatchos10/_._",
  6800. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6801. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  6802. "system.runtime.serialization.primitives.nuspec"
  6803. ]
  6804. },
  6805. "System.Security.AccessControl/4.7.0": {
  6806. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  6807. "type": "package",
  6808. "path": "system.security.accesscontrol/4.7.0",
  6809. "files": [
  6810. ".nupkg.metadata",
  6811. ".signature.p7s",
  6812. "LICENSE.TXT",
  6813. "THIRD-PARTY-NOTICES.TXT",
  6814. "lib/net46/System.Security.AccessControl.dll",
  6815. "lib/net461/System.Security.AccessControl.dll",
  6816. "lib/net461/System.Security.AccessControl.xml",
  6817. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6818. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6819. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6820. "lib/uap10.0.16299/_._",
  6821. "ref/net46/System.Security.AccessControl.dll",
  6822. "ref/net461/System.Security.AccessControl.dll",
  6823. "ref/net461/System.Security.AccessControl.xml",
  6824. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6825. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6826. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6827. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6828. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6829. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6830. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6831. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6832. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6833. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6834. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6835. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6836. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6837. "ref/uap10.0.16299/_._",
  6838. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6839. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6840. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6841. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6842. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6843. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6844. "runtimes/win/lib/uap10.0.16299/_._",
  6845. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  6846. "system.security.accesscontrol.nuspec",
  6847. "useSharedDesignerContext.txt",
  6848. "version.txt"
  6849. ]
  6850. },
  6851. "System.Security.Cryptography.Algorithms/4.3.0": {
  6852. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6853. "type": "package",
  6854. "path": "system.security.cryptography.algorithms/4.3.0",
  6855. "files": [
  6856. ".nupkg.metadata",
  6857. ".signature.p7s",
  6858. "ThirdPartyNotices.txt",
  6859. "dotnet_library_license.txt",
  6860. "lib/MonoAndroid10/_._",
  6861. "lib/MonoTouch10/_._",
  6862. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6863. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6864. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6865. "lib/xamarinios10/_._",
  6866. "lib/xamarinmac20/_._",
  6867. "lib/xamarintvos10/_._",
  6868. "lib/xamarinwatchos10/_._",
  6869. "ref/MonoAndroid10/_._",
  6870. "ref/MonoTouch10/_._",
  6871. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6872. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6873. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6874. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6875. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6876. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6877. "ref/xamarinios10/_._",
  6878. "ref/xamarinmac20/_._",
  6879. "ref/xamarintvos10/_._",
  6880. "ref/xamarinwatchos10/_._",
  6881. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6882. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6883. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6884. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6885. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6886. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6887. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6888. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6889. "system.security.cryptography.algorithms.nuspec"
  6890. ]
  6891. },
  6892. "System.Security.Cryptography.Cng/4.5.0": {
  6893. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6894. "type": "package",
  6895. "path": "system.security.cryptography.cng/4.5.0",
  6896. "files": [
  6897. ".nupkg.metadata",
  6898. ".signature.p7s",
  6899. "LICENSE.TXT",
  6900. "THIRD-PARTY-NOTICES.TXT",
  6901. "lib/MonoAndroid10/_._",
  6902. "lib/MonoTouch10/_._",
  6903. "lib/net46/System.Security.Cryptography.Cng.dll",
  6904. "lib/net461/System.Security.Cryptography.Cng.dll",
  6905. "lib/net462/System.Security.Cryptography.Cng.dll",
  6906. "lib/net47/System.Security.Cryptography.Cng.dll",
  6907. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6908. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6909. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6910. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6911. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6912. "lib/uap10.0.16299/_._",
  6913. "lib/xamarinios10/_._",
  6914. "lib/xamarinmac20/_._",
  6915. "lib/xamarintvos10/_._",
  6916. "lib/xamarinwatchos10/_._",
  6917. "ref/MonoAndroid10/_._",
  6918. "ref/MonoTouch10/_._",
  6919. "ref/net46/System.Security.Cryptography.Cng.dll",
  6920. "ref/net461/System.Security.Cryptography.Cng.dll",
  6921. "ref/net461/System.Security.Cryptography.Cng.xml",
  6922. "ref/net462/System.Security.Cryptography.Cng.dll",
  6923. "ref/net462/System.Security.Cryptography.Cng.xml",
  6924. "ref/net47/System.Security.Cryptography.Cng.dll",
  6925. "ref/net47/System.Security.Cryptography.Cng.xml",
  6926. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6927. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6928. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6929. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6930. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6931. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6932. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6933. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6934. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6935. "ref/uap10.0.16299/_._",
  6936. "ref/xamarinios10/_._",
  6937. "ref/xamarinmac20/_._",
  6938. "ref/xamarintvos10/_._",
  6939. "ref/xamarinwatchos10/_._",
  6940. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6941. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6942. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6943. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6944. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6945. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6946. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6947. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6948. "runtimes/win/lib/uap10.0.16299/_._",
  6949. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6950. "system.security.cryptography.cng.nuspec",
  6951. "useSharedDesignerContext.txt",
  6952. "version.txt"
  6953. ]
  6954. },
  6955. "System.Security.Cryptography.Csp/4.3.0": {
  6956. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  6957. "type": "package",
  6958. "path": "system.security.cryptography.csp/4.3.0",
  6959. "files": [
  6960. ".nupkg.metadata",
  6961. ".signature.p7s",
  6962. "ThirdPartyNotices.txt",
  6963. "dotnet_library_license.txt",
  6964. "lib/MonoAndroid10/_._",
  6965. "lib/MonoTouch10/_._",
  6966. "lib/net46/System.Security.Cryptography.Csp.dll",
  6967. "lib/xamarinios10/_._",
  6968. "lib/xamarinmac20/_._",
  6969. "lib/xamarintvos10/_._",
  6970. "lib/xamarinwatchos10/_._",
  6971. "ref/MonoAndroid10/_._",
  6972. "ref/MonoTouch10/_._",
  6973. "ref/net46/System.Security.Cryptography.Csp.dll",
  6974. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6975. "ref/xamarinios10/_._",
  6976. "ref/xamarinmac20/_._",
  6977. "ref/xamarintvos10/_._",
  6978. "ref/xamarinwatchos10/_._",
  6979. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6980. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6981. "runtimes/win/lib/netcore50/_._",
  6982. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6983. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  6984. "system.security.cryptography.csp.nuspec"
  6985. ]
  6986. },
  6987. "System.Security.Cryptography.Encoding/4.3.0": {
  6988. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  6989. "type": "package",
  6990. "path": "system.security.cryptography.encoding/4.3.0",
  6991. "files": [
  6992. ".nupkg.metadata",
  6993. ".signature.p7s",
  6994. "ThirdPartyNotices.txt",
  6995. "dotnet_library_license.txt",
  6996. "lib/MonoAndroid10/_._",
  6997. "lib/MonoTouch10/_._",
  6998. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6999. "lib/xamarinios10/_._",
  7000. "lib/xamarinmac20/_._",
  7001. "lib/xamarintvos10/_._",
  7002. "lib/xamarinwatchos10/_._",
  7003. "ref/MonoAndroid10/_._",
  7004. "ref/MonoTouch10/_._",
  7005. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7006. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7007. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7008. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7009. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7010. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7011. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7012. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7013. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7014. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7015. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7016. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7017. "ref/xamarinios10/_._",
  7018. "ref/xamarinmac20/_._",
  7019. "ref/xamarintvos10/_._",
  7020. "ref/xamarinwatchos10/_._",
  7021. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7022. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7023. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7024. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7025. "system.security.cryptography.encoding.nuspec"
  7026. ]
  7027. },
  7028. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7029. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7030. "type": "package",
  7031. "path": "system.security.cryptography.openssl/4.3.0",
  7032. "files": [
  7033. ".nupkg.metadata",
  7034. ".signature.p7s",
  7035. "ThirdPartyNotices.txt",
  7036. "dotnet_library_license.txt",
  7037. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7038. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7039. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7040. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7041. "system.security.cryptography.openssl.nuspec"
  7042. ]
  7043. },
  7044. "System.Security.Cryptography.Primitives/4.3.0": {
  7045. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7046. "type": "package",
  7047. "path": "system.security.cryptography.primitives/4.3.0",
  7048. "files": [
  7049. ".nupkg.metadata",
  7050. ".signature.p7s",
  7051. "ThirdPartyNotices.txt",
  7052. "dotnet_library_license.txt",
  7053. "lib/MonoAndroid10/_._",
  7054. "lib/MonoTouch10/_._",
  7055. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7056. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7057. "lib/xamarinios10/_._",
  7058. "lib/xamarinmac20/_._",
  7059. "lib/xamarintvos10/_._",
  7060. "lib/xamarinwatchos10/_._",
  7061. "ref/MonoAndroid10/_._",
  7062. "ref/MonoTouch10/_._",
  7063. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7064. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7065. "ref/xamarinios10/_._",
  7066. "ref/xamarinmac20/_._",
  7067. "ref/xamarintvos10/_._",
  7068. "ref/xamarinwatchos10/_._",
  7069. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7070. "system.security.cryptography.primitives.nuspec"
  7071. ]
  7072. },
  7073. "System.Security.Cryptography.ProtectedData/4.7.0": {
  7074. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  7075. "type": "package",
  7076. "path": "system.security.cryptography.protecteddata/4.7.0",
  7077. "files": [
  7078. ".nupkg.metadata",
  7079. ".signature.p7s",
  7080. "LICENSE.TXT",
  7081. "THIRD-PARTY-NOTICES.TXT",
  7082. "lib/MonoAndroid10/_._",
  7083. "lib/MonoTouch10/_._",
  7084. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7085. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7086. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7087. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7088. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7089. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7090. "lib/xamarinios10/_._",
  7091. "lib/xamarinmac20/_._",
  7092. "lib/xamarintvos10/_._",
  7093. "lib/xamarinwatchos10/_._",
  7094. "ref/MonoAndroid10/_._",
  7095. "ref/MonoTouch10/_._",
  7096. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7097. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7098. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7099. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7100. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7101. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7102. "ref/xamarinios10/_._",
  7103. "ref/xamarinmac20/_._",
  7104. "ref/xamarintvos10/_._",
  7105. "ref/xamarinwatchos10/_._",
  7106. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7107. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7108. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7109. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7110. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7111. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7112. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  7113. "system.security.cryptography.protecteddata.nuspec",
  7114. "useSharedDesignerContext.txt",
  7115. "version.txt"
  7116. ]
  7117. },
  7118. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7119. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7120. "type": "package",
  7121. "path": "system.security.cryptography.x509certificates/4.3.0",
  7122. "files": [
  7123. ".nupkg.metadata",
  7124. ".signature.p7s",
  7125. "ThirdPartyNotices.txt",
  7126. "dotnet_library_license.txt",
  7127. "lib/MonoAndroid10/_._",
  7128. "lib/MonoTouch10/_._",
  7129. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7130. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7131. "lib/xamarinios10/_._",
  7132. "lib/xamarinmac20/_._",
  7133. "lib/xamarintvos10/_._",
  7134. "lib/xamarinwatchos10/_._",
  7135. "ref/MonoAndroid10/_._",
  7136. "ref/MonoTouch10/_._",
  7137. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7138. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7139. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7140. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7141. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7142. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7143. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7144. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7145. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7146. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7147. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7148. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7149. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7150. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7151. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7152. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7153. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7154. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7155. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7156. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7157. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7158. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7159. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7160. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7161. "ref/xamarinios10/_._",
  7162. "ref/xamarinmac20/_._",
  7163. "ref/xamarintvos10/_._",
  7164. "ref/xamarinwatchos10/_._",
  7165. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7166. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7167. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7168. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7169. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7170. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7171. "system.security.cryptography.x509certificates.nuspec"
  7172. ]
  7173. },
  7174. "System.Security.Permissions/4.7.0": {
  7175. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  7176. "type": "package",
  7177. "path": "system.security.permissions/4.7.0",
  7178. "files": [
  7179. ".nupkg.metadata",
  7180. ".signature.p7s",
  7181. "LICENSE.TXT",
  7182. "THIRD-PARTY-NOTICES.TXT",
  7183. "lib/net461/System.Security.Permissions.dll",
  7184. "lib/net461/System.Security.Permissions.xml",
  7185. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  7186. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  7187. "lib/netstandard2.0/System.Security.Permissions.dll",
  7188. "lib/netstandard2.0/System.Security.Permissions.xml",
  7189. "ref/net461/System.Security.Permissions.dll",
  7190. "ref/net461/System.Security.Permissions.xml",
  7191. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  7192. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  7193. "ref/netstandard2.0/System.Security.Permissions.dll",
  7194. "ref/netstandard2.0/System.Security.Permissions.xml",
  7195. "system.security.permissions.4.7.0.nupkg.sha512",
  7196. "system.security.permissions.nuspec",
  7197. "useSharedDesignerContext.txt",
  7198. "version.txt"
  7199. ]
  7200. },
  7201. "System.Security.Principal.Windows/4.7.0": {
  7202. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  7203. "type": "package",
  7204. "path": "system.security.principal.windows/4.7.0",
  7205. "files": [
  7206. ".nupkg.metadata",
  7207. ".signature.p7s",
  7208. "LICENSE.TXT",
  7209. "THIRD-PARTY-NOTICES.TXT",
  7210. "lib/net46/System.Security.Principal.Windows.dll",
  7211. "lib/net461/System.Security.Principal.Windows.dll",
  7212. "lib/net461/System.Security.Principal.Windows.xml",
  7213. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7214. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7215. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7216. "lib/uap10.0.16299/_._",
  7217. "ref/net46/System.Security.Principal.Windows.dll",
  7218. "ref/net461/System.Security.Principal.Windows.dll",
  7219. "ref/net461/System.Security.Principal.Windows.xml",
  7220. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7221. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7222. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7223. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7224. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7225. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7226. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7227. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7228. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7229. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7230. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7231. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7232. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7233. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7234. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7235. "ref/uap10.0.16299/_._",
  7236. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7237. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7238. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7239. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7240. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7241. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7242. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7243. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7244. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7245. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7246. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7247. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7248. "runtimes/win/lib/uap10.0.16299/_._",
  7249. "system.security.principal.windows.4.7.0.nupkg.sha512",
  7250. "system.security.principal.windows.nuspec",
  7251. "useSharedDesignerContext.txt",
  7252. "version.txt"
  7253. ]
  7254. },
  7255. "System.Text.Encoding/4.3.0": {
  7256. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7257. "type": "package",
  7258. "path": "system.text.encoding/4.3.0",
  7259. "files": [
  7260. ".nupkg.metadata",
  7261. ".signature.p7s",
  7262. "ThirdPartyNotices.txt",
  7263. "dotnet_library_license.txt",
  7264. "lib/MonoAndroid10/_._",
  7265. "lib/MonoTouch10/_._",
  7266. "lib/net45/_._",
  7267. "lib/portable-net45+win8+wp8+wpa81/_._",
  7268. "lib/win8/_._",
  7269. "lib/wp80/_._",
  7270. "lib/wpa81/_._",
  7271. "lib/xamarinios10/_._",
  7272. "lib/xamarinmac20/_._",
  7273. "lib/xamarintvos10/_._",
  7274. "lib/xamarinwatchos10/_._",
  7275. "ref/MonoAndroid10/_._",
  7276. "ref/MonoTouch10/_._",
  7277. "ref/net45/_._",
  7278. "ref/netcore50/System.Text.Encoding.dll",
  7279. "ref/netcore50/System.Text.Encoding.xml",
  7280. "ref/netcore50/de/System.Text.Encoding.xml",
  7281. "ref/netcore50/es/System.Text.Encoding.xml",
  7282. "ref/netcore50/fr/System.Text.Encoding.xml",
  7283. "ref/netcore50/it/System.Text.Encoding.xml",
  7284. "ref/netcore50/ja/System.Text.Encoding.xml",
  7285. "ref/netcore50/ko/System.Text.Encoding.xml",
  7286. "ref/netcore50/ru/System.Text.Encoding.xml",
  7287. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7288. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7289. "ref/netstandard1.0/System.Text.Encoding.dll",
  7290. "ref/netstandard1.0/System.Text.Encoding.xml",
  7291. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7292. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7293. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7294. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7295. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7296. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7297. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7298. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7299. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7300. "ref/netstandard1.3/System.Text.Encoding.dll",
  7301. "ref/netstandard1.3/System.Text.Encoding.xml",
  7302. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7303. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7304. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7305. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7306. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7307. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7308. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7309. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7310. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7311. "ref/portable-net45+win8+wp8+wpa81/_._",
  7312. "ref/win8/_._",
  7313. "ref/wp80/_._",
  7314. "ref/wpa81/_._",
  7315. "ref/xamarinios10/_._",
  7316. "ref/xamarinmac20/_._",
  7317. "ref/xamarintvos10/_._",
  7318. "ref/xamarinwatchos10/_._",
  7319. "system.text.encoding.4.3.0.nupkg.sha512",
  7320. "system.text.encoding.nuspec"
  7321. ]
  7322. },
  7323. "System.Text.Encoding.CodePages/4.7.0": {
  7324. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  7325. "type": "package",
  7326. "path": "system.text.encoding.codepages/4.7.0",
  7327. "files": [
  7328. ".nupkg.metadata",
  7329. ".signature.p7s",
  7330. "LICENSE.TXT",
  7331. "THIRD-PARTY-NOTICES.TXT",
  7332. "lib/MonoAndroid10/_._",
  7333. "lib/MonoTouch10/_._",
  7334. "lib/net46/System.Text.Encoding.CodePages.dll",
  7335. "lib/net461/System.Text.Encoding.CodePages.dll",
  7336. "lib/net461/System.Text.Encoding.CodePages.xml",
  7337. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7338. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7339. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7340. "lib/xamarinios10/_._",
  7341. "lib/xamarinmac20/_._",
  7342. "lib/xamarintvos10/_._",
  7343. "lib/xamarinwatchos10/_._",
  7344. "ref/MonoAndroid10/_._",
  7345. "ref/MonoTouch10/_._",
  7346. "ref/xamarinios10/_._",
  7347. "ref/xamarinmac20/_._",
  7348. "ref/xamarintvos10/_._",
  7349. "ref/xamarinwatchos10/_._",
  7350. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7351. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7352. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7353. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7354. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7355. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7356. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7357. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  7358. "system.text.encoding.codepages.nuspec",
  7359. "useSharedDesignerContext.txt",
  7360. "version.txt"
  7361. ]
  7362. },
  7363. "System.Text.Encoding.Extensions/4.3.0": {
  7364. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7365. "type": "package",
  7366. "path": "system.text.encoding.extensions/4.3.0",
  7367. "files": [
  7368. ".nupkg.metadata",
  7369. ".signature.p7s",
  7370. "ThirdPartyNotices.txt",
  7371. "dotnet_library_license.txt",
  7372. "lib/MonoAndroid10/_._",
  7373. "lib/MonoTouch10/_._",
  7374. "lib/net45/_._",
  7375. "lib/portable-net45+win8+wp8+wpa81/_._",
  7376. "lib/win8/_._",
  7377. "lib/wp80/_._",
  7378. "lib/wpa81/_._",
  7379. "lib/xamarinios10/_._",
  7380. "lib/xamarinmac20/_._",
  7381. "lib/xamarintvos10/_._",
  7382. "lib/xamarinwatchos10/_._",
  7383. "ref/MonoAndroid10/_._",
  7384. "ref/MonoTouch10/_._",
  7385. "ref/net45/_._",
  7386. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7387. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7388. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7389. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7390. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7391. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7392. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7393. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7394. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7395. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7396. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7397. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7398. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7399. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7400. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7401. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7402. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7403. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7404. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7405. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7406. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7407. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7408. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7409. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7410. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7411. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7412. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7413. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7414. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7415. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7416. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7417. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7418. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7419. "ref/portable-net45+win8+wp8+wpa81/_._",
  7420. "ref/win8/_._",
  7421. "ref/wp80/_._",
  7422. "ref/wpa81/_._",
  7423. "ref/xamarinios10/_._",
  7424. "ref/xamarinmac20/_._",
  7425. "ref/xamarintvos10/_._",
  7426. "ref/xamarinwatchos10/_._",
  7427. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7428. "system.text.encoding.extensions.nuspec"
  7429. ]
  7430. },
  7431. "System.Text.Encodings.Web/4.5.0": {
  7432. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  7433. "type": "package",
  7434. "path": "system.text.encodings.web/4.5.0",
  7435. "files": [
  7436. ".nupkg.metadata",
  7437. ".signature.p7s",
  7438. "LICENSE.TXT",
  7439. "THIRD-PARTY-NOTICES.TXT",
  7440. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7441. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7442. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7443. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7444. "system.text.encodings.web.4.5.0.nupkg.sha512",
  7445. "system.text.encodings.web.nuspec",
  7446. "useSharedDesignerContext.txt",
  7447. "version.txt"
  7448. ]
  7449. },
  7450. "System.Text.Json/4.7.1": {
  7451. "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  7452. "type": "package",
  7453. "path": "system.text.json/4.7.1",
  7454. "files": [
  7455. ".nupkg.metadata",
  7456. ".signature.p7s",
  7457. "Icon.png",
  7458. "LICENSE.TXT",
  7459. "THIRD-PARTY-NOTICES.TXT",
  7460. "lib/net461/System.Text.Json.dll",
  7461. "lib/net461/System.Text.Json.xml",
  7462. "lib/netcoreapp3.0/System.Text.Json.dll",
  7463. "lib/netcoreapp3.0/System.Text.Json.xml",
  7464. "lib/netstandard2.0/System.Text.Json.dll",
  7465. "lib/netstandard2.0/System.Text.Json.xml",
  7466. "system.text.json.4.7.1.nupkg.sha512",
  7467. "system.text.json.nuspec",
  7468. "useSharedDesignerContext.txt",
  7469. "version.txt"
  7470. ]
  7471. },
  7472. "System.Text.RegularExpressions/4.3.0": {
  7473. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7474. "type": "package",
  7475. "path": "system.text.regularexpressions/4.3.0",
  7476. "files": [
  7477. ".nupkg.metadata",
  7478. ".signature.p7s",
  7479. "ThirdPartyNotices.txt",
  7480. "dotnet_library_license.txt",
  7481. "lib/MonoAndroid10/_._",
  7482. "lib/MonoTouch10/_._",
  7483. "lib/net45/_._",
  7484. "lib/net463/System.Text.RegularExpressions.dll",
  7485. "lib/netcore50/System.Text.RegularExpressions.dll",
  7486. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7487. "lib/portable-net45+win8+wp8+wpa81/_._",
  7488. "lib/win8/_._",
  7489. "lib/wp80/_._",
  7490. "lib/wpa81/_._",
  7491. "lib/xamarinios10/_._",
  7492. "lib/xamarinmac20/_._",
  7493. "lib/xamarintvos10/_._",
  7494. "lib/xamarinwatchos10/_._",
  7495. "ref/MonoAndroid10/_._",
  7496. "ref/MonoTouch10/_._",
  7497. "ref/net45/_._",
  7498. "ref/net463/System.Text.RegularExpressions.dll",
  7499. "ref/netcore50/System.Text.RegularExpressions.dll",
  7500. "ref/netcore50/System.Text.RegularExpressions.xml",
  7501. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7502. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7503. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7504. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7505. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7506. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7507. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7508. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7509. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7510. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7511. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7512. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7513. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7514. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7515. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7516. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7517. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7518. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7519. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7520. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7521. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7522. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7523. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7524. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7525. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7526. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7527. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7528. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7529. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7530. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7531. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7532. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7533. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7534. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7535. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7536. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7537. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7538. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7539. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7540. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7541. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7542. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7543. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7544. "ref/portable-net45+win8+wp8+wpa81/_._",
  7545. "ref/win8/_._",
  7546. "ref/wp80/_._",
  7547. "ref/wpa81/_._",
  7548. "ref/xamarinios10/_._",
  7549. "ref/xamarinmac20/_._",
  7550. "ref/xamarintvos10/_._",
  7551. "ref/xamarinwatchos10/_._",
  7552. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7553. "system.text.regularexpressions.nuspec"
  7554. ]
  7555. },
  7556. "System.Threading/4.3.0": {
  7557. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7558. "type": "package",
  7559. "path": "system.threading/4.3.0",
  7560. "files": [
  7561. ".nupkg.metadata",
  7562. ".signature.p7s",
  7563. "ThirdPartyNotices.txt",
  7564. "dotnet_library_license.txt",
  7565. "lib/MonoAndroid10/_._",
  7566. "lib/MonoTouch10/_._",
  7567. "lib/net45/_._",
  7568. "lib/netcore50/System.Threading.dll",
  7569. "lib/netstandard1.3/System.Threading.dll",
  7570. "lib/portable-net45+win8+wp8+wpa81/_._",
  7571. "lib/win8/_._",
  7572. "lib/wp80/_._",
  7573. "lib/wpa81/_._",
  7574. "lib/xamarinios10/_._",
  7575. "lib/xamarinmac20/_._",
  7576. "lib/xamarintvos10/_._",
  7577. "lib/xamarinwatchos10/_._",
  7578. "ref/MonoAndroid10/_._",
  7579. "ref/MonoTouch10/_._",
  7580. "ref/net45/_._",
  7581. "ref/netcore50/System.Threading.dll",
  7582. "ref/netcore50/System.Threading.xml",
  7583. "ref/netcore50/de/System.Threading.xml",
  7584. "ref/netcore50/es/System.Threading.xml",
  7585. "ref/netcore50/fr/System.Threading.xml",
  7586. "ref/netcore50/it/System.Threading.xml",
  7587. "ref/netcore50/ja/System.Threading.xml",
  7588. "ref/netcore50/ko/System.Threading.xml",
  7589. "ref/netcore50/ru/System.Threading.xml",
  7590. "ref/netcore50/zh-hans/System.Threading.xml",
  7591. "ref/netcore50/zh-hant/System.Threading.xml",
  7592. "ref/netstandard1.0/System.Threading.dll",
  7593. "ref/netstandard1.0/System.Threading.xml",
  7594. "ref/netstandard1.0/de/System.Threading.xml",
  7595. "ref/netstandard1.0/es/System.Threading.xml",
  7596. "ref/netstandard1.0/fr/System.Threading.xml",
  7597. "ref/netstandard1.0/it/System.Threading.xml",
  7598. "ref/netstandard1.0/ja/System.Threading.xml",
  7599. "ref/netstandard1.0/ko/System.Threading.xml",
  7600. "ref/netstandard1.0/ru/System.Threading.xml",
  7601. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7602. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7603. "ref/netstandard1.3/System.Threading.dll",
  7604. "ref/netstandard1.3/System.Threading.xml",
  7605. "ref/netstandard1.3/de/System.Threading.xml",
  7606. "ref/netstandard1.3/es/System.Threading.xml",
  7607. "ref/netstandard1.3/fr/System.Threading.xml",
  7608. "ref/netstandard1.3/it/System.Threading.xml",
  7609. "ref/netstandard1.3/ja/System.Threading.xml",
  7610. "ref/netstandard1.3/ko/System.Threading.xml",
  7611. "ref/netstandard1.3/ru/System.Threading.xml",
  7612. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7613. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7614. "ref/portable-net45+win8+wp8+wpa81/_._",
  7615. "ref/win8/_._",
  7616. "ref/wp80/_._",
  7617. "ref/wpa81/_._",
  7618. "ref/xamarinios10/_._",
  7619. "ref/xamarinmac20/_._",
  7620. "ref/xamarintvos10/_._",
  7621. "ref/xamarinwatchos10/_._",
  7622. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7623. "system.threading.4.3.0.nupkg.sha512",
  7624. "system.threading.nuspec"
  7625. ]
  7626. },
  7627. "System.Threading.Tasks/4.3.0": {
  7628. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7629. "type": "package",
  7630. "path": "system.threading.tasks/4.3.0",
  7631. "files": [
  7632. ".nupkg.metadata",
  7633. ".signature.p7s",
  7634. "ThirdPartyNotices.txt",
  7635. "dotnet_library_license.txt",
  7636. "lib/MonoAndroid10/_._",
  7637. "lib/MonoTouch10/_._",
  7638. "lib/net45/_._",
  7639. "lib/portable-net45+win8+wp8+wpa81/_._",
  7640. "lib/win8/_._",
  7641. "lib/wp80/_._",
  7642. "lib/wpa81/_._",
  7643. "lib/xamarinios10/_._",
  7644. "lib/xamarinmac20/_._",
  7645. "lib/xamarintvos10/_._",
  7646. "lib/xamarinwatchos10/_._",
  7647. "ref/MonoAndroid10/_._",
  7648. "ref/MonoTouch10/_._",
  7649. "ref/net45/_._",
  7650. "ref/netcore50/System.Threading.Tasks.dll",
  7651. "ref/netcore50/System.Threading.Tasks.xml",
  7652. "ref/netcore50/de/System.Threading.Tasks.xml",
  7653. "ref/netcore50/es/System.Threading.Tasks.xml",
  7654. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7655. "ref/netcore50/it/System.Threading.Tasks.xml",
  7656. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7657. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7658. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7659. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7660. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7661. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7662. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7663. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7664. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7665. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7666. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7667. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7668. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7669. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7670. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7671. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7672. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7673. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7674. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7675. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7676. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7677. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7678. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7679. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7680. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7681. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7682. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7683. "ref/portable-net45+win8+wp8+wpa81/_._",
  7684. "ref/win8/_._",
  7685. "ref/wp80/_._",
  7686. "ref/wpa81/_._",
  7687. "ref/xamarinios10/_._",
  7688. "ref/xamarinmac20/_._",
  7689. "ref/xamarintvos10/_._",
  7690. "ref/xamarinwatchos10/_._",
  7691. "system.threading.tasks.4.3.0.nupkg.sha512",
  7692. "system.threading.tasks.nuspec"
  7693. ]
  7694. },
  7695. "System.Threading.Tasks.Extensions/4.3.0": {
  7696. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  7697. "type": "package",
  7698. "path": "system.threading.tasks.extensions/4.3.0",
  7699. "files": [
  7700. ".nupkg.metadata",
  7701. ".signature.p7s",
  7702. "ThirdPartyNotices.txt",
  7703. "dotnet_library_license.txt",
  7704. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7705. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7706. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7707. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7708. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  7709. "system.threading.tasks.extensions.nuspec"
  7710. ]
  7711. },
  7712. "System.Threading.Timer/4.3.0": {
  7713. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  7714. "type": "package",
  7715. "path": "system.threading.timer/4.3.0",
  7716. "files": [
  7717. ".nupkg.metadata",
  7718. ".signature.p7s",
  7719. "ThirdPartyNotices.txt",
  7720. "dotnet_library_license.txt",
  7721. "lib/MonoAndroid10/_._",
  7722. "lib/MonoTouch10/_._",
  7723. "lib/net451/_._",
  7724. "lib/portable-net451+win81+wpa81/_._",
  7725. "lib/win81/_._",
  7726. "lib/wpa81/_._",
  7727. "lib/xamarinios10/_._",
  7728. "lib/xamarinmac20/_._",
  7729. "lib/xamarintvos10/_._",
  7730. "lib/xamarinwatchos10/_._",
  7731. "ref/MonoAndroid10/_._",
  7732. "ref/MonoTouch10/_._",
  7733. "ref/net451/_._",
  7734. "ref/netcore50/System.Threading.Timer.dll",
  7735. "ref/netcore50/System.Threading.Timer.xml",
  7736. "ref/netcore50/de/System.Threading.Timer.xml",
  7737. "ref/netcore50/es/System.Threading.Timer.xml",
  7738. "ref/netcore50/fr/System.Threading.Timer.xml",
  7739. "ref/netcore50/it/System.Threading.Timer.xml",
  7740. "ref/netcore50/ja/System.Threading.Timer.xml",
  7741. "ref/netcore50/ko/System.Threading.Timer.xml",
  7742. "ref/netcore50/ru/System.Threading.Timer.xml",
  7743. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7744. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7745. "ref/netstandard1.2/System.Threading.Timer.dll",
  7746. "ref/netstandard1.2/System.Threading.Timer.xml",
  7747. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7748. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7749. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7750. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7751. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7752. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7753. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7754. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7755. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7756. "ref/portable-net451+win81+wpa81/_._",
  7757. "ref/win81/_._",
  7758. "ref/wpa81/_._",
  7759. "ref/xamarinios10/_._",
  7760. "ref/xamarinmac20/_._",
  7761. "ref/xamarintvos10/_._",
  7762. "ref/xamarinwatchos10/_._",
  7763. "system.threading.timer.4.3.0.nupkg.sha512",
  7764. "system.threading.timer.nuspec"
  7765. ]
  7766. },
  7767. "System.Windows.Extensions/4.7.0": {
  7768. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  7769. "type": "package",
  7770. "path": "system.windows.extensions/4.7.0",
  7771. "files": [
  7772. ".nupkg.metadata",
  7773. ".signature.p7s",
  7774. "LICENSE.TXT",
  7775. "THIRD-PARTY-NOTICES.TXT",
  7776. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7777. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7778. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  7779. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  7780. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7781. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7782. "system.windows.extensions.4.7.0.nupkg.sha512",
  7783. "system.windows.extensions.nuspec",
  7784. "useSharedDesignerContext.txt",
  7785. "version.txt"
  7786. ]
  7787. },
  7788. "System.Xml.ReaderWriter/4.3.0": {
  7789. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  7790. "type": "package",
  7791. "path": "system.xml.readerwriter/4.3.0",
  7792. "files": [
  7793. ".nupkg.metadata",
  7794. ".signature.p7s",
  7795. "ThirdPartyNotices.txt",
  7796. "dotnet_library_license.txt",
  7797. "lib/MonoAndroid10/_._",
  7798. "lib/MonoTouch10/_._",
  7799. "lib/net45/_._",
  7800. "lib/net46/System.Xml.ReaderWriter.dll",
  7801. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7802. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7803. "lib/portable-net45+win8+wp8+wpa81/_._",
  7804. "lib/win8/_._",
  7805. "lib/wp80/_._",
  7806. "lib/wpa81/_._",
  7807. "lib/xamarinios10/_._",
  7808. "lib/xamarinmac20/_._",
  7809. "lib/xamarintvos10/_._",
  7810. "lib/xamarinwatchos10/_._",
  7811. "ref/MonoAndroid10/_._",
  7812. "ref/MonoTouch10/_._",
  7813. "ref/net45/_._",
  7814. "ref/net46/System.Xml.ReaderWriter.dll",
  7815. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7816. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7817. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7818. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7819. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7820. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7821. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7822. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7823. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7824. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7825. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7826. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7827. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7828. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7829. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7830. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7831. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7832. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7833. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7834. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7835. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7836. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7837. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7838. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7839. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7840. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7841. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7842. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7843. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7844. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7845. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7846. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7847. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7848. "ref/portable-net45+win8+wp8+wpa81/_._",
  7849. "ref/win8/_._",
  7850. "ref/wp80/_._",
  7851. "ref/wpa81/_._",
  7852. "ref/xamarinios10/_._",
  7853. "ref/xamarinmac20/_._",
  7854. "ref/xamarintvos10/_._",
  7855. "ref/xamarinwatchos10/_._",
  7856. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  7857. "system.xml.readerwriter.nuspec"
  7858. ]
  7859. },
  7860. "System.Xml.XDocument/4.3.0": {
  7861. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  7862. "type": "package",
  7863. "path": "system.xml.xdocument/4.3.0",
  7864. "files": [
  7865. ".nupkg.metadata",
  7866. ".signature.p7s",
  7867. "ThirdPartyNotices.txt",
  7868. "dotnet_library_license.txt",
  7869. "lib/MonoAndroid10/_._",
  7870. "lib/MonoTouch10/_._",
  7871. "lib/net45/_._",
  7872. "lib/netcore50/System.Xml.XDocument.dll",
  7873. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7874. "lib/portable-net45+win8+wp8+wpa81/_._",
  7875. "lib/win8/_._",
  7876. "lib/wp80/_._",
  7877. "lib/wpa81/_._",
  7878. "lib/xamarinios10/_._",
  7879. "lib/xamarinmac20/_._",
  7880. "lib/xamarintvos10/_._",
  7881. "lib/xamarinwatchos10/_._",
  7882. "ref/MonoAndroid10/_._",
  7883. "ref/MonoTouch10/_._",
  7884. "ref/net45/_._",
  7885. "ref/netcore50/System.Xml.XDocument.dll",
  7886. "ref/netcore50/System.Xml.XDocument.xml",
  7887. "ref/netcore50/de/System.Xml.XDocument.xml",
  7888. "ref/netcore50/es/System.Xml.XDocument.xml",
  7889. "ref/netcore50/fr/System.Xml.XDocument.xml",
  7890. "ref/netcore50/it/System.Xml.XDocument.xml",
  7891. "ref/netcore50/ja/System.Xml.XDocument.xml",
  7892. "ref/netcore50/ko/System.Xml.XDocument.xml",
  7893. "ref/netcore50/ru/System.Xml.XDocument.xml",
  7894. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  7895. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  7896. "ref/netstandard1.0/System.Xml.XDocument.dll",
  7897. "ref/netstandard1.0/System.Xml.XDocument.xml",
  7898. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  7899. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  7900. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  7901. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  7902. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  7903. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  7904. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  7905. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  7906. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  7907. "ref/netstandard1.3/System.Xml.XDocument.dll",
  7908. "ref/netstandard1.3/System.Xml.XDocument.xml",
  7909. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  7910. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  7911. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  7912. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  7913. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  7914. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  7915. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  7916. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  7917. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  7918. "ref/portable-net45+win8+wp8+wpa81/_._",
  7919. "ref/win8/_._",
  7920. "ref/wp80/_._",
  7921. "ref/wpa81/_._",
  7922. "ref/xamarinios10/_._",
  7923. "ref/xamarinmac20/_._",
  7924. "ref/xamarintvos10/_._",
  7925. "ref/xamarinwatchos10/_._",
  7926. "system.xml.xdocument.4.3.0.nupkg.sha512",
  7927. "system.xml.xdocument.nuspec"
  7928. ]
  7929. },
  7930. "System.Xml.XmlDocument/4.3.0": {
  7931. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  7932. "type": "package",
  7933. "path": "system.xml.xmldocument/4.3.0",
  7934. "files": [
  7935. ".nupkg.metadata",
  7936. ".signature.p7s",
  7937. "ThirdPartyNotices.txt",
  7938. "dotnet_library_license.txt",
  7939. "lib/MonoAndroid10/_._",
  7940. "lib/MonoTouch10/_._",
  7941. "lib/net46/System.Xml.XmlDocument.dll",
  7942. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  7943. "lib/xamarinios10/_._",
  7944. "lib/xamarinmac20/_._",
  7945. "lib/xamarintvos10/_._",
  7946. "lib/xamarinwatchos10/_._",
  7947. "ref/MonoAndroid10/_._",
  7948. "ref/MonoTouch10/_._",
  7949. "ref/net46/System.Xml.XmlDocument.dll",
  7950. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  7951. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  7952. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  7953. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  7954. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  7955. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  7956. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  7957. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  7958. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  7959. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  7960. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  7961. "ref/xamarinios10/_._",
  7962. "ref/xamarinmac20/_._",
  7963. "ref/xamarintvos10/_._",
  7964. "ref/xamarinwatchos10/_._",
  7965. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  7966. "system.xml.xmldocument.nuspec"
  7967. ]
  7968. },
  7969. "OASystem.Domain/1.0.0": {
  7970. "type": "project",
  7971. "path": "../PaymentSystem.Domain/OASystem.Domain.csproj",
  7972. "msbuildProject": "../PaymentSystem.Domain/OASystem.Domain.csproj"
  7973. }
  7974. },
  7975. "projectFileDependencyGroups": {
  7976. "net6.0": [
  7977. "AutoMapper >= 12.0.0",
  7978. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.0",
  7979. "Autofac >= 6.4.0",
  7980. "Autofac.Extensions.DependencyInjection >= 8.0.0",
  7981. "Microsoft.AspNetCore.Http.Abstractions >= 2.2.0",
  7982. "Microsoft.Extensions.Configuration.Abstractions >= 7.0.0",
  7983. "Microsoft.Extensions.Configuration.Binder >= 7.0.0",
  7984. "OASystem.Domain >= 1.0.0",
  7985. "Serilog.Sinks.File >= 5.0.0",
  7986. "SqlSugarCore >= 5.1.3.32",
  7987. "StackExchange.Redis >= 2.6.96"
  7988. ]
  7989. },
  7990. "packageFolders": {
  7991. "C:\\Users\\Administrator\\.nuget\\packages\\": {}
  7992. },
  7993. "project": {
  7994. "version": "1.0.0",
  7995. "restore": {
  7996. "projectUniqueName": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Infrastructure\\OASystem.Infrastructure.csproj",
  7997. "projectName": "OASystem.Infrastructure",
  7998. "projectPath": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Infrastructure\\OASystem.Infrastructure.csproj",
  7999. "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
  8000. "outputPath": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Infrastructure\\obj\\",
  8001. "projectStyle": "PackageReference",
  8002. "configFilePaths": [
  8003. "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8004. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8005. ],
  8006. "originalTargetFrameworks": [
  8007. "net6.0"
  8008. ],
  8009. "sources": {
  8010. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8011. "https://api.nuget.org/v3/index.json": {}
  8012. },
  8013. "frameworks": {
  8014. "net6.0": {
  8015. "targetAlias": "net6.0",
  8016. "projectReferences": {
  8017. "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Domain\\OASystem.Domain.csproj": {
  8018. "projectPath": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Domain\\OASystem.Domain.csproj"
  8019. }
  8020. }
  8021. }
  8022. },
  8023. "warningProperties": {
  8024. "warnAsError": [
  8025. "NU1605"
  8026. ]
  8027. }
  8028. },
  8029. "frameworks": {
  8030. "net6.0": {
  8031. "targetAlias": "net6.0",
  8032. "dependencies": {
  8033. "AutoMapper": {
  8034. "target": "Package",
  8035. "version": "[12.0.0, )"
  8036. },
  8037. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  8038. "target": "Package",
  8039. "version": "[12.0.0, )"
  8040. },
  8041. "Autofac": {
  8042. "target": "Package",
  8043. "version": "[6.4.0, )"
  8044. },
  8045. "Autofac.Extensions.DependencyInjection": {
  8046. "target": "Package",
  8047. "version": "[8.0.0, )"
  8048. },
  8049. "Microsoft.AspNetCore.Http.Abstractions": {
  8050. "target": "Package",
  8051. "version": "[2.2.0, )"
  8052. },
  8053. "Microsoft.Extensions.Configuration.Abstractions": {
  8054. "target": "Package",
  8055. "version": "[7.0.0, )"
  8056. },
  8057. "Microsoft.Extensions.Configuration.Binder": {
  8058. "target": "Package",
  8059. "version": "[7.0.0, )"
  8060. },
  8061. "Serilog.Sinks.File": {
  8062. "target": "Package",
  8063. "version": "[5.0.0, )"
  8064. },
  8065. "SqlSugarCore": {
  8066. "target": "Package",
  8067. "version": "[5.1.3.32, )"
  8068. },
  8069. "StackExchange.Redis": {
  8070. "target": "Package",
  8071. "version": "[2.6.96, )"
  8072. }
  8073. },
  8074. "imports": [
  8075. "net461",
  8076. "net462",
  8077. "net47",
  8078. "net471",
  8079. "net472",
  8080. "net48",
  8081. "net481"
  8082. ],
  8083. "assetTargetFallback": true,
  8084. "warn": true,
  8085. "frameworkReferences": {
  8086. "Microsoft.NETCore.App": {
  8087. "privateAssets": "all"
  8088. }
  8089. },
  8090. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
  8091. }
  8092. }
  8093. }
  8094. }