project.assets.json 317 KB

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