project.assets.json 334 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/10.1.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0",
  9. "System.Reflection.Emit": "4.7.0"
  10. },
  11. "compile": {
  12. "lib/netstandard2.0/AutoMapper.dll": {}
  13. },
  14. "runtime": {
  15. "lib/netstandard2.0/AutoMapper.dll": {}
  16. }
  17. },
  18. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  19. "type": "package",
  20. "dependencies": {
  21. "AutoMapper": "[10.1.1, 11.0.0)",
  22. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  23. "Microsoft.Extensions.Options": "3.0.0"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  30. }
  31. },
  32. "BouncyCastle.NetCore/1.8.3": {
  33. "type": "package",
  34. "dependencies": {
  35. "NETStandard.Library": "1.6.0",
  36. "System.Reflection": "4.3.0",
  37. "System.Reflection.TypeExtensions": "4.1.0"
  38. },
  39. "compile": {
  40. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  41. },
  42. "runtime": {
  43. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  44. }
  45. },
  46. "Flurl/3.0.2": {
  47. "type": "package",
  48. "compile": {
  49. "lib/netstandard2.0/Flurl.dll": {}
  50. },
  51. "runtime": {
  52. "lib/netstandard2.0/Flurl.dll": {}
  53. }
  54. },
  55. "Flurl.Http/3.2.0": {
  56. "type": "package",
  57. "dependencies": {
  58. "Flurl": "3.0.2",
  59. "Newtonsoft.Json": "12.0.2",
  60. "System.Text.Encoding.CodePages": "4.5.1"
  61. },
  62. "compile": {
  63. "lib/netstandard2.0/Flurl.Http.dll": {}
  64. },
  65. "runtime": {
  66. "lib/netstandard2.0/Flurl.Http.dll": {}
  67. }
  68. },
  69. "Google.Protobuf/3.11.4": {
  70. "type": "package",
  71. "dependencies": {
  72. "System.Memory": "4.5.2"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/Google.Protobuf.dll": {}
  76. },
  77. "runtime": {
  78. "lib/netstandard2.0/Google.Protobuf.dll": {}
  79. }
  80. },
  81. "K4os.Compression.LZ4/1.1.11": {
  82. "type": "package",
  83. "dependencies": {
  84. "System.Memory": "4.5.3"
  85. },
  86. "compile": {
  87. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  91. }
  92. },
  93. "K4os.Compression.LZ4.Streams/1.1.11": {
  94. "type": "package",
  95. "dependencies": {
  96. "K4os.Compression.LZ4": "1.1.11",
  97. "K4os.Hash.xxHash": "1.0.6"
  98. },
  99. "compile": {
  100. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  101. },
  102. "runtime": {
  103. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  104. }
  105. },
  106. "K4os.Hash.xxHash/1.0.6": {
  107. "type": "package",
  108. "dependencies": {
  109. "System.Memory": "4.5.3"
  110. },
  111. "compile": {
  112. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  113. },
  114. "runtime": {
  115. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  116. }
  117. },
  118. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  119. "type": "package",
  120. "compile": {
  121. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  122. },
  123. "runtime": {
  124. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  125. }
  126. },
  127. "Microsoft.Bcl.HashCode/1.1.0": {
  128. "type": "package",
  129. "compile": {
  130. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  131. },
  132. "runtime": {
  133. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  134. }
  135. },
  136. "Microsoft.CSharp/4.7.0": {
  137. "type": "package",
  138. "compile": {
  139. "ref/netcoreapp2.0/_._": {}
  140. },
  141. "runtime": {
  142. "lib/netcoreapp2.0/_._": {}
  143. }
  144. },
  145. "Microsoft.EntityFrameworkCore/3.1.1": {
  146. "type": "package",
  147. "dependencies": {
  148. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  149. "Microsoft.Bcl.HashCode": "1.1.0",
  150. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  151. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  152. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  153. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  154. "Microsoft.Extensions.Logging": "3.1.1",
  155. "System.Collections.Immutable": "1.7.0",
  156. "System.ComponentModel.Annotations": "4.7.0",
  157. "System.Diagnostics.DiagnosticSource": "4.7.0"
  158. },
  159. "compile": {
  160. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  161. },
  162. "runtime": {
  163. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  164. }
  165. },
  166. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  167. "type": "package",
  168. "compile": {
  169. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  170. },
  171. "runtime": {
  172. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  173. }
  174. },
  175. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  176. "type": "package",
  177. "compile": {
  178. "lib/netstandard2.0/_._": {}
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/_._": {}
  182. }
  183. },
  184. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  185. "type": "package",
  186. "dependencies": {
  187. "Microsoft.EntityFrameworkCore": "3.1.1"
  188. },
  189. "compile": {
  190. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  191. },
  192. "runtime": {
  193. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  194. }
  195. },
  196. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  197. "type": "package",
  198. "build": {
  199. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  200. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  201. },
  202. "buildMultiTargeting": {
  203. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  204. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  205. }
  206. },
  207. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  208. "type": "package",
  209. "dependencies": {
  210. "Microsoft.Extensions.Primitives": "3.1.1"
  211. },
  212. "compile": {
  213. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  214. },
  215. "runtime": {
  216. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  217. }
  218. },
  219. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  220. "type": "package",
  221. "dependencies": {
  222. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  223. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  224. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  225. "Microsoft.Extensions.Options": "3.1.1"
  226. },
  227. "compile": {
  228. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  232. }
  233. },
  234. "Microsoft.Extensions.Configuration/5.0.0": {
  235. "type": "package",
  236. "dependencies": {
  237. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  238. "Microsoft.Extensions.Primitives": "5.0.0"
  239. },
  240. "compile": {
  241. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  242. },
  243. "runtime": {
  244. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  245. }
  246. },
  247. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  248. "type": "package",
  249. "dependencies": {
  250. "Microsoft.Extensions.Primitives": "5.0.0"
  251. },
  252. "compile": {
  253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  254. },
  255. "runtime": {
  256. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  257. }
  258. },
  259. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  260. "type": "package",
  261. "dependencies": {
  262. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  263. },
  264. "compile": {
  265. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  266. },
  267. "runtime": {
  268. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  269. }
  270. },
  271. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  272. "type": "package",
  273. "dependencies": {
  274. "Microsoft.Extensions.Configuration": "5.0.0",
  275. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  276. },
  277. "compile": {
  278. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  279. },
  280. "runtime": {
  281. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  282. }
  283. },
  284. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  285. "type": "package",
  286. "dependencies": {
  287. "Microsoft.Extensions.Configuration": "5.0.0",
  288. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  289. },
  290. "compile": {
  291. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  292. },
  293. "runtime": {
  294. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  295. }
  296. },
  297. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  298. "type": "package",
  299. "dependencies": {
  300. "Microsoft.Extensions.Configuration": "5.0.0",
  301. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  302. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  303. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  304. "Microsoft.Extensions.Primitives": "5.0.0"
  305. },
  306. "compile": {
  307. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  308. },
  309. "runtime": {
  310. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  311. }
  312. },
  313. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  314. "type": "package",
  315. "dependencies": {
  316. "Microsoft.Extensions.Configuration": "5.0.0",
  317. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  318. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  319. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  320. "System.Text.Json": "5.0.0"
  321. },
  322. "compile": {
  323. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  324. },
  325. "runtime": {
  326. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {}
  327. }
  328. },
  329. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  333. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  334. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  335. "Microsoft.Extensions.FileProviders.Physical": "5.0.0"
  336. },
  337. "compile": {
  338. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  339. },
  340. "runtime": {
  341. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  342. },
  343. "build": {
  344. "build/netstandard2.0/_._": {}
  345. }
  346. },
  347. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  348. "type": "package",
  349. "dependencies": {
  350. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  351. },
  352. "compile": {
  353. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  354. },
  355. "runtime": {
  356. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {}
  357. }
  358. },
  359. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  360. "type": "package",
  361. "compile": {
  362. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  363. },
  364. "runtime": {
  365. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  366. }
  367. },
  368. "Microsoft.Extensions.DependencyModel/3.1.6": {
  369. "type": "package",
  370. "dependencies": {
  371. "System.Text.Json": "4.7.2"
  372. },
  373. "compile": {
  374. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  375. },
  376. "runtime": {
  377. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  378. }
  379. },
  380. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  381. "type": "package",
  382. "dependencies": {
  383. "Microsoft.Extensions.Primitives": "5.0.0"
  384. },
  385. "compile": {
  386. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  387. },
  388. "runtime": {
  389. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  390. }
  391. },
  392. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  393. "type": "package",
  394. "dependencies": {
  395. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  396. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  397. "Microsoft.Extensions.Primitives": "5.0.0"
  398. },
  399. "compile": {
  400. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  404. }
  405. },
  406. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  407. "type": "package",
  408. "compile": {
  409. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  410. },
  411. "runtime": {
  412. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  413. }
  414. },
  415. "Microsoft.Extensions.Hosting/5.0.0": {
  416. "type": "package",
  417. "dependencies": {
  418. "Microsoft.Extensions.Configuration": "5.0.0",
  419. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  420. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  421. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0",
  422. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0",
  423. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  424. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  425. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0",
  426. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  427. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  428. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  429. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  430. "Microsoft.Extensions.Hosting.Abstractions": "5.0.0",
  431. "Microsoft.Extensions.Logging": "5.0.0",
  432. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  433. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  434. "Microsoft.Extensions.Logging.Console": "5.0.0",
  435. "Microsoft.Extensions.Logging.Debug": "5.0.0",
  436. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  437. "Microsoft.Extensions.Logging.EventSource": "5.0.0",
  438. "Microsoft.Extensions.Options": "5.0.0"
  439. },
  440. "compile": {
  441. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  442. },
  443. "runtime": {
  444. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {}
  445. }
  446. },
  447. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  448. "type": "package",
  449. "dependencies": {
  450. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  451. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  452. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  453. },
  454. "compile": {
  455. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  456. },
  457. "runtime": {
  458. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  459. }
  460. },
  461. "Microsoft.Extensions.Hosting.WindowsServices/5.0.1": {
  462. "type": "package",
  463. "dependencies": {
  464. "Microsoft.Extensions.Hosting": "5.0.0",
  465. "Microsoft.Extensions.Logging.EventLog": "5.0.0",
  466. "System.ServiceProcess.ServiceController": "5.0.0"
  467. },
  468. "compile": {
  469. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {}
  473. }
  474. },
  475. "Microsoft.Extensions.Logging/5.0.0": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  479. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  480. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  481. "Microsoft.Extensions.Options": "5.0.0",
  482. "System.Diagnostics.DiagnosticSource": "5.0.0"
  483. },
  484. "compile": {
  485. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  486. },
  487. "runtime": {
  488. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  489. }
  490. },
  491. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  492. "type": "package",
  493. "compile": {
  494. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  495. },
  496. "runtime": {
  497. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  498. }
  499. },
  500. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  501. "type": "package",
  502. "dependencies": {
  503. "Microsoft.Extensions.Configuration": "5.0.0",
  504. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  505. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  506. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  507. "Microsoft.Extensions.Logging": "5.0.0",
  508. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  509. "Microsoft.Extensions.Options": "5.0.0",
  510. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0"
  511. },
  512. "compile": {
  513. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  517. }
  518. },
  519. "Microsoft.Extensions.Logging.Console/5.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  523. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  524. "Microsoft.Extensions.Logging": "5.0.0",
  525. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  526. "Microsoft.Extensions.Logging.Configuration": "5.0.0",
  527. "Microsoft.Extensions.Options": "5.0.0",
  528. "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0",
  529. "System.Text.Json": "5.0.0"
  530. },
  531. "compile": {
  532. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  533. },
  534. "runtime": {
  535. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll": {}
  536. }
  537. },
  538. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  542. "Microsoft.Extensions.Logging": "5.0.0",
  543. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  544. },
  545. "compile": {
  546. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  547. },
  548. "runtime": {
  549. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  550. }
  551. },
  552. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  553. "type": "package",
  554. "dependencies": {
  555. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  556. "Microsoft.Extensions.Logging": "5.0.0",
  557. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  558. "Microsoft.Extensions.Options": "5.0.0",
  559. "System.Diagnostics.EventLog": "5.0.0"
  560. },
  561. "compile": {
  562. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  563. },
  564. "runtime": {
  565. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {}
  566. }
  567. },
  568. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  569. "type": "package",
  570. "dependencies": {
  571. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  572. "Microsoft.Extensions.Logging": "5.0.0",
  573. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  574. "Microsoft.Extensions.Options": "5.0.0",
  575. "Microsoft.Extensions.Primitives": "5.0.0"
  576. },
  577. "compile": {
  578. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  579. },
  580. "runtime": {
  581. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  582. }
  583. },
  584. "Microsoft.Extensions.Options/5.0.0": {
  585. "type": "package",
  586. "dependencies": {
  587. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  588. "Microsoft.Extensions.Primitives": "5.0.0"
  589. },
  590. "compile": {
  591. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  592. },
  593. "runtime": {
  594. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  595. }
  596. },
  597. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  598. "type": "package",
  599. "dependencies": {
  600. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  601. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  602. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  603. "Microsoft.Extensions.Options": "5.0.0",
  604. "Microsoft.Extensions.Primitives": "5.0.0"
  605. },
  606. "compile": {
  607. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  608. },
  609. "runtime": {
  610. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  611. }
  612. },
  613. "Microsoft.Extensions.Primitives/5.0.0": {
  614. "type": "package",
  615. "compile": {
  616. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  617. },
  618. "runtime": {
  619. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
  620. }
  621. },
  622. "Microsoft.IdentityModel.JsonWebTokens/6.11.0": {
  623. "type": "package",
  624. "dependencies": {
  625. "Microsoft.IdentityModel.Tokens": "6.11.0"
  626. },
  627. "compile": {
  628. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  629. },
  630. "runtime": {
  631. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  632. }
  633. },
  634. "Microsoft.IdentityModel.Logging/6.11.0": {
  635. "type": "package",
  636. "compile": {
  637. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  638. },
  639. "runtime": {
  640. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  641. }
  642. },
  643. "Microsoft.IdentityModel.Tokens/6.11.0": {
  644. "type": "package",
  645. "dependencies": {
  646. "Microsoft.CSharp": "4.5.0",
  647. "Microsoft.IdentityModel.Logging": "6.11.0",
  648. "System.Security.Cryptography.Cng": "4.5.0"
  649. },
  650. "compile": {
  651. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  652. },
  653. "runtime": {
  654. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  655. }
  656. },
  657. "Microsoft.NETCore.Platforms/5.0.0": {
  658. "type": "package",
  659. "compile": {
  660. "lib/netstandard1.0/_._": {}
  661. },
  662. "runtime": {
  663. "lib/netstandard1.0/_._": {}
  664. }
  665. },
  666. "Microsoft.NETCore.Targets/1.1.0": {
  667. "type": "package",
  668. "compile": {
  669. "lib/netstandard1.0/_._": {}
  670. },
  671. "runtime": {
  672. "lib/netstandard1.0/_._": {}
  673. }
  674. },
  675. "Microsoft.OpenApi/1.2.3": {
  676. "type": "package",
  677. "compile": {
  678. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  679. },
  680. "runtime": {
  681. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  682. }
  683. },
  684. "Microsoft.Win32.Primitives/4.0.1": {
  685. "type": "package",
  686. "dependencies": {
  687. "Microsoft.NETCore.Platforms": "1.0.1",
  688. "Microsoft.NETCore.Targets": "1.0.1",
  689. "System.Runtime": "4.1.0"
  690. },
  691. "compile": {
  692. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  693. }
  694. },
  695. "Microsoft.Win32.Registry/5.0.0": {
  696. "type": "package",
  697. "dependencies": {
  698. "System.Security.AccessControl": "5.0.0",
  699. "System.Security.Principal.Windows": "5.0.0"
  700. },
  701. "compile": {
  702. "ref/netstandard2.0/_._": {}
  703. },
  704. "runtime": {
  705. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  706. },
  707. "runtimeTargets": {
  708. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  709. "assetType": "runtime",
  710. "rid": "win"
  711. }
  712. }
  713. },
  714. "Microsoft.Win32.SystemEvents/5.0.0": {
  715. "type": "package",
  716. "dependencies": {
  717. "Microsoft.NETCore.Platforms": "5.0.0"
  718. },
  719. "compile": {
  720. "ref/netstandard2.0/_._": {}
  721. },
  722. "runtime": {
  723. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  724. },
  725. "runtimeTargets": {
  726. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  727. "assetType": "runtime",
  728. "rid": "win"
  729. }
  730. }
  731. },
  732. "MySql.Data/8.0.22": {
  733. "type": "package",
  734. "dependencies": {
  735. "BouncyCastle.NetCore": "1.8.3",
  736. "Google.Protobuf": "3.11.4",
  737. "K4os.Compression.LZ4": "1.1.11",
  738. "K4os.Compression.LZ4.Streams": "1.1.11",
  739. "K4os.Hash.xxHash": "1.0.6",
  740. "SSH.NET": "2016.1.0",
  741. "System.Buffers": "4.5.1",
  742. "System.Configuration.ConfigurationManager": "4.4.1",
  743. "System.Security.Permissions": "4.7.0",
  744. "System.Text.Encoding.CodePages": "4.4.0"
  745. },
  746. "compile": {
  747. "lib/netstandard2.1/MySql.Data.dll": {},
  748. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  749. "lib/netstandard2.1/Zstandard.Net.dll": {}
  750. },
  751. "runtime": {
  752. "lib/netstandard2.1/MySql.Data.dll": {},
  753. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  754. "lib/netstandard2.1/Zstandard.Net.dll": {}
  755. }
  756. },
  757. "MySql.Data.EntityFrameworkCore/8.0.22": {
  758. "type": "package",
  759. "dependencies": {
  760. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  761. "MySql.Data": "8.0.22"
  762. },
  763. "compile": {
  764. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  765. },
  766. "runtime": {
  767. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {}
  768. }
  769. },
  770. "NETStandard.Library/1.6.0": {
  771. "type": "package",
  772. "dependencies": {
  773. "Microsoft.NETCore.Platforms": "1.0.1",
  774. "Microsoft.Win32.Primitives": "4.0.1",
  775. "System.AppContext": "4.1.0",
  776. "System.Collections": "4.0.11",
  777. "System.Collections.Concurrent": "4.0.12",
  778. "System.Console": "4.0.0",
  779. "System.Diagnostics.Debug": "4.0.11",
  780. "System.Diagnostics.Tools": "4.0.1",
  781. "System.Diagnostics.Tracing": "4.1.0",
  782. "System.Globalization": "4.0.11",
  783. "System.Globalization.Calendars": "4.0.1",
  784. "System.IO": "4.1.0",
  785. "System.IO.Compression": "4.1.0",
  786. "System.IO.Compression.ZipFile": "4.0.1",
  787. "System.IO.FileSystem": "4.0.1",
  788. "System.IO.FileSystem.Primitives": "4.0.1",
  789. "System.Linq": "4.1.0",
  790. "System.Linq.Expressions": "4.1.0",
  791. "System.Net.Http": "4.1.0",
  792. "System.Net.Primitives": "4.0.11",
  793. "System.Net.Sockets": "4.1.0",
  794. "System.ObjectModel": "4.0.12",
  795. "System.Reflection": "4.1.0",
  796. "System.Reflection.Extensions": "4.0.1",
  797. "System.Reflection.Primitives": "4.0.1",
  798. "System.Resources.ResourceManager": "4.0.1",
  799. "System.Runtime": "4.1.0",
  800. "System.Runtime.Extensions": "4.1.0",
  801. "System.Runtime.Handles": "4.0.1",
  802. "System.Runtime.InteropServices": "4.1.0",
  803. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  804. "System.Runtime.Numerics": "4.0.1",
  805. "System.Security.Cryptography.Algorithms": "4.2.0",
  806. "System.Security.Cryptography.Encoding": "4.0.0",
  807. "System.Security.Cryptography.Primitives": "4.0.0",
  808. "System.Security.Cryptography.X509Certificates": "4.1.0",
  809. "System.Text.Encoding": "4.0.11",
  810. "System.Text.Encoding.Extensions": "4.0.11",
  811. "System.Text.RegularExpressions": "4.1.0",
  812. "System.Threading": "4.0.11",
  813. "System.Threading.Tasks": "4.0.11",
  814. "System.Threading.Timer": "4.0.1",
  815. "System.Xml.ReaderWriter": "4.0.11",
  816. "System.Xml.XDocument": "4.0.11"
  817. }
  818. },
  819. "Newtonsoft.Json/13.0.1": {
  820. "type": "package",
  821. "compile": {
  822. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  823. },
  824. "runtime": {
  825. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  826. }
  827. },
  828. "NLog/4.7.9": {
  829. "type": "package",
  830. "compile": {
  831. "lib/netstandard2.0/NLog.dll": {}
  832. },
  833. "runtime": {
  834. "lib/netstandard2.0/NLog.dll": {}
  835. }
  836. },
  837. "NLog.Extensions.Logging/1.7.2": {
  838. "type": "package",
  839. "dependencies": {
  840. "Microsoft.Extensions.Logging": "3.0.0",
  841. "NLog": "4.7.9"
  842. },
  843. "compile": {
  844. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  845. },
  846. "runtime": {
  847. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  848. }
  849. },
  850. "NLog.Web.AspNetCore/4.12.0": {
  851. "type": "package",
  852. "dependencies": {
  853. "NLog.Extensions.Logging": "1.7.2"
  854. },
  855. "compile": {
  856. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  857. },
  858. "runtime": {
  859. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  860. },
  861. "frameworkReferences": [
  862. "Microsoft.AspNetCore.App"
  863. ]
  864. },
  865. "Pipelines.Sockets.Unofficial/2.2.0": {
  866. "type": "package",
  867. "dependencies": {
  868. "System.IO.Pipelines": "5.0.0"
  869. },
  870. "compile": {
  871. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  872. },
  873. "runtime": {
  874. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  875. }
  876. },
  877. "Quartz/3.3.2": {
  878. "type": "package",
  879. "dependencies": {
  880. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  881. "System.Configuration.ConfigurationManager": "4.7.0",
  882. "System.Diagnostics.DiagnosticSource": "4.7.1"
  883. },
  884. "compile": {
  885. "lib/netstandard2.0/Quartz.dll": {}
  886. },
  887. "runtime": {
  888. "lib/netstandard2.0/Quartz.dll": {}
  889. }
  890. },
  891. "runtime.native.System/4.0.0": {
  892. "type": "package",
  893. "dependencies": {
  894. "Microsoft.NETCore.Platforms": "1.0.1",
  895. "Microsoft.NETCore.Targets": "1.0.1"
  896. },
  897. "compile": {
  898. "lib/netstandard1.0/_._": {}
  899. },
  900. "runtime": {
  901. "lib/netstandard1.0/_._": {}
  902. }
  903. },
  904. "runtime.native.System.IO.Compression/4.1.0": {
  905. "type": "package",
  906. "dependencies": {
  907. "Microsoft.NETCore.Platforms": "1.0.1",
  908. "Microsoft.NETCore.Targets": "1.0.1"
  909. },
  910. "compile": {
  911. "lib/netstandard1.0/_._": {}
  912. },
  913. "runtime": {
  914. "lib/netstandard1.0/_._": {}
  915. }
  916. },
  917. "runtime.native.System.Net.Http/4.0.1": {
  918. "type": "package",
  919. "dependencies": {
  920. "Microsoft.NETCore.Platforms": "1.0.1",
  921. "Microsoft.NETCore.Targets": "1.0.1"
  922. },
  923. "compile": {
  924. "lib/netstandard1.0/_._": {}
  925. },
  926. "runtime": {
  927. "lib/netstandard1.0/_._": {}
  928. }
  929. },
  930. "runtime.native.System.Security.Cryptography/4.0.0": {
  931. "type": "package",
  932. "dependencies": {
  933. "Microsoft.NETCore.Platforms": "1.0.1",
  934. "Microsoft.NETCore.Targets": "1.0.1"
  935. },
  936. "compile": {
  937. "lib/netstandard1.0/_._": {}
  938. },
  939. "runtime": {
  940. "lib/netstandard1.0/_._": {}
  941. }
  942. },
  943. "Scrutor/3.3.0": {
  944. "type": "package",
  945. "dependencies": {
  946. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  947. "Microsoft.Extensions.DependencyModel": "3.1.6"
  948. },
  949. "compile": {
  950. "lib/netcoreapp3.1/Scrutor.dll": {}
  951. },
  952. "runtime": {
  953. "lib/netcoreapp3.1/Scrutor.dll": {}
  954. }
  955. },
  956. "SSH.NET/2016.1.0": {
  957. "type": "package",
  958. "dependencies": {
  959. "Microsoft.CSharp": "4.0.1",
  960. "SshNet.Security.Cryptography": "[1.2.0]",
  961. "System.Diagnostics.Debug": "4.0.11",
  962. "System.Diagnostics.Tools": "4.0.1",
  963. "System.Diagnostics.TraceSource": "4.0.0",
  964. "System.Globalization": "4.0.11",
  965. "System.IO": "4.1.0",
  966. "System.IO.FileSystem": "4.0.1",
  967. "System.IO.FileSystem.Primitives": "4.0.1",
  968. "System.Linq": "4.1.0",
  969. "System.Net.NameResolution": "4.0.0",
  970. "System.Net.Sockets": "4.1.0",
  971. "System.Reflection.Extensions": "4.0.1",
  972. "System.Runtime.Extensions": "4.1.0",
  973. "System.Security.Cryptography.Algorithms": "4.2.0",
  974. "System.Text.RegularExpressions": "4.1.0",
  975. "System.Threading": "4.0.11",
  976. "System.Threading.Thread": "4.0.0",
  977. "System.Threading.ThreadPool": "4.0.10",
  978. "System.Threading.Timer": "4.0.1",
  979. "System.Xml.XPath.XmlDocument": "4.0.1",
  980. "System.Xml.XmlDocument": "4.0.1"
  981. },
  982. "compile": {
  983. "lib/netstandard1.3/Renci.SshNet.dll": {}
  984. },
  985. "runtime": {
  986. "lib/netstandard1.3/Renci.SshNet.dll": {}
  987. }
  988. },
  989. "SshNet.Security.Cryptography/1.2.0": {
  990. "type": "package",
  991. "dependencies": {
  992. "System.IO": "4.1.0",
  993. "System.Security.Cryptography.Primitives": "4.0.0"
  994. },
  995. "compile": {
  996. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  997. },
  998. "runtime": {
  999. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {}
  1000. }
  1001. },
  1002. "StackExchange.Redis/2.2.62": {
  1003. "type": "package",
  1004. "dependencies": {
  1005. "Pipelines.Sockets.Unofficial": "2.2.0",
  1006. "System.Diagnostics.PerformanceCounter": "5.0.0"
  1007. },
  1008. "compile": {
  1009. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1010. },
  1011. "runtime": {
  1012. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  1013. }
  1014. },
  1015. "Swashbuckle.AspNetCore/6.3.1": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1019. "Swashbuckle.AspNetCore.Swagger": "6.3.1",
  1020. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1",
  1021. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.1"
  1022. },
  1023. "build": {
  1024. "build/Swashbuckle.AspNetCore.props": {}
  1025. }
  1026. },
  1027. "Swashbuckle.AspNetCore.Filters/7.0.2": {
  1028. "type": "package",
  1029. "dependencies": {
  1030. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1031. "Microsoft.OpenApi": "1.2.3",
  1032. "Scrutor": "3.3.0",
  1033. "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2",
  1034. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1035. },
  1036. "compile": {
  1037. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1038. },
  1039. "runtime": {
  1040. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1041. }
  1042. },
  1043. "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": {
  1044. "type": "package",
  1045. "compile": {
  1046. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1047. },
  1048. "runtime": {
  1049. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1050. }
  1051. },
  1052. "Swashbuckle.AspNetCore.Swagger/6.3.1": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "Microsoft.OpenApi": "1.2.3"
  1056. },
  1057. "compile": {
  1058. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1059. },
  1060. "runtime": {
  1061. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1062. },
  1063. "frameworkReferences": [
  1064. "Microsoft.AspNetCore.App"
  1065. ]
  1066. },
  1067. "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
  1068. "type": "package",
  1069. "dependencies": {
  1070. "Swashbuckle.AspNetCore.Swagger": "6.3.1"
  1071. },
  1072. "compile": {
  1073. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1077. }
  1078. },
  1079. "Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
  1080. "type": "package",
  1081. "compile": {
  1082. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1083. },
  1084. "runtime": {
  1085. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1086. },
  1087. "frameworkReferences": [
  1088. "Microsoft.AspNetCore.App"
  1089. ]
  1090. },
  1091. "System.AppContext/4.1.0": {
  1092. "type": "package",
  1093. "dependencies": {
  1094. "System.Runtime": "4.1.0"
  1095. },
  1096. "compile": {
  1097. "ref/netstandard1.6/System.AppContext.dll": {}
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard1.6/System.AppContext.dll": {}
  1101. }
  1102. },
  1103. "System.Buffers/4.5.1": {
  1104. "type": "package",
  1105. "compile": {
  1106. "ref/netcoreapp2.0/_._": {}
  1107. },
  1108. "runtime": {
  1109. "lib/netcoreapp2.0/_._": {}
  1110. }
  1111. },
  1112. "System.Collections/4.0.11": {
  1113. "type": "package",
  1114. "dependencies": {
  1115. "Microsoft.NETCore.Platforms": "1.0.1",
  1116. "Microsoft.NETCore.Targets": "1.0.1",
  1117. "System.Runtime": "4.1.0"
  1118. },
  1119. "compile": {
  1120. "ref/netstandard1.3/System.Collections.dll": {}
  1121. }
  1122. },
  1123. "System.Collections.Concurrent/4.0.12": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "System.Collections": "4.0.11",
  1127. "System.Diagnostics.Debug": "4.0.11",
  1128. "System.Diagnostics.Tracing": "4.1.0",
  1129. "System.Globalization": "4.0.11",
  1130. "System.Reflection": "4.1.0",
  1131. "System.Resources.ResourceManager": "4.0.1",
  1132. "System.Runtime": "4.1.0",
  1133. "System.Runtime.Extensions": "4.1.0",
  1134. "System.Threading": "4.0.11",
  1135. "System.Threading.Tasks": "4.0.11"
  1136. },
  1137. "compile": {
  1138. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1139. },
  1140. "runtime": {
  1141. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1142. }
  1143. },
  1144. "System.Collections.Immutable/1.7.0": {
  1145. "type": "package",
  1146. "compile": {
  1147. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1148. },
  1149. "runtime": {
  1150. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1151. }
  1152. },
  1153. "System.ComponentModel.Annotations/4.7.0": {
  1154. "type": "package",
  1155. "compile": {
  1156. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1157. },
  1158. "runtime": {
  1159. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1160. }
  1161. },
  1162. "System.Configuration.ConfigurationManager/5.0.0": {
  1163. "type": "package",
  1164. "dependencies": {
  1165. "System.Security.Cryptography.ProtectedData": "5.0.0",
  1166. "System.Security.Permissions": "5.0.0"
  1167. },
  1168. "compile": {
  1169. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1170. },
  1171. "runtime": {
  1172. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1173. }
  1174. },
  1175. "System.Console/4.0.0": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.NETCore.Platforms": "1.0.1",
  1179. "Microsoft.NETCore.Targets": "1.0.1",
  1180. "System.IO": "4.1.0",
  1181. "System.Runtime": "4.1.0",
  1182. "System.Text.Encoding": "4.0.11"
  1183. },
  1184. "compile": {
  1185. "ref/netstandard1.3/System.Console.dll": {}
  1186. }
  1187. },
  1188. "System.Diagnostics.Debug/4.0.11": {
  1189. "type": "package",
  1190. "dependencies": {
  1191. "Microsoft.NETCore.Platforms": "1.0.1",
  1192. "Microsoft.NETCore.Targets": "1.0.1",
  1193. "System.Runtime": "4.1.0"
  1194. },
  1195. "compile": {
  1196. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1197. }
  1198. },
  1199. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1200. "type": "package",
  1201. "compile": {
  1202. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1203. },
  1204. "runtime": {
  1205. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1206. }
  1207. },
  1208. "System.Diagnostics.EventLog/5.0.0": {
  1209. "type": "package",
  1210. "dependencies": {
  1211. "Microsoft.NETCore.Platforms": "5.0.0",
  1212. "Microsoft.Win32.Registry": "5.0.0",
  1213. "System.Security.Principal.Windows": "5.0.0"
  1214. },
  1215. "compile": {
  1216. "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1217. },
  1218. "runtime": {
  1219. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {}
  1220. },
  1221. "runtimeTargets": {
  1222. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
  1223. "assetType": "runtime",
  1224. "rid": "win"
  1225. }
  1226. }
  1227. },
  1228. "System.Diagnostics.PerformanceCounter/5.0.0": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.NETCore.Platforms": "5.0.0",
  1232. "Microsoft.Win32.Registry": "5.0.0",
  1233. "System.Configuration.ConfigurationManager": "5.0.0",
  1234. "System.Security.Principal.Windows": "5.0.0"
  1235. },
  1236. "compile": {
  1237. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  1238. },
  1239. "runtime": {
  1240. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  1241. },
  1242. "runtimeTargets": {
  1243. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1244. "assetType": "runtime",
  1245. "rid": "win"
  1246. }
  1247. }
  1248. },
  1249. "System.Diagnostics.Tools/4.0.1": {
  1250. "type": "package",
  1251. "dependencies": {
  1252. "Microsoft.NETCore.Platforms": "1.0.1",
  1253. "Microsoft.NETCore.Targets": "1.0.1",
  1254. "System.Runtime": "4.1.0"
  1255. },
  1256. "compile": {
  1257. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1258. }
  1259. },
  1260. "System.Diagnostics.TraceSource/4.0.0": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Microsoft.NETCore.Platforms": "1.0.1",
  1264. "System.Collections": "4.0.11",
  1265. "System.Diagnostics.Debug": "4.0.11",
  1266. "System.Globalization": "4.0.11",
  1267. "System.Resources.ResourceManager": "4.0.1",
  1268. "System.Runtime": "4.1.0",
  1269. "System.Runtime.Extensions": "4.1.0",
  1270. "System.Threading": "4.0.11",
  1271. "runtime.native.System": "4.0.0"
  1272. },
  1273. "compile": {
  1274. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1275. },
  1276. "runtimeTargets": {
  1277. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1278. "assetType": "runtime",
  1279. "rid": "unix"
  1280. },
  1281. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1282. "assetType": "runtime",
  1283. "rid": "win"
  1284. }
  1285. }
  1286. },
  1287. "System.Diagnostics.Tracing/4.1.0": {
  1288. "type": "package",
  1289. "dependencies": {
  1290. "Microsoft.NETCore.Platforms": "1.0.1",
  1291. "Microsoft.NETCore.Targets": "1.0.1",
  1292. "System.Runtime": "4.1.0"
  1293. },
  1294. "compile": {
  1295. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1296. }
  1297. },
  1298. "System.Drawing.Common/5.0.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.Win32.SystemEvents": "5.0.0"
  1302. },
  1303. "compile": {
  1304. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1305. },
  1306. "runtime": {
  1307. "lib/netcoreapp3.0/System.Drawing.Common.dll": {}
  1308. },
  1309. "runtimeTargets": {
  1310. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1311. "assetType": "runtime",
  1312. "rid": "unix"
  1313. },
  1314. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1315. "assetType": "runtime",
  1316. "rid": "win"
  1317. }
  1318. }
  1319. },
  1320. "System.Globalization/4.0.11": {
  1321. "type": "package",
  1322. "dependencies": {
  1323. "Microsoft.NETCore.Platforms": "1.0.1",
  1324. "Microsoft.NETCore.Targets": "1.0.1",
  1325. "System.Runtime": "4.1.0"
  1326. },
  1327. "compile": {
  1328. "ref/netstandard1.3/System.Globalization.dll": {}
  1329. }
  1330. },
  1331. "System.Globalization.Calendars/4.0.1": {
  1332. "type": "package",
  1333. "dependencies": {
  1334. "Microsoft.NETCore.Platforms": "1.0.1",
  1335. "Microsoft.NETCore.Targets": "1.0.1",
  1336. "System.Globalization": "4.0.11",
  1337. "System.Runtime": "4.1.0"
  1338. },
  1339. "compile": {
  1340. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1341. }
  1342. },
  1343. "System.Globalization.Extensions/4.0.1": {
  1344. "type": "package",
  1345. "dependencies": {
  1346. "Microsoft.NETCore.Platforms": "1.0.1",
  1347. "System.Globalization": "4.0.11",
  1348. "System.Resources.ResourceManager": "4.0.1",
  1349. "System.Runtime": "4.1.0",
  1350. "System.Runtime.Extensions": "4.1.0",
  1351. "System.Runtime.InteropServices": "4.1.0"
  1352. },
  1353. "compile": {
  1354. "ref/netstandard1.3/_._": {}
  1355. },
  1356. "runtimeTargets": {
  1357. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1358. "assetType": "runtime",
  1359. "rid": "unix"
  1360. },
  1361. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1362. "assetType": "runtime",
  1363. "rid": "win"
  1364. }
  1365. }
  1366. },
  1367. "System.IdentityModel.Tokens.Jwt/6.11.0": {
  1368. "type": "package",
  1369. "dependencies": {
  1370. "Microsoft.IdentityModel.JsonWebTokens": "6.11.0",
  1371. "Microsoft.IdentityModel.Tokens": "6.11.0"
  1372. },
  1373. "compile": {
  1374. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1375. },
  1376. "runtime": {
  1377. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1378. }
  1379. },
  1380. "System.IO/4.3.0": {
  1381. "type": "package",
  1382. "dependencies": {
  1383. "Microsoft.NETCore.Platforms": "1.1.0",
  1384. "Microsoft.NETCore.Targets": "1.1.0",
  1385. "System.Runtime": "4.3.0",
  1386. "System.Text.Encoding": "4.3.0",
  1387. "System.Threading.Tasks": "4.3.0"
  1388. },
  1389. "compile": {
  1390. "ref/netstandard1.5/System.IO.dll": {}
  1391. }
  1392. },
  1393. "System.IO.Compression/4.1.0": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "Microsoft.NETCore.Platforms": "1.0.1",
  1397. "System.Collections": "4.0.11",
  1398. "System.Diagnostics.Debug": "4.0.11",
  1399. "System.IO": "4.1.0",
  1400. "System.Resources.ResourceManager": "4.0.1",
  1401. "System.Runtime": "4.1.0",
  1402. "System.Runtime.Extensions": "4.1.0",
  1403. "System.Runtime.Handles": "4.0.1",
  1404. "System.Runtime.InteropServices": "4.1.0",
  1405. "System.Text.Encoding": "4.0.11",
  1406. "System.Threading": "4.0.11",
  1407. "System.Threading.Tasks": "4.0.11",
  1408. "runtime.native.System": "4.0.0",
  1409. "runtime.native.System.IO.Compression": "4.1.0"
  1410. },
  1411. "compile": {
  1412. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1413. },
  1414. "runtimeTargets": {
  1415. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1416. "assetType": "runtime",
  1417. "rid": "unix"
  1418. },
  1419. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1420. "assetType": "runtime",
  1421. "rid": "win"
  1422. }
  1423. }
  1424. },
  1425. "System.IO.Compression.ZipFile/4.0.1": {
  1426. "type": "package",
  1427. "dependencies": {
  1428. "System.Buffers": "4.0.0",
  1429. "System.IO": "4.1.0",
  1430. "System.IO.Compression": "4.1.0",
  1431. "System.IO.FileSystem": "4.0.1",
  1432. "System.IO.FileSystem.Primitives": "4.0.1",
  1433. "System.Resources.ResourceManager": "4.0.1",
  1434. "System.Runtime": "4.1.0",
  1435. "System.Runtime.Extensions": "4.1.0",
  1436. "System.Text.Encoding": "4.0.11"
  1437. },
  1438. "compile": {
  1439. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1440. },
  1441. "runtime": {
  1442. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1443. }
  1444. },
  1445. "System.IO.FileSystem/4.0.1": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "Microsoft.NETCore.Platforms": "1.0.1",
  1449. "Microsoft.NETCore.Targets": "1.0.1",
  1450. "System.IO": "4.1.0",
  1451. "System.IO.FileSystem.Primitives": "4.0.1",
  1452. "System.Runtime": "4.1.0",
  1453. "System.Runtime.Handles": "4.0.1",
  1454. "System.Text.Encoding": "4.0.11",
  1455. "System.Threading.Tasks": "4.0.11"
  1456. },
  1457. "compile": {
  1458. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1459. }
  1460. },
  1461. "System.IO.FileSystem.Primitives/4.0.1": {
  1462. "type": "package",
  1463. "dependencies": {
  1464. "System.Runtime": "4.1.0"
  1465. },
  1466. "compile": {
  1467. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1468. },
  1469. "runtime": {
  1470. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1471. }
  1472. },
  1473. "System.IO.Pipelines/5.0.0": {
  1474. "type": "package",
  1475. "compile": {
  1476. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {}
  1477. },
  1478. "runtime": {
  1479. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {}
  1480. }
  1481. },
  1482. "System.Linq/4.1.0": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "System.Collections": "4.0.11",
  1486. "System.Diagnostics.Debug": "4.0.11",
  1487. "System.Resources.ResourceManager": "4.0.1",
  1488. "System.Runtime": "4.1.0",
  1489. "System.Runtime.Extensions": "4.1.0"
  1490. },
  1491. "compile": {
  1492. "ref/netstandard1.6/System.Linq.dll": {}
  1493. },
  1494. "runtime": {
  1495. "lib/netstandard1.6/System.Linq.dll": {}
  1496. }
  1497. },
  1498. "System.Linq.Expressions/4.1.0": {
  1499. "type": "package",
  1500. "dependencies": {
  1501. "System.Collections": "4.0.11",
  1502. "System.Diagnostics.Debug": "4.0.11",
  1503. "System.Globalization": "4.0.11",
  1504. "System.IO": "4.1.0",
  1505. "System.Linq": "4.1.0",
  1506. "System.ObjectModel": "4.0.12",
  1507. "System.Reflection": "4.1.0",
  1508. "System.Reflection.Emit": "4.0.1",
  1509. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1510. "System.Reflection.Emit.Lightweight": "4.0.1",
  1511. "System.Reflection.Extensions": "4.0.1",
  1512. "System.Reflection.Primitives": "4.0.1",
  1513. "System.Reflection.TypeExtensions": "4.1.0",
  1514. "System.Resources.ResourceManager": "4.0.1",
  1515. "System.Runtime": "4.1.0",
  1516. "System.Runtime.Extensions": "4.1.0",
  1517. "System.Threading": "4.0.11"
  1518. },
  1519. "compile": {
  1520. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1521. },
  1522. "runtime": {
  1523. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1524. }
  1525. },
  1526. "System.Memory/4.5.3": {
  1527. "type": "package",
  1528. "compile": {
  1529. "ref/netcoreapp2.1/_._": {}
  1530. },
  1531. "runtime": {
  1532. "lib/netcoreapp2.1/_._": {}
  1533. }
  1534. },
  1535. "System.Net.Http/4.1.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "Microsoft.NETCore.Platforms": "1.0.1",
  1539. "System.Collections": "4.0.11",
  1540. "System.Diagnostics.Debug": "4.0.11",
  1541. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1542. "System.Diagnostics.Tracing": "4.1.0",
  1543. "System.Globalization": "4.0.11",
  1544. "System.Globalization.Extensions": "4.0.1",
  1545. "System.IO": "4.1.0",
  1546. "System.IO.FileSystem": "4.0.1",
  1547. "System.Net.Primitives": "4.0.11",
  1548. "System.Resources.ResourceManager": "4.0.1",
  1549. "System.Runtime": "4.1.0",
  1550. "System.Runtime.Extensions": "4.1.0",
  1551. "System.Runtime.Handles": "4.0.1",
  1552. "System.Runtime.InteropServices": "4.1.0",
  1553. "System.Security.Cryptography.Algorithms": "4.2.0",
  1554. "System.Security.Cryptography.Encoding": "4.0.0",
  1555. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1556. "System.Security.Cryptography.Primitives": "4.0.0",
  1557. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1558. "System.Text.Encoding": "4.0.11",
  1559. "System.Threading": "4.0.11",
  1560. "System.Threading.Tasks": "4.0.11",
  1561. "runtime.native.System": "4.0.0",
  1562. "runtime.native.System.Net.Http": "4.0.1",
  1563. "runtime.native.System.Security.Cryptography": "4.0.0"
  1564. },
  1565. "compile": {
  1566. "ref/netstandard1.3/System.Net.Http.dll": {}
  1567. },
  1568. "runtimeTargets": {
  1569. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1570. "assetType": "runtime",
  1571. "rid": "unix"
  1572. },
  1573. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1574. "assetType": "runtime",
  1575. "rid": "win"
  1576. }
  1577. }
  1578. },
  1579. "System.Net.NameResolution/4.0.0": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "Microsoft.NETCore.Platforms": "1.0.1",
  1583. "System.Collections": "4.0.11",
  1584. "System.Diagnostics.Tracing": "4.1.0",
  1585. "System.Globalization": "4.0.11",
  1586. "System.Net.Primitives": "4.0.11",
  1587. "System.Resources.ResourceManager": "4.0.1",
  1588. "System.Runtime": "4.1.0",
  1589. "System.Runtime.Extensions": "4.1.0",
  1590. "System.Runtime.Handles": "4.0.1",
  1591. "System.Runtime.InteropServices": "4.1.0",
  1592. "System.Security.Principal.Windows": "4.0.0",
  1593. "System.Threading": "4.0.11",
  1594. "System.Threading.Tasks": "4.0.11",
  1595. "runtime.native.System": "4.0.0"
  1596. },
  1597. "compile": {
  1598. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  1599. },
  1600. "runtimeTargets": {
  1601. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1602. "assetType": "runtime",
  1603. "rid": "unix"
  1604. },
  1605. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1606. "assetType": "runtime",
  1607. "rid": "win"
  1608. }
  1609. }
  1610. },
  1611. "System.Net.Primitives/4.0.11": {
  1612. "type": "package",
  1613. "dependencies": {
  1614. "Microsoft.NETCore.Platforms": "1.0.1",
  1615. "Microsoft.NETCore.Targets": "1.0.1",
  1616. "System.Runtime": "4.1.0",
  1617. "System.Runtime.Handles": "4.0.1"
  1618. },
  1619. "compile": {
  1620. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1621. }
  1622. },
  1623. "System.Net.Sockets/4.1.0": {
  1624. "type": "package",
  1625. "dependencies": {
  1626. "Microsoft.NETCore.Platforms": "1.0.1",
  1627. "Microsoft.NETCore.Targets": "1.0.1",
  1628. "System.IO": "4.1.0",
  1629. "System.Net.Primitives": "4.0.11",
  1630. "System.Runtime": "4.1.0",
  1631. "System.Threading.Tasks": "4.0.11"
  1632. },
  1633. "compile": {
  1634. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1635. }
  1636. },
  1637. "System.ObjectModel/4.0.12": {
  1638. "type": "package",
  1639. "dependencies": {
  1640. "System.Collections": "4.0.11",
  1641. "System.Diagnostics.Debug": "4.0.11",
  1642. "System.Resources.ResourceManager": "4.0.1",
  1643. "System.Runtime": "4.1.0",
  1644. "System.Threading": "4.0.11"
  1645. },
  1646. "compile": {
  1647. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1648. },
  1649. "runtime": {
  1650. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1651. }
  1652. },
  1653. "System.Reflection/4.3.0": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "Microsoft.NETCore.Platforms": "1.1.0",
  1657. "Microsoft.NETCore.Targets": "1.1.0",
  1658. "System.IO": "4.3.0",
  1659. "System.Reflection.Primitives": "4.3.0",
  1660. "System.Runtime": "4.3.0"
  1661. },
  1662. "compile": {
  1663. "ref/netstandard1.5/System.Reflection.dll": {}
  1664. }
  1665. },
  1666. "System.Reflection.Emit/4.7.0": {
  1667. "type": "package",
  1668. "compile": {
  1669. "ref/netcoreapp2.0/_._": {}
  1670. },
  1671. "runtime": {
  1672. "lib/netcoreapp2.0/_._": {}
  1673. }
  1674. },
  1675. "System.Reflection.Emit.ILGeneration/4.0.1": {
  1676. "type": "package",
  1677. "dependencies": {
  1678. "System.Reflection": "4.1.0",
  1679. "System.Reflection.Primitives": "4.0.1",
  1680. "System.Runtime": "4.1.0"
  1681. },
  1682. "compile": {
  1683. "ref/netstandard1.0/_._": {}
  1684. },
  1685. "runtime": {
  1686. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1687. }
  1688. },
  1689. "System.Reflection.Emit.Lightweight/4.0.1": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "System.Reflection": "4.1.0",
  1693. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1694. "System.Reflection.Primitives": "4.0.1",
  1695. "System.Runtime": "4.1.0"
  1696. },
  1697. "compile": {
  1698. "ref/netstandard1.0/_._": {}
  1699. },
  1700. "runtime": {
  1701. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1702. }
  1703. },
  1704. "System.Reflection.Extensions/4.0.1": {
  1705. "type": "package",
  1706. "dependencies": {
  1707. "Microsoft.NETCore.Platforms": "1.0.1",
  1708. "Microsoft.NETCore.Targets": "1.0.1",
  1709. "System.Reflection": "4.1.0",
  1710. "System.Runtime": "4.1.0"
  1711. },
  1712. "compile": {
  1713. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1714. }
  1715. },
  1716. "System.Reflection.Primitives/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "Microsoft.NETCore.Platforms": "1.1.0",
  1720. "Microsoft.NETCore.Targets": "1.1.0",
  1721. "System.Runtime": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1725. }
  1726. },
  1727. "System.Reflection.TypeExtensions/4.1.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "System.Reflection": "4.1.0",
  1731. "System.Runtime": "4.1.0"
  1732. },
  1733. "compile": {
  1734. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1735. },
  1736. "runtime": {
  1737. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1738. }
  1739. },
  1740. "System.Resources.ResourceManager/4.0.1": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "Microsoft.NETCore.Platforms": "1.0.1",
  1744. "Microsoft.NETCore.Targets": "1.0.1",
  1745. "System.Globalization": "4.0.11",
  1746. "System.Reflection": "4.1.0",
  1747. "System.Runtime": "4.1.0"
  1748. },
  1749. "compile": {
  1750. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1751. }
  1752. },
  1753. "System.Runtime/4.3.0": {
  1754. "type": "package",
  1755. "dependencies": {
  1756. "Microsoft.NETCore.Platforms": "1.1.0",
  1757. "Microsoft.NETCore.Targets": "1.1.0"
  1758. },
  1759. "compile": {
  1760. "ref/netstandard1.5/System.Runtime.dll": {}
  1761. }
  1762. },
  1763. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  1764. "type": "package",
  1765. "compile": {
  1766. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1767. },
  1768. "runtime": {
  1769. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1770. }
  1771. },
  1772. "System.Runtime.Extensions/4.1.0": {
  1773. "type": "package",
  1774. "dependencies": {
  1775. "Microsoft.NETCore.Platforms": "1.0.1",
  1776. "Microsoft.NETCore.Targets": "1.0.1",
  1777. "System.Runtime": "4.1.0"
  1778. },
  1779. "compile": {
  1780. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1781. }
  1782. },
  1783. "System.Runtime.Handles/4.0.1": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.NETCore.Platforms": "1.0.1",
  1787. "Microsoft.NETCore.Targets": "1.0.1",
  1788. "System.Runtime": "4.1.0"
  1789. },
  1790. "compile": {
  1791. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1792. }
  1793. },
  1794. "System.Runtime.InteropServices/4.1.0": {
  1795. "type": "package",
  1796. "dependencies": {
  1797. "Microsoft.NETCore.Platforms": "1.0.1",
  1798. "Microsoft.NETCore.Targets": "1.0.1",
  1799. "System.Reflection": "4.1.0",
  1800. "System.Reflection.Primitives": "4.0.1",
  1801. "System.Runtime": "4.1.0",
  1802. "System.Runtime.Handles": "4.0.1"
  1803. },
  1804. "compile": {
  1805. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  1806. }
  1807. },
  1808. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1809. "type": "package",
  1810. "dependencies": {
  1811. "Microsoft.NETCore.Platforms": "1.0.1",
  1812. "System.Reflection": "4.1.0",
  1813. "System.Resources.ResourceManager": "4.0.1",
  1814. "System.Runtime": "4.1.0",
  1815. "System.Runtime.InteropServices": "4.1.0",
  1816. "System.Threading": "4.0.11",
  1817. "runtime.native.System": "4.0.0"
  1818. },
  1819. "compile": {
  1820. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1821. },
  1822. "runtimeTargets": {
  1823. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1824. "assetType": "runtime",
  1825. "rid": "unix"
  1826. },
  1827. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1828. "assetType": "runtime",
  1829. "rid": "win"
  1830. }
  1831. }
  1832. },
  1833. "System.Runtime.Numerics/4.0.1": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "System.Globalization": "4.0.11",
  1837. "System.Resources.ResourceManager": "4.0.1",
  1838. "System.Runtime": "4.1.0",
  1839. "System.Runtime.Extensions": "4.1.0"
  1840. },
  1841. "compile": {
  1842. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  1843. },
  1844. "runtime": {
  1845. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1846. }
  1847. },
  1848. "System.Security.AccessControl/5.0.0": {
  1849. "type": "package",
  1850. "dependencies": {
  1851. "Microsoft.NETCore.Platforms": "5.0.0",
  1852. "System.Security.Principal.Windows": "5.0.0"
  1853. },
  1854. "compile": {
  1855. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1856. },
  1857. "runtime": {
  1858. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1859. },
  1860. "runtimeTargets": {
  1861. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1862. "assetType": "runtime",
  1863. "rid": "win"
  1864. }
  1865. }
  1866. },
  1867. "System.Security.Cryptography.Algorithms/4.2.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "Microsoft.NETCore.Platforms": "1.0.1",
  1871. "System.Collections": "4.0.11",
  1872. "System.IO": "4.1.0",
  1873. "System.Resources.ResourceManager": "4.0.1",
  1874. "System.Runtime": "4.1.0",
  1875. "System.Runtime.Extensions": "4.1.0",
  1876. "System.Runtime.Handles": "4.0.1",
  1877. "System.Runtime.InteropServices": "4.1.0",
  1878. "System.Runtime.Numerics": "4.0.1",
  1879. "System.Security.Cryptography.Encoding": "4.0.0",
  1880. "System.Security.Cryptography.Primitives": "4.0.0",
  1881. "System.Text.Encoding": "4.0.11",
  1882. "runtime.native.System.Security.Cryptography": "4.0.0"
  1883. },
  1884. "compile": {
  1885. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1886. },
  1887. "runtimeTargets": {
  1888. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1889. "assetType": "runtime",
  1890. "rid": "unix"
  1891. },
  1892. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1893. "assetType": "runtime",
  1894. "rid": "win"
  1895. }
  1896. }
  1897. },
  1898. "System.Security.Cryptography.Cng/4.5.0": {
  1899. "type": "package",
  1900. "compile": {
  1901. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1902. },
  1903. "runtime": {
  1904. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1905. },
  1906. "runtimeTargets": {
  1907. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1908. "assetType": "runtime",
  1909. "rid": "win"
  1910. }
  1911. }
  1912. },
  1913. "System.Security.Cryptography.Csp/4.0.0": {
  1914. "type": "package",
  1915. "dependencies": {
  1916. "Microsoft.NETCore.Platforms": "1.0.1",
  1917. "System.IO": "4.1.0",
  1918. "System.Reflection": "4.1.0",
  1919. "System.Resources.ResourceManager": "4.0.1",
  1920. "System.Runtime": "4.1.0",
  1921. "System.Runtime.Extensions": "4.1.0",
  1922. "System.Runtime.Handles": "4.0.1",
  1923. "System.Runtime.InteropServices": "4.1.0",
  1924. "System.Security.Cryptography.Algorithms": "4.2.0",
  1925. "System.Security.Cryptography.Encoding": "4.0.0",
  1926. "System.Security.Cryptography.Primitives": "4.0.0",
  1927. "System.Text.Encoding": "4.0.11",
  1928. "System.Threading": "4.0.11"
  1929. },
  1930. "compile": {
  1931. "ref/netstandard1.3/_._": {}
  1932. },
  1933. "runtimeTargets": {
  1934. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1935. "assetType": "runtime",
  1936. "rid": "unix"
  1937. },
  1938. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1939. "assetType": "runtime",
  1940. "rid": "win"
  1941. }
  1942. }
  1943. },
  1944. "System.Security.Cryptography.Encoding/4.0.0": {
  1945. "type": "package",
  1946. "dependencies": {
  1947. "Microsoft.NETCore.Platforms": "1.0.1",
  1948. "System.Collections": "4.0.11",
  1949. "System.Collections.Concurrent": "4.0.12",
  1950. "System.Linq": "4.1.0",
  1951. "System.Resources.ResourceManager": "4.0.1",
  1952. "System.Runtime": "4.1.0",
  1953. "System.Runtime.Extensions": "4.1.0",
  1954. "System.Runtime.Handles": "4.0.1",
  1955. "System.Runtime.InteropServices": "4.1.0",
  1956. "System.Security.Cryptography.Primitives": "4.0.0",
  1957. "System.Text.Encoding": "4.0.11",
  1958. "runtime.native.System.Security.Cryptography": "4.0.0"
  1959. },
  1960. "compile": {
  1961. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  1962. },
  1963. "runtimeTargets": {
  1964. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1965. "assetType": "runtime",
  1966. "rid": "unix"
  1967. },
  1968. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1969. "assetType": "runtime",
  1970. "rid": "win"
  1971. }
  1972. }
  1973. },
  1974. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "System.Collections": "4.0.11",
  1978. "System.IO": "4.1.0",
  1979. "System.Resources.ResourceManager": "4.0.1",
  1980. "System.Runtime": "4.1.0",
  1981. "System.Runtime.Extensions": "4.1.0",
  1982. "System.Runtime.Handles": "4.0.1",
  1983. "System.Runtime.InteropServices": "4.1.0",
  1984. "System.Runtime.Numerics": "4.0.1",
  1985. "System.Security.Cryptography.Algorithms": "4.2.0",
  1986. "System.Security.Cryptography.Encoding": "4.0.0",
  1987. "System.Security.Cryptography.Primitives": "4.0.0",
  1988. "System.Text.Encoding": "4.0.11",
  1989. "runtime.native.System.Security.Cryptography": "4.0.0"
  1990. },
  1991. "compile": {
  1992. "ref/netstandard1.6/_._": {}
  1993. },
  1994. "runtime": {
  1995. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1996. },
  1997. "runtimeTargets": {
  1998. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1999. "assetType": "runtime",
  2000. "rid": "unix"
  2001. }
  2002. }
  2003. },
  2004. "System.Security.Cryptography.Primitives/4.0.0": {
  2005. "type": "package",
  2006. "dependencies": {
  2007. "System.Diagnostics.Debug": "4.0.11",
  2008. "System.Globalization": "4.0.11",
  2009. "System.IO": "4.1.0",
  2010. "System.Resources.ResourceManager": "4.0.1",
  2011. "System.Runtime": "4.1.0",
  2012. "System.Threading": "4.0.11",
  2013. "System.Threading.Tasks": "4.0.11"
  2014. },
  2015. "compile": {
  2016. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2017. },
  2018. "runtime": {
  2019. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2020. }
  2021. },
  2022. "System.Security.Cryptography.ProtectedData/5.0.0": {
  2023. "type": "package",
  2024. "compile": {
  2025. "ref/netstandard2.0/_._": {}
  2026. },
  2027. "runtime": {
  2028. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2029. },
  2030. "runtimeTargets": {
  2031. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2032. "assetType": "runtime",
  2033. "rid": "win"
  2034. }
  2035. }
  2036. },
  2037. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2038. "type": "package",
  2039. "dependencies": {
  2040. "Microsoft.NETCore.Platforms": "1.0.1",
  2041. "System.Collections": "4.0.11",
  2042. "System.Diagnostics.Debug": "4.0.11",
  2043. "System.Globalization": "4.0.11",
  2044. "System.Globalization.Calendars": "4.0.1",
  2045. "System.IO": "4.1.0",
  2046. "System.IO.FileSystem": "4.0.1",
  2047. "System.IO.FileSystem.Primitives": "4.0.1",
  2048. "System.Resources.ResourceManager": "4.0.1",
  2049. "System.Runtime": "4.1.0",
  2050. "System.Runtime.Extensions": "4.1.0",
  2051. "System.Runtime.Handles": "4.0.1",
  2052. "System.Runtime.InteropServices": "4.1.0",
  2053. "System.Runtime.Numerics": "4.0.1",
  2054. "System.Security.Cryptography.Algorithms": "4.2.0",
  2055. "System.Security.Cryptography.Cng": "4.2.0",
  2056. "System.Security.Cryptography.Csp": "4.0.0",
  2057. "System.Security.Cryptography.Encoding": "4.0.0",
  2058. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2059. "System.Security.Cryptography.Primitives": "4.0.0",
  2060. "System.Text.Encoding": "4.0.11",
  2061. "System.Threading": "4.0.11",
  2062. "runtime.native.System": "4.0.0",
  2063. "runtime.native.System.Net.Http": "4.0.1",
  2064. "runtime.native.System.Security.Cryptography": "4.0.0"
  2065. },
  2066. "compile": {
  2067. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2068. },
  2069. "runtimeTargets": {
  2070. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2071. "assetType": "runtime",
  2072. "rid": "unix"
  2073. },
  2074. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2075. "assetType": "runtime",
  2076. "rid": "win"
  2077. }
  2078. }
  2079. },
  2080. "System.Security.Permissions/5.0.0": {
  2081. "type": "package",
  2082. "dependencies": {
  2083. "System.Security.AccessControl": "5.0.0",
  2084. "System.Windows.Extensions": "5.0.0"
  2085. },
  2086. "compile": {
  2087. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2088. },
  2089. "runtime": {
  2090. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2091. }
  2092. },
  2093. "System.Security.Principal.Windows/5.0.0": {
  2094. "type": "package",
  2095. "compile": {
  2096. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2097. },
  2098. "runtime": {
  2099. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2100. },
  2101. "runtimeTargets": {
  2102. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2103. "assetType": "runtime",
  2104. "rid": "unix"
  2105. },
  2106. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2107. "assetType": "runtime",
  2108. "rid": "win"
  2109. }
  2110. }
  2111. },
  2112. "System.ServiceProcess.ServiceController/5.0.0": {
  2113. "type": "package",
  2114. "dependencies": {
  2115. "System.Diagnostics.EventLog": "5.0.0"
  2116. },
  2117. "compile": {
  2118. "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2119. },
  2120. "runtime": {
  2121. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
  2122. },
  2123. "runtimeTargets": {
  2124. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2125. "assetType": "runtime",
  2126. "rid": "win"
  2127. }
  2128. }
  2129. },
  2130. "System.Text.Encoding/4.3.0": {
  2131. "type": "package",
  2132. "dependencies": {
  2133. "Microsoft.NETCore.Platforms": "1.1.0",
  2134. "Microsoft.NETCore.Targets": "1.1.0",
  2135. "System.Runtime": "4.3.0"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2139. }
  2140. },
  2141. "System.Text.Encoding.CodePages/4.5.1": {
  2142. "type": "package",
  2143. "dependencies": {
  2144. "Microsoft.NETCore.Platforms": "2.1.2",
  2145. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2146. },
  2147. "compile": {
  2148. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2149. },
  2150. "runtime": {
  2151. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2152. },
  2153. "runtimeTargets": {
  2154. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2155. "assetType": "runtime",
  2156. "rid": "win"
  2157. }
  2158. }
  2159. },
  2160. "System.Text.Encoding.Extensions/4.0.11": {
  2161. "type": "package",
  2162. "dependencies": {
  2163. "Microsoft.NETCore.Platforms": "1.0.1",
  2164. "Microsoft.NETCore.Targets": "1.0.1",
  2165. "System.Runtime": "4.1.0",
  2166. "System.Text.Encoding": "4.0.11"
  2167. },
  2168. "compile": {
  2169. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2170. }
  2171. },
  2172. "System.Text.Json/5.0.0": {
  2173. "type": "package",
  2174. "compile": {
  2175. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2176. },
  2177. "runtime": {
  2178. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2179. }
  2180. },
  2181. "System.Text.RegularExpressions/4.1.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "System.Collections": "4.0.11",
  2185. "System.Globalization": "4.0.11",
  2186. "System.Resources.ResourceManager": "4.0.1",
  2187. "System.Runtime": "4.1.0",
  2188. "System.Runtime.Extensions": "4.1.0",
  2189. "System.Threading": "4.0.11"
  2190. },
  2191. "compile": {
  2192. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2193. },
  2194. "runtime": {
  2195. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2196. }
  2197. },
  2198. "System.Threading/4.0.11": {
  2199. "type": "package",
  2200. "dependencies": {
  2201. "System.Runtime": "4.1.0",
  2202. "System.Threading.Tasks": "4.0.11"
  2203. },
  2204. "compile": {
  2205. "ref/netstandard1.3/System.Threading.dll": {}
  2206. },
  2207. "runtime": {
  2208. "lib/netstandard1.3/System.Threading.dll": {}
  2209. }
  2210. },
  2211. "System.Threading.Tasks/4.3.0": {
  2212. "type": "package",
  2213. "dependencies": {
  2214. "Microsoft.NETCore.Platforms": "1.1.0",
  2215. "Microsoft.NETCore.Targets": "1.1.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2220. }
  2221. },
  2222. "System.Threading.Tasks.Extensions/4.0.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "System.Collections": "4.0.11",
  2226. "System.Runtime": "4.1.0",
  2227. "System.Threading.Tasks": "4.0.11"
  2228. },
  2229. "compile": {
  2230. "lib/netstandard1.0/_._": {}
  2231. },
  2232. "runtime": {
  2233. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2234. }
  2235. },
  2236. "System.Threading.Thread/4.0.0": {
  2237. "type": "package",
  2238. "dependencies": {
  2239. "System.Runtime": "4.1.0"
  2240. },
  2241. "compile": {
  2242. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2246. }
  2247. },
  2248. "System.Threading.ThreadPool/4.0.10": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "System.Runtime": "4.1.0",
  2252. "System.Runtime.Handles": "4.0.1"
  2253. },
  2254. "compile": {
  2255. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2256. },
  2257. "runtime": {
  2258. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2259. }
  2260. },
  2261. "System.Threading.Timer/4.0.1": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "Microsoft.NETCore.Platforms": "1.0.1",
  2265. "Microsoft.NETCore.Targets": "1.0.1",
  2266. "System.Runtime": "4.1.0"
  2267. },
  2268. "compile": {
  2269. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2270. }
  2271. },
  2272. "System.Windows.Extensions/5.0.0": {
  2273. "type": "package",
  2274. "dependencies": {
  2275. "System.Drawing.Common": "5.0.0"
  2276. },
  2277. "compile": {
  2278. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2279. },
  2280. "runtime": {
  2281. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2282. },
  2283. "runtimeTargets": {
  2284. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2285. "assetType": "runtime",
  2286. "rid": "win"
  2287. }
  2288. }
  2289. },
  2290. "System.Xml.ReaderWriter/4.0.11": {
  2291. "type": "package",
  2292. "dependencies": {
  2293. "System.Collections": "4.0.11",
  2294. "System.Diagnostics.Debug": "4.0.11",
  2295. "System.Globalization": "4.0.11",
  2296. "System.IO": "4.1.0",
  2297. "System.IO.FileSystem": "4.0.1",
  2298. "System.IO.FileSystem.Primitives": "4.0.1",
  2299. "System.Resources.ResourceManager": "4.0.1",
  2300. "System.Runtime": "4.1.0",
  2301. "System.Runtime.Extensions": "4.1.0",
  2302. "System.Runtime.InteropServices": "4.1.0",
  2303. "System.Text.Encoding": "4.0.11",
  2304. "System.Text.Encoding.Extensions": "4.0.11",
  2305. "System.Text.RegularExpressions": "4.1.0",
  2306. "System.Threading.Tasks": "4.0.11",
  2307. "System.Threading.Tasks.Extensions": "4.0.0"
  2308. },
  2309. "compile": {
  2310. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2314. }
  2315. },
  2316. "System.Xml.XDocument/4.0.11": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "System.Collections": "4.0.11",
  2320. "System.Diagnostics.Debug": "4.0.11",
  2321. "System.Diagnostics.Tools": "4.0.1",
  2322. "System.Globalization": "4.0.11",
  2323. "System.IO": "4.1.0",
  2324. "System.Reflection": "4.1.0",
  2325. "System.Resources.ResourceManager": "4.0.1",
  2326. "System.Runtime": "4.1.0",
  2327. "System.Runtime.Extensions": "4.1.0",
  2328. "System.Text.Encoding": "4.0.11",
  2329. "System.Threading": "4.0.11",
  2330. "System.Xml.ReaderWriter": "4.0.11"
  2331. },
  2332. "compile": {
  2333. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2334. },
  2335. "runtime": {
  2336. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2337. }
  2338. },
  2339. "System.Xml.XmlDocument/4.0.1": {
  2340. "type": "package",
  2341. "dependencies": {
  2342. "System.Collections": "4.0.11",
  2343. "System.Diagnostics.Debug": "4.0.11",
  2344. "System.Globalization": "4.0.11",
  2345. "System.IO": "4.1.0",
  2346. "System.Resources.ResourceManager": "4.0.1",
  2347. "System.Runtime": "4.1.0",
  2348. "System.Runtime.Extensions": "4.1.0",
  2349. "System.Text.Encoding": "4.0.11",
  2350. "System.Threading": "4.0.11",
  2351. "System.Xml.ReaderWriter": "4.0.11"
  2352. },
  2353. "compile": {
  2354. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2355. },
  2356. "runtime": {
  2357. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2358. }
  2359. },
  2360. "System.Xml.XPath/4.0.1": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "System.Collections": "4.0.11",
  2364. "System.Diagnostics.Debug": "4.0.11",
  2365. "System.Globalization": "4.0.11",
  2366. "System.IO": "4.1.0",
  2367. "System.Resources.ResourceManager": "4.0.1",
  2368. "System.Runtime": "4.1.0",
  2369. "System.Runtime.Extensions": "4.1.0",
  2370. "System.Threading": "4.0.11",
  2371. "System.Xml.ReaderWriter": "4.0.11"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/System.Xml.XPath.dll": {}
  2375. },
  2376. "runtime": {
  2377. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2378. }
  2379. },
  2380. "System.Xml.XPath.XmlDocument/4.0.1": {
  2381. "type": "package",
  2382. "dependencies": {
  2383. "System.Collections": "4.0.11",
  2384. "System.Globalization": "4.0.11",
  2385. "System.IO": "4.1.0",
  2386. "System.Resources.ResourceManager": "4.0.1",
  2387. "System.Runtime": "4.1.0",
  2388. "System.Runtime.Extensions": "4.1.0",
  2389. "System.Threading": "4.0.11",
  2390. "System.Xml.ReaderWriter": "4.0.11",
  2391. "System.Xml.XPath": "4.0.1",
  2392. "System.Xml.XmlDocument": "4.0.1"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2396. },
  2397. "runtime": {
  2398. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2399. }
  2400. }
  2401. }
  2402. },
  2403. "libraries": {
  2404. "AutoMapper/10.1.1": {
  2405. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  2406. "type": "package",
  2407. "path": "automapper/10.1.1",
  2408. "files": [
  2409. ".nupkg.metadata",
  2410. ".signature.p7s",
  2411. "automapper.10.1.1.nupkg.sha512",
  2412. "automapper.nuspec",
  2413. "icon.png",
  2414. "lib/net461/AutoMapper.dll",
  2415. "lib/net461/AutoMapper.xml",
  2416. "lib/netstandard2.0/AutoMapper.dll",
  2417. "lib/netstandard2.0/AutoMapper.xml"
  2418. ]
  2419. },
  2420. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  2421. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  2422. "type": "package",
  2423. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  2424. "files": [
  2425. ".nupkg.metadata",
  2426. ".signature.p7s",
  2427. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  2428. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2429. "icon.png",
  2430. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2431. ]
  2432. },
  2433. "BouncyCastle.NetCore/1.8.3": {
  2434. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  2435. "type": "package",
  2436. "path": "bouncycastle.netcore/1.8.3",
  2437. "files": [
  2438. ".nupkg.metadata",
  2439. ".signature.p7s",
  2440. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  2441. "bouncycastle.netcore.nuspec",
  2442. "lib/Mono/BouncyCastle.Crypto.dll",
  2443. "lib/Mono/BouncyCastle.Crypto.xml",
  2444. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2445. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2446. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2447. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2448. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2449. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2450. "lib/net20/BouncyCastle.Crypto.dll",
  2451. "lib/net20/BouncyCastle.Crypto.xml",
  2452. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  2453. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  2454. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2455. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2456. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2457. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2458. ]
  2459. },
  2460. "Flurl/3.0.2": {
  2461. "sha512": "1/6mqdzGCTdAekbWkVZBTylCV+8g3JUSTXRBngRVR274S+RsAYNRF79GbDoDsPfMKu8VPc9HkQWdBEAncK1PQQ==",
  2462. "type": "package",
  2463. "path": "flurl/3.0.2",
  2464. "files": [
  2465. ".nupkg.metadata",
  2466. ".signature.p7s",
  2467. "flurl.3.0.2.nupkg.sha512",
  2468. "flurl.nuspec",
  2469. "icon.png",
  2470. "lib/net461/Flurl.dll",
  2471. "lib/net461/Flurl.pdb",
  2472. "lib/net461/Flurl.xml",
  2473. "lib/net472/Flurl.dll",
  2474. "lib/net472/Flurl.pdb",
  2475. "lib/net472/Flurl.xml",
  2476. "lib/netstandard2.0/Flurl.dll",
  2477. "lib/netstandard2.0/Flurl.pdb",
  2478. "lib/netstandard2.0/Flurl.xml"
  2479. ]
  2480. },
  2481. "Flurl.Http/3.2.0": {
  2482. "sha512": "5S8YiJm5CyRFO418GG9PDrsgmGEaZJtZLUqk3xqBKrfx7W9eKtOSpeji/GwAL+tSgNTALKBPvBKTaT4S83Oo+w==",
  2483. "type": "package",
  2484. "path": "flurl.http/3.2.0",
  2485. "files": [
  2486. ".nupkg.metadata",
  2487. ".signature.p7s",
  2488. "flurl.http.3.2.0.nupkg.sha512",
  2489. "flurl.http.nuspec",
  2490. "icon.png",
  2491. "lib/net461/Flurl.Http.dll",
  2492. "lib/net461/Flurl.Http.pdb",
  2493. "lib/net461/Flurl.xml",
  2494. "lib/net472/Flurl.Http.dll",
  2495. "lib/net472/Flurl.Http.pdb",
  2496. "lib/net472/Flurl.xml",
  2497. "lib/netstandard2.0/Flurl.Http.dll",
  2498. "lib/netstandard2.0/Flurl.Http.pdb",
  2499. "lib/netstandard2.0/Flurl.xml"
  2500. ]
  2501. },
  2502. "Google.Protobuf/3.11.4": {
  2503. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  2504. "type": "package",
  2505. "path": "google.protobuf/3.11.4",
  2506. "files": [
  2507. ".nupkg.metadata",
  2508. ".signature.p7s",
  2509. "google.protobuf.3.11.4.nupkg.sha512",
  2510. "google.protobuf.nuspec",
  2511. "lib/net45/Google.Protobuf.dll",
  2512. "lib/net45/Google.Protobuf.pdb",
  2513. "lib/net45/Google.Protobuf.xml",
  2514. "lib/netstandard1.0/Google.Protobuf.dll",
  2515. "lib/netstandard1.0/Google.Protobuf.pdb",
  2516. "lib/netstandard1.0/Google.Protobuf.xml",
  2517. "lib/netstandard2.0/Google.Protobuf.dll",
  2518. "lib/netstandard2.0/Google.Protobuf.pdb",
  2519. "lib/netstandard2.0/Google.Protobuf.xml"
  2520. ]
  2521. },
  2522. "K4os.Compression.LZ4/1.1.11": {
  2523. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  2524. "type": "package",
  2525. "path": "k4os.compression.lz4/1.1.11",
  2526. "files": [
  2527. ".nupkg.metadata",
  2528. ".signature.p7s",
  2529. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  2530. "k4os.compression.lz4.nuspec",
  2531. "lib/net45/K4os.Compression.LZ4.dll",
  2532. "lib/net45/K4os.Compression.LZ4.xml",
  2533. "lib/net46/K4os.Compression.LZ4.dll",
  2534. "lib/net46/K4os.Compression.LZ4.xml",
  2535. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2536. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2537. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2538. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2539. ]
  2540. },
  2541. "K4os.Compression.LZ4.Streams/1.1.11": {
  2542. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  2543. "type": "package",
  2544. "path": "k4os.compression.lz4.streams/1.1.11",
  2545. "files": [
  2546. ".nupkg.metadata",
  2547. ".signature.p7s",
  2548. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  2549. "k4os.compression.lz4.streams.nuspec",
  2550. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2551. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2552. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2553. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2554. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2555. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2556. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2557. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  2558. ]
  2559. },
  2560. "K4os.Hash.xxHash/1.0.6": {
  2561. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2562. "type": "package",
  2563. "path": "k4os.hash.xxhash/1.0.6",
  2564. "files": [
  2565. ".nupkg.metadata",
  2566. ".signature.p7s",
  2567. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2568. "k4os.hash.xxhash.nuspec",
  2569. "lib/net45/K4os.Hash.xxHash.dll",
  2570. "lib/net45/K4os.Hash.xxHash.xml",
  2571. "lib/net46/K4os.Hash.xxHash.dll",
  2572. "lib/net46/K4os.Hash.xxHash.xml",
  2573. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2574. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2575. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2576. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2577. ]
  2578. },
  2579. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2580. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  2581. "type": "package",
  2582. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  2583. "files": [
  2584. ".nupkg.metadata",
  2585. ".signature.p7s",
  2586. "LICENSE.TXT",
  2587. "THIRD-PARTY-NOTICES.TXT",
  2588. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2589. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2590. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2591. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2592. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2593. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2594. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  2595. "microsoft.bcl.asyncinterfaces.nuspec",
  2596. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2597. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2598. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2599. "useSharedDesignerContext.txt",
  2600. "version.txt"
  2601. ]
  2602. },
  2603. "Microsoft.Bcl.HashCode/1.1.0": {
  2604. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  2605. "type": "package",
  2606. "path": "microsoft.bcl.hashcode/1.1.0",
  2607. "files": [
  2608. ".nupkg.metadata",
  2609. ".signature.p7s",
  2610. "LICENSE.TXT",
  2611. "THIRD-PARTY-NOTICES.TXT",
  2612. "lib/net461/Microsoft.Bcl.HashCode.dll",
  2613. "lib/net461/Microsoft.Bcl.HashCode.xml",
  2614. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2615. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  2616. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2617. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  2618. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2619. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  2620. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  2621. "microsoft.bcl.hashcode.nuspec",
  2622. "ref/net461/Microsoft.Bcl.HashCode.dll",
  2623. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2624. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2625. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2626. "useSharedDesignerContext.txt",
  2627. "version.txt"
  2628. ]
  2629. },
  2630. "Microsoft.CSharp/4.7.0": {
  2631. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2632. "type": "package",
  2633. "path": "microsoft.csharp/4.7.0",
  2634. "files": [
  2635. ".nupkg.metadata",
  2636. ".signature.p7s",
  2637. "LICENSE.TXT",
  2638. "THIRD-PARTY-NOTICES.TXT",
  2639. "lib/MonoAndroid10/_._",
  2640. "lib/MonoTouch10/_._",
  2641. "lib/net45/_._",
  2642. "lib/netcore50/Microsoft.CSharp.dll",
  2643. "lib/netcoreapp2.0/_._",
  2644. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2645. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2646. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2647. "lib/portable-net45+win8+wp8+wpa81/_._",
  2648. "lib/uap10.0.16299/_._",
  2649. "lib/win8/_._",
  2650. "lib/wp80/_._",
  2651. "lib/wpa81/_._",
  2652. "lib/xamarinios10/_._",
  2653. "lib/xamarinmac20/_._",
  2654. "lib/xamarintvos10/_._",
  2655. "lib/xamarinwatchos10/_._",
  2656. "microsoft.csharp.4.7.0.nupkg.sha512",
  2657. "microsoft.csharp.nuspec",
  2658. "ref/MonoAndroid10/_._",
  2659. "ref/MonoTouch10/_._",
  2660. "ref/net45/_._",
  2661. "ref/netcore50/Microsoft.CSharp.dll",
  2662. "ref/netcore50/Microsoft.CSharp.xml",
  2663. "ref/netcore50/de/Microsoft.CSharp.xml",
  2664. "ref/netcore50/es/Microsoft.CSharp.xml",
  2665. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2666. "ref/netcore50/it/Microsoft.CSharp.xml",
  2667. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2668. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2669. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2670. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2671. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2672. "ref/netcoreapp2.0/_._",
  2673. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2674. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2675. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2676. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2677. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2678. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2679. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2680. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2681. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2682. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2683. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2684. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2685. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2686. "ref/portable-net45+win8+wp8+wpa81/_._",
  2687. "ref/uap10.0.16299/_._",
  2688. "ref/win8/_._",
  2689. "ref/wp80/_._",
  2690. "ref/wpa81/_._",
  2691. "ref/xamarinios10/_._",
  2692. "ref/xamarinmac20/_._",
  2693. "ref/xamarintvos10/_._",
  2694. "ref/xamarinwatchos10/_._",
  2695. "useSharedDesignerContext.txt",
  2696. "version.txt"
  2697. ]
  2698. },
  2699. "Microsoft.EntityFrameworkCore/3.1.1": {
  2700. "sha512": "RtDC52x7p57sG5ajCisHSRXjqQvtJgR0wUufXWNPDZCjvoqgQcbftWdh2+ogDJ5V58Qf9uhfJQSNXr0qQ597xQ==",
  2701. "type": "package",
  2702. "path": "microsoft.entityframeworkcore/3.1.1",
  2703. "files": [
  2704. ".nupkg.metadata",
  2705. ".signature.p7s",
  2706. "Icon.png",
  2707. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  2708. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  2709. "microsoft.entityframeworkcore.3.1.1.nupkg.sha512",
  2710. "microsoft.entityframeworkcore.nuspec"
  2711. ]
  2712. },
  2713. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  2714. "sha512": "X7aqgBUGmEOhDa/PKiyTGW8NDvuMk/nbxclGsZcWbrNgwanprNq4ZZOSEL4yCNFhUY4pYFnWSwnsZcKZlEttzQ==",
  2715. "type": "package",
  2716. "path": "microsoft.entityframeworkcore.abstractions/3.1.1",
  2717. "files": [
  2718. ".nupkg.metadata",
  2719. ".signature.p7s",
  2720. "Icon.png",
  2721. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2722. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2723. "microsoft.entityframeworkcore.abstractions.3.1.1.nupkg.sha512",
  2724. "microsoft.entityframeworkcore.abstractions.nuspec"
  2725. ]
  2726. },
  2727. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  2728. "sha512": "PrB8QZih5QMRhVjXZnwpFtgm14KU2M0ewilUIQ6W/qS7ugFBSlr1vaug2XnSdd2ODyZioc7Yypp4WNfaBIQg5Q==",
  2729. "type": "package",
  2730. "path": "microsoft.entityframeworkcore.analyzers/3.1.1",
  2731. "files": [
  2732. ".nupkg.metadata",
  2733. ".signature.p7s",
  2734. "Icon.png",
  2735. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2736. "lib/netstandard2.0/_._",
  2737. "microsoft.entityframeworkcore.analyzers.3.1.1.nupkg.sha512",
  2738. "microsoft.entityframeworkcore.analyzers.nuspec"
  2739. ]
  2740. },
  2741. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  2742. "sha512": "iBt59oeV97kqI6ZkdSpnUV1cC+hCGf5xqot331waiF5d5sxksLJZghkUZOLpe4yuPg3mnngXD6bPqMsLa4II5g==",
  2743. "type": "package",
  2744. "path": "microsoft.entityframeworkcore.relational/3.1.1",
  2745. "files": [
  2746. ".nupkg.metadata",
  2747. ".signature.p7s",
  2748. "Icon.png",
  2749. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2750. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2751. "microsoft.entityframeworkcore.relational.3.1.1.nupkg.sha512",
  2752. "microsoft.entityframeworkcore.relational.nuspec"
  2753. ]
  2754. },
  2755. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  2756. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  2757. "type": "package",
  2758. "path": "microsoft.extensions.apidescription.server/3.0.0",
  2759. "hasTools": true,
  2760. "files": [
  2761. ".nupkg.metadata",
  2762. ".signature.p7s",
  2763. "build/Microsoft.Extensions.ApiDescription.Server.props",
  2764. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  2765. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  2766. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  2767. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  2768. "microsoft.extensions.apidescription.server.nuspec",
  2769. "tools/Newtonsoft.Json.dll",
  2770. "tools/dotnet-getdocument.deps.json",
  2771. "tools/dotnet-getdocument.dll",
  2772. "tools/dotnet-getdocument.runtimeconfig.json",
  2773. "tools/net461-x86/GetDocument.Insider.exe",
  2774. "tools/net461-x86/GetDocument.Insider.exe.config",
  2775. "tools/net461/GetDocument.Insider.exe",
  2776. "tools/net461/GetDocument.Insider.exe.config",
  2777. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  2778. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  2779. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  2780. ]
  2781. },
  2782. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  2783. "sha512": "lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==",
  2784. "type": "package",
  2785. "path": "microsoft.extensions.caching.abstractions/3.1.1",
  2786. "files": [
  2787. ".nupkg.metadata",
  2788. ".signature.p7s",
  2789. "Icon.png",
  2790. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  2791. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  2792. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2793. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2794. "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512",
  2795. "microsoft.extensions.caching.abstractions.nuspec"
  2796. ]
  2797. },
  2798. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  2799. "sha512": "eXKFU6dmz+0EzhlGkVnIJsG8yUIMgSdWRqSN2zLO5IhATJu4JWgUU5vYuRO/HYMCwq8aodK6lVWN7itQXwonkQ==",
  2800. "type": "package",
  2801. "path": "microsoft.extensions.caching.memory/3.1.1",
  2802. "files": [
  2803. ".nupkg.metadata",
  2804. ".signature.p7s",
  2805. "Icon.png",
  2806. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  2807. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  2808. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2809. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2810. "microsoft.extensions.caching.memory.3.1.1.nupkg.sha512",
  2811. "microsoft.extensions.caching.memory.nuspec"
  2812. ]
  2813. },
  2814. "Microsoft.Extensions.Configuration/5.0.0": {
  2815. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  2816. "type": "package",
  2817. "path": "microsoft.extensions.configuration/5.0.0",
  2818. "files": [
  2819. ".nupkg.metadata",
  2820. ".signature.p7s",
  2821. "Icon.png",
  2822. "LICENSE.TXT",
  2823. "THIRD-PARTY-NOTICES.TXT",
  2824. "lib/net461/Microsoft.Extensions.Configuration.dll",
  2825. "lib/net461/Microsoft.Extensions.Configuration.xml",
  2826. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  2827. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  2828. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  2829. "microsoft.extensions.configuration.nuspec",
  2830. "useSharedDesignerContext.txt",
  2831. "version.txt"
  2832. ]
  2833. },
  2834. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  2835. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  2836. "type": "package",
  2837. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  2838. "files": [
  2839. ".nupkg.metadata",
  2840. ".signature.p7s",
  2841. "Icon.png",
  2842. "LICENSE.TXT",
  2843. "THIRD-PARTY-NOTICES.TXT",
  2844. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  2845. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  2846. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2847. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2848. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  2849. "microsoft.extensions.configuration.abstractions.nuspec",
  2850. "useSharedDesignerContext.txt",
  2851. "version.txt"
  2852. ]
  2853. },
  2854. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  2855. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  2856. "type": "package",
  2857. "path": "microsoft.extensions.configuration.binder/5.0.0",
  2858. "files": [
  2859. ".nupkg.metadata",
  2860. ".signature.p7s",
  2861. "Icon.png",
  2862. "LICENSE.TXT",
  2863. "THIRD-PARTY-NOTICES.TXT",
  2864. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  2865. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  2866. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  2867. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  2868. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  2869. "microsoft.extensions.configuration.binder.nuspec",
  2870. "useSharedDesignerContext.txt",
  2871. "version.txt"
  2872. ]
  2873. },
  2874. "Microsoft.Extensions.Configuration.CommandLine/5.0.0": {
  2875. "sha512": "OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==",
  2876. "type": "package",
  2877. "path": "microsoft.extensions.configuration.commandline/5.0.0",
  2878. "files": [
  2879. ".nupkg.metadata",
  2880. ".signature.p7s",
  2881. "Icon.png",
  2882. "LICENSE.TXT",
  2883. "THIRD-PARTY-NOTICES.TXT",
  2884. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  2885. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  2886. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  2887. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  2888. "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512",
  2889. "microsoft.extensions.configuration.commandline.nuspec",
  2890. "useSharedDesignerContext.txt",
  2891. "version.txt"
  2892. ]
  2893. },
  2894. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": {
  2895. "sha512": "fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==",
  2896. "type": "package",
  2897. "path": "microsoft.extensions.configuration.environmentvariables/5.0.0",
  2898. "files": [
  2899. ".nupkg.metadata",
  2900. ".signature.p7s",
  2901. "Icon.png",
  2902. "LICENSE.TXT",
  2903. "THIRD-PARTY-NOTICES.TXT",
  2904. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  2905. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  2906. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  2907. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  2908. "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512",
  2909. "microsoft.extensions.configuration.environmentvariables.nuspec",
  2910. "useSharedDesignerContext.txt",
  2911. "version.txt"
  2912. ]
  2913. },
  2914. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  2915. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  2916. "type": "package",
  2917. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  2918. "files": [
  2919. ".nupkg.metadata",
  2920. ".signature.p7s",
  2921. "Icon.png",
  2922. "LICENSE.TXT",
  2923. "THIRD-PARTY-NOTICES.TXT",
  2924. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2925. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2926. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2927. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2928. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  2929. "microsoft.extensions.configuration.fileextensions.nuspec",
  2930. "useSharedDesignerContext.txt",
  2931. "version.txt"
  2932. ]
  2933. },
  2934. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  2935. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  2936. "type": "package",
  2937. "path": "microsoft.extensions.configuration.json/5.0.0",
  2938. "files": [
  2939. ".nupkg.metadata",
  2940. ".signature.p7s",
  2941. "Icon.png",
  2942. "LICENSE.TXT",
  2943. "THIRD-PARTY-NOTICES.TXT",
  2944. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  2945. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  2946. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  2947. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  2948. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  2949. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  2950. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  2951. "microsoft.extensions.configuration.json.nuspec",
  2952. "useSharedDesignerContext.txt",
  2953. "version.txt"
  2954. ]
  2955. },
  2956. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0": {
  2957. "sha512": "+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==",
  2958. "type": "package",
  2959. "path": "microsoft.extensions.configuration.usersecrets/5.0.0",
  2960. "files": [
  2961. ".nupkg.metadata",
  2962. ".signature.p7s",
  2963. "Icon.png",
  2964. "LICENSE.TXT",
  2965. "THIRD-PARTY-NOTICES.TXT",
  2966. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  2967. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  2968. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  2969. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  2970. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  2971. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  2972. "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512",
  2973. "microsoft.extensions.configuration.usersecrets.nuspec",
  2974. "useSharedDesignerContext.txt",
  2975. "version.txt"
  2976. ]
  2977. },
  2978. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  2979. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  2980. "type": "package",
  2981. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  2982. "files": [
  2983. ".nupkg.metadata",
  2984. ".signature.p7s",
  2985. "Icon.png",
  2986. "LICENSE.TXT",
  2987. "THIRD-PARTY-NOTICES.TXT",
  2988. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2989. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2990. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  2991. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  2992. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2993. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2994. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2995. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2996. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  2997. "microsoft.extensions.dependencyinjection.nuspec",
  2998. "useSharedDesignerContext.txt",
  2999. "version.txt"
  3000. ]
  3001. },
  3002. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3003. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3004. "type": "package",
  3005. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3006. "files": [
  3007. ".nupkg.metadata",
  3008. ".signature.p7s",
  3009. "Icon.png",
  3010. "LICENSE.TXT",
  3011. "THIRD-PARTY-NOTICES.TXT",
  3012. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3013. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3014. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3015. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3016. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3017. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3018. "useSharedDesignerContext.txt",
  3019. "version.txt"
  3020. ]
  3021. },
  3022. "Microsoft.Extensions.DependencyModel/3.1.6": {
  3023. "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==",
  3024. "type": "package",
  3025. "path": "microsoft.extensions.dependencymodel/3.1.6",
  3026. "files": [
  3027. ".nupkg.metadata",
  3028. ".signature.p7s",
  3029. "Icon.png",
  3030. "LICENSE.TXT",
  3031. "THIRD-PARTY-NOTICES.TXT",
  3032. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  3033. "lib/net451/Microsoft.Extensions.DependencyModel.xml",
  3034. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  3035. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml",
  3036. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  3037. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml",
  3038. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3039. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3040. "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512",
  3041. "microsoft.extensions.dependencymodel.nuspec"
  3042. ]
  3043. },
  3044. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3045. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3046. "type": "package",
  3047. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3048. "files": [
  3049. ".nupkg.metadata",
  3050. ".signature.p7s",
  3051. "Icon.png",
  3052. "LICENSE.TXT",
  3053. "THIRD-PARTY-NOTICES.TXT",
  3054. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3055. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3056. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3057. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3058. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3059. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3060. "useSharedDesignerContext.txt",
  3061. "version.txt"
  3062. ]
  3063. },
  3064. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3065. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3066. "type": "package",
  3067. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3068. "files": [
  3069. ".nupkg.metadata",
  3070. ".signature.p7s",
  3071. "Icon.png",
  3072. "LICENSE.TXT",
  3073. "THIRD-PARTY-NOTICES.TXT",
  3074. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3075. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3076. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3077. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3078. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3079. "microsoft.extensions.fileproviders.physical.nuspec",
  3080. "useSharedDesignerContext.txt",
  3081. "version.txt"
  3082. ]
  3083. },
  3084. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3085. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3086. "type": "package",
  3087. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3088. "files": [
  3089. ".nupkg.metadata",
  3090. ".signature.p7s",
  3091. "Icon.png",
  3092. "LICENSE.TXT",
  3093. "THIRD-PARTY-NOTICES.TXT",
  3094. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3095. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3096. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3097. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3098. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3099. "microsoft.extensions.filesystemglobbing.nuspec",
  3100. "useSharedDesignerContext.txt",
  3101. "version.txt"
  3102. ]
  3103. },
  3104. "Microsoft.Extensions.Hosting/5.0.0": {
  3105. "sha512": "hiokSU1TOVfcqpQAnpiOzP2rE9p+niq92g5yeAnwlbSrUlIdIS6M8emCknZvhdOagQA9x5YWNwe1n0kFUwE0NQ==",
  3106. "type": "package",
  3107. "path": "microsoft.extensions.hosting/5.0.0",
  3108. "files": [
  3109. ".nupkg.metadata",
  3110. ".signature.p7s",
  3111. "Icon.png",
  3112. "LICENSE.TXT",
  3113. "THIRD-PARTY-NOTICES.TXT",
  3114. "lib/net461/Microsoft.Extensions.Hosting.dll",
  3115. "lib/net461/Microsoft.Extensions.Hosting.xml",
  3116. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  3117. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  3118. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  3119. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  3120. "microsoft.extensions.hosting.5.0.0.nupkg.sha512",
  3121. "microsoft.extensions.hosting.nuspec",
  3122. "useSharedDesignerContext.txt",
  3123. "version.txt"
  3124. ]
  3125. },
  3126. "Microsoft.Extensions.Hosting.Abstractions/5.0.0": {
  3127. "sha512": "cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==",
  3128. "type": "package",
  3129. "path": "microsoft.extensions.hosting.abstractions/5.0.0",
  3130. "files": [
  3131. ".nupkg.metadata",
  3132. ".signature.p7s",
  3133. "Icon.png",
  3134. "LICENSE.TXT",
  3135. "THIRD-PARTY-NOTICES.TXT",
  3136. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  3137. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  3138. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3139. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3140. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3141. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3142. "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512",
  3143. "microsoft.extensions.hosting.abstractions.nuspec",
  3144. "useSharedDesignerContext.txt",
  3145. "version.txt"
  3146. ]
  3147. },
  3148. "Microsoft.Extensions.Hosting.WindowsServices/5.0.1": {
  3149. "sha512": "xtIf7KkcLMvYoxoW8pokCgIMXeYYGBbrJmuABgQaOc0sylYmSicfdq1Ua/9cRhcTRzWKLWXJRVADDR00ID+GYw==",
  3150. "type": "package",
  3151. "path": "microsoft.extensions.hosting.windowsservices/5.0.1",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "Icon.png",
  3156. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3157. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3158. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll",
  3159. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml",
  3160. "microsoft.extensions.hosting.windowsservices.5.0.1.nupkg.sha512",
  3161. "microsoft.extensions.hosting.windowsservices.nuspec"
  3162. ]
  3163. },
  3164. "Microsoft.Extensions.Logging/5.0.0": {
  3165. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3166. "type": "package",
  3167. "path": "microsoft.extensions.logging/5.0.0",
  3168. "files": [
  3169. ".nupkg.metadata",
  3170. ".signature.p7s",
  3171. "Icon.png",
  3172. "LICENSE.TXT",
  3173. "THIRD-PARTY-NOTICES.TXT",
  3174. "lib/net461/Microsoft.Extensions.Logging.dll",
  3175. "lib/net461/Microsoft.Extensions.Logging.xml",
  3176. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3177. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3178. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3179. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3180. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3181. "microsoft.extensions.logging.nuspec",
  3182. "useSharedDesignerContext.txt",
  3183. "version.txt"
  3184. ]
  3185. },
  3186. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3187. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3188. "type": "package",
  3189. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  3190. "files": [
  3191. ".nupkg.metadata",
  3192. ".signature.p7s",
  3193. "Icon.png",
  3194. "LICENSE.TXT",
  3195. "THIRD-PARTY-NOTICES.TXT",
  3196. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3197. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3198. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3199. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3200. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  3201. "microsoft.extensions.logging.abstractions.nuspec",
  3202. "useSharedDesignerContext.txt",
  3203. "version.txt"
  3204. ]
  3205. },
  3206. "Microsoft.Extensions.Logging.Configuration/5.0.0": {
  3207. "sha512": "N3/d0HeMRnBekadbZlmbp+In8EvNNkQHSdbtRzjrGVckdZWpYs5GNrAfaYqVplDFW0WUedSaFJ3khB50BWYGsw==",
  3208. "type": "package",
  3209. "path": "microsoft.extensions.logging.configuration/5.0.0",
  3210. "files": [
  3211. ".nupkg.metadata",
  3212. ".signature.p7s",
  3213. "Icon.png",
  3214. "LICENSE.TXT",
  3215. "THIRD-PARTY-NOTICES.TXT",
  3216. "lib/net461/Microsoft.Extensions.Logging.Configuration.dll",
  3217. "lib/net461/Microsoft.Extensions.Logging.Configuration.xml",
  3218. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  3219. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  3220. "microsoft.extensions.logging.configuration.5.0.0.nupkg.sha512",
  3221. "microsoft.extensions.logging.configuration.nuspec",
  3222. "useSharedDesignerContext.txt",
  3223. "version.txt"
  3224. ]
  3225. },
  3226. "Microsoft.Extensions.Logging.Console/5.0.0": {
  3227. "sha512": "jH0wbWhfvXjOVmCkbra4vbiovDtTUIWLQjCeJ7Xun3h4AHvwfzm7V7wlsXKs3tNnPrsCxZ9oaV0vUAgGY1JxOA==",
  3228. "type": "package",
  3229. "path": "microsoft.extensions.logging.console/5.0.0",
  3230. "files": [
  3231. ".nupkg.metadata",
  3232. ".signature.p7s",
  3233. "Icon.png",
  3234. "LICENSE.TXT",
  3235. "THIRD-PARTY-NOTICES.TXT",
  3236. "lib/net461/Microsoft.Extensions.Logging.Console.dll",
  3237. "lib/net461/Microsoft.Extensions.Logging.Console.xml",
  3238. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.dll",
  3239. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.Console.xml",
  3240. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  3241. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  3242. "microsoft.extensions.logging.console.5.0.0.nupkg.sha512",
  3243. "microsoft.extensions.logging.console.nuspec",
  3244. "useSharedDesignerContext.txt",
  3245. "version.txt"
  3246. ]
  3247. },
  3248. "Microsoft.Extensions.Logging.Debug/5.0.0": {
  3249. "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
  3250. "type": "package",
  3251. "path": "microsoft.extensions.logging.debug/5.0.0",
  3252. "files": [
  3253. ".nupkg.metadata",
  3254. ".signature.p7s",
  3255. "Icon.png",
  3256. "LICENSE.TXT",
  3257. "THIRD-PARTY-NOTICES.TXT",
  3258. "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
  3259. "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
  3260. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  3261. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  3262. "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
  3263. "microsoft.extensions.logging.debug.nuspec",
  3264. "useSharedDesignerContext.txt",
  3265. "version.txt"
  3266. ]
  3267. },
  3268. "Microsoft.Extensions.Logging.EventLog/5.0.0": {
  3269. "sha512": "CYzsgF2lqgahGl/HuErsIDaZZ9ueN+MBjGfO/0jVDLPaXLaywxlGKFpDgXMaB053DRYZwD1H2Lb1I60mTXS3jg==",
  3270. "type": "package",
  3271. "path": "microsoft.extensions.logging.eventlog/5.0.0",
  3272. "files": [
  3273. ".nupkg.metadata",
  3274. ".signature.p7s",
  3275. "Icon.png",
  3276. "LICENSE.TXT",
  3277. "THIRD-PARTY-NOTICES.TXT",
  3278. "lib/net461/Microsoft.Extensions.Logging.EventLog.dll",
  3279. "lib/net461/Microsoft.Extensions.Logging.EventLog.xml",
  3280. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  3281. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  3282. "microsoft.extensions.logging.eventlog.5.0.0.nupkg.sha512",
  3283. "microsoft.extensions.logging.eventlog.nuspec",
  3284. "useSharedDesignerContext.txt",
  3285. "version.txt"
  3286. ]
  3287. },
  3288. "Microsoft.Extensions.Logging.EventSource/5.0.0": {
  3289. "sha512": "hF+D6PJkrM0qXcSEGs1BwZwgP8c0BRkj26P/5wmYTcHKOp52GRey/Z/YKRmRIHIrXxj9tz/JgIjU9oWmiJ5HMw==",
  3290. "type": "package",
  3291. "path": "microsoft.extensions.logging.eventsource/5.0.0",
  3292. "files": [
  3293. ".nupkg.metadata",
  3294. ".signature.p7s",
  3295. "Icon.png",
  3296. "LICENSE.TXT",
  3297. "THIRD-PARTY-NOTICES.TXT",
  3298. "lib/net461/Microsoft.Extensions.Logging.EventSource.dll",
  3299. "lib/net461/Microsoft.Extensions.Logging.EventSource.xml",
  3300. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.dll",
  3301. "lib/netcoreapp3.0/Microsoft.Extensions.Logging.EventSource.xml",
  3302. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  3303. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  3304. "microsoft.extensions.logging.eventsource.5.0.0.nupkg.sha512",
  3305. "microsoft.extensions.logging.eventsource.nuspec",
  3306. "useSharedDesignerContext.txt",
  3307. "version.txt"
  3308. ]
  3309. },
  3310. "Microsoft.Extensions.Options/5.0.0": {
  3311. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  3312. "type": "package",
  3313. "path": "microsoft.extensions.options/5.0.0",
  3314. "files": [
  3315. ".nupkg.metadata",
  3316. ".signature.p7s",
  3317. "Icon.png",
  3318. "LICENSE.TXT",
  3319. "THIRD-PARTY-NOTICES.TXT",
  3320. "lib/net461/Microsoft.Extensions.Options.dll",
  3321. "lib/net461/Microsoft.Extensions.Options.xml",
  3322. "lib/net5.0/Microsoft.Extensions.Options.dll",
  3323. "lib/net5.0/Microsoft.Extensions.Options.xml",
  3324. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3325. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3326. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  3327. "microsoft.extensions.options.nuspec",
  3328. "useSharedDesignerContext.txt",
  3329. "version.txt"
  3330. ]
  3331. },
  3332. "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": {
  3333. "sha512": "280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==",
  3334. "type": "package",
  3335. "path": "microsoft.extensions.options.configurationextensions/5.0.0",
  3336. "files": [
  3337. ".nupkg.metadata",
  3338. ".signature.p7s",
  3339. "Icon.png",
  3340. "LICENSE.TXT",
  3341. "THIRD-PARTY-NOTICES.TXT",
  3342. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3343. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3344. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3345. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3346. "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512",
  3347. "microsoft.extensions.options.configurationextensions.nuspec",
  3348. "useSharedDesignerContext.txt",
  3349. "version.txt"
  3350. ]
  3351. },
  3352. "Microsoft.Extensions.Primitives/5.0.0": {
  3353. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  3354. "type": "package",
  3355. "path": "microsoft.extensions.primitives/5.0.0",
  3356. "files": [
  3357. ".nupkg.metadata",
  3358. ".signature.p7s",
  3359. "Icon.png",
  3360. "LICENSE.TXT",
  3361. "THIRD-PARTY-NOTICES.TXT",
  3362. "lib/net461/Microsoft.Extensions.Primitives.dll",
  3363. "lib/net461/Microsoft.Extensions.Primitives.xml",
  3364. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  3365. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  3366. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3367. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3368. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  3369. "microsoft.extensions.primitives.nuspec",
  3370. "useSharedDesignerContext.txt",
  3371. "version.txt"
  3372. ]
  3373. },
  3374. "Microsoft.IdentityModel.JsonWebTokens/6.11.0": {
  3375. "sha512": "qSLfRLk19E1+Gt2gdPzp5Y4YAlXi1KueXpMJpt0qug6h4PtxbnGnxFBM6bdCIJqoN75LTPztqKdpjla2NIltmA==",
  3376. "type": "package",
  3377. "path": "microsoft.identitymodel.jsonwebtokens/6.11.0",
  3378. "files": [
  3379. ".nupkg.metadata",
  3380. ".signature.p7s",
  3381. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3382. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3383. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3384. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3385. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3386. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3387. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3388. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3389. "microsoft.identitymodel.jsonwebtokens.6.11.0.nupkg.sha512",
  3390. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3391. ]
  3392. },
  3393. "Microsoft.IdentityModel.Logging/6.11.0": {
  3394. "sha512": "81votFg2SzidAB8frGlDV+jCCzfBWWtnKASZTddAziHuB8fT/82s1x7Kty+u01XKtKcrPdfpvbWrIUHdc/C9pw==",
  3395. "type": "package",
  3396. "path": "microsoft.identitymodel.logging/6.11.0",
  3397. "files": [
  3398. ".nupkg.metadata",
  3399. ".signature.p7s",
  3400. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3401. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3402. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3403. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3404. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3405. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3406. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3407. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3408. "microsoft.identitymodel.logging.6.11.0.nupkg.sha512",
  3409. "microsoft.identitymodel.logging.nuspec"
  3410. ]
  3411. },
  3412. "Microsoft.IdentityModel.Tokens/6.11.0": {
  3413. "sha512": "zm0aBLKCDybRQwOinG0cDXobjfcJgXIcJfB5n7gA8KHjswELcET8BiNx54j6n4VF8w6+UxUIdEtO3RMIXQZkfg==",
  3414. "type": "package",
  3415. "path": "microsoft.identitymodel.tokens/6.11.0",
  3416. "files": [
  3417. ".nupkg.metadata",
  3418. ".signature.p7s",
  3419. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3420. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3421. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3422. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3423. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3424. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3425. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3426. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3427. "microsoft.identitymodel.tokens.6.11.0.nupkg.sha512",
  3428. "microsoft.identitymodel.tokens.nuspec"
  3429. ]
  3430. },
  3431. "Microsoft.NETCore.Platforms/5.0.0": {
  3432. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3433. "type": "package",
  3434. "path": "microsoft.netcore.platforms/5.0.0",
  3435. "files": [
  3436. ".nupkg.metadata",
  3437. ".signature.p7s",
  3438. "Icon.png",
  3439. "LICENSE.TXT",
  3440. "THIRD-PARTY-NOTICES.TXT",
  3441. "lib/netstandard1.0/_._",
  3442. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  3443. "microsoft.netcore.platforms.nuspec",
  3444. "runtime.json",
  3445. "useSharedDesignerContext.txt",
  3446. "version.txt"
  3447. ]
  3448. },
  3449. "Microsoft.NETCore.Targets/1.1.0": {
  3450. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3451. "type": "package",
  3452. "path": "microsoft.netcore.targets/1.1.0",
  3453. "files": [
  3454. ".nupkg.metadata",
  3455. "ThirdPartyNotices.txt",
  3456. "dotnet_library_license.txt",
  3457. "lib/netstandard1.0/_._",
  3458. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3459. "microsoft.netcore.targets.nuspec",
  3460. "runtime.json"
  3461. ]
  3462. },
  3463. "Microsoft.OpenApi/1.2.3": {
  3464. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  3465. "type": "package",
  3466. "path": "microsoft.openapi/1.2.3",
  3467. "files": [
  3468. ".nupkg.metadata",
  3469. ".signature.p7s",
  3470. "lib/net46/Microsoft.OpenApi.dll",
  3471. "lib/net46/Microsoft.OpenApi.pdb",
  3472. "lib/net46/Microsoft.OpenApi.xml",
  3473. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3474. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3475. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3476. "microsoft.openapi.1.2.3.nupkg.sha512",
  3477. "microsoft.openapi.nuspec"
  3478. ]
  3479. },
  3480. "Microsoft.Win32.Primitives/4.0.1": {
  3481. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  3482. "type": "package",
  3483. "path": "microsoft.win32.primitives/4.0.1",
  3484. "files": [
  3485. ".nupkg.metadata",
  3486. "ThirdPartyNotices.txt",
  3487. "dotnet_library_license.txt",
  3488. "lib/MonoAndroid10/_._",
  3489. "lib/MonoTouch10/_._",
  3490. "lib/net46/Microsoft.Win32.Primitives.dll",
  3491. "lib/xamarinios10/_._",
  3492. "lib/xamarinmac20/_._",
  3493. "lib/xamarintvos10/_._",
  3494. "lib/xamarinwatchos10/_._",
  3495. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  3496. "microsoft.win32.primitives.nuspec",
  3497. "ref/MonoAndroid10/_._",
  3498. "ref/MonoTouch10/_._",
  3499. "ref/net46/Microsoft.Win32.Primitives.dll",
  3500. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3501. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3502. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3503. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3504. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3505. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3506. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3507. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3508. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3509. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3510. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3511. "ref/xamarinios10/_._",
  3512. "ref/xamarinmac20/_._",
  3513. "ref/xamarintvos10/_._",
  3514. "ref/xamarinwatchos10/_._"
  3515. ]
  3516. },
  3517. "Microsoft.Win32.Registry/5.0.0": {
  3518. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  3519. "type": "package",
  3520. "path": "microsoft.win32.registry/5.0.0",
  3521. "files": [
  3522. ".nupkg.metadata",
  3523. ".signature.p7s",
  3524. "Icon.png",
  3525. "LICENSE.TXT",
  3526. "THIRD-PARTY-NOTICES.TXT",
  3527. "lib/net46/Microsoft.Win32.Registry.dll",
  3528. "lib/net461/Microsoft.Win32.Registry.dll",
  3529. "lib/net461/Microsoft.Win32.Registry.xml",
  3530. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3531. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3532. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3533. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  3534. "microsoft.win32.registry.nuspec",
  3535. "ref/net46/Microsoft.Win32.Registry.dll",
  3536. "ref/net461/Microsoft.Win32.Registry.dll",
  3537. "ref/net461/Microsoft.Win32.Registry.xml",
  3538. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3539. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3540. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3541. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3542. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3543. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3544. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3545. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3546. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3547. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3548. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3549. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3550. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3551. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3552. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3553. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3554. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3555. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3556. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3557. "useSharedDesignerContext.txt",
  3558. "version.txt"
  3559. ]
  3560. },
  3561. "Microsoft.Win32.SystemEvents/5.0.0": {
  3562. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  3563. "type": "package",
  3564. "path": "microsoft.win32.systemevents/5.0.0",
  3565. "files": [
  3566. ".nupkg.metadata",
  3567. ".signature.p7s",
  3568. "Icon.png",
  3569. "LICENSE.TXT",
  3570. "THIRD-PARTY-NOTICES.TXT",
  3571. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3572. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3573. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3574. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3575. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  3576. "microsoft.win32.systemevents.nuspec",
  3577. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3578. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3579. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3580. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3581. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3582. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3583. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3584. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3585. "useSharedDesignerContext.txt",
  3586. "version.txt"
  3587. ]
  3588. },
  3589. "MySql.Data/8.0.22": {
  3590. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  3591. "type": "package",
  3592. "path": "mysql.data/8.0.22",
  3593. "files": [
  3594. ".nupkg.metadata",
  3595. ".signature.p7s",
  3596. "lib/net452/MySql.Data.dll",
  3597. "lib/net452/MySql.Data.xml",
  3598. "lib/net452/Ubiety.Dns.Core.dll",
  3599. "lib/net452/Zstandard.Net.dll",
  3600. "lib/net48/MySql.Data.dll",
  3601. "lib/net48/MySql.Data.xml",
  3602. "lib/net48/Ubiety.Dns.Core.dll",
  3603. "lib/net48/Zstandard.Net.dll",
  3604. "lib/net5.0/MySql.Data.dll",
  3605. "lib/net5.0/MySql.Data.xml",
  3606. "lib/net5.0/Ubiety.Dns.Core.dll",
  3607. "lib/net5.0/Zstandard.Net.dll",
  3608. "lib/netstandard2.0/MySql.Data.dll",
  3609. "lib/netstandard2.0/MySql.Data.xml",
  3610. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  3611. "lib/netstandard2.0/Zstandard.Net.dll",
  3612. "lib/netstandard2.1/MySql.Data.dll",
  3613. "lib/netstandard2.1/MySql.Data.xml",
  3614. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  3615. "lib/netstandard2.1/Zstandard.Net.dll",
  3616. "mysql.data.8.0.22.nupkg.sha512",
  3617. "mysql.data.nuspec"
  3618. ]
  3619. },
  3620. "MySql.Data.EntityFrameworkCore/8.0.22": {
  3621. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  3622. "type": "package",
  3623. "path": "mysql.data.entityframeworkcore/8.0.22",
  3624. "files": [
  3625. ".nupkg.metadata",
  3626. ".signature.p7s",
  3627. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  3628. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  3629. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  3630. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  3631. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  3632. "mysql.data.entityframeworkcore.nuspec"
  3633. ]
  3634. },
  3635. "NETStandard.Library/1.6.0": {
  3636. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  3637. "type": "package",
  3638. "path": "netstandard.library/1.6.0",
  3639. "files": [
  3640. ".nupkg.metadata",
  3641. "ThirdPartyNotices.txt",
  3642. "dotnet_library_license.txt",
  3643. "netstandard.library.1.6.0.nupkg.sha512",
  3644. "netstandard.library.nuspec"
  3645. ]
  3646. },
  3647. "Newtonsoft.Json/13.0.1": {
  3648. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  3649. "type": "package",
  3650. "path": "newtonsoft.json/13.0.1",
  3651. "files": [
  3652. ".nupkg.metadata",
  3653. ".signature.p7s",
  3654. "LICENSE.md",
  3655. "lib/net20/Newtonsoft.Json.dll",
  3656. "lib/net20/Newtonsoft.Json.xml",
  3657. "lib/net35/Newtonsoft.Json.dll",
  3658. "lib/net35/Newtonsoft.Json.xml",
  3659. "lib/net40/Newtonsoft.Json.dll",
  3660. "lib/net40/Newtonsoft.Json.xml",
  3661. "lib/net45/Newtonsoft.Json.dll",
  3662. "lib/net45/Newtonsoft.Json.xml",
  3663. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3664. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3665. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3666. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3667. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3668. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3669. "newtonsoft.json.13.0.1.nupkg.sha512",
  3670. "newtonsoft.json.nuspec",
  3671. "packageIcon.png"
  3672. ]
  3673. },
  3674. "NLog/4.7.9": {
  3675. "sha512": "Y0dKY5d506ZVcb8dTMp3BSb+jUGaFu/ArvRkgn4daDWKf7qqFXjEFYjqoyTrWkcNguqS6avkwICS0hsFsr4BzA==",
  3676. "type": "package",
  3677. "path": "nlog/4.7.9",
  3678. "files": [
  3679. ".nupkg.metadata",
  3680. ".signature.p7s",
  3681. "lib/monoandroid44/NLog.dll",
  3682. "lib/monoandroid44/NLog.xml",
  3683. "lib/net35/NLog.dll",
  3684. "lib/net35/NLog.xml",
  3685. "lib/net40-client/NLog.dll",
  3686. "lib/net40-client/NLog.xml",
  3687. "lib/net45/NLog.dll",
  3688. "lib/net45/NLog.xml",
  3689. "lib/netstandard1.3/NLog.dll",
  3690. "lib/netstandard1.3/NLog.xml",
  3691. "lib/netstandard1.5/NLog.dll",
  3692. "lib/netstandard1.5/NLog.xml",
  3693. "lib/netstandard2.0/NLog.dll",
  3694. "lib/netstandard2.0/NLog.xml",
  3695. "lib/sl4/NLog.dll",
  3696. "lib/sl4/NLog.xml",
  3697. "lib/sl5/NLog.dll",
  3698. "lib/sl5/NLog.xml",
  3699. "lib/wp8/NLog.dll",
  3700. "lib/wp8/NLog.xml",
  3701. "lib/xamarinios10/NLog.dll",
  3702. "lib/xamarinios10/NLog.xml",
  3703. "nlog.4.7.9.nupkg.sha512",
  3704. "nlog.nuspec"
  3705. ]
  3706. },
  3707. "NLog.Extensions.Logging/1.7.2": {
  3708. "sha512": "0y1QziAUCdePQc4itPOQF3xDcs0iE9NHlIK0hE0eA0+Ef6E9dnJDPveNu7w2ckYaDfJIFHpOoLK8sZmNEyiBCw==",
  3709. "type": "package",
  3710. "path": "nlog.extensions.logging/1.7.2",
  3711. "files": [
  3712. ".nupkg.metadata",
  3713. ".signature.p7s",
  3714. "N.png",
  3715. "lib/net451/NLog.Extensions.Logging.dll",
  3716. "lib/net451/NLog.Extensions.Logging.xml",
  3717. "lib/net461/NLog.Extensions.Logging.dll",
  3718. "lib/net461/NLog.Extensions.Logging.xml",
  3719. "lib/net5.0/NLog.Extensions.Logging.dll",
  3720. "lib/net5.0/NLog.Extensions.Logging.xml",
  3721. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  3722. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  3723. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  3724. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  3725. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  3726. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  3727. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  3728. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  3729. "nlog.extensions.logging.1.7.2.nupkg.sha512",
  3730. "nlog.extensions.logging.nuspec"
  3731. ]
  3732. },
  3733. "NLog.Web.AspNetCore/4.12.0": {
  3734. "sha512": "imBvT0hmVd1bhDpd4cNwurcPDZ9jdHwxH5C3+dzcLQ8stq/wpP/1wbpd3hTzpfrwFkVp06rMXrbdXWcmnw4/Cw==",
  3735. "type": "package",
  3736. "path": "nlog.web.aspnetcore/4.12.0",
  3737. "files": [
  3738. ".nupkg.metadata",
  3739. ".signature.p7s",
  3740. "N.png",
  3741. "lib/net451/NLog.Web.AspNetCore.dll",
  3742. "lib/net451/NLog.Web.AspNetCore.xml",
  3743. "lib/net461/NLog.Web.AspNetCore.dll",
  3744. "lib/net461/NLog.Web.AspNetCore.xml",
  3745. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  3746. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  3747. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  3748. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  3749. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  3750. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  3751. "nlog.web.aspnetcore.4.12.0.nupkg.sha512",
  3752. "nlog.web.aspnetcore.nuspec",
  3753. "readme.txt"
  3754. ]
  3755. },
  3756. "Pipelines.Sockets.Unofficial/2.2.0": {
  3757. "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  3758. "type": "package",
  3759. "path": "pipelines.sockets.unofficial/2.2.0",
  3760. "files": [
  3761. ".nupkg.metadata",
  3762. ".signature.p7s",
  3763. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  3764. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  3765. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  3766. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  3767. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  3768. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  3769. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  3770. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  3771. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  3772. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  3773. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  3774. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  3775. "pipelines.sockets.unofficial.2.2.0.nupkg.sha512",
  3776. "pipelines.sockets.unofficial.nuspec"
  3777. ]
  3778. },
  3779. "Quartz/3.3.2": {
  3780. "sha512": "zsLt0LLHfIO+hlLBrBB2f7Qolf2C3SeCWXawgnWXSuvsAWsvWBLSax9Tpu5X/KzoF4Y4UHX7tdxvQjxILEsRWA==",
  3781. "type": "package",
  3782. "path": "quartz/3.3.2",
  3783. "files": [
  3784. ".nupkg.metadata",
  3785. ".signature.p7s",
  3786. "lib/net461/Quartz.dll",
  3787. "lib/net461/Quartz.xml",
  3788. "lib/net472/Quartz.dll",
  3789. "lib/net472/Quartz.xml",
  3790. "lib/netstandard2.0/Quartz.dll",
  3791. "lib/netstandard2.0/Quartz.xml",
  3792. "quartz-logo-small.png",
  3793. "quartz.3.3.2.nupkg.sha512",
  3794. "quartz.nuspec"
  3795. ]
  3796. },
  3797. "runtime.native.System/4.0.0": {
  3798. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  3799. "type": "package",
  3800. "path": "runtime.native.system/4.0.0",
  3801. "files": [
  3802. ".nupkg.metadata",
  3803. "ThirdPartyNotices.txt",
  3804. "dotnet_library_license.txt",
  3805. "lib/netstandard1.0/_._",
  3806. "runtime.native.system.4.0.0.nupkg.sha512",
  3807. "runtime.native.system.nuspec"
  3808. ]
  3809. },
  3810. "runtime.native.System.IO.Compression/4.1.0": {
  3811. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  3812. "type": "package",
  3813. "path": "runtime.native.system.io.compression/4.1.0",
  3814. "files": [
  3815. ".nupkg.metadata",
  3816. "ThirdPartyNotices.txt",
  3817. "dotnet_library_license.txt",
  3818. "lib/netstandard1.0/_._",
  3819. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  3820. "runtime.native.system.io.compression.nuspec"
  3821. ]
  3822. },
  3823. "runtime.native.System.Net.Http/4.0.1": {
  3824. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  3825. "type": "package",
  3826. "path": "runtime.native.system.net.http/4.0.1",
  3827. "files": [
  3828. ".nupkg.metadata",
  3829. "ThirdPartyNotices.txt",
  3830. "dotnet_library_license.txt",
  3831. "lib/netstandard1.0/_._",
  3832. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  3833. "runtime.native.system.net.http.nuspec"
  3834. ]
  3835. },
  3836. "runtime.native.System.Security.Cryptography/4.0.0": {
  3837. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  3838. "type": "package",
  3839. "path": "runtime.native.system.security.cryptography/4.0.0",
  3840. "files": [
  3841. ".nupkg.metadata",
  3842. "ThirdPartyNotices.txt",
  3843. "dotnet_library_license.txt",
  3844. "lib/netstandard1.0/_._",
  3845. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  3846. "runtime.native.system.security.cryptography.nuspec"
  3847. ]
  3848. },
  3849. "Scrutor/3.3.0": {
  3850. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  3851. "type": "package",
  3852. "path": "scrutor/3.3.0",
  3853. "files": [
  3854. ".nupkg.metadata",
  3855. ".signature.p7s",
  3856. "lib/net461/Scrutor.dll",
  3857. "lib/net461/Scrutor.pdb",
  3858. "lib/net461/Scrutor.xml",
  3859. "lib/netcoreapp3.1/Scrutor.dll",
  3860. "lib/netcoreapp3.1/Scrutor.pdb",
  3861. "lib/netcoreapp3.1/Scrutor.xml",
  3862. "lib/netstandard2.0/Scrutor.dll",
  3863. "lib/netstandard2.0/Scrutor.pdb",
  3864. "lib/netstandard2.0/Scrutor.xml",
  3865. "scrutor.3.3.0.nupkg.sha512",
  3866. "scrutor.nuspec"
  3867. ]
  3868. },
  3869. "SSH.NET/2016.1.0": {
  3870. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  3871. "type": "package",
  3872. "path": "ssh.net/2016.1.0",
  3873. "files": [
  3874. ".nupkg.metadata",
  3875. ".signature.p7s",
  3876. "lib/net35/Renci.SshNet.dll",
  3877. "lib/net35/Renci.SshNet.xml",
  3878. "lib/net40/Renci.SshNet.dll",
  3879. "lib/net40/Renci.SshNet.xml",
  3880. "lib/netstandard1.3/Renci.SshNet.dll",
  3881. "lib/netstandard1.3/Renci.SshNet.xml",
  3882. "lib/sl4/Renci.SshNet.dll",
  3883. "lib/sl4/Renci.SshNet.xml",
  3884. "lib/sl5/Renci.SshNet.dll",
  3885. "lib/sl5/Renci.SshNet.xml",
  3886. "lib/uap10/Renci.SshNet.dll",
  3887. "lib/uap10/Renci.SshNet.xml",
  3888. "lib/wp71/Renci.SshNet.dll",
  3889. "lib/wp71/Renci.SshNet.xml",
  3890. "lib/wp8/Renci.SshNet.dll",
  3891. "lib/wp8/Renci.SshNet.xml",
  3892. "ssh.net.2016.1.0.nupkg.sha512",
  3893. "ssh.net.nuspec"
  3894. ]
  3895. },
  3896. "SshNet.Security.Cryptography/1.2.0": {
  3897. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  3898. "type": "package",
  3899. "path": "sshnet.security.cryptography/1.2.0",
  3900. "files": [
  3901. ".nupkg.metadata",
  3902. ".signature.p7s",
  3903. "lib/net20/SshNet.Security.Cryptography.dll",
  3904. "lib/net20/SshNet.Security.Cryptography.xml",
  3905. "lib/net40/SshNet.Security.Cryptography.dll",
  3906. "lib/net40/SshNet.Security.Cryptography.xml",
  3907. "lib/net45/SshNet.Security.Cryptography.dll",
  3908. "lib/net45/SshNet.Security.Cryptography.xml",
  3909. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  3910. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  3911. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  3912. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  3913. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  3914. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  3915. "lib/sl4/SshNet.Security.Cryptography.dll",
  3916. "lib/sl4/SshNet.Security.Cryptography.xml",
  3917. "lib/sl5/SshNet.Security.Cryptography.dll",
  3918. "lib/sl5/SshNet.Security.Cryptography.xml",
  3919. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  3920. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  3921. "lib/wp71/SshNet.Security.Cryptography.dll",
  3922. "lib/wp71/SshNet.Security.Cryptography.xml",
  3923. "lib/wp8/SshNet.Security.Cryptography.dll",
  3924. "lib/wp8/SshNet.Security.Cryptography.xml",
  3925. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  3926. "sshnet.security.cryptography.nuspec"
  3927. ]
  3928. },
  3929. "StackExchange.Redis/2.2.62": {
  3930. "sha512": "rcIFo/dK67An3mO1Heov0GZj9TYLMd+YB4drA09vOQz9ZpdjMhxSVtlDATcGpC++EH0aUGGnRnzhq0R0oXBOXg==",
  3931. "type": "package",
  3932. "path": "stackexchange.redis/2.2.62",
  3933. "files": [
  3934. ".nupkg.metadata",
  3935. ".signature.p7s",
  3936. "lib/net461/StackExchange.Redis.dll",
  3937. "lib/net461/StackExchange.Redis.xml",
  3938. "lib/net472/StackExchange.Redis.dll",
  3939. "lib/net472/StackExchange.Redis.xml",
  3940. "lib/net5.0/StackExchange.Redis.dll",
  3941. "lib/net5.0/StackExchange.Redis.xml",
  3942. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  3943. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  3944. "lib/netstandard2.0/StackExchange.Redis.dll",
  3945. "lib/netstandard2.0/StackExchange.Redis.xml",
  3946. "stackexchange.redis.2.2.62.nupkg.sha512",
  3947. "stackexchange.redis.nuspec"
  3948. ]
  3949. },
  3950. "Swashbuckle.AspNetCore/6.3.1": {
  3951. "sha512": "JFk0+HHUPdjYuPhkpGBMLi2JtnEuWkE2pp0yXQp64DmeMe+Fb0hZyVNq/ENJ2vQNso7Zg+C758WmR/xyAl36bA==",
  3952. "type": "package",
  3953. "path": "swashbuckle.aspnetcore/6.3.1",
  3954. "files": [
  3955. ".nupkg.metadata",
  3956. ".signature.p7s",
  3957. "build/Swashbuckle.AspNetCore.props",
  3958. "swashbuckle.aspnetcore.6.3.1.nupkg.sha512",
  3959. "swashbuckle.aspnetcore.nuspec"
  3960. ]
  3961. },
  3962. "Swashbuckle.AspNetCore.Filters/7.0.2": {
  3963. "sha512": "pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==",
  3964. "type": "package",
  3965. "path": "swashbuckle.aspnetcore.filters/7.0.2",
  3966. "files": [
  3967. ".nupkg.metadata",
  3968. ".signature.p7s",
  3969. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  3970. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  3971. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  3972. "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512",
  3973. "swashbuckle.aspnetcore.filters.nuspec"
  3974. ]
  3975. },
  3976. "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": {
  3977. "sha512": "RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==",
  3978. "type": "package",
  3979. "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2",
  3980. "files": [
  3981. ".nupkg.metadata",
  3982. ".signature.p7s",
  3983. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  3984. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  3985. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  3986. "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512",
  3987. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  3988. ]
  3989. },
  3990. "Swashbuckle.AspNetCore.Swagger/6.3.1": {
  3991. "sha512": "idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==",
  3992. "type": "package",
  3993. "path": "swashbuckle.aspnetcore.swagger/6.3.1",
  3994. "files": [
  3995. ".nupkg.metadata",
  3996. ".signature.p7s",
  3997. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  3998. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3999. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  4000. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  4001. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4002. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  4003. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4004. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4005. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4006. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4007. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4008. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4009. "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512",
  4010. "swashbuckle.aspnetcore.swagger.nuspec"
  4011. ]
  4012. },
  4013. "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
  4014. "sha512": "+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==",
  4015. "type": "package",
  4016. "path": "swashbuckle.aspnetcore.swaggergen/6.3.1",
  4017. "files": [
  4018. ".nupkg.metadata",
  4019. ".signature.p7s",
  4020. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4021. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4022. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4023. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4024. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4025. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4026. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4027. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4028. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4029. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4030. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4031. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4032. "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512",
  4033. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4034. ]
  4035. },
  4036. "Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
  4037. "sha512": "JLm9hN67jh7RHsX3H30+tb432Li8xm/qV5lRyMMkyHYMfWitIuKAAdrpo2ILcHOIeH7CLMuOO2hp/iLBmE+Bkw==",
  4038. "type": "package",
  4039. "path": "swashbuckle.aspnetcore.swaggerui/6.3.1",
  4040. "files": [
  4041. ".nupkg.metadata",
  4042. ".signature.p7s",
  4043. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4044. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4045. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4046. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4047. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4048. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4049. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4050. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4051. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4052. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4053. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4054. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4055. "swashbuckle.aspnetcore.swaggerui.6.3.1.nupkg.sha512",
  4056. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4057. ]
  4058. },
  4059. "System.AppContext/4.1.0": {
  4060. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  4061. "type": "package",
  4062. "path": "system.appcontext/4.1.0",
  4063. "files": [
  4064. ".nupkg.metadata",
  4065. "ThirdPartyNotices.txt",
  4066. "dotnet_library_license.txt",
  4067. "lib/MonoAndroid10/_._",
  4068. "lib/MonoTouch10/_._",
  4069. "lib/net46/System.AppContext.dll",
  4070. "lib/net463/System.AppContext.dll",
  4071. "lib/netcore50/System.AppContext.dll",
  4072. "lib/netstandard1.6/System.AppContext.dll",
  4073. "lib/xamarinios10/_._",
  4074. "lib/xamarinmac20/_._",
  4075. "lib/xamarintvos10/_._",
  4076. "lib/xamarinwatchos10/_._",
  4077. "ref/MonoAndroid10/_._",
  4078. "ref/MonoTouch10/_._",
  4079. "ref/net46/System.AppContext.dll",
  4080. "ref/net463/System.AppContext.dll",
  4081. "ref/netstandard/_._",
  4082. "ref/netstandard1.3/System.AppContext.dll",
  4083. "ref/netstandard1.3/System.AppContext.xml",
  4084. "ref/netstandard1.3/de/System.AppContext.xml",
  4085. "ref/netstandard1.3/es/System.AppContext.xml",
  4086. "ref/netstandard1.3/fr/System.AppContext.xml",
  4087. "ref/netstandard1.3/it/System.AppContext.xml",
  4088. "ref/netstandard1.3/ja/System.AppContext.xml",
  4089. "ref/netstandard1.3/ko/System.AppContext.xml",
  4090. "ref/netstandard1.3/ru/System.AppContext.xml",
  4091. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4092. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4093. "ref/netstandard1.6/System.AppContext.dll",
  4094. "ref/netstandard1.6/System.AppContext.xml",
  4095. "ref/netstandard1.6/de/System.AppContext.xml",
  4096. "ref/netstandard1.6/es/System.AppContext.xml",
  4097. "ref/netstandard1.6/fr/System.AppContext.xml",
  4098. "ref/netstandard1.6/it/System.AppContext.xml",
  4099. "ref/netstandard1.6/ja/System.AppContext.xml",
  4100. "ref/netstandard1.6/ko/System.AppContext.xml",
  4101. "ref/netstandard1.6/ru/System.AppContext.xml",
  4102. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4103. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4104. "ref/xamarinios10/_._",
  4105. "ref/xamarinmac20/_._",
  4106. "ref/xamarintvos10/_._",
  4107. "ref/xamarinwatchos10/_._",
  4108. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4109. "system.appcontext.4.1.0.nupkg.sha512",
  4110. "system.appcontext.nuspec"
  4111. ]
  4112. },
  4113. "System.Buffers/4.5.1": {
  4114. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4115. "type": "package",
  4116. "path": "system.buffers/4.5.1",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "LICENSE.TXT",
  4121. "THIRD-PARTY-NOTICES.TXT",
  4122. "lib/net461/System.Buffers.dll",
  4123. "lib/net461/System.Buffers.xml",
  4124. "lib/netcoreapp2.0/_._",
  4125. "lib/netstandard1.1/System.Buffers.dll",
  4126. "lib/netstandard1.1/System.Buffers.xml",
  4127. "lib/netstandard2.0/System.Buffers.dll",
  4128. "lib/netstandard2.0/System.Buffers.xml",
  4129. "lib/uap10.0.16299/_._",
  4130. "ref/net45/System.Buffers.dll",
  4131. "ref/net45/System.Buffers.xml",
  4132. "ref/netcoreapp2.0/_._",
  4133. "ref/netstandard1.1/System.Buffers.dll",
  4134. "ref/netstandard1.1/System.Buffers.xml",
  4135. "ref/netstandard2.0/System.Buffers.dll",
  4136. "ref/netstandard2.0/System.Buffers.xml",
  4137. "ref/uap10.0.16299/_._",
  4138. "system.buffers.4.5.1.nupkg.sha512",
  4139. "system.buffers.nuspec",
  4140. "useSharedDesignerContext.txt",
  4141. "version.txt"
  4142. ]
  4143. },
  4144. "System.Collections/4.0.11": {
  4145. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  4146. "type": "package",
  4147. "path": "system.collections/4.0.11",
  4148. "files": [
  4149. ".nupkg.metadata",
  4150. "ThirdPartyNotices.txt",
  4151. "dotnet_library_license.txt",
  4152. "lib/MonoAndroid10/_._",
  4153. "lib/MonoTouch10/_._",
  4154. "lib/net45/_._",
  4155. "lib/portable-net45+win8+wp8+wpa81/_._",
  4156. "lib/win8/_._",
  4157. "lib/wp80/_._",
  4158. "lib/wpa81/_._",
  4159. "lib/xamarinios10/_._",
  4160. "lib/xamarinmac20/_._",
  4161. "lib/xamarintvos10/_._",
  4162. "lib/xamarinwatchos10/_._",
  4163. "ref/MonoAndroid10/_._",
  4164. "ref/MonoTouch10/_._",
  4165. "ref/net45/_._",
  4166. "ref/netcore50/System.Collections.dll",
  4167. "ref/netcore50/System.Collections.xml",
  4168. "ref/netcore50/de/System.Collections.xml",
  4169. "ref/netcore50/es/System.Collections.xml",
  4170. "ref/netcore50/fr/System.Collections.xml",
  4171. "ref/netcore50/it/System.Collections.xml",
  4172. "ref/netcore50/ja/System.Collections.xml",
  4173. "ref/netcore50/ko/System.Collections.xml",
  4174. "ref/netcore50/ru/System.Collections.xml",
  4175. "ref/netcore50/zh-hans/System.Collections.xml",
  4176. "ref/netcore50/zh-hant/System.Collections.xml",
  4177. "ref/netstandard1.0/System.Collections.dll",
  4178. "ref/netstandard1.0/System.Collections.xml",
  4179. "ref/netstandard1.0/de/System.Collections.xml",
  4180. "ref/netstandard1.0/es/System.Collections.xml",
  4181. "ref/netstandard1.0/fr/System.Collections.xml",
  4182. "ref/netstandard1.0/it/System.Collections.xml",
  4183. "ref/netstandard1.0/ja/System.Collections.xml",
  4184. "ref/netstandard1.0/ko/System.Collections.xml",
  4185. "ref/netstandard1.0/ru/System.Collections.xml",
  4186. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4187. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4188. "ref/netstandard1.3/System.Collections.dll",
  4189. "ref/netstandard1.3/System.Collections.xml",
  4190. "ref/netstandard1.3/de/System.Collections.xml",
  4191. "ref/netstandard1.3/es/System.Collections.xml",
  4192. "ref/netstandard1.3/fr/System.Collections.xml",
  4193. "ref/netstandard1.3/it/System.Collections.xml",
  4194. "ref/netstandard1.3/ja/System.Collections.xml",
  4195. "ref/netstandard1.3/ko/System.Collections.xml",
  4196. "ref/netstandard1.3/ru/System.Collections.xml",
  4197. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4198. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4199. "ref/portable-net45+win8+wp8+wpa81/_._",
  4200. "ref/win8/_._",
  4201. "ref/wp80/_._",
  4202. "ref/wpa81/_._",
  4203. "ref/xamarinios10/_._",
  4204. "ref/xamarinmac20/_._",
  4205. "ref/xamarintvos10/_._",
  4206. "ref/xamarinwatchos10/_._",
  4207. "system.collections.4.0.11.nupkg.sha512",
  4208. "system.collections.nuspec"
  4209. ]
  4210. },
  4211. "System.Collections.Concurrent/4.0.12": {
  4212. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  4213. "type": "package",
  4214. "path": "system.collections.concurrent/4.0.12",
  4215. "files": [
  4216. ".nupkg.metadata",
  4217. "ThirdPartyNotices.txt",
  4218. "dotnet_library_license.txt",
  4219. "lib/MonoAndroid10/_._",
  4220. "lib/MonoTouch10/_._",
  4221. "lib/net45/_._",
  4222. "lib/netcore50/System.Collections.Concurrent.dll",
  4223. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4224. "lib/portable-net45+win8+wpa81/_._",
  4225. "lib/win8/_._",
  4226. "lib/wpa81/_._",
  4227. "lib/xamarinios10/_._",
  4228. "lib/xamarinmac20/_._",
  4229. "lib/xamarintvos10/_._",
  4230. "lib/xamarinwatchos10/_._",
  4231. "ref/MonoAndroid10/_._",
  4232. "ref/MonoTouch10/_._",
  4233. "ref/net45/_._",
  4234. "ref/netcore50/System.Collections.Concurrent.dll",
  4235. "ref/netcore50/System.Collections.Concurrent.xml",
  4236. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4237. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4238. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4239. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4240. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4241. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4242. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4243. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4244. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4245. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4246. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4247. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4248. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4249. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4250. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4251. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4252. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4253. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4254. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4255. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4256. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4257. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4258. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4259. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4260. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4261. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4262. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4263. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4264. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4265. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4266. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4267. "ref/portable-net45+win8+wpa81/_._",
  4268. "ref/win8/_._",
  4269. "ref/wpa81/_._",
  4270. "ref/xamarinios10/_._",
  4271. "ref/xamarinmac20/_._",
  4272. "ref/xamarintvos10/_._",
  4273. "ref/xamarinwatchos10/_._",
  4274. "system.collections.concurrent.4.0.12.nupkg.sha512",
  4275. "system.collections.concurrent.nuspec"
  4276. ]
  4277. },
  4278. "System.Collections.Immutable/1.7.0": {
  4279. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  4280. "type": "package",
  4281. "path": "system.collections.immutable/1.7.0",
  4282. "files": [
  4283. ".nupkg.metadata",
  4284. ".signature.p7s",
  4285. "LICENSE.TXT",
  4286. "THIRD-PARTY-NOTICES.TXT",
  4287. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4288. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4289. "lib/netstandard1.3/System.Collections.Immutable.dll",
  4290. "lib/netstandard1.3/System.Collections.Immutable.xml",
  4291. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4292. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4293. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4294. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  4295. "system.collections.immutable.1.7.0.nupkg.sha512",
  4296. "system.collections.immutable.nuspec",
  4297. "useSharedDesignerContext.txt",
  4298. "version.txt"
  4299. ]
  4300. },
  4301. "System.ComponentModel.Annotations/4.7.0": {
  4302. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  4303. "type": "package",
  4304. "path": "system.componentmodel.annotations/4.7.0",
  4305. "files": [
  4306. ".nupkg.metadata",
  4307. ".signature.p7s",
  4308. "LICENSE.TXT",
  4309. "THIRD-PARTY-NOTICES.TXT",
  4310. "lib/MonoAndroid10/_._",
  4311. "lib/MonoTouch10/_._",
  4312. "lib/net45/_._",
  4313. "lib/net461/System.ComponentModel.Annotations.dll",
  4314. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4315. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4316. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4317. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4318. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4319. "lib/portable-net45+win8/_._",
  4320. "lib/win8/_._",
  4321. "lib/xamarinios10/_._",
  4322. "lib/xamarinmac20/_._",
  4323. "lib/xamarintvos10/_._",
  4324. "lib/xamarinwatchos10/_._",
  4325. "ref/MonoAndroid10/_._",
  4326. "ref/MonoTouch10/_._",
  4327. "ref/net45/_._",
  4328. "ref/net461/System.ComponentModel.Annotations.dll",
  4329. "ref/net461/System.ComponentModel.Annotations.xml",
  4330. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4331. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4332. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4333. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4334. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4335. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4336. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4337. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4338. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4339. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4340. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4341. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4342. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4343. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4344. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4345. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4346. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4347. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4348. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4349. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4350. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4351. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4352. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4353. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4354. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4355. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4356. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4357. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4358. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4359. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4360. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4361. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4362. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4363. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4364. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4365. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4366. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4367. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4368. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4369. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4370. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4371. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4372. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4373. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4374. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4375. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4376. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4377. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4378. "ref/portable-net45+win8/_._",
  4379. "ref/win8/_._",
  4380. "ref/xamarinios10/_._",
  4381. "ref/xamarinmac20/_._",
  4382. "ref/xamarintvos10/_._",
  4383. "ref/xamarinwatchos10/_._",
  4384. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  4385. "system.componentmodel.annotations.nuspec",
  4386. "useSharedDesignerContext.txt",
  4387. "version.txt"
  4388. ]
  4389. },
  4390. "System.Configuration.ConfigurationManager/5.0.0": {
  4391. "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
  4392. "type": "package",
  4393. "path": "system.configuration.configurationmanager/5.0.0",
  4394. "files": [
  4395. ".nupkg.metadata",
  4396. ".signature.p7s",
  4397. "Icon.png",
  4398. "LICENSE.TXT",
  4399. "THIRD-PARTY-NOTICES.TXT",
  4400. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4401. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4402. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4403. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4404. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4405. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4406. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4407. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4408. "system.configuration.configurationmanager.5.0.0.nupkg.sha512",
  4409. "system.configuration.configurationmanager.nuspec",
  4410. "useSharedDesignerContext.txt",
  4411. "version.txt"
  4412. ]
  4413. },
  4414. "System.Console/4.0.0": {
  4415. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  4416. "type": "package",
  4417. "path": "system.console/4.0.0",
  4418. "files": [
  4419. ".nupkg.metadata",
  4420. "ThirdPartyNotices.txt",
  4421. "dotnet_library_license.txt",
  4422. "lib/MonoAndroid10/_._",
  4423. "lib/MonoTouch10/_._",
  4424. "lib/net46/System.Console.dll",
  4425. "lib/xamarinios10/_._",
  4426. "lib/xamarinmac20/_._",
  4427. "lib/xamarintvos10/_._",
  4428. "lib/xamarinwatchos10/_._",
  4429. "ref/MonoAndroid10/_._",
  4430. "ref/MonoTouch10/_._",
  4431. "ref/net46/System.Console.dll",
  4432. "ref/netstandard1.3/System.Console.dll",
  4433. "ref/netstandard1.3/System.Console.xml",
  4434. "ref/netstandard1.3/de/System.Console.xml",
  4435. "ref/netstandard1.3/es/System.Console.xml",
  4436. "ref/netstandard1.3/fr/System.Console.xml",
  4437. "ref/netstandard1.3/it/System.Console.xml",
  4438. "ref/netstandard1.3/ja/System.Console.xml",
  4439. "ref/netstandard1.3/ko/System.Console.xml",
  4440. "ref/netstandard1.3/ru/System.Console.xml",
  4441. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4442. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4443. "ref/xamarinios10/_._",
  4444. "ref/xamarinmac20/_._",
  4445. "ref/xamarintvos10/_._",
  4446. "ref/xamarinwatchos10/_._",
  4447. "system.console.4.0.0.nupkg.sha512",
  4448. "system.console.nuspec"
  4449. ]
  4450. },
  4451. "System.Diagnostics.Debug/4.0.11": {
  4452. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  4453. "type": "package",
  4454. "path": "system.diagnostics.debug/4.0.11",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. "ThirdPartyNotices.txt",
  4458. "dotnet_library_license.txt",
  4459. "lib/MonoAndroid10/_._",
  4460. "lib/MonoTouch10/_._",
  4461. "lib/net45/_._",
  4462. "lib/portable-net45+win8+wp8+wpa81/_._",
  4463. "lib/win8/_._",
  4464. "lib/wp80/_._",
  4465. "lib/wpa81/_._",
  4466. "lib/xamarinios10/_._",
  4467. "lib/xamarinmac20/_._",
  4468. "lib/xamarintvos10/_._",
  4469. "lib/xamarinwatchos10/_._",
  4470. "ref/MonoAndroid10/_._",
  4471. "ref/MonoTouch10/_._",
  4472. "ref/net45/_._",
  4473. "ref/netcore50/System.Diagnostics.Debug.dll",
  4474. "ref/netcore50/System.Diagnostics.Debug.xml",
  4475. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4476. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4477. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4478. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4479. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4480. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4481. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4482. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4483. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4484. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4485. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4486. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4487. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4488. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4489. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4490. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4491. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4492. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4493. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4494. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4495. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4496. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4497. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4498. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4499. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4500. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4501. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4502. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4503. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4504. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4505. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4506. "ref/portable-net45+win8+wp8+wpa81/_._",
  4507. "ref/win8/_._",
  4508. "ref/wp80/_._",
  4509. "ref/wpa81/_._",
  4510. "ref/xamarinios10/_._",
  4511. "ref/xamarinmac20/_._",
  4512. "ref/xamarintvos10/_._",
  4513. "ref/xamarinwatchos10/_._",
  4514. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  4515. "system.diagnostics.debug.nuspec"
  4516. ]
  4517. },
  4518. "System.Diagnostics.DiagnosticSource/5.0.0": {
  4519. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  4520. "type": "package",
  4521. "path": "system.diagnostics.diagnosticsource/5.0.0",
  4522. "files": [
  4523. ".nupkg.metadata",
  4524. ".signature.p7s",
  4525. "Icon.png",
  4526. "LICENSE.TXT",
  4527. "THIRD-PARTY-NOTICES.TXT",
  4528. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4529. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4530. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4531. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4532. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  4533. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  4534. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4535. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4536. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4537. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4538. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4539. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4540. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  4541. "system.diagnostics.diagnosticsource.nuspec",
  4542. "useSharedDesignerContext.txt",
  4543. "version.txt"
  4544. ]
  4545. },
  4546. "System.Diagnostics.EventLog/5.0.0": {
  4547. "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
  4548. "type": "package",
  4549. "path": "system.diagnostics.eventlog/5.0.0",
  4550. "files": [
  4551. ".nupkg.metadata",
  4552. ".signature.p7s",
  4553. "Icon.png",
  4554. "LICENSE.TXT",
  4555. "THIRD-PARTY-NOTICES.TXT",
  4556. "lib/net461/System.Diagnostics.EventLog.dll",
  4557. "lib/net461/System.Diagnostics.EventLog.xml",
  4558. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  4559. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  4560. "ref/net461/System.Diagnostics.EventLog.dll",
  4561. "ref/net461/System.Diagnostics.EventLog.xml",
  4562. "ref/netstandard2.0/System.Diagnostics.EventLog.dll",
  4563. "ref/netstandard2.0/System.Diagnostics.EventLog.xml",
  4564. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll",
  4565. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
  4566. "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
  4567. "system.diagnostics.eventlog.nuspec",
  4568. "useSharedDesignerContext.txt",
  4569. "version.txt"
  4570. ]
  4571. },
  4572. "System.Diagnostics.PerformanceCounter/5.0.0": {
  4573. "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==",
  4574. "type": "package",
  4575. "path": "system.diagnostics.performancecounter/5.0.0",
  4576. "files": [
  4577. ".nupkg.metadata",
  4578. ".signature.p7s",
  4579. "Icon.png",
  4580. "LICENSE.TXT",
  4581. "THIRD-PARTY-NOTICES.TXT",
  4582. "lib/MonoAndroid10/_._",
  4583. "lib/MonoTouch10/_._",
  4584. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  4585. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  4586. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4587. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4588. "lib/xamarinios10/_._",
  4589. "lib/xamarinmac20/_._",
  4590. "lib/xamarintvos10/_._",
  4591. "lib/xamarinwatchos10/_._",
  4592. "ref/MonoAndroid10/_._",
  4593. "ref/MonoTouch10/_._",
  4594. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  4595. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  4596. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4597. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4598. "ref/xamarinios10/_._",
  4599. "ref/xamarinmac20/_._",
  4600. "ref/xamarintvos10/_._",
  4601. "ref/xamarinwatchos10/_._",
  4602. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  4603. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  4604. "system.diagnostics.performancecounter.5.0.0.nupkg.sha512",
  4605. "system.diagnostics.performancecounter.nuspec",
  4606. "useSharedDesignerContext.txt",
  4607. "version.txt"
  4608. ]
  4609. },
  4610. "System.Diagnostics.Tools/4.0.1": {
  4611. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  4612. "type": "package",
  4613. "path": "system.diagnostics.tools/4.0.1",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. "ThirdPartyNotices.txt",
  4617. "dotnet_library_license.txt",
  4618. "lib/MonoAndroid10/_._",
  4619. "lib/MonoTouch10/_._",
  4620. "lib/net45/_._",
  4621. "lib/portable-net45+win8+wp8+wpa81/_._",
  4622. "lib/win8/_._",
  4623. "lib/wp80/_._",
  4624. "lib/wpa81/_._",
  4625. "lib/xamarinios10/_._",
  4626. "lib/xamarinmac20/_._",
  4627. "lib/xamarintvos10/_._",
  4628. "lib/xamarinwatchos10/_._",
  4629. "ref/MonoAndroid10/_._",
  4630. "ref/MonoTouch10/_._",
  4631. "ref/net45/_._",
  4632. "ref/netcore50/System.Diagnostics.Tools.dll",
  4633. "ref/netcore50/System.Diagnostics.Tools.xml",
  4634. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4635. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4636. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4637. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4638. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4639. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4640. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4641. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4642. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4643. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4644. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4645. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4646. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4647. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4648. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4649. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4650. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4651. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4652. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4653. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4654. "ref/portable-net45+win8+wp8+wpa81/_._",
  4655. "ref/win8/_._",
  4656. "ref/wp80/_._",
  4657. "ref/wpa81/_._",
  4658. "ref/xamarinios10/_._",
  4659. "ref/xamarinmac20/_._",
  4660. "ref/xamarintvos10/_._",
  4661. "ref/xamarinwatchos10/_._",
  4662. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  4663. "system.diagnostics.tools.nuspec"
  4664. ]
  4665. },
  4666. "System.Diagnostics.TraceSource/4.0.0": {
  4667. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  4668. "type": "package",
  4669. "path": "system.diagnostics.tracesource/4.0.0",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "ThirdPartyNotices.txt",
  4674. "dotnet_library_license.txt",
  4675. "lib/MonoAndroid10/_._",
  4676. "lib/MonoTouch10/_._",
  4677. "lib/net46/System.Diagnostics.TraceSource.dll",
  4678. "lib/xamarinios10/_._",
  4679. "lib/xamarinmac20/_._",
  4680. "lib/xamarintvos10/_._",
  4681. "lib/xamarinwatchos10/_._",
  4682. "ref/MonoAndroid10/_._",
  4683. "ref/MonoTouch10/_._",
  4684. "ref/net46/System.Diagnostics.TraceSource.dll",
  4685. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4686. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  4687. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  4688. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  4689. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  4690. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  4691. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  4692. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  4693. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  4694. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  4695. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  4696. "ref/xamarinios10/_._",
  4697. "ref/xamarinmac20/_._",
  4698. "ref/xamarintvos10/_._",
  4699. "ref/xamarinwatchos10/_._",
  4700. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4701. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  4702. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  4703. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  4704. "system.diagnostics.tracesource.nuspec"
  4705. ]
  4706. },
  4707. "System.Diagnostics.Tracing/4.1.0": {
  4708. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  4709. "type": "package",
  4710. "path": "system.diagnostics.tracing/4.1.0",
  4711. "files": [
  4712. ".nupkg.metadata",
  4713. "ThirdPartyNotices.txt",
  4714. "dotnet_library_license.txt",
  4715. "lib/MonoAndroid10/_._",
  4716. "lib/MonoTouch10/_._",
  4717. "lib/net45/_._",
  4718. "lib/net462/System.Diagnostics.Tracing.dll",
  4719. "lib/portable-net45+win8+wpa81/_._",
  4720. "lib/win8/_._",
  4721. "lib/wpa81/_._",
  4722. "lib/xamarinios10/_._",
  4723. "lib/xamarinmac20/_._",
  4724. "lib/xamarintvos10/_._",
  4725. "lib/xamarinwatchos10/_._",
  4726. "ref/MonoAndroid10/_._",
  4727. "ref/MonoTouch10/_._",
  4728. "ref/net45/_._",
  4729. "ref/net462/System.Diagnostics.Tracing.dll",
  4730. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4731. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4732. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4733. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4734. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4735. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4736. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4737. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4738. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4739. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4740. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4741. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4742. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4743. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4744. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4745. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4746. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4747. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4748. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4749. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4750. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4751. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4752. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4753. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4754. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4755. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4756. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4757. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4758. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4759. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4760. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4761. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4762. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4763. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4764. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4765. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4766. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4767. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4768. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4769. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4770. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4771. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4772. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4773. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4774. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4775. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4776. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4777. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4778. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4779. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4780. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4781. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4782. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4783. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4784. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4785. "ref/portable-net45+win8+wpa81/_._",
  4786. "ref/win8/_._",
  4787. "ref/wpa81/_._",
  4788. "ref/xamarinios10/_._",
  4789. "ref/xamarinmac20/_._",
  4790. "ref/xamarintvos10/_._",
  4791. "ref/xamarinwatchos10/_._",
  4792. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  4793. "system.diagnostics.tracing.nuspec"
  4794. ]
  4795. },
  4796. "System.Drawing.Common/5.0.0": {
  4797. "sha512": "SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
  4798. "type": "package",
  4799. "path": "system.drawing.common/5.0.0",
  4800. "files": [
  4801. ".nupkg.metadata",
  4802. ".signature.p7s",
  4803. "Icon.png",
  4804. "LICENSE.TXT",
  4805. "THIRD-PARTY-NOTICES.TXT",
  4806. "lib/MonoAndroid10/_._",
  4807. "lib/MonoTouch10/_._",
  4808. "lib/net461/System.Drawing.Common.dll",
  4809. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  4810. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  4811. "lib/netstandard2.0/System.Drawing.Common.dll",
  4812. "lib/xamarinios10/_._",
  4813. "lib/xamarinmac20/_._",
  4814. "lib/xamarintvos10/_._",
  4815. "lib/xamarinwatchos10/_._",
  4816. "ref/MonoAndroid10/_._",
  4817. "ref/MonoTouch10/_._",
  4818. "ref/net461/System.Drawing.Common.dll",
  4819. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4820. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4821. "ref/netstandard2.0/System.Drawing.Common.dll",
  4822. "ref/xamarinios10/_._",
  4823. "ref/xamarinmac20/_._",
  4824. "ref/xamarintvos10/_._",
  4825. "ref/xamarinwatchos10/_._",
  4826. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4827. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4828. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4829. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4830. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4831. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4832. "system.drawing.common.5.0.0.nupkg.sha512",
  4833. "system.drawing.common.nuspec",
  4834. "useSharedDesignerContext.txt",
  4835. "version.txt"
  4836. ]
  4837. },
  4838. "System.Globalization/4.0.11": {
  4839. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  4840. "type": "package",
  4841. "path": "system.globalization/4.0.11",
  4842. "files": [
  4843. ".nupkg.metadata",
  4844. "ThirdPartyNotices.txt",
  4845. "dotnet_library_license.txt",
  4846. "lib/MonoAndroid10/_._",
  4847. "lib/MonoTouch10/_._",
  4848. "lib/net45/_._",
  4849. "lib/portable-net45+win8+wp8+wpa81/_._",
  4850. "lib/win8/_._",
  4851. "lib/wp80/_._",
  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/netcore50/System.Globalization.dll",
  4861. "ref/netcore50/System.Globalization.xml",
  4862. "ref/netcore50/de/System.Globalization.xml",
  4863. "ref/netcore50/es/System.Globalization.xml",
  4864. "ref/netcore50/fr/System.Globalization.xml",
  4865. "ref/netcore50/it/System.Globalization.xml",
  4866. "ref/netcore50/ja/System.Globalization.xml",
  4867. "ref/netcore50/ko/System.Globalization.xml",
  4868. "ref/netcore50/ru/System.Globalization.xml",
  4869. "ref/netcore50/zh-hans/System.Globalization.xml",
  4870. "ref/netcore50/zh-hant/System.Globalization.xml",
  4871. "ref/netstandard1.0/System.Globalization.dll",
  4872. "ref/netstandard1.0/System.Globalization.xml",
  4873. "ref/netstandard1.0/de/System.Globalization.xml",
  4874. "ref/netstandard1.0/es/System.Globalization.xml",
  4875. "ref/netstandard1.0/fr/System.Globalization.xml",
  4876. "ref/netstandard1.0/it/System.Globalization.xml",
  4877. "ref/netstandard1.0/ja/System.Globalization.xml",
  4878. "ref/netstandard1.0/ko/System.Globalization.xml",
  4879. "ref/netstandard1.0/ru/System.Globalization.xml",
  4880. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4881. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4882. "ref/netstandard1.3/System.Globalization.dll",
  4883. "ref/netstandard1.3/System.Globalization.xml",
  4884. "ref/netstandard1.3/de/System.Globalization.xml",
  4885. "ref/netstandard1.3/es/System.Globalization.xml",
  4886. "ref/netstandard1.3/fr/System.Globalization.xml",
  4887. "ref/netstandard1.3/it/System.Globalization.xml",
  4888. "ref/netstandard1.3/ja/System.Globalization.xml",
  4889. "ref/netstandard1.3/ko/System.Globalization.xml",
  4890. "ref/netstandard1.3/ru/System.Globalization.xml",
  4891. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4892. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4893. "ref/portable-net45+win8+wp8+wpa81/_._",
  4894. "ref/win8/_._",
  4895. "ref/wp80/_._",
  4896. "ref/wpa81/_._",
  4897. "ref/xamarinios10/_._",
  4898. "ref/xamarinmac20/_._",
  4899. "ref/xamarintvos10/_._",
  4900. "ref/xamarinwatchos10/_._",
  4901. "system.globalization.4.0.11.nupkg.sha512",
  4902. "system.globalization.nuspec"
  4903. ]
  4904. },
  4905. "System.Globalization.Calendars/4.0.1": {
  4906. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  4907. "type": "package",
  4908. "path": "system.globalization.calendars/4.0.1",
  4909. "files": [
  4910. ".nupkg.metadata",
  4911. "ThirdPartyNotices.txt",
  4912. "dotnet_library_license.txt",
  4913. "lib/MonoAndroid10/_._",
  4914. "lib/MonoTouch10/_._",
  4915. "lib/net46/System.Globalization.Calendars.dll",
  4916. "lib/xamarinios10/_._",
  4917. "lib/xamarinmac20/_._",
  4918. "lib/xamarintvos10/_._",
  4919. "lib/xamarinwatchos10/_._",
  4920. "ref/MonoAndroid10/_._",
  4921. "ref/MonoTouch10/_._",
  4922. "ref/net46/System.Globalization.Calendars.dll",
  4923. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4924. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4925. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4926. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4927. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4928. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4929. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4930. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4931. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4932. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4933. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4934. "ref/xamarinios10/_._",
  4935. "ref/xamarinmac20/_._",
  4936. "ref/xamarintvos10/_._",
  4937. "ref/xamarinwatchos10/_._",
  4938. "system.globalization.calendars.4.0.1.nupkg.sha512",
  4939. "system.globalization.calendars.nuspec"
  4940. ]
  4941. },
  4942. "System.Globalization.Extensions/4.0.1": {
  4943. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  4944. "type": "package",
  4945. "path": "system.globalization.extensions/4.0.1",
  4946. "files": [
  4947. ".nupkg.metadata",
  4948. "ThirdPartyNotices.txt",
  4949. "dotnet_library_license.txt",
  4950. "lib/MonoAndroid10/_._",
  4951. "lib/MonoTouch10/_._",
  4952. "lib/net46/System.Globalization.Extensions.dll",
  4953. "lib/xamarinios10/_._",
  4954. "lib/xamarinmac20/_._",
  4955. "lib/xamarintvos10/_._",
  4956. "lib/xamarinwatchos10/_._",
  4957. "ref/MonoAndroid10/_._",
  4958. "ref/MonoTouch10/_._",
  4959. "ref/net46/System.Globalization.Extensions.dll",
  4960. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4961. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4962. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4963. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4964. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4965. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4966. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4967. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4968. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4969. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4970. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4971. "ref/xamarinios10/_._",
  4972. "ref/xamarinmac20/_._",
  4973. "ref/xamarintvos10/_._",
  4974. "ref/xamarinwatchos10/_._",
  4975. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4976. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4977. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4978. "system.globalization.extensions.4.0.1.nupkg.sha512",
  4979. "system.globalization.extensions.nuspec"
  4980. ]
  4981. },
  4982. "System.IdentityModel.Tokens.Jwt/6.11.0": {
  4983. "sha512": "j57TBY3Xf989vFUt2C25DpDqM8P4Re1bi4GL3U6L6VVgJr+AZIWmA1SMEOKyaIwSP0rHWimQh4jGxzycidGflQ==",
  4984. "type": "package",
  4985. "path": "system.identitymodel.tokens.jwt/6.11.0",
  4986. "files": [
  4987. ".nupkg.metadata",
  4988. ".signature.p7s",
  4989. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4990. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4991. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4992. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4993. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  4994. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  4995. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4996. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4997. "system.identitymodel.tokens.jwt.6.11.0.nupkg.sha512",
  4998. "system.identitymodel.tokens.jwt.nuspec"
  4999. ]
  5000. },
  5001. "System.IO/4.3.0": {
  5002. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5003. "type": "package",
  5004. "path": "system.io/4.3.0",
  5005. "files": [
  5006. ".nupkg.metadata",
  5007. "ThirdPartyNotices.txt",
  5008. "dotnet_library_license.txt",
  5009. "lib/MonoAndroid10/_._",
  5010. "lib/MonoTouch10/_._",
  5011. "lib/net45/_._",
  5012. "lib/net462/System.IO.dll",
  5013. "lib/portable-net45+win8+wp8+wpa81/_._",
  5014. "lib/win8/_._",
  5015. "lib/wp80/_._",
  5016. "lib/wpa81/_._",
  5017. "lib/xamarinios10/_._",
  5018. "lib/xamarinmac20/_._",
  5019. "lib/xamarintvos10/_._",
  5020. "lib/xamarinwatchos10/_._",
  5021. "ref/MonoAndroid10/_._",
  5022. "ref/MonoTouch10/_._",
  5023. "ref/net45/_._",
  5024. "ref/net462/System.IO.dll",
  5025. "ref/netcore50/System.IO.dll",
  5026. "ref/netcore50/System.IO.xml",
  5027. "ref/netcore50/de/System.IO.xml",
  5028. "ref/netcore50/es/System.IO.xml",
  5029. "ref/netcore50/fr/System.IO.xml",
  5030. "ref/netcore50/it/System.IO.xml",
  5031. "ref/netcore50/ja/System.IO.xml",
  5032. "ref/netcore50/ko/System.IO.xml",
  5033. "ref/netcore50/ru/System.IO.xml",
  5034. "ref/netcore50/zh-hans/System.IO.xml",
  5035. "ref/netcore50/zh-hant/System.IO.xml",
  5036. "ref/netstandard1.0/System.IO.dll",
  5037. "ref/netstandard1.0/System.IO.xml",
  5038. "ref/netstandard1.0/de/System.IO.xml",
  5039. "ref/netstandard1.0/es/System.IO.xml",
  5040. "ref/netstandard1.0/fr/System.IO.xml",
  5041. "ref/netstandard1.0/it/System.IO.xml",
  5042. "ref/netstandard1.0/ja/System.IO.xml",
  5043. "ref/netstandard1.0/ko/System.IO.xml",
  5044. "ref/netstandard1.0/ru/System.IO.xml",
  5045. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5046. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5047. "ref/netstandard1.3/System.IO.dll",
  5048. "ref/netstandard1.3/System.IO.xml",
  5049. "ref/netstandard1.3/de/System.IO.xml",
  5050. "ref/netstandard1.3/es/System.IO.xml",
  5051. "ref/netstandard1.3/fr/System.IO.xml",
  5052. "ref/netstandard1.3/it/System.IO.xml",
  5053. "ref/netstandard1.3/ja/System.IO.xml",
  5054. "ref/netstandard1.3/ko/System.IO.xml",
  5055. "ref/netstandard1.3/ru/System.IO.xml",
  5056. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5057. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5058. "ref/netstandard1.5/System.IO.dll",
  5059. "ref/netstandard1.5/System.IO.xml",
  5060. "ref/netstandard1.5/de/System.IO.xml",
  5061. "ref/netstandard1.5/es/System.IO.xml",
  5062. "ref/netstandard1.5/fr/System.IO.xml",
  5063. "ref/netstandard1.5/it/System.IO.xml",
  5064. "ref/netstandard1.5/ja/System.IO.xml",
  5065. "ref/netstandard1.5/ko/System.IO.xml",
  5066. "ref/netstandard1.5/ru/System.IO.xml",
  5067. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5068. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5069. "ref/portable-net45+win8+wp8+wpa81/_._",
  5070. "ref/win8/_._",
  5071. "ref/wp80/_._",
  5072. "ref/wpa81/_._",
  5073. "ref/xamarinios10/_._",
  5074. "ref/xamarinmac20/_._",
  5075. "ref/xamarintvos10/_._",
  5076. "ref/xamarinwatchos10/_._",
  5077. "system.io.4.3.0.nupkg.sha512",
  5078. "system.io.nuspec"
  5079. ]
  5080. },
  5081. "System.IO.Compression/4.1.0": {
  5082. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  5083. "type": "package",
  5084. "path": "system.io.compression/4.1.0",
  5085. "files": [
  5086. ".nupkg.metadata",
  5087. "ThirdPartyNotices.txt",
  5088. "dotnet_library_license.txt",
  5089. "lib/MonoAndroid10/_._",
  5090. "lib/MonoTouch10/_._",
  5091. "lib/net45/_._",
  5092. "lib/net46/System.IO.Compression.dll",
  5093. "lib/portable-net45+win8+wpa81/_._",
  5094. "lib/win8/_._",
  5095. "lib/wpa81/_._",
  5096. "lib/xamarinios10/_._",
  5097. "lib/xamarinmac20/_._",
  5098. "lib/xamarintvos10/_._",
  5099. "lib/xamarinwatchos10/_._",
  5100. "ref/MonoAndroid10/_._",
  5101. "ref/MonoTouch10/_._",
  5102. "ref/net45/_._",
  5103. "ref/net46/System.IO.Compression.dll",
  5104. "ref/netcore50/System.IO.Compression.dll",
  5105. "ref/netcore50/System.IO.Compression.xml",
  5106. "ref/netcore50/de/System.IO.Compression.xml",
  5107. "ref/netcore50/es/System.IO.Compression.xml",
  5108. "ref/netcore50/fr/System.IO.Compression.xml",
  5109. "ref/netcore50/it/System.IO.Compression.xml",
  5110. "ref/netcore50/ja/System.IO.Compression.xml",
  5111. "ref/netcore50/ko/System.IO.Compression.xml",
  5112. "ref/netcore50/ru/System.IO.Compression.xml",
  5113. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5114. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5115. "ref/netstandard1.1/System.IO.Compression.dll",
  5116. "ref/netstandard1.1/System.IO.Compression.xml",
  5117. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5118. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5119. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5120. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5121. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5122. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5123. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5124. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5125. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5126. "ref/netstandard1.3/System.IO.Compression.dll",
  5127. "ref/netstandard1.3/System.IO.Compression.xml",
  5128. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5129. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5130. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5131. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5132. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5133. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5134. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5135. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5136. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5137. "ref/portable-net45+win8+wpa81/_._",
  5138. "ref/win8/_._",
  5139. "ref/wpa81/_._",
  5140. "ref/xamarinios10/_._",
  5141. "ref/xamarinmac20/_._",
  5142. "ref/xamarintvos10/_._",
  5143. "ref/xamarinwatchos10/_._",
  5144. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5145. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5146. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5147. "system.io.compression.4.1.0.nupkg.sha512",
  5148. "system.io.compression.nuspec"
  5149. ]
  5150. },
  5151. "System.IO.Compression.ZipFile/4.0.1": {
  5152. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  5153. "type": "package",
  5154. "path": "system.io.compression.zipfile/4.0.1",
  5155. "files": [
  5156. ".nupkg.metadata",
  5157. "ThirdPartyNotices.txt",
  5158. "dotnet_library_license.txt",
  5159. "lib/MonoAndroid10/_._",
  5160. "lib/MonoTouch10/_._",
  5161. "lib/net46/System.IO.Compression.ZipFile.dll",
  5162. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5163. "lib/xamarinios10/_._",
  5164. "lib/xamarinmac20/_._",
  5165. "lib/xamarintvos10/_._",
  5166. "lib/xamarinwatchos10/_._",
  5167. "ref/MonoAndroid10/_._",
  5168. "ref/MonoTouch10/_._",
  5169. "ref/net46/System.IO.Compression.ZipFile.dll",
  5170. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5171. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5172. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5173. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5174. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5175. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5176. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5177. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5178. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5179. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5180. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5181. "ref/xamarinios10/_._",
  5182. "ref/xamarinmac20/_._",
  5183. "ref/xamarintvos10/_._",
  5184. "ref/xamarinwatchos10/_._",
  5185. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  5186. "system.io.compression.zipfile.nuspec"
  5187. ]
  5188. },
  5189. "System.IO.FileSystem/4.0.1": {
  5190. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  5191. "type": "package",
  5192. "path": "system.io.filesystem/4.0.1",
  5193. "files": [
  5194. ".nupkg.metadata",
  5195. "ThirdPartyNotices.txt",
  5196. "dotnet_library_license.txt",
  5197. "lib/MonoAndroid10/_._",
  5198. "lib/MonoTouch10/_._",
  5199. "lib/net46/System.IO.FileSystem.dll",
  5200. "lib/xamarinios10/_._",
  5201. "lib/xamarinmac20/_._",
  5202. "lib/xamarintvos10/_._",
  5203. "lib/xamarinwatchos10/_._",
  5204. "ref/MonoAndroid10/_._",
  5205. "ref/MonoTouch10/_._",
  5206. "ref/net46/System.IO.FileSystem.dll",
  5207. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5208. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5209. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5210. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5211. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5212. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5213. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5214. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5215. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5216. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5217. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5218. "ref/xamarinios10/_._",
  5219. "ref/xamarinmac20/_._",
  5220. "ref/xamarintvos10/_._",
  5221. "ref/xamarinwatchos10/_._",
  5222. "system.io.filesystem.4.0.1.nupkg.sha512",
  5223. "system.io.filesystem.nuspec"
  5224. ]
  5225. },
  5226. "System.IO.FileSystem.Primitives/4.0.1": {
  5227. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  5228. "type": "package",
  5229. "path": "system.io.filesystem.primitives/4.0.1",
  5230. "files": [
  5231. ".nupkg.metadata",
  5232. "ThirdPartyNotices.txt",
  5233. "dotnet_library_license.txt",
  5234. "lib/MonoAndroid10/_._",
  5235. "lib/MonoTouch10/_._",
  5236. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5237. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5238. "lib/xamarinios10/_._",
  5239. "lib/xamarinmac20/_._",
  5240. "lib/xamarintvos10/_._",
  5241. "lib/xamarinwatchos10/_._",
  5242. "ref/MonoAndroid10/_._",
  5243. "ref/MonoTouch10/_._",
  5244. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5245. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5246. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5247. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5248. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5249. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5250. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5251. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5252. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5253. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5254. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5255. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5256. "ref/xamarinios10/_._",
  5257. "ref/xamarinmac20/_._",
  5258. "ref/xamarintvos10/_._",
  5259. "ref/xamarinwatchos10/_._",
  5260. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  5261. "system.io.filesystem.primitives.nuspec"
  5262. ]
  5263. },
  5264. "System.IO.Pipelines/5.0.0": {
  5265. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  5266. "type": "package",
  5267. "path": "system.io.pipelines/5.0.0",
  5268. "files": [
  5269. ".nupkg.metadata",
  5270. ".signature.p7s",
  5271. "Icon.png",
  5272. "LICENSE.TXT",
  5273. "THIRD-PARTY-NOTICES.TXT",
  5274. "lib/net461/System.IO.Pipelines.dll",
  5275. "lib/net461/System.IO.Pipelines.xml",
  5276. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  5277. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  5278. "lib/netstandard1.3/System.IO.Pipelines.dll",
  5279. "lib/netstandard1.3/System.IO.Pipelines.xml",
  5280. "lib/netstandard2.0/System.IO.Pipelines.dll",
  5281. "lib/netstandard2.0/System.IO.Pipelines.xml",
  5282. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  5283. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  5284. "system.io.pipelines.5.0.0.nupkg.sha512",
  5285. "system.io.pipelines.nuspec",
  5286. "useSharedDesignerContext.txt",
  5287. "version.txt"
  5288. ]
  5289. },
  5290. "System.Linq/4.1.0": {
  5291. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  5292. "type": "package",
  5293. "path": "system.linq/4.1.0",
  5294. "files": [
  5295. ".nupkg.metadata",
  5296. "ThirdPartyNotices.txt",
  5297. "dotnet_library_license.txt",
  5298. "lib/MonoAndroid10/_._",
  5299. "lib/MonoTouch10/_._",
  5300. "lib/net45/_._",
  5301. "lib/net463/System.Linq.dll",
  5302. "lib/netcore50/System.Linq.dll",
  5303. "lib/netstandard1.6/System.Linq.dll",
  5304. "lib/portable-net45+win8+wp8+wpa81/_._",
  5305. "lib/win8/_._",
  5306. "lib/wp80/_._",
  5307. "lib/wpa81/_._",
  5308. "lib/xamarinios10/_._",
  5309. "lib/xamarinmac20/_._",
  5310. "lib/xamarintvos10/_._",
  5311. "lib/xamarinwatchos10/_._",
  5312. "ref/MonoAndroid10/_._",
  5313. "ref/MonoTouch10/_._",
  5314. "ref/net45/_._",
  5315. "ref/net463/System.Linq.dll",
  5316. "ref/netcore50/System.Linq.dll",
  5317. "ref/netcore50/System.Linq.xml",
  5318. "ref/netcore50/de/System.Linq.xml",
  5319. "ref/netcore50/es/System.Linq.xml",
  5320. "ref/netcore50/fr/System.Linq.xml",
  5321. "ref/netcore50/it/System.Linq.xml",
  5322. "ref/netcore50/ja/System.Linq.xml",
  5323. "ref/netcore50/ko/System.Linq.xml",
  5324. "ref/netcore50/ru/System.Linq.xml",
  5325. "ref/netcore50/zh-hans/System.Linq.xml",
  5326. "ref/netcore50/zh-hant/System.Linq.xml",
  5327. "ref/netstandard1.0/System.Linq.dll",
  5328. "ref/netstandard1.0/System.Linq.xml",
  5329. "ref/netstandard1.0/de/System.Linq.xml",
  5330. "ref/netstandard1.0/es/System.Linq.xml",
  5331. "ref/netstandard1.0/fr/System.Linq.xml",
  5332. "ref/netstandard1.0/it/System.Linq.xml",
  5333. "ref/netstandard1.0/ja/System.Linq.xml",
  5334. "ref/netstandard1.0/ko/System.Linq.xml",
  5335. "ref/netstandard1.0/ru/System.Linq.xml",
  5336. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5337. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5338. "ref/netstandard1.6/System.Linq.dll",
  5339. "ref/netstandard1.6/System.Linq.xml",
  5340. "ref/netstandard1.6/de/System.Linq.xml",
  5341. "ref/netstandard1.6/es/System.Linq.xml",
  5342. "ref/netstandard1.6/fr/System.Linq.xml",
  5343. "ref/netstandard1.6/it/System.Linq.xml",
  5344. "ref/netstandard1.6/ja/System.Linq.xml",
  5345. "ref/netstandard1.6/ko/System.Linq.xml",
  5346. "ref/netstandard1.6/ru/System.Linq.xml",
  5347. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5348. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5349. "ref/portable-net45+win8+wp8+wpa81/_._",
  5350. "ref/win8/_._",
  5351. "ref/wp80/_._",
  5352. "ref/wpa81/_._",
  5353. "ref/xamarinios10/_._",
  5354. "ref/xamarinmac20/_._",
  5355. "ref/xamarintvos10/_._",
  5356. "ref/xamarinwatchos10/_._",
  5357. "system.linq.4.1.0.nupkg.sha512",
  5358. "system.linq.nuspec"
  5359. ]
  5360. },
  5361. "System.Linq.Expressions/4.1.0": {
  5362. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  5363. "type": "package",
  5364. "path": "system.linq.expressions/4.1.0",
  5365. "files": [
  5366. ".nupkg.metadata",
  5367. "ThirdPartyNotices.txt",
  5368. "dotnet_library_license.txt",
  5369. "lib/MonoAndroid10/_._",
  5370. "lib/MonoTouch10/_._",
  5371. "lib/net45/_._",
  5372. "lib/net463/System.Linq.Expressions.dll",
  5373. "lib/netcore50/System.Linq.Expressions.dll",
  5374. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5375. "lib/portable-net45+win8+wp8+wpa81/_._",
  5376. "lib/win8/_._",
  5377. "lib/wp80/_._",
  5378. "lib/wpa81/_._",
  5379. "lib/xamarinios10/_._",
  5380. "lib/xamarinmac20/_._",
  5381. "lib/xamarintvos10/_._",
  5382. "lib/xamarinwatchos10/_._",
  5383. "ref/MonoAndroid10/_._",
  5384. "ref/MonoTouch10/_._",
  5385. "ref/net45/_._",
  5386. "ref/net463/System.Linq.Expressions.dll",
  5387. "ref/netcore50/System.Linq.Expressions.dll",
  5388. "ref/netcore50/System.Linq.Expressions.xml",
  5389. "ref/netcore50/de/System.Linq.Expressions.xml",
  5390. "ref/netcore50/es/System.Linq.Expressions.xml",
  5391. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5392. "ref/netcore50/it/System.Linq.Expressions.xml",
  5393. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5394. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5395. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5396. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5397. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5398. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5399. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5400. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5401. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5402. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5403. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5404. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5405. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5406. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5407. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5408. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5409. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5410. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5411. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5412. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5413. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5414. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5415. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5416. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5417. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5418. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5419. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5420. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5421. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5422. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5423. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5424. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5425. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5426. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5427. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5428. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5429. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5430. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5431. "ref/portable-net45+win8+wp8+wpa81/_._",
  5432. "ref/win8/_._",
  5433. "ref/wp80/_._",
  5434. "ref/wpa81/_._",
  5435. "ref/xamarinios10/_._",
  5436. "ref/xamarinmac20/_._",
  5437. "ref/xamarintvos10/_._",
  5438. "ref/xamarinwatchos10/_._",
  5439. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5440. "system.linq.expressions.4.1.0.nupkg.sha512",
  5441. "system.linq.expressions.nuspec"
  5442. ]
  5443. },
  5444. "System.Memory/4.5.3": {
  5445. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  5446. "type": "package",
  5447. "path": "system.memory/4.5.3",
  5448. "files": [
  5449. ".nupkg.metadata",
  5450. ".signature.p7s",
  5451. "LICENSE.TXT",
  5452. "THIRD-PARTY-NOTICES.TXT",
  5453. "lib/netcoreapp2.1/_._",
  5454. "lib/netstandard1.1/System.Memory.dll",
  5455. "lib/netstandard1.1/System.Memory.xml",
  5456. "lib/netstandard2.0/System.Memory.dll",
  5457. "lib/netstandard2.0/System.Memory.xml",
  5458. "ref/netcoreapp2.1/_._",
  5459. "system.memory.4.5.3.nupkg.sha512",
  5460. "system.memory.nuspec",
  5461. "useSharedDesignerContext.txt",
  5462. "version.txt"
  5463. ]
  5464. },
  5465. "System.Net.Http/4.1.0": {
  5466. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  5467. "type": "package",
  5468. "path": "system.net.http/4.1.0",
  5469. "files": [
  5470. ".nupkg.metadata",
  5471. ".signature.p7s",
  5472. "ThirdPartyNotices.txt",
  5473. "dotnet_library_license.txt",
  5474. "lib/Xamarinmac20/_._",
  5475. "lib/monoandroid10/_._",
  5476. "lib/monotouch10/_._",
  5477. "lib/net45/_._",
  5478. "lib/net46/System.Net.Http.dll",
  5479. "lib/portable-net45+win8+wpa81/_._",
  5480. "lib/win8/_._",
  5481. "lib/wpa81/_._",
  5482. "lib/xamarinios10/_._",
  5483. "lib/xamarintvos10/_._",
  5484. "lib/xamarinwatchos10/_._",
  5485. "ref/Xamarinmac20/_._",
  5486. "ref/monoandroid10/_._",
  5487. "ref/monotouch10/_._",
  5488. "ref/net45/_._",
  5489. "ref/net46/System.Net.Http.dll",
  5490. "ref/net46/System.Net.Http.xml",
  5491. "ref/net46/de/System.Net.Http.xml",
  5492. "ref/net46/es/System.Net.Http.xml",
  5493. "ref/net46/fr/System.Net.Http.xml",
  5494. "ref/net46/it/System.Net.Http.xml",
  5495. "ref/net46/ja/System.Net.Http.xml",
  5496. "ref/net46/ko/System.Net.Http.xml",
  5497. "ref/net46/ru/System.Net.Http.xml",
  5498. "ref/net46/zh-hans/System.Net.Http.xml",
  5499. "ref/net46/zh-hant/System.Net.Http.xml",
  5500. "ref/netcore50/System.Net.Http.dll",
  5501. "ref/netcore50/System.Net.Http.xml",
  5502. "ref/netcore50/de/System.Net.Http.xml",
  5503. "ref/netcore50/es/System.Net.Http.xml",
  5504. "ref/netcore50/fr/System.Net.Http.xml",
  5505. "ref/netcore50/it/System.Net.Http.xml",
  5506. "ref/netcore50/ja/System.Net.Http.xml",
  5507. "ref/netcore50/ko/System.Net.Http.xml",
  5508. "ref/netcore50/ru/System.Net.Http.xml",
  5509. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5510. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5511. "ref/netstandard1.1/System.Net.Http.dll",
  5512. "ref/netstandard1.1/System.Net.Http.xml",
  5513. "ref/netstandard1.1/de/System.Net.Http.xml",
  5514. "ref/netstandard1.1/es/System.Net.Http.xml",
  5515. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5516. "ref/netstandard1.1/it/System.Net.Http.xml",
  5517. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5518. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5519. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5520. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5521. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5522. "ref/netstandard1.3/System.Net.Http.dll",
  5523. "ref/netstandard1.3/System.Net.Http.xml",
  5524. "ref/netstandard1.3/de/System.Net.Http.xml",
  5525. "ref/netstandard1.3/es/System.Net.Http.xml",
  5526. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5527. "ref/netstandard1.3/it/System.Net.Http.xml",
  5528. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5529. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5530. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5531. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5532. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5533. "ref/portable-net45+win8+wpa81/_._",
  5534. "ref/win8/_._",
  5535. "ref/wpa81/_._",
  5536. "ref/xamarinios10/_._",
  5537. "ref/xamarintvos10/_._",
  5538. "ref/xamarinwatchos10/_._",
  5539. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5540. "runtimes/win/lib/net46/System.Net.Http.dll",
  5541. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5542. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5543. "system.net.http.4.1.0.nupkg.sha512",
  5544. "system.net.http.nuspec"
  5545. ]
  5546. },
  5547. "System.Net.NameResolution/4.0.0": {
  5548. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  5549. "type": "package",
  5550. "path": "system.net.nameresolution/4.0.0",
  5551. "files": [
  5552. ".nupkg.metadata",
  5553. ".signature.p7s",
  5554. "ThirdPartyNotices.txt",
  5555. "dotnet_library_license.txt",
  5556. "lib/MonoAndroid10/_._",
  5557. "lib/MonoTouch10/_._",
  5558. "lib/net46/System.Net.NameResolution.dll",
  5559. "lib/xamarinios10/_._",
  5560. "lib/xamarinmac20/_._",
  5561. "lib/xamarintvos10/_._",
  5562. "lib/xamarinwatchos10/_._",
  5563. "ref/MonoAndroid10/_._",
  5564. "ref/MonoTouch10/_._",
  5565. "ref/net46/System.Net.NameResolution.dll",
  5566. "ref/netstandard1.3/System.Net.NameResolution.dll",
  5567. "ref/netstandard1.3/System.Net.NameResolution.xml",
  5568. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  5569. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  5570. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  5571. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  5572. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  5573. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  5574. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  5575. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  5576. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  5577. "ref/xamarinios10/_._",
  5578. "ref/xamarinmac20/_._",
  5579. "ref/xamarintvos10/_._",
  5580. "ref/xamarinwatchos10/_._",
  5581. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  5582. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  5583. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  5584. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  5585. "system.net.nameresolution.4.0.0.nupkg.sha512",
  5586. "system.net.nameresolution.nuspec"
  5587. ]
  5588. },
  5589. "System.Net.Primitives/4.0.11": {
  5590. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  5591. "type": "package",
  5592. "path": "system.net.primitives/4.0.11",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. "ThirdPartyNotices.txt",
  5596. "dotnet_library_license.txt",
  5597. "lib/MonoAndroid10/_._",
  5598. "lib/MonoTouch10/_._",
  5599. "lib/net45/_._",
  5600. "lib/portable-net45+win8+wp8+wpa81/_._",
  5601. "lib/win8/_._",
  5602. "lib/wp80/_._",
  5603. "lib/wpa81/_._",
  5604. "lib/xamarinios10/_._",
  5605. "lib/xamarinmac20/_._",
  5606. "lib/xamarintvos10/_._",
  5607. "lib/xamarinwatchos10/_._",
  5608. "ref/MonoAndroid10/_._",
  5609. "ref/MonoTouch10/_._",
  5610. "ref/net45/_._",
  5611. "ref/netcore50/System.Net.Primitives.dll",
  5612. "ref/netcore50/System.Net.Primitives.xml",
  5613. "ref/netcore50/de/System.Net.Primitives.xml",
  5614. "ref/netcore50/es/System.Net.Primitives.xml",
  5615. "ref/netcore50/fr/System.Net.Primitives.xml",
  5616. "ref/netcore50/it/System.Net.Primitives.xml",
  5617. "ref/netcore50/ja/System.Net.Primitives.xml",
  5618. "ref/netcore50/ko/System.Net.Primitives.xml",
  5619. "ref/netcore50/ru/System.Net.Primitives.xml",
  5620. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5621. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5622. "ref/netstandard1.0/System.Net.Primitives.dll",
  5623. "ref/netstandard1.0/System.Net.Primitives.xml",
  5624. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5625. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5626. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5627. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5628. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5629. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5630. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5631. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5632. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5633. "ref/netstandard1.1/System.Net.Primitives.dll",
  5634. "ref/netstandard1.1/System.Net.Primitives.xml",
  5635. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5636. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5637. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5638. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5639. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5640. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5641. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5642. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5643. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5644. "ref/netstandard1.3/System.Net.Primitives.dll",
  5645. "ref/netstandard1.3/System.Net.Primitives.xml",
  5646. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5647. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5648. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5649. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5650. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5651. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5652. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5653. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5654. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5655. "ref/portable-net45+win8+wp8+wpa81/_._",
  5656. "ref/win8/_._",
  5657. "ref/wp80/_._",
  5658. "ref/wpa81/_._",
  5659. "ref/xamarinios10/_._",
  5660. "ref/xamarinmac20/_._",
  5661. "ref/xamarintvos10/_._",
  5662. "ref/xamarinwatchos10/_._",
  5663. "system.net.primitives.4.0.11.nupkg.sha512",
  5664. "system.net.primitives.nuspec"
  5665. ]
  5666. },
  5667. "System.Net.Sockets/4.1.0": {
  5668. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  5669. "type": "package",
  5670. "path": "system.net.sockets/4.1.0",
  5671. "files": [
  5672. ".nupkg.metadata",
  5673. "ThirdPartyNotices.txt",
  5674. "dotnet_library_license.txt",
  5675. "lib/MonoAndroid10/_._",
  5676. "lib/MonoTouch10/_._",
  5677. "lib/net46/System.Net.Sockets.dll",
  5678. "lib/xamarinios10/_._",
  5679. "lib/xamarinmac20/_._",
  5680. "lib/xamarintvos10/_._",
  5681. "lib/xamarinwatchos10/_._",
  5682. "ref/MonoAndroid10/_._",
  5683. "ref/MonoTouch10/_._",
  5684. "ref/net46/System.Net.Sockets.dll",
  5685. "ref/netstandard1.3/System.Net.Sockets.dll",
  5686. "ref/netstandard1.3/System.Net.Sockets.xml",
  5687. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5688. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5689. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5690. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5691. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5692. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5693. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5694. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5695. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5696. "ref/xamarinios10/_._",
  5697. "ref/xamarinmac20/_._",
  5698. "ref/xamarintvos10/_._",
  5699. "ref/xamarinwatchos10/_._",
  5700. "system.net.sockets.4.1.0.nupkg.sha512",
  5701. "system.net.sockets.nuspec"
  5702. ]
  5703. },
  5704. "System.ObjectModel/4.0.12": {
  5705. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  5706. "type": "package",
  5707. "path": "system.objectmodel/4.0.12",
  5708. "files": [
  5709. ".nupkg.metadata",
  5710. "ThirdPartyNotices.txt",
  5711. "dotnet_library_license.txt",
  5712. "lib/MonoAndroid10/_._",
  5713. "lib/MonoTouch10/_._",
  5714. "lib/net45/_._",
  5715. "lib/netcore50/System.ObjectModel.dll",
  5716. "lib/netstandard1.3/System.ObjectModel.dll",
  5717. "lib/portable-net45+win8+wp8+wpa81/_._",
  5718. "lib/win8/_._",
  5719. "lib/wp80/_._",
  5720. "lib/wpa81/_._",
  5721. "lib/xamarinios10/_._",
  5722. "lib/xamarinmac20/_._",
  5723. "lib/xamarintvos10/_._",
  5724. "lib/xamarinwatchos10/_._",
  5725. "ref/MonoAndroid10/_._",
  5726. "ref/MonoTouch10/_._",
  5727. "ref/net45/_._",
  5728. "ref/netcore50/System.ObjectModel.dll",
  5729. "ref/netcore50/System.ObjectModel.xml",
  5730. "ref/netcore50/de/System.ObjectModel.xml",
  5731. "ref/netcore50/es/System.ObjectModel.xml",
  5732. "ref/netcore50/fr/System.ObjectModel.xml",
  5733. "ref/netcore50/it/System.ObjectModel.xml",
  5734. "ref/netcore50/ja/System.ObjectModel.xml",
  5735. "ref/netcore50/ko/System.ObjectModel.xml",
  5736. "ref/netcore50/ru/System.ObjectModel.xml",
  5737. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5738. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5739. "ref/netstandard1.0/System.ObjectModel.dll",
  5740. "ref/netstandard1.0/System.ObjectModel.xml",
  5741. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5742. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5743. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5744. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5745. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5746. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5747. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5748. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5749. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5750. "ref/netstandard1.3/System.ObjectModel.dll",
  5751. "ref/netstandard1.3/System.ObjectModel.xml",
  5752. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5753. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5754. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5755. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5756. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5757. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5758. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5759. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5760. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5761. "ref/portable-net45+win8+wp8+wpa81/_._",
  5762. "ref/win8/_._",
  5763. "ref/wp80/_._",
  5764. "ref/wpa81/_._",
  5765. "ref/xamarinios10/_._",
  5766. "ref/xamarinmac20/_._",
  5767. "ref/xamarintvos10/_._",
  5768. "ref/xamarinwatchos10/_._",
  5769. "system.objectmodel.4.0.12.nupkg.sha512",
  5770. "system.objectmodel.nuspec"
  5771. ]
  5772. },
  5773. "System.Reflection/4.3.0": {
  5774. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5775. "type": "package",
  5776. "path": "system.reflection/4.3.0",
  5777. "files": [
  5778. ".nupkg.metadata",
  5779. "ThirdPartyNotices.txt",
  5780. "dotnet_library_license.txt",
  5781. "lib/MonoAndroid10/_._",
  5782. "lib/MonoTouch10/_._",
  5783. "lib/net45/_._",
  5784. "lib/net462/System.Reflection.dll",
  5785. "lib/portable-net45+win8+wp8+wpa81/_._",
  5786. "lib/win8/_._",
  5787. "lib/wp80/_._",
  5788. "lib/wpa81/_._",
  5789. "lib/xamarinios10/_._",
  5790. "lib/xamarinmac20/_._",
  5791. "lib/xamarintvos10/_._",
  5792. "lib/xamarinwatchos10/_._",
  5793. "ref/MonoAndroid10/_._",
  5794. "ref/MonoTouch10/_._",
  5795. "ref/net45/_._",
  5796. "ref/net462/System.Reflection.dll",
  5797. "ref/netcore50/System.Reflection.dll",
  5798. "ref/netcore50/System.Reflection.xml",
  5799. "ref/netcore50/de/System.Reflection.xml",
  5800. "ref/netcore50/es/System.Reflection.xml",
  5801. "ref/netcore50/fr/System.Reflection.xml",
  5802. "ref/netcore50/it/System.Reflection.xml",
  5803. "ref/netcore50/ja/System.Reflection.xml",
  5804. "ref/netcore50/ko/System.Reflection.xml",
  5805. "ref/netcore50/ru/System.Reflection.xml",
  5806. "ref/netcore50/zh-hans/System.Reflection.xml",
  5807. "ref/netcore50/zh-hant/System.Reflection.xml",
  5808. "ref/netstandard1.0/System.Reflection.dll",
  5809. "ref/netstandard1.0/System.Reflection.xml",
  5810. "ref/netstandard1.0/de/System.Reflection.xml",
  5811. "ref/netstandard1.0/es/System.Reflection.xml",
  5812. "ref/netstandard1.0/fr/System.Reflection.xml",
  5813. "ref/netstandard1.0/it/System.Reflection.xml",
  5814. "ref/netstandard1.0/ja/System.Reflection.xml",
  5815. "ref/netstandard1.0/ko/System.Reflection.xml",
  5816. "ref/netstandard1.0/ru/System.Reflection.xml",
  5817. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5818. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5819. "ref/netstandard1.3/System.Reflection.dll",
  5820. "ref/netstandard1.3/System.Reflection.xml",
  5821. "ref/netstandard1.3/de/System.Reflection.xml",
  5822. "ref/netstandard1.3/es/System.Reflection.xml",
  5823. "ref/netstandard1.3/fr/System.Reflection.xml",
  5824. "ref/netstandard1.3/it/System.Reflection.xml",
  5825. "ref/netstandard1.3/ja/System.Reflection.xml",
  5826. "ref/netstandard1.3/ko/System.Reflection.xml",
  5827. "ref/netstandard1.3/ru/System.Reflection.xml",
  5828. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5829. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5830. "ref/netstandard1.5/System.Reflection.dll",
  5831. "ref/netstandard1.5/System.Reflection.xml",
  5832. "ref/netstandard1.5/de/System.Reflection.xml",
  5833. "ref/netstandard1.5/es/System.Reflection.xml",
  5834. "ref/netstandard1.5/fr/System.Reflection.xml",
  5835. "ref/netstandard1.5/it/System.Reflection.xml",
  5836. "ref/netstandard1.5/ja/System.Reflection.xml",
  5837. "ref/netstandard1.5/ko/System.Reflection.xml",
  5838. "ref/netstandard1.5/ru/System.Reflection.xml",
  5839. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5840. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5841. "ref/portable-net45+win8+wp8+wpa81/_._",
  5842. "ref/win8/_._",
  5843. "ref/wp80/_._",
  5844. "ref/wpa81/_._",
  5845. "ref/xamarinios10/_._",
  5846. "ref/xamarinmac20/_._",
  5847. "ref/xamarintvos10/_._",
  5848. "ref/xamarinwatchos10/_._",
  5849. "system.reflection.4.3.0.nupkg.sha512",
  5850. "system.reflection.nuspec"
  5851. ]
  5852. },
  5853. "System.Reflection.Emit/4.7.0": {
  5854. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  5855. "type": "package",
  5856. "path": "system.reflection.emit/4.7.0",
  5857. "files": [
  5858. ".nupkg.metadata",
  5859. ".signature.p7s",
  5860. "LICENSE.TXT",
  5861. "THIRD-PARTY-NOTICES.TXT",
  5862. "lib/MonoAndroid10/_._",
  5863. "lib/MonoTouch10/_._",
  5864. "lib/net45/_._",
  5865. "lib/netcore50/System.Reflection.Emit.dll",
  5866. "lib/netcoreapp2.0/_._",
  5867. "lib/netstandard1.1/System.Reflection.Emit.dll",
  5868. "lib/netstandard1.1/System.Reflection.Emit.xml",
  5869. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5870. "lib/netstandard2.0/System.Reflection.Emit.dll",
  5871. "lib/netstandard2.0/System.Reflection.Emit.xml",
  5872. "lib/netstandard2.1/_._",
  5873. "lib/xamarinios10/_._",
  5874. "lib/xamarinmac20/_._",
  5875. "lib/xamarintvos10/_._",
  5876. "lib/xamarinwatchos10/_._",
  5877. "ref/MonoAndroid10/_._",
  5878. "ref/MonoTouch10/_._",
  5879. "ref/net45/_._",
  5880. "ref/netcoreapp2.0/_._",
  5881. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5882. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5883. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5884. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5885. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5886. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5887. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5888. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5889. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5890. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5891. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5892. "ref/netstandard2.0/System.Reflection.Emit.dll",
  5893. "ref/netstandard2.0/System.Reflection.Emit.xml",
  5894. "ref/netstandard2.1/_._",
  5895. "ref/xamarinios10/_._",
  5896. "ref/xamarinmac20/_._",
  5897. "ref/xamarintvos10/_._",
  5898. "ref/xamarinwatchos10/_._",
  5899. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  5900. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  5901. "system.reflection.emit.4.7.0.nupkg.sha512",
  5902. "system.reflection.emit.nuspec",
  5903. "useSharedDesignerContext.txt",
  5904. "version.txt"
  5905. ]
  5906. },
  5907. "System.Reflection.Emit.ILGeneration/4.0.1": {
  5908. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  5909. "type": "package",
  5910. "path": "system.reflection.emit.ilgeneration/4.0.1",
  5911. "files": [
  5912. ".nupkg.metadata",
  5913. "ThirdPartyNotices.txt",
  5914. "dotnet_library_license.txt",
  5915. "lib/net45/_._",
  5916. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5917. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5918. "lib/portable-net45+wp8/_._",
  5919. "lib/wp80/_._",
  5920. "ref/net45/_._",
  5921. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5922. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5923. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5924. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5925. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5926. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5927. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5928. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5929. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5930. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5931. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5932. "ref/portable-net45+wp8/_._",
  5933. "ref/wp80/_._",
  5934. "runtimes/aot/lib/netcore50/_._",
  5935. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  5936. "system.reflection.emit.ilgeneration.nuspec"
  5937. ]
  5938. },
  5939. "System.Reflection.Emit.Lightweight/4.0.1": {
  5940. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  5941. "type": "package",
  5942. "path": "system.reflection.emit.lightweight/4.0.1",
  5943. "files": [
  5944. ".nupkg.metadata",
  5945. "ThirdPartyNotices.txt",
  5946. "dotnet_library_license.txt",
  5947. "lib/net45/_._",
  5948. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5949. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5950. "lib/portable-net45+wp8/_._",
  5951. "lib/wp80/_._",
  5952. "ref/net45/_._",
  5953. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5954. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5955. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5956. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5957. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5958. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5959. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5960. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5961. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5962. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5963. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5964. "ref/portable-net45+wp8/_._",
  5965. "ref/wp80/_._",
  5966. "runtimes/aot/lib/netcore50/_._",
  5967. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  5968. "system.reflection.emit.lightweight.nuspec"
  5969. ]
  5970. },
  5971. "System.Reflection.Extensions/4.0.1": {
  5972. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  5973. "type": "package",
  5974. "path": "system.reflection.extensions/4.0.1",
  5975. "files": [
  5976. ".nupkg.metadata",
  5977. "ThirdPartyNotices.txt",
  5978. "dotnet_library_license.txt",
  5979. "lib/MonoAndroid10/_._",
  5980. "lib/MonoTouch10/_._",
  5981. "lib/net45/_._",
  5982. "lib/portable-net45+win8+wp8+wpa81/_._",
  5983. "lib/win8/_._",
  5984. "lib/wp80/_._",
  5985. "lib/wpa81/_._",
  5986. "lib/xamarinios10/_._",
  5987. "lib/xamarinmac20/_._",
  5988. "lib/xamarintvos10/_._",
  5989. "lib/xamarinwatchos10/_._",
  5990. "ref/MonoAndroid10/_._",
  5991. "ref/MonoTouch10/_._",
  5992. "ref/net45/_._",
  5993. "ref/netcore50/System.Reflection.Extensions.dll",
  5994. "ref/netcore50/System.Reflection.Extensions.xml",
  5995. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5996. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5997. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5998. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5999. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6000. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6001. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6002. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6003. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6004. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6005. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6006. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6007. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6008. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6009. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6010. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6011. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6012. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6013. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6014. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6015. "ref/portable-net45+win8+wp8+wpa81/_._",
  6016. "ref/win8/_._",
  6017. "ref/wp80/_._",
  6018. "ref/wpa81/_._",
  6019. "ref/xamarinios10/_._",
  6020. "ref/xamarinmac20/_._",
  6021. "ref/xamarintvos10/_._",
  6022. "ref/xamarinwatchos10/_._",
  6023. "system.reflection.extensions.4.0.1.nupkg.sha512",
  6024. "system.reflection.extensions.nuspec"
  6025. ]
  6026. },
  6027. "System.Reflection.Primitives/4.3.0": {
  6028. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6029. "type": "package",
  6030. "path": "system.reflection.primitives/4.3.0",
  6031. "files": [
  6032. ".nupkg.metadata",
  6033. "ThirdPartyNotices.txt",
  6034. "dotnet_library_license.txt",
  6035. "lib/MonoAndroid10/_._",
  6036. "lib/MonoTouch10/_._",
  6037. "lib/net45/_._",
  6038. "lib/portable-net45+win8+wp8+wpa81/_._",
  6039. "lib/win8/_._",
  6040. "lib/wp80/_._",
  6041. "lib/wpa81/_._",
  6042. "lib/xamarinios10/_._",
  6043. "lib/xamarinmac20/_._",
  6044. "lib/xamarintvos10/_._",
  6045. "lib/xamarinwatchos10/_._",
  6046. "ref/MonoAndroid10/_._",
  6047. "ref/MonoTouch10/_._",
  6048. "ref/net45/_._",
  6049. "ref/netcore50/System.Reflection.Primitives.dll",
  6050. "ref/netcore50/System.Reflection.Primitives.xml",
  6051. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6052. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6053. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6054. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6055. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6056. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6057. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6058. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6059. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6060. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6061. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6062. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6063. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6064. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6065. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6066. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6067. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6068. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6069. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6070. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6071. "ref/portable-net45+win8+wp8+wpa81/_._",
  6072. "ref/win8/_._",
  6073. "ref/wp80/_._",
  6074. "ref/wpa81/_._",
  6075. "ref/xamarinios10/_._",
  6076. "ref/xamarinmac20/_._",
  6077. "ref/xamarintvos10/_._",
  6078. "ref/xamarinwatchos10/_._",
  6079. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6080. "system.reflection.primitives.nuspec"
  6081. ]
  6082. },
  6083. "System.Reflection.TypeExtensions/4.1.0": {
  6084. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  6085. "type": "package",
  6086. "path": "system.reflection.typeextensions/4.1.0",
  6087. "files": [
  6088. ".nupkg.metadata",
  6089. "ThirdPartyNotices.txt",
  6090. "dotnet_library_license.txt",
  6091. "lib/MonoAndroid10/_._",
  6092. "lib/MonoTouch10/_._",
  6093. "lib/net46/System.Reflection.TypeExtensions.dll",
  6094. "lib/net462/System.Reflection.TypeExtensions.dll",
  6095. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6096. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6097. "lib/xamarinios10/_._",
  6098. "lib/xamarinmac20/_._",
  6099. "lib/xamarintvos10/_._",
  6100. "lib/xamarinwatchos10/_._",
  6101. "ref/MonoAndroid10/_._",
  6102. "ref/MonoTouch10/_._",
  6103. "ref/net46/System.Reflection.TypeExtensions.dll",
  6104. "ref/net462/System.Reflection.TypeExtensions.dll",
  6105. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6106. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6107. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6108. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6109. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6110. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6111. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6112. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6113. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6114. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6115. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6116. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6117. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6118. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6119. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6120. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6121. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6122. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6123. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6124. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6125. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6126. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6127. "ref/xamarinios10/_._",
  6128. "ref/xamarinmac20/_._",
  6129. "ref/xamarintvos10/_._",
  6130. "ref/xamarinwatchos10/_._",
  6131. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6132. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  6133. "system.reflection.typeextensions.nuspec"
  6134. ]
  6135. },
  6136. "System.Resources.ResourceManager/4.0.1": {
  6137. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  6138. "type": "package",
  6139. "path": "system.resources.resourcemanager/4.0.1",
  6140. "files": [
  6141. ".nupkg.metadata",
  6142. "ThirdPartyNotices.txt",
  6143. "dotnet_library_license.txt",
  6144. "lib/MonoAndroid10/_._",
  6145. "lib/MonoTouch10/_._",
  6146. "lib/net45/_._",
  6147. "lib/portable-net45+win8+wp8+wpa81/_._",
  6148. "lib/win8/_._",
  6149. "lib/wp80/_._",
  6150. "lib/wpa81/_._",
  6151. "lib/xamarinios10/_._",
  6152. "lib/xamarinmac20/_._",
  6153. "lib/xamarintvos10/_._",
  6154. "lib/xamarinwatchos10/_._",
  6155. "ref/MonoAndroid10/_._",
  6156. "ref/MonoTouch10/_._",
  6157. "ref/net45/_._",
  6158. "ref/netcore50/System.Resources.ResourceManager.dll",
  6159. "ref/netcore50/System.Resources.ResourceManager.xml",
  6160. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6161. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6162. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6163. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6164. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6165. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6166. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6167. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6168. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6169. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6170. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6171. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6172. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6173. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6174. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6175. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6176. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6177. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6178. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6179. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6180. "ref/portable-net45+win8+wp8+wpa81/_._",
  6181. "ref/win8/_._",
  6182. "ref/wp80/_._",
  6183. "ref/wpa81/_._",
  6184. "ref/xamarinios10/_._",
  6185. "ref/xamarinmac20/_._",
  6186. "ref/xamarintvos10/_._",
  6187. "ref/xamarinwatchos10/_._",
  6188. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  6189. "system.resources.resourcemanager.nuspec"
  6190. ]
  6191. },
  6192. "System.Runtime/4.3.0": {
  6193. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6194. "type": "package",
  6195. "path": "system.runtime/4.3.0",
  6196. "files": [
  6197. ".nupkg.metadata",
  6198. "ThirdPartyNotices.txt",
  6199. "dotnet_library_license.txt",
  6200. "lib/MonoAndroid10/_._",
  6201. "lib/MonoTouch10/_._",
  6202. "lib/net45/_._",
  6203. "lib/net462/System.Runtime.dll",
  6204. "lib/portable-net45+win8+wp80+wpa81/_._",
  6205. "lib/win8/_._",
  6206. "lib/wp80/_._",
  6207. "lib/wpa81/_._",
  6208. "lib/xamarinios10/_._",
  6209. "lib/xamarinmac20/_._",
  6210. "lib/xamarintvos10/_._",
  6211. "lib/xamarinwatchos10/_._",
  6212. "ref/MonoAndroid10/_._",
  6213. "ref/MonoTouch10/_._",
  6214. "ref/net45/_._",
  6215. "ref/net462/System.Runtime.dll",
  6216. "ref/netcore50/System.Runtime.dll",
  6217. "ref/netcore50/System.Runtime.xml",
  6218. "ref/netcore50/de/System.Runtime.xml",
  6219. "ref/netcore50/es/System.Runtime.xml",
  6220. "ref/netcore50/fr/System.Runtime.xml",
  6221. "ref/netcore50/it/System.Runtime.xml",
  6222. "ref/netcore50/ja/System.Runtime.xml",
  6223. "ref/netcore50/ko/System.Runtime.xml",
  6224. "ref/netcore50/ru/System.Runtime.xml",
  6225. "ref/netcore50/zh-hans/System.Runtime.xml",
  6226. "ref/netcore50/zh-hant/System.Runtime.xml",
  6227. "ref/netstandard1.0/System.Runtime.dll",
  6228. "ref/netstandard1.0/System.Runtime.xml",
  6229. "ref/netstandard1.0/de/System.Runtime.xml",
  6230. "ref/netstandard1.0/es/System.Runtime.xml",
  6231. "ref/netstandard1.0/fr/System.Runtime.xml",
  6232. "ref/netstandard1.0/it/System.Runtime.xml",
  6233. "ref/netstandard1.0/ja/System.Runtime.xml",
  6234. "ref/netstandard1.0/ko/System.Runtime.xml",
  6235. "ref/netstandard1.0/ru/System.Runtime.xml",
  6236. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6237. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6238. "ref/netstandard1.2/System.Runtime.dll",
  6239. "ref/netstandard1.2/System.Runtime.xml",
  6240. "ref/netstandard1.2/de/System.Runtime.xml",
  6241. "ref/netstandard1.2/es/System.Runtime.xml",
  6242. "ref/netstandard1.2/fr/System.Runtime.xml",
  6243. "ref/netstandard1.2/it/System.Runtime.xml",
  6244. "ref/netstandard1.2/ja/System.Runtime.xml",
  6245. "ref/netstandard1.2/ko/System.Runtime.xml",
  6246. "ref/netstandard1.2/ru/System.Runtime.xml",
  6247. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6248. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6249. "ref/netstandard1.3/System.Runtime.dll",
  6250. "ref/netstandard1.3/System.Runtime.xml",
  6251. "ref/netstandard1.3/de/System.Runtime.xml",
  6252. "ref/netstandard1.3/es/System.Runtime.xml",
  6253. "ref/netstandard1.3/fr/System.Runtime.xml",
  6254. "ref/netstandard1.3/it/System.Runtime.xml",
  6255. "ref/netstandard1.3/ja/System.Runtime.xml",
  6256. "ref/netstandard1.3/ko/System.Runtime.xml",
  6257. "ref/netstandard1.3/ru/System.Runtime.xml",
  6258. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6259. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6260. "ref/netstandard1.5/System.Runtime.dll",
  6261. "ref/netstandard1.5/System.Runtime.xml",
  6262. "ref/netstandard1.5/de/System.Runtime.xml",
  6263. "ref/netstandard1.5/es/System.Runtime.xml",
  6264. "ref/netstandard1.5/fr/System.Runtime.xml",
  6265. "ref/netstandard1.5/it/System.Runtime.xml",
  6266. "ref/netstandard1.5/ja/System.Runtime.xml",
  6267. "ref/netstandard1.5/ko/System.Runtime.xml",
  6268. "ref/netstandard1.5/ru/System.Runtime.xml",
  6269. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6270. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6271. "ref/portable-net45+win8+wp80+wpa81/_._",
  6272. "ref/win8/_._",
  6273. "ref/wp80/_._",
  6274. "ref/wpa81/_._",
  6275. "ref/xamarinios10/_._",
  6276. "ref/xamarinmac20/_._",
  6277. "ref/xamarintvos10/_._",
  6278. "ref/xamarinwatchos10/_._",
  6279. "system.runtime.4.3.0.nupkg.sha512",
  6280. "system.runtime.nuspec"
  6281. ]
  6282. },
  6283. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  6284. "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
  6285. "type": "package",
  6286. "path": "system.runtime.compilerservices.unsafe/4.5.2",
  6287. "files": [
  6288. ".nupkg.metadata",
  6289. ".signature.p7s",
  6290. "LICENSE.TXT",
  6291. "THIRD-PARTY-NOTICES.TXT",
  6292. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6293. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6294. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6295. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6296. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6297. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6298. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6299. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6300. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6301. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6302. "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
  6303. "system.runtime.compilerservices.unsafe.nuspec",
  6304. "useSharedDesignerContext.txt",
  6305. "version.txt"
  6306. ]
  6307. },
  6308. "System.Runtime.Extensions/4.1.0": {
  6309. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  6310. "type": "package",
  6311. "path": "system.runtime.extensions/4.1.0",
  6312. "files": [
  6313. ".nupkg.metadata",
  6314. "ThirdPartyNotices.txt",
  6315. "dotnet_library_license.txt",
  6316. "lib/MonoAndroid10/_._",
  6317. "lib/MonoTouch10/_._",
  6318. "lib/net45/_._",
  6319. "lib/net462/System.Runtime.Extensions.dll",
  6320. "lib/portable-net45+win8+wp8+wpa81/_._",
  6321. "lib/win8/_._",
  6322. "lib/wp80/_._",
  6323. "lib/wpa81/_._",
  6324. "lib/xamarinios10/_._",
  6325. "lib/xamarinmac20/_._",
  6326. "lib/xamarintvos10/_._",
  6327. "lib/xamarinwatchos10/_._",
  6328. "ref/MonoAndroid10/_._",
  6329. "ref/MonoTouch10/_._",
  6330. "ref/net45/_._",
  6331. "ref/net462/System.Runtime.Extensions.dll",
  6332. "ref/netcore50/System.Runtime.Extensions.dll",
  6333. "ref/netcore50/System.Runtime.Extensions.xml",
  6334. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6335. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6336. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6337. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6338. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6339. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6340. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6341. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6342. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6343. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6344. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6345. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6346. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6347. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6348. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6349. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6350. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6351. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6352. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6353. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6354. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6355. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6356. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6357. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6358. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6359. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6360. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6361. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6362. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6363. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6364. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6365. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6366. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6367. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6368. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6369. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6370. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6371. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6372. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6373. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6374. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6375. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6376. "ref/portable-net45+win8+wp8+wpa81/_._",
  6377. "ref/win8/_._",
  6378. "ref/wp80/_._",
  6379. "ref/wpa81/_._",
  6380. "ref/xamarinios10/_._",
  6381. "ref/xamarinmac20/_._",
  6382. "ref/xamarintvos10/_._",
  6383. "ref/xamarinwatchos10/_._",
  6384. "system.runtime.extensions.4.1.0.nupkg.sha512",
  6385. "system.runtime.extensions.nuspec"
  6386. ]
  6387. },
  6388. "System.Runtime.Handles/4.0.1": {
  6389. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  6390. "type": "package",
  6391. "path": "system.runtime.handles/4.0.1",
  6392. "files": [
  6393. ".nupkg.metadata",
  6394. "ThirdPartyNotices.txt",
  6395. "dotnet_library_license.txt",
  6396. "lib/MonoAndroid10/_._",
  6397. "lib/MonoTouch10/_._",
  6398. "lib/net46/_._",
  6399. "lib/xamarinios10/_._",
  6400. "lib/xamarinmac20/_._",
  6401. "lib/xamarintvos10/_._",
  6402. "lib/xamarinwatchos10/_._",
  6403. "ref/MonoAndroid10/_._",
  6404. "ref/MonoTouch10/_._",
  6405. "ref/net46/_._",
  6406. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6407. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6408. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6409. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6410. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6411. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6412. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6413. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6414. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6415. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6416. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6417. "ref/xamarinios10/_._",
  6418. "ref/xamarinmac20/_._",
  6419. "ref/xamarintvos10/_._",
  6420. "ref/xamarinwatchos10/_._",
  6421. "system.runtime.handles.4.0.1.nupkg.sha512",
  6422. "system.runtime.handles.nuspec"
  6423. ]
  6424. },
  6425. "System.Runtime.InteropServices/4.1.0": {
  6426. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  6427. "type": "package",
  6428. "path": "system.runtime.interopservices/4.1.0",
  6429. "files": [
  6430. ".nupkg.metadata",
  6431. "ThirdPartyNotices.txt",
  6432. "dotnet_library_license.txt",
  6433. "lib/MonoAndroid10/_._",
  6434. "lib/MonoTouch10/_._",
  6435. "lib/net45/_._",
  6436. "lib/net462/System.Runtime.InteropServices.dll",
  6437. "lib/portable-net45+win8+wpa81/_._",
  6438. "lib/win8/_._",
  6439. "lib/wpa81/_._",
  6440. "lib/xamarinios10/_._",
  6441. "lib/xamarinmac20/_._",
  6442. "lib/xamarintvos10/_._",
  6443. "lib/xamarinwatchos10/_._",
  6444. "ref/MonoAndroid10/_._",
  6445. "ref/MonoTouch10/_._",
  6446. "ref/net45/_._",
  6447. "ref/net462/System.Runtime.InteropServices.dll",
  6448. "ref/netcore50/System.Runtime.InteropServices.dll",
  6449. "ref/netcore50/System.Runtime.InteropServices.xml",
  6450. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6451. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6452. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6453. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6454. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6455. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6456. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6457. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6458. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6459. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6460. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6461. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6462. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6463. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6464. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6465. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6466. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6467. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6468. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6469. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6470. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6471. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6472. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6473. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6474. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6475. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6476. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6477. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6478. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6479. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6480. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6481. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6482. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6483. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6484. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6485. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6486. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6487. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6488. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6489. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6490. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6491. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6492. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6493. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6494. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6495. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6496. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6497. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6498. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6499. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6500. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6501. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6502. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6503. "ref/portable-net45+win8+wpa81/_._",
  6504. "ref/win8/_._",
  6505. "ref/wpa81/_._",
  6506. "ref/xamarinios10/_._",
  6507. "ref/xamarinmac20/_._",
  6508. "ref/xamarintvos10/_._",
  6509. "ref/xamarinwatchos10/_._",
  6510. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  6511. "system.runtime.interopservices.nuspec"
  6512. ]
  6513. },
  6514. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  6515. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  6516. "type": "package",
  6517. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  6518. "files": [
  6519. ".nupkg.metadata",
  6520. "ThirdPartyNotices.txt",
  6521. "dotnet_library_license.txt",
  6522. "lib/MonoAndroid10/_._",
  6523. "lib/MonoTouch10/_._",
  6524. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6525. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6526. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6527. "lib/xamarinios10/_._",
  6528. "lib/xamarinmac20/_._",
  6529. "lib/xamarintvos10/_._",
  6530. "lib/xamarinwatchos10/_._",
  6531. "ref/MonoAndroid10/_._",
  6532. "ref/MonoTouch10/_._",
  6533. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6534. "ref/xamarinios10/_._",
  6535. "ref/xamarinmac20/_._",
  6536. "ref/xamarintvos10/_._",
  6537. "ref/xamarinwatchos10/_._",
  6538. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6539. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6540. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6541. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6542. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6543. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  6544. "system.runtime.interopservices.runtimeinformation.nuspec"
  6545. ]
  6546. },
  6547. "System.Runtime.Numerics/4.0.1": {
  6548. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  6549. "type": "package",
  6550. "path": "system.runtime.numerics/4.0.1",
  6551. "files": [
  6552. ".nupkg.metadata",
  6553. "ThirdPartyNotices.txt",
  6554. "dotnet_library_license.txt",
  6555. "lib/MonoAndroid10/_._",
  6556. "lib/MonoTouch10/_._",
  6557. "lib/net45/_._",
  6558. "lib/netcore50/System.Runtime.Numerics.dll",
  6559. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6560. "lib/portable-net45+win8+wpa81/_._",
  6561. "lib/win8/_._",
  6562. "lib/wpa81/_._",
  6563. "lib/xamarinios10/_._",
  6564. "lib/xamarinmac20/_._",
  6565. "lib/xamarintvos10/_._",
  6566. "lib/xamarinwatchos10/_._",
  6567. "ref/MonoAndroid10/_._",
  6568. "ref/MonoTouch10/_._",
  6569. "ref/net45/_._",
  6570. "ref/netcore50/System.Runtime.Numerics.dll",
  6571. "ref/netcore50/System.Runtime.Numerics.xml",
  6572. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6573. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6574. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6575. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6576. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6577. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6578. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6579. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6580. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6581. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6582. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6583. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6584. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6585. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6586. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6587. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6588. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6589. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6590. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6591. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6592. "ref/portable-net45+win8+wpa81/_._",
  6593. "ref/win8/_._",
  6594. "ref/wpa81/_._",
  6595. "ref/xamarinios10/_._",
  6596. "ref/xamarinmac20/_._",
  6597. "ref/xamarintvos10/_._",
  6598. "ref/xamarinwatchos10/_._",
  6599. "system.runtime.numerics.4.0.1.nupkg.sha512",
  6600. "system.runtime.numerics.nuspec"
  6601. ]
  6602. },
  6603. "System.Security.AccessControl/5.0.0": {
  6604. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  6605. "type": "package",
  6606. "path": "system.security.accesscontrol/5.0.0",
  6607. "files": [
  6608. ".nupkg.metadata",
  6609. ".signature.p7s",
  6610. "Icon.png",
  6611. "LICENSE.TXT",
  6612. "THIRD-PARTY-NOTICES.TXT",
  6613. "lib/net46/System.Security.AccessControl.dll",
  6614. "lib/net461/System.Security.AccessControl.dll",
  6615. "lib/net461/System.Security.AccessControl.xml",
  6616. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6617. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6618. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6619. "lib/uap10.0.16299/_._",
  6620. "ref/net46/System.Security.AccessControl.dll",
  6621. "ref/net461/System.Security.AccessControl.dll",
  6622. "ref/net461/System.Security.AccessControl.xml",
  6623. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6624. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6625. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6626. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6627. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6628. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6629. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6630. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6631. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6632. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6633. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6634. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6635. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6636. "ref/uap10.0.16299/_._",
  6637. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6638. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6639. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6640. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6641. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6642. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6643. "runtimes/win/lib/uap10.0.16299/_._",
  6644. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  6645. "system.security.accesscontrol.nuspec",
  6646. "useSharedDesignerContext.txt",
  6647. "version.txt"
  6648. ]
  6649. },
  6650. "System.Security.Cryptography.Algorithms/4.2.0": {
  6651. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  6652. "type": "package",
  6653. "path": "system.security.cryptography.algorithms/4.2.0",
  6654. "files": [
  6655. ".nupkg.metadata",
  6656. "ThirdPartyNotices.txt",
  6657. "dotnet_library_license.txt",
  6658. "lib/MonoAndroid10/_._",
  6659. "lib/MonoTouch10/_._",
  6660. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6661. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6662. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6663. "lib/xamarinios10/_._",
  6664. "lib/xamarinmac20/_._",
  6665. "lib/xamarintvos10/_._",
  6666. "lib/xamarinwatchos10/_._",
  6667. "ref/MonoAndroid10/_._",
  6668. "ref/MonoTouch10/_._",
  6669. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6670. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6671. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6672. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6673. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6674. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6675. "ref/xamarinios10/_._",
  6676. "ref/xamarinmac20/_._",
  6677. "ref/xamarintvos10/_._",
  6678. "ref/xamarinwatchos10/_._",
  6679. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6680. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6681. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6682. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6683. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6684. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6685. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  6686. "system.security.cryptography.algorithms.nuspec"
  6687. ]
  6688. },
  6689. "System.Security.Cryptography.Cng/4.5.0": {
  6690. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6691. "type": "package",
  6692. "path": "system.security.cryptography.cng/4.5.0",
  6693. "files": [
  6694. ".nupkg.metadata",
  6695. ".signature.p7s",
  6696. "LICENSE.TXT",
  6697. "THIRD-PARTY-NOTICES.TXT",
  6698. "lib/MonoAndroid10/_._",
  6699. "lib/MonoTouch10/_._",
  6700. "lib/net46/System.Security.Cryptography.Cng.dll",
  6701. "lib/net461/System.Security.Cryptography.Cng.dll",
  6702. "lib/net462/System.Security.Cryptography.Cng.dll",
  6703. "lib/net47/System.Security.Cryptography.Cng.dll",
  6704. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6705. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6706. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6707. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6708. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6709. "lib/uap10.0.16299/_._",
  6710. "lib/xamarinios10/_._",
  6711. "lib/xamarinmac20/_._",
  6712. "lib/xamarintvos10/_._",
  6713. "lib/xamarinwatchos10/_._",
  6714. "ref/MonoAndroid10/_._",
  6715. "ref/MonoTouch10/_._",
  6716. "ref/net46/System.Security.Cryptography.Cng.dll",
  6717. "ref/net461/System.Security.Cryptography.Cng.dll",
  6718. "ref/net461/System.Security.Cryptography.Cng.xml",
  6719. "ref/net462/System.Security.Cryptography.Cng.dll",
  6720. "ref/net462/System.Security.Cryptography.Cng.xml",
  6721. "ref/net47/System.Security.Cryptography.Cng.dll",
  6722. "ref/net47/System.Security.Cryptography.Cng.xml",
  6723. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6724. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6725. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6726. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6727. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6728. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6729. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6730. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6731. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6732. "ref/uap10.0.16299/_._",
  6733. "ref/xamarinios10/_._",
  6734. "ref/xamarinmac20/_._",
  6735. "ref/xamarintvos10/_._",
  6736. "ref/xamarinwatchos10/_._",
  6737. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6738. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6739. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6740. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6741. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6742. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6743. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6744. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6745. "runtimes/win/lib/uap10.0.16299/_._",
  6746. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6747. "system.security.cryptography.cng.nuspec",
  6748. "useSharedDesignerContext.txt",
  6749. "version.txt"
  6750. ]
  6751. },
  6752. "System.Security.Cryptography.Csp/4.0.0": {
  6753. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  6754. "type": "package",
  6755. "path": "system.security.cryptography.csp/4.0.0",
  6756. "files": [
  6757. ".nupkg.metadata",
  6758. "ThirdPartyNotices.txt",
  6759. "dotnet_library_license.txt",
  6760. "lib/MonoAndroid10/_._",
  6761. "lib/MonoTouch10/_._",
  6762. "lib/net46/System.Security.Cryptography.Csp.dll",
  6763. "lib/xamarinios10/_._",
  6764. "lib/xamarinmac20/_._",
  6765. "lib/xamarintvos10/_._",
  6766. "lib/xamarinwatchos10/_._",
  6767. "ref/MonoAndroid10/_._",
  6768. "ref/MonoTouch10/_._",
  6769. "ref/net46/System.Security.Cryptography.Csp.dll",
  6770. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6771. "ref/xamarinios10/_._",
  6772. "ref/xamarinmac20/_._",
  6773. "ref/xamarintvos10/_._",
  6774. "ref/xamarinwatchos10/_._",
  6775. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6776. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6777. "runtimes/win/lib/netcore50/_._",
  6778. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6779. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  6780. "system.security.cryptography.csp.nuspec"
  6781. ]
  6782. },
  6783. "System.Security.Cryptography.Encoding/4.0.0": {
  6784. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  6785. "type": "package",
  6786. "path": "system.security.cryptography.encoding/4.0.0",
  6787. "files": [
  6788. ".nupkg.metadata",
  6789. "ThirdPartyNotices.txt",
  6790. "dotnet_library_license.txt",
  6791. "lib/MonoAndroid10/_._",
  6792. "lib/MonoTouch10/_._",
  6793. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6794. "lib/xamarinios10/_._",
  6795. "lib/xamarinmac20/_._",
  6796. "lib/xamarintvos10/_._",
  6797. "lib/xamarinwatchos10/_._",
  6798. "ref/MonoAndroid10/_._",
  6799. "ref/MonoTouch10/_._",
  6800. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6801. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6802. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6803. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6804. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6805. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6806. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6807. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6808. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6809. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6810. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6811. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6812. "ref/xamarinios10/_._",
  6813. "ref/xamarinmac20/_._",
  6814. "ref/xamarintvos10/_._",
  6815. "ref/xamarinwatchos10/_._",
  6816. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6817. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6818. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6819. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  6820. "system.security.cryptography.encoding.nuspec"
  6821. ]
  6822. },
  6823. "System.Security.Cryptography.OpenSsl/4.0.0": {
  6824. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  6825. "type": "package",
  6826. "path": "system.security.cryptography.openssl/4.0.0",
  6827. "files": [
  6828. ".nupkg.metadata",
  6829. "ThirdPartyNotices.txt",
  6830. "dotnet_library_license.txt",
  6831. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6832. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6833. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6834. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  6835. "system.security.cryptography.openssl.nuspec"
  6836. ]
  6837. },
  6838. "System.Security.Cryptography.Primitives/4.0.0": {
  6839. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  6840. "type": "package",
  6841. "path": "system.security.cryptography.primitives/4.0.0",
  6842. "files": [
  6843. ".nupkg.metadata",
  6844. "ThirdPartyNotices.txt",
  6845. "dotnet_library_license.txt",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6849. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6850. "lib/xamarinios10/_._",
  6851. "lib/xamarinmac20/_._",
  6852. "lib/xamarintvos10/_._",
  6853. "lib/xamarinwatchos10/_._",
  6854. "ref/MonoAndroid10/_._",
  6855. "ref/MonoTouch10/_._",
  6856. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6857. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6858. "ref/xamarinios10/_._",
  6859. "ref/xamarinmac20/_._",
  6860. "ref/xamarintvos10/_._",
  6861. "ref/xamarinwatchos10/_._",
  6862. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  6863. "system.security.cryptography.primitives.nuspec"
  6864. ]
  6865. },
  6866. "System.Security.Cryptography.ProtectedData/5.0.0": {
  6867. "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
  6868. "type": "package",
  6869. "path": "system.security.cryptography.protecteddata/5.0.0",
  6870. "files": [
  6871. ".nupkg.metadata",
  6872. ".signature.p7s",
  6873. "Icon.png",
  6874. "LICENSE.TXT",
  6875. "THIRD-PARTY-NOTICES.TXT",
  6876. "lib/MonoAndroid10/_._",
  6877. "lib/MonoTouch10/_._",
  6878. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6879. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6880. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6881. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6882. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6883. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6884. "lib/xamarinios10/_._",
  6885. "lib/xamarinmac20/_._",
  6886. "lib/xamarintvos10/_._",
  6887. "lib/xamarinwatchos10/_._",
  6888. "ref/MonoAndroid10/_._",
  6889. "ref/MonoTouch10/_._",
  6890. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  6891. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  6892. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  6893. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6894. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6895. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6896. "ref/xamarinios10/_._",
  6897. "ref/xamarinmac20/_._",
  6898. "ref/xamarintvos10/_._",
  6899. "ref/xamarinwatchos10/_._",
  6900. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6901. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6902. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6903. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6904. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6905. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6906. "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512",
  6907. "system.security.cryptography.protecteddata.nuspec",
  6908. "useSharedDesignerContext.txt",
  6909. "version.txt"
  6910. ]
  6911. },
  6912. "System.Security.Cryptography.X509Certificates/4.1.0": {
  6913. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  6914. "type": "package",
  6915. "path": "system.security.cryptography.x509certificates/4.1.0",
  6916. "files": [
  6917. ".nupkg.metadata",
  6918. "ThirdPartyNotices.txt",
  6919. "dotnet_library_license.txt",
  6920. "lib/MonoAndroid10/_._",
  6921. "lib/MonoTouch10/_._",
  6922. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6923. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6924. "lib/xamarinios10/_._",
  6925. "lib/xamarinmac20/_._",
  6926. "lib/xamarintvos10/_._",
  6927. "lib/xamarinwatchos10/_._",
  6928. "ref/MonoAndroid10/_._",
  6929. "ref/MonoTouch10/_._",
  6930. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  6931. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  6932. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  6933. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  6934. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  6935. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  6936. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  6937. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  6938. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  6939. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  6940. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  6941. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6942. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6943. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  6944. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  6945. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  6946. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  6947. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  6948. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  6949. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  6950. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  6951. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  6952. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6953. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6954. "ref/xamarinios10/_._",
  6955. "ref/xamarinmac20/_._",
  6956. "ref/xamarintvos10/_._",
  6957. "ref/xamarinwatchos10/_._",
  6958. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6959. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6960. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6961. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  6962. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6963. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  6964. "system.security.cryptography.x509certificates.nuspec"
  6965. ]
  6966. },
  6967. "System.Security.Permissions/5.0.0": {
  6968. "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
  6969. "type": "package",
  6970. "path": "system.security.permissions/5.0.0",
  6971. "files": [
  6972. ".nupkg.metadata",
  6973. ".signature.p7s",
  6974. "Icon.png",
  6975. "LICENSE.TXT",
  6976. "THIRD-PARTY-NOTICES.TXT",
  6977. "lib/net461/System.Security.Permissions.dll",
  6978. "lib/net461/System.Security.Permissions.xml",
  6979. "lib/net5.0/System.Security.Permissions.dll",
  6980. "lib/net5.0/System.Security.Permissions.xml",
  6981. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  6982. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  6983. "lib/netstandard2.0/System.Security.Permissions.dll",
  6984. "lib/netstandard2.0/System.Security.Permissions.xml",
  6985. "ref/net461/System.Security.Permissions.dll",
  6986. "ref/net461/System.Security.Permissions.xml",
  6987. "ref/net5.0/System.Security.Permissions.dll",
  6988. "ref/net5.0/System.Security.Permissions.xml",
  6989. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  6990. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  6991. "ref/netstandard2.0/System.Security.Permissions.dll",
  6992. "ref/netstandard2.0/System.Security.Permissions.xml",
  6993. "system.security.permissions.5.0.0.nupkg.sha512",
  6994. "system.security.permissions.nuspec",
  6995. "useSharedDesignerContext.txt",
  6996. "version.txt"
  6997. ]
  6998. },
  6999. "System.Security.Principal.Windows/5.0.0": {
  7000. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  7001. "type": "package",
  7002. "path": "system.security.principal.windows/5.0.0",
  7003. "files": [
  7004. ".nupkg.metadata",
  7005. ".signature.p7s",
  7006. "Icon.png",
  7007. "LICENSE.TXT",
  7008. "THIRD-PARTY-NOTICES.TXT",
  7009. "lib/net46/System.Security.Principal.Windows.dll",
  7010. "lib/net461/System.Security.Principal.Windows.dll",
  7011. "lib/net461/System.Security.Principal.Windows.xml",
  7012. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7013. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7014. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7015. "lib/uap10.0.16299/_._",
  7016. "ref/net46/System.Security.Principal.Windows.dll",
  7017. "ref/net461/System.Security.Principal.Windows.dll",
  7018. "ref/net461/System.Security.Principal.Windows.xml",
  7019. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7020. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7021. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7022. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7023. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7024. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7025. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7026. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7027. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7028. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7029. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7030. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7031. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7032. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7033. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7034. "ref/uap10.0.16299/_._",
  7035. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7036. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7037. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7038. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7039. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7040. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7041. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7042. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7043. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7044. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7045. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7046. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7047. "runtimes/win/lib/uap10.0.16299/_._",
  7048. "system.security.principal.windows.5.0.0.nupkg.sha512",
  7049. "system.security.principal.windows.nuspec",
  7050. "useSharedDesignerContext.txt",
  7051. "version.txt"
  7052. ]
  7053. },
  7054. "System.ServiceProcess.ServiceController/5.0.0": {
  7055. "sha512": "p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==",
  7056. "type": "package",
  7057. "path": "system.serviceprocess.servicecontroller/5.0.0",
  7058. "files": [
  7059. ".nupkg.metadata",
  7060. ".signature.p7s",
  7061. "Icon.png",
  7062. "LICENSE.TXT",
  7063. "THIRD-PARTY-NOTICES.TXT",
  7064. "lib/net461/System.ServiceProcess.ServiceController.dll",
  7065. "lib/net461/System.ServiceProcess.ServiceController.xml",
  7066. "lib/netstandard1.4/System.ServiceProcess.ServiceController.dll",
  7067. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  7068. "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  7069. "ref/net461/System.ServiceProcess.ServiceController.dll",
  7070. "ref/net461/System.ServiceProcess.ServiceController.xml",
  7071. "ref/netstandard1.4/System.ServiceProcess.ServiceController.dll",
  7072. "ref/netstandard1.4/System.ServiceProcess.ServiceController.xml",
  7073. "ref/netstandard1.4/de/System.ServiceProcess.ServiceController.xml",
  7074. "ref/netstandard1.4/es/System.ServiceProcess.ServiceController.xml",
  7075. "ref/netstandard1.4/fr/System.ServiceProcess.ServiceController.xml",
  7076. "ref/netstandard1.4/it/System.ServiceProcess.ServiceController.xml",
  7077. "ref/netstandard1.4/ja/System.ServiceProcess.ServiceController.xml",
  7078. "ref/netstandard1.4/ko/System.ServiceProcess.ServiceController.xml",
  7079. "ref/netstandard1.4/ru/System.ServiceProcess.ServiceController.xml",
  7080. "ref/netstandard1.4/zh-hans/System.ServiceProcess.ServiceController.xml",
  7081. "ref/netstandard1.4/zh-hant/System.ServiceProcess.ServiceController.xml",
  7082. "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  7083. "ref/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  7084. "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll",
  7085. "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml",
  7086. "runtimes/win/lib/netstandard1.5/System.ServiceProcess.ServiceController.dll",
  7087. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  7088. "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  7089. "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512",
  7090. "system.serviceprocess.servicecontroller.nuspec",
  7091. "useSharedDesignerContext.txt",
  7092. "version.txt"
  7093. ]
  7094. },
  7095. "System.Text.Encoding/4.3.0": {
  7096. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7097. "type": "package",
  7098. "path": "system.text.encoding/4.3.0",
  7099. "files": [
  7100. ".nupkg.metadata",
  7101. "ThirdPartyNotices.txt",
  7102. "dotnet_library_license.txt",
  7103. "lib/MonoAndroid10/_._",
  7104. "lib/MonoTouch10/_._",
  7105. "lib/net45/_._",
  7106. "lib/portable-net45+win8+wp8+wpa81/_._",
  7107. "lib/win8/_._",
  7108. "lib/wp80/_._",
  7109. "lib/wpa81/_._",
  7110. "lib/xamarinios10/_._",
  7111. "lib/xamarinmac20/_._",
  7112. "lib/xamarintvos10/_._",
  7113. "lib/xamarinwatchos10/_._",
  7114. "ref/MonoAndroid10/_._",
  7115. "ref/MonoTouch10/_._",
  7116. "ref/net45/_._",
  7117. "ref/netcore50/System.Text.Encoding.dll",
  7118. "ref/netcore50/System.Text.Encoding.xml",
  7119. "ref/netcore50/de/System.Text.Encoding.xml",
  7120. "ref/netcore50/es/System.Text.Encoding.xml",
  7121. "ref/netcore50/fr/System.Text.Encoding.xml",
  7122. "ref/netcore50/it/System.Text.Encoding.xml",
  7123. "ref/netcore50/ja/System.Text.Encoding.xml",
  7124. "ref/netcore50/ko/System.Text.Encoding.xml",
  7125. "ref/netcore50/ru/System.Text.Encoding.xml",
  7126. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7127. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7128. "ref/netstandard1.0/System.Text.Encoding.dll",
  7129. "ref/netstandard1.0/System.Text.Encoding.xml",
  7130. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7131. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7132. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7133. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7134. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7135. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7136. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7137. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7138. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7139. "ref/netstandard1.3/System.Text.Encoding.dll",
  7140. "ref/netstandard1.3/System.Text.Encoding.xml",
  7141. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7142. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7143. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7144. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7145. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7146. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7147. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7148. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7149. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7150. "ref/portable-net45+win8+wp8+wpa81/_._",
  7151. "ref/win8/_._",
  7152. "ref/wp80/_._",
  7153. "ref/wpa81/_._",
  7154. "ref/xamarinios10/_._",
  7155. "ref/xamarinmac20/_._",
  7156. "ref/xamarintvos10/_._",
  7157. "ref/xamarinwatchos10/_._",
  7158. "system.text.encoding.4.3.0.nupkg.sha512",
  7159. "system.text.encoding.nuspec"
  7160. ]
  7161. },
  7162. "System.Text.Encoding.CodePages/4.5.1": {
  7163. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  7164. "type": "package",
  7165. "path": "system.text.encoding.codepages/4.5.1",
  7166. "files": [
  7167. ".nupkg.metadata",
  7168. ".signature.p7s",
  7169. "LICENSE.TXT",
  7170. "THIRD-PARTY-NOTICES.TXT",
  7171. "lib/MonoAndroid10/_._",
  7172. "lib/MonoTouch10/_._",
  7173. "lib/net46/System.Text.Encoding.CodePages.dll",
  7174. "lib/net461/System.Text.Encoding.CodePages.dll",
  7175. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7176. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7177. "lib/xamarinios10/_._",
  7178. "lib/xamarinmac20/_._",
  7179. "lib/xamarintvos10/_._",
  7180. "lib/xamarinwatchos10/_._",
  7181. "ref/MonoAndroid10/_._",
  7182. "ref/MonoTouch10/_._",
  7183. "ref/xamarinios10/_._",
  7184. "ref/xamarinmac20/_._",
  7185. "ref/xamarintvos10/_._",
  7186. "ref/xamarinwatchos10/_._",
  7187. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7188. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7189. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7190. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7191. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  7192. "system.text.encoding.codepages.nuspec",
  7193. "useSharedDesignerContext.txt",
  7194. "version.txt"
  7195. ]
  7196. },
  7197. "System.Text.Encoding.Extensions/4.0.11": {
  7198. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  7199. "type": "package",
  7200. "path": "system.text.encoding.extensions/4.0.11",
  7201. "files": [
  7202. ".nupkg.metadata",
  7203. "ThirdPartyNotices.txt",
  7204. "dotnet_library_license.txt",
  7205. "lib/MonoAndroid10/_._",
  7206. "lib/MonoTouch10/_._",
  7207. "lib/net45/_._",
  7208. "lib/portable-net45+win8+wp8+wpa81/_._",
  7209. "lib/win8/_._",
  7210. "lib/wp80/_._",
  7211. "lib/wpa81/_._",
  7212. "lib/xamarinios10/_._",
  7213. "lib/xamarinmac20/_._",
  7214. "lib/xamarintvos10/_._",
  7215. "lib/xamarinwatchos10/_._",
  7216. "ref/MonoAndroid10/_._",
  7217. "ref/MonoTouch10/_._",
  7218. "ref/net45/_._",
  7219. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7220. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7221. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7222. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7223. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7224. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7225. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7226. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7227. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7228. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7229. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7230. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7231. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7232. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7233. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7234. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7235. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7236. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7237. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7238. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7239. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7240. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7241. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7242. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7243. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7244. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7245. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7246. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7247. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7248. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7249. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7250. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7251. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7252. "ref/portable-net45+win8+wp8+wpa81/_._",
  7253. "ref/win8/_._",
  7254. "ref/wp80/_._",
  7255. "ref/wpa81/_._",
  7256. "ref/xamarinios10/_._",
  7257. "ref/xamarinmac20/_._",
  7258. "ref/xamarintvos10/_._",
  7259. "ref/xamarinwatchos10/_._",
  7260. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  7261. "system.text.encoding.extensions.nuspec"
  7262. ]
  7263. },
  7264. "System.Text.Json/5.0.0": {
  7265. "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==",
  7266. "type": "package",
  7267. "path": "system.text.json/5.0.0",
  7268. "files": [
  7269. ".nupkg.metadata",
  7270. ".signature.p7s",
  7271. "Icon.png",
  7272. "LICENSE.TXT",
  7273. "THIRD-PARTY-NOTICES.TXT",
  7274. "lib/net461/System.Text.Json.dll",
  7275. "lib/net461/System.Text.Json.xml",
  7276. "lib/netcoreapp3.0/System.Text.Json.dll",
  7277. "lib/netcoreapp3.0/System.Text.Json.xml",
  7278. "lib/netstandard2.0/System.Text.Json.dll",
  7279. "lib/netstandard2.0/System.Text.Json.xml",
  7280. "system.text.json.5.0.0.nupkg.sha512",
  7281. "system.text.json.nuspec",
  7282. "useSharedDesignerContext.txt",
  7283. "version.txt"
  7284. ]
  7285. },
  7286. "System.Text.RegularExpressions/4.1.0": {
  7287. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  7288. "type": "package",
  7289. "path": "system.text.regularexpressions/4.1.0",
  7290. "files": [
  7291. ".nupkg.metadata",
  7292. "ThirdPartyNotices.txt",
  7293. "dotnet_library_license.txt",
  7294. "lib/MonoAndroid10/_._",
  7295. "lib/MonoTouch10/_._",
  7296. "lib/net45/_._",
  7297. "lib/net463/System.Text.RegularExpressions.dll",
  7298. "lib/netcore50/System.Text.RegularExpressions.dll",
  7299. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7300. "lib/portable-net45+win8+wp8+wpa81/_._",
  7301. "lib/win8/_._",
  7302. "lib/wp80/_._",
  7303. "lib/wpa81/_._",
  7304. "lib/xamarinios10/_._",
  7305. "lib/xamarinmac20/_._",
  7306. "lib/xamarintvos10/_._",
  7307. "lib/xamarinwatchos10/_._",
  7308. "ref/MonoAndroid10/_._",
  7309. "ref/MonoTouch10/_._",
  7310. "ref/net45/_._",
  7311. "ref/net463/System.Text.RegularExpressions.dll",
  7312. "ref/netcore50/System.Text.RegularExpressions.dll",
  7313. "ref/netcore50/System.Text.RegularExpressions.xml",
  7314. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7315. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7316. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7317. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7318. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7319. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7320. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7321. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7322. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7323. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7324. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7325. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7326. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7327. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7328. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7329. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7330. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7331. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7332. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7333. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7334. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7335. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7336. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7337. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7338. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7339. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7340. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7341. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7342. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7343. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7344. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7345. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7346. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7347. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7348. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7349. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7350. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7351. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7352. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7353. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7354. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7355. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7356. "ref/portable-net45+win8+wp8+wpa81/_._",
  7357. "ref/win8/_._",
  7358. "ref/wp80/_._",
  7359. "ref/wpa81/_._",
  7360. "ref/xamarinios10/_._",
  7361. "ref/xamarinmac20/_._",
  7362. "ref/xamarintvos10/_._",
  7363. "ref/xamarinwatchos10/_._",
  7364. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  7365. "system.text.regularexpressions.nuspec"
  7366. ]
  7367. },
  7368. "System.Threading/4.0.11": {
  7369. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  7370. "type": "package",
  7371. "path": "system.threading/4.0.11",
  7372. "files": [
  7373. ".nupkg.metadata",
  7374. "ThirdPartyNotices.txt",
  7375. "dotnet_library_license.txt",
  7376. "lib/MonoAndroid10/_._",
  7377. "lib/MonoTouch10/_._",
  7378. "lib/net45/_._",
  7379. "lib/netcore50/System.Threading.dll",
  7380. "lib/netstandard1.3/System.Threading.dll",
  7381. "lib/portable-net45+win8+wp8+wpa81/_._",
  7382. "lib/win8/_._",
  7383. "lib/wp80/_._",
  7384. "lib/wpa81/_._",
  7385. "lib/xamarinios10/_._",
  7386. "lib/xamarinmac20/_._",
  7387. "lib/xamarintvos10/_._",
  7388. "lib/xamarinwatchos10/_._",
  7389. "ref/MonoAndroid10/_._",
  7390. "ref/MonoTouch10/_._",
  7391. "ref/net45/_._",
  7392. "ref/netcore50/System.Threading.dll",
  7393. "ref/netcore50/System.Threading.xml",
  7394. "ref/netcore50/de/System.Threading.xml",
  7395. "ref/netcore50/es/System.Threading.xml",
  7396. "ref/netcore50/fr/System.Threading.xml",
  7397. "ref/netcore50/it/System.Threading.xml",
  7398. "ref/netcore50/ja/System.Threading.xml",
  7399. "ref/netcore50/ko/System.Threading.xml",
  7400. "ref/netcore50/ru/System.Threading.xml",
  7401. "ref/netcore50/zh-hans/System.Threading.xml",
  7402. "ref/netcore50/zh-hant/System.Threading.xml",
  7403. "ref/netstandard1.0/System.Threading.dll",
  7404. "ref/netstandard1.0/System.Threading.xml",
  7405. "ref/netstandard1.0/de/System.Threading.xml",
  7406. "ref/netstandard1.0/es/System.Threading.xml",
  7407. "ref/netstandard1.0/fr/System.Threading.xml",
  7408. "ref/netstandard1.0/it/System.Threading.xml",
  7409. "ref/netstandard1.0/ja/System.Threading.xml",
  7410. "ref/netstandard1.0/ko/System.Threading.xml",
  7411. "ref/netstandard1.0/ru/System.Threading.xml",
  7412. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7413. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7414. "ref/netstandard1.3/System.Threading.dll",
  7415. "ref/netstandard1.3/System.Threading.xml",
  7416. "ref/netstandard1.3/de/System.Threading.xml",
  7417. "ref/netstandard1.3/es/System.Threading.xml",
  7418. "ref/netstandard1.3/fr/System.Threading.xml",
  7419. "ref/netstandard1.3/it/System.Threading.xml",
  7420. "ref/netstandard1.3/ja/System.Threading.xml",
  7421. "ref/netstandard1.3/ko/System.Threading.xml",
  7422. "ref/netstandard1.3/ru/System.Threading.xml",
  7423. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7424. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7425. "ref/portable-net45+win8+wp8+wpa81/_._",
  7426. "ref/win8/_._",
  7427. "ref/wp80/_._",
  7428. "ref/wpa81/_._",
  7429. "ref/xamarinios10/_._",
  7430. "ref/xamarinmac20/_._",
  7431. "ref/xamarintvos10/_._",
  7432. "ref/xamarinwatchos10/_._",
  7433. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7434. "system.threading.4.0.11.nupkg.sha512",
  7435. "system.threading.nuspec"
  7436. ]
  7437. },
  7438. "System.Threading.Tasks/4.3.0": {
  7439. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7440. "type": "package",
  7441. "path": "system.threading.tasks/4.3.0",
  7442. "files": [
  7443. ".nupkg.metadata",
  7444. "ThirdPartyNotices.txt",
  7445. "dotnet_library_license.txt",
  7446. "lib/MonoAndroid10/_._",
  7447. "lib/MonoTouch10/_._",
  7448. "lib/net45/_._",
  7449. "lib/portable-net45+win8+wp8+wpa81/_._",
  7450. "lib/win8/_._",
  7451. "lib/wp80/_._",
  7452. "lib/wpa81/_._",
  7453. "lib/xamarinios10/_._",
  7454. "lib/xamarinmac20/_._",
  7455. "lib/xamarintvos10/_._",
  7456. "lib/xamarinwatchos10/_._",
  7457. "ref/MonoAndroid10/_._",
  7458. "ref/MonoTouch10/_._",
  7459. "ref/net45/_._",
  7460. "ref/netcore50/System.Threading.Tasks.dll",
  7461. "ref/netcore50/System.Threading.Tasks.xml",
  7462. "ref/netcore50/de/System.Threading.Tasks.xml",
  7463. "ref/netcore50/es/System.Threading.Tasks.xml",
  7464. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7465. "ref/netcore50/it/System.Threading.Tasks.xml",
  7466. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7467. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7468. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7469. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7470. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7471. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7472. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7473. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7474. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7475. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7476. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7477. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7478. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7479. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7480. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7481. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7482. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7483. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7484. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7485. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7486. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7487. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7488. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7489. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7490. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7491. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7492. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7493. "ref/portable-net45+win8+wp8+wpa81/_._",
  7494. "ref/win8/_._",
  7495. "ref/wp80/_._",
  7496. "ref/wpa81/_._",
  7497. "ref/xamarinios10/_._",
  7498. "ref/xamarinmac20/_._",
  7499. "ref/xamarintvos10/_._",
  7500. "ref/xamarinwatchos10/_._",
  7501. "system.threading.tasks.4.3.0.nupkg.sha512",
  7502. "system.threading.tasks.nuspec"
  7503. ]
  7504. },
  7505. "System.Threading.Tasks.Extensions/4.0.0": {
  7506. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  7507. "type": "package",
  7508. "path": "system.threading.tasks.extensions/4.0.0",
  7509. "files": [
  7510. ".nupkg.metadata",
  7511. "ThirdPartyNotices.txt",
  7512. "dotnet_library_license.txt",
  7513. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7514. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7515. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7516. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7517. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  7518. "system.threading.tasks.extensions.nuspec"
  7519. ]
  7520. },
  7521. "System.Threading.Thread/4.0.0": {
  7522. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  7523. "type": "package",
  7524. "path": "system.threading.thread/4.0.0",
  7525. "files": [
  7526. ".nupkg.metadata",
  7527. ".signature.p7s",
  7528. "ThirdPartyNotices.txt",
  7529. "dotnet_library_license.txt",
  7530. "lib/MonoAndroid10/_._",
  7531. "lib/MonoTouch10/_._",
  7532. "lib/net46/System.Threading.Thread.dll",
  7533. "lib/netcore50/_._",
  7534. "lib/netstandard1.3/System.Threading.Thread.dll",
  7535. "lib/xamarinios10/_._",
  7536. "lib/xamarinmac20/_._",
  7537. "lib/xamarintvos10/_._",
  7538. "lib/xamarinwatchos10/_._",
  7539. "ref/MonoAndroid10/_._",
  7540. "ref/MonoTouch10/_._",
  7541. "ref/net46/System.Threading.Thread.dll",
  7542. "ref/netstandard1.3/System.Threading.Thread.dll",
  7543. "ref/netstandard1.3/System.Threading.Thread.xml",
  7544. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  7545. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  7546. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  7547. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  7548. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  7549. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  7550. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  7551. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  7552. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  7553. "ref/xamarinios10/_._",
  7554. "ref/xamarinmac20/_._",
  7555. "ref/xamarintvos10/_._",
  7556. "ref/xamarinwatchos10/_._",
  7557. "system.threading.thread.4.0.0.nupkg.sha512",
  7558. "system.threading.thread.nuspec"
  7559. ]
  7560. },
  7561. "System.Threading.ThreadPool/4.0.10": {
  7562. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  7563. "type": "package",
  7564. "path": "system.threading.threadpool/4.0.10",
  7565. "files": [
  7566. ".nupkg.metadata",
  7567. ".signature.p7s",
  7568. "ThirdPartyNotices.txt",
  7569. "dotnet_library_license.txt",
  7570. "lib/MonoAndroid10/_._",
  7571. "lib/MonoTouch10/_._",
  7572. "lib/net46/System.Threading.ThreadPool.dll",
  7573. "lib/netcore50/_._",
  7574. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  7575. "lib/xamarinios10/_._",
  7576. "lib/xamarinmac20/_._",
  7577. "lib/xamarintvos10/_._",
  7578. "lib/xamarinwatchos10/_._",
  7579. "ref/MonoAndroid10/_._",
  7580. "ref/MonoTouch10/_._",
  7581. "ref/net46/System.Threading.ThreadPool.dll",
  7582. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  7583. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  7584. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  7585. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  7586. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  7587. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  7588. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  7589. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  7590. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  7591. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  7592. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  7593. "ref/xamarinios10/_._",
  7594. "ref/xamarinmac20/_._",
  7595. "ref/xamarintvos10/_._",
  7596. "ref/xamarinwatchos10/_._",
  7597. "system.threading.threadpool.4.0.10.nupkg.sha512",
  7598. "system.threading.threadpool.nuspec"
  7599. ]
  7600. },
  7601. "System.Threading.Timer/4.0.1": {
  7602. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  7603. "type": "package",
  7604. "path": "system.threading.timer/4.0.1",
  7605. "files": [
  7606. ".nupkg.metadata",
  7607. "ThirdPartyNotices.txt",
  7608. "dotnet_library_license.txt",
  7609. "lib/MonoAndroid10/_._",
  7610. "lib/MonoTouch10/_._",
  7611. "lib/net451/_._",
  7612. "lib/portable-net451+win81+wpa81/_._",
  7613. "lib/win81/_._",
  7614. "lib/wpa81/_._",
  7615. "lib/xamarinios10/_._",
  7616. "lib/xamarinmac20/_._",
  7617. "lib/xamarintvos10/_._",
  7618. "lib/xamarinwatchos10/_._",
  7619. "ref/MonoAndroid10/_._",
  7620. "ref/MonoTouch10/_._",
  7621. "ref/net451/_._",
  7622. "ref/netcore50/System.Threading.Timer.dll",
  7623. "ref/netcore50/System.Threading.Timer.xml",
  7624. "ref/netcore50/de/System.Threading.Timer.xml",
  7625. "ref/netcore50/es/System.Threading.Timer.xml",
  7626. "ref/netcore50/fr/System.Threading.Timer.xml",
  7627. "ref/netcore50/it/System.Threading.Timer.xml",
  7628. "ref/netcore50/ja/System.Threading.Timer.xml",
  7629. "ref/netcore50/ko/System.Threading.Timer.xml",
  7630. "ref/netcore50/ru/System.Threading.Timer.xml",
  7631. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7632. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7633. "ref/netstandard1.2/System.Threading.Timer.dll",
  7634. "ref/netstandard1.2/System.Threading.Timer.xml",
  7635. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7636. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7637. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7638. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7639. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7640. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7641. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7642. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7643. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7644. "ref/portable-net451+win81+wpa81/_._",
  7645. "ref/win81/_._",
  7646. "ref/wpa81/_._",
  7647. "ref/xamarinios10/_._",
  7648. "ref/xamarinmac20/_._",
  7649. "ref/xamarintvos10/_._",
  7650. "ref/xamarinwatchos10/_._",
  7651. "system.threading.timer.4.0.1.nupkg.sha512",
  7652. "system.threading.timer.nuspec"
  7653. ]
  7654. },
  7655. "System.Windows.Extensions/5.0.0": {
  7656. "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
  7657. "type": "package",
  7658. "path": "system.windows.extensions/5.0.0",
  7659. "files": [
  7660. ".nupkg.metadata",
  7661. ".signature.p7s",
  7662. "Icon.png",
  7663. "LICENSE.TXT",
  7664. "THIRD-PARTY-NOTICES.TXT",
  7665. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7666. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7667. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  7668. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  7669. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7670. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7671. "system.windows.extensions.5.0.0.nupkg.sha512",
  7672. "system.windows.extensions.nuspec",
  7673. "useSharedDesignerContext.txt",
  7674. "version.txt"
  7675. ]
  7676. },
  7677. "System.Xml.ReaderWriter/4.0.11": {
  7678. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  7679. "type": "package",
  7680. "path": "system.xml.readerwriter/4.0.11",
  7681. "files": [
  7682. ".nupkg.metadata",
  7683. "ThirdPartyNotices.txt",
  7684. "dotnet_library_license.txt",
  7685. "lib/MonoAndroid10/_._",
  7686. "lib/MonoTouch10/_._",
  7687. "lib/net45/_._",
  7688. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7689. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7690. "lib/portable-net45+win8+wp8+wpa81/_._",
  7691. "lib/win8/_._",
  7692. "lib/wp80/_._",
  7693. "lib/wpa81/_._",
  7694. "lib/xamarinios10/_._",
  7695. "lib/xamarinmac20/_._",
  7696. "lib/xamarintvos10/_._",
  7697. "lib/xamarinwatchos10/_._",
  7698. "ref/MonoAndroid10/_._",
  7699. "ref/MonoTouch10/_._",
  7700. "ref/net45/_._",
  7701. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7702. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7703. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7704. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7705. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7706. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7707. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7708. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7709. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7710. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7711. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7712. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7713. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7714. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7715. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7716. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7717. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7718. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7719. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7720. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7721. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7722. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7723. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7724. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7725. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7726. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7727. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7728. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7729. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7730. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7731. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7732. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7733. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7734. "ref/portable-net45+win8+wp8+wpa81/_._",
  7735. "ref/win8/_._",
  7736. "ref/wp80/_._",
  7737. "ref/wpa81/_._",
  7738. "ref/xamarinios10/_._",
  7739. "ref/xamarinmac20/_._",
  7740. "ref/xamarintvos10/_._",
  7741. "ref/xamarinwatchos10/_._",
  7742. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  7743. "system.xml.readerwriter.nuspec"
  7744. ]
  7745. },
  7746. "System.Xml.XDocument/4.0.11": {
  7747. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  7748. "type": "package",
  7749. "path": "system.xml.xdocument/4.0.11",
  7750. "files": [
  7751. ".nupkg.metadata",
  7752. "ThirdPartyNotices.txt",
  7753. "dotnet_library_license.txt",
  7754. "lib/MonoAndroid10/_._",
  7755. "lib/MonoTouch10/_._",
  7756. "lib/net45/_._",
  7757. "lib/netcore50/System.Xml.XDocument.dll",
  7758. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7759. "lib/portable-net45+win8+wp8+wpa81/_._",
  7760. "lib/win8/_._",
  7761. "lib/wp80/_._",
  7762. "lib/wpa81/_._",
  7763. "lib/xamarinios10/_._",
  7764. "lib/xamarinmac20/_._",
  7765. "lib/xamarintvos10/_._",
  7766. "lib/xamarinwatchos10/_._",
  7767. "ref/MonoAndroid10/_._",
  7768. "ref/MonoTouch10/_._",
  7769. "ref/net45/_._",
  7770. "ref/netcore50/System.Xml.XDocument.dll",
  7771. "ref/netcore50/System.Xml.XDocument.xml",
  7772. "ref/netcore50/de/System.Xml.XDocument.xml",
  7773. "ref/netcore50/es/System.Xml.XDocument.xml",
  7774. "ref/netcore50/fr/System.Xml.XDocument.xml",
  7775. "ref/netcore50/it/System.Xml.XDocument.xml",
  7776. "ref/netcore50/ja/System.Xml.XDocument.xml",
  7777. "ref/netcore50/ko/System.Xml.XDocument.xml",
  7778. "ref/netcore50/ru/System.Xml.XDocument.xml",
  7779. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  7780. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  7781. "ref/netstandard1.0/System.Xml.XDocument.dll",
  7782. "ref/netstandard1.0/System.Xml.XDocument.xml",
  7783. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  7784. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  7785. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  7786. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  7787. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  7788. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  7789. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  7790. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  7791. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  7792. "ref/netstandard1.3/System.Xml.XDocument.dll",
  7793. "ref/netstandard1.3/System.Xml.XDocument.xml",
  7794. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  7795. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  7796. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  7797. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  7798. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  7799. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  7800. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  7801. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  7802. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  7803. "ref/portable-net45+win8+wp8+wpa81/_._",
  7804. "ref/win8/_._",
  7805. "ref/wp80/_._",
  7806. "ref/wpa81/_._",
  7807. "ref/xamarinios10/_._",
  7808. "ref/xamarinmac20/_._",
  7809. "ref/xamarintvos10/_._",
  7810. "ref/xamarinwatchos10/_._",
  7811. "system.xml.xdocument.4.0.11.nupkg.sha512",
  7812. "system.xml.xdocument.nuspec"
  7813. ]
  7814. },
  7815. "System.Xml.XmlDocument/4.0.1": {
  7816. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  7817. "type": "package",
  7818. "path": "system.xml.xmldocument/4.0.1",
  7819. "files": [
  7820. ".nupkg.metadata",
  7821. "ThirdPartyNotices.txt",
  7822. "dotnet_library_license.txt",
  7823. "lib/MonoAndroid10/_._",
  7824. "lib/MonoTouch10/_._",
  7825. "lib/net46/System.Xml.XmlDocument.dll",
  7826. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  7827. "lib/xamarinios10/_._",
  7828. "lib/xamarinmac20/_._",
  7829. "lib/xamarintvos10/_._",
  7830. "lib/xamarinwatchos10/_._",
  7831. "ref/MonoAndroid10/_._",
  7832. "ref/MonoTouch10/_._",
  7833. "ref/net46/System.Xml.XmlDocument.dll",
  7834. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  7835. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  7836. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  7837. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  7838. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  7839. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  7840. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  7841. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  7842. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  7843. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  7844. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  7845. "ref/xamarinios10/_._",
  7846. "ref/xamarinmac20/_._",
  7847. "ref/xamarintvos10/_._",
  7848. "ref/xamarinwatchos10/_._",
  7849. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  7850. "system.xml.xmldocument.nuspec"
  7851. ]
  7852. },
  7853. "System.Xml.XPath/4.0.1": {
  7854. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  7855. "type": "package",
  7856. "path": "system.xml.xpath/4.0.1",
  7857. "files": [
  7858. ".nupkg.metadata",
  7859. ".signature.p7s",
  7860. "ThirdPartyNotices.txt",
  7861. "dotnet_library_license.txt",
  7862. "lib/MonoAndroid10/_._",
  7863. "lib/MonoTouch10/_._",
  7864. "lib/net46/System.Xml.XPath.dll",
  7865. "lib/netstandard1.3/System.Xml.XPath.dll",
  7866. "lib/xamarinios10/_._",
  7867. "lib/xamarinmac20/_._",
  7868. "lib/xamarintvos10/_._",
  7869. "lib/xamarinwatchos10/_._",
  7870. "ref/MonoAndroid10/_._",
  7871. "ref/MonoTouch10/_._",
  7872. "ref/net46/System.Xml.XPath.dll",
  7873. "ref/netstandard1.3/System.Xml.XPath.dll",
  7874. "ref/netstandard1.3/System.Xml.XPath.xml",
  7875. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  7876. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  7877. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  7878. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  7879. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  7880. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  7881. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  7882. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  7883. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  7884. "ref/xamarinios10/_._",
  7885. "ref/xamarinmac20/_._",
  7886. "ref/xamarintvos10/_._",
  7887. "ref/xamarinwatchos10/_._",
  7888. "system.xml.xpath.4.0.1.nupkg.sha512",
  7889. "system.xml.xpath.nuspec"
  7890. ]
  7891. },
  7892. "System.Xml.XPath.XmlDocument/4.0.1": {
  7893. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  7894. "type": "package",
  7895. "path": "system.xml.xpath.xmldocument/4.0.1",
  7896. "files": [
  7897. ".nupkg.metadata",
  7898. ".signature.p7s",
  7899. "ThirdPartyNotices.txt",
  7900. "dotnet_library_license.txt",
  7901. "lib/MonoAndroid10/_._",
  7902. "lib/MonoTouch10/_._",
  7903. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7904. "lib/xamarinios10/_._",
  7905. "lib/xamarinmac20/_._",
  7906. "lib/xamarintvos10/_._",
  7907. "lib/xamarinwatchos10/_._",
  7908. "ref/MonoAndroid10/_._",
  7909. "ref/MonoTouch10/_._",
  7910. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  7911. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  7912. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  7913. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  7914. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  7915. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  7916. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  7917. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  7918. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  7919. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  7920. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  7921. "ref/xamarinios10/_._",
  7922. "ref/xamarinmac20/_._",
  7923. "ref/xamarintvos10/_._",
  7924. "ref/xamarinwatchos10/_._",
  7925. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  7926. "system.xml.xpath.xmldocument.nuspec"
  7927. ]
  7928. }
  7929. },
  7930. "projectFileDependencyGroups": {
  7931. ".NETCoreApp,Version=v3.1": [
  7932. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  7933. "Flurl.Http >= 3.2.0",
  7934. "Microsoft.Extensions.Hosting.WindowsServices >= 5.0.1",
  7935. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  7936. "NLog.Web.AspNetCore >= 4.12.0",
  7937. "Newtonsoft.Json >= 13.0.1",
  7938. "Quartz >= 3.3.2",
  7939. "StackExchange.Redis >= 2.2.62",
  7940. "Swashbuckle.AspNetCore >= 6.3.1",
  7941. "Swashbuckle.AspNetCore.Filters >= 7.0.2",
  7942. "System.IdentityModel.Tokens.Jwt >= 6.11.0"
  7943. ]
  7944. },
  7945. "packageFolders": {
  7946. "C:\\Users\\朱浩\\.nuget\\packages\\": {},
  7947. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  7948. },
  7949. "project": {
  7950. "version": "1.0.0",
  7951. "restore": {
  7952. "projectUniqueName": "D:\\svn\\imcs_ccs_2022\\ccs\\IMCS_CCS\\CCS.csproj",
  7953. "projectName": "IMCS_CCS",
  7954. "projectPath": "D:\\svn\\imcs_ccs_2022\\ccs\\IMCS_CCS\\CCS.csproj",
  7955. "packagesPath": "C:\\Users\\朱浩\\.nuget\\packages\\",
  7956. "outputPath": "D:\\svn\\imcs_ccs_2022\\ccs\\IMCS_CCS\\obj\\",
  7957. "projectStyle": "PackageReference",
  7958. "fallbackFolders": [
  7959. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  7960. ],
  7961. "configFilePaths": [
  7962. "C:\\Users\\朱浩\\AppData\\Roaming\\NuGet\\NuGet.Config",
  7963. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  7964. ],
  7965. "originalTargetFrameworks": [
  7966. "netcoreapp3.1"
  7967. ],
  7968. "sources": {
  7969. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  7970. "https://api.nuget.org/v3/index.json": {}
  7971. },
  7972. "frameworks": {
  7973. "netcoreapp3.1": {
  7974. "targetAlias": "netcoreapp3.1",
  7975. "projectReferences": {}
  7976. }
  7977. },
  7978. "warningProperties": {
  7979. "warnAsError": [
  7980. "NU1605"
  7981. ]
  7982. }
  7983. },
  7984. "frameworks": {
  7985. "netcoreapp3.1": {
  7986. "targetAlias": "netcoreapp3.1",
  7987. "dependencies": {
  7988. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  7989. "target": "Package",
  7990. "version": "[8.1.1, )"
  7991. },
  7992. "Flurl.Http": {
  7993. "target": "Package",
  7994. "version": "[3.2.0, )"
  7995. },
  7996. "Microsoft.Extensions.Hosting.WindowsServices": {
  7997. "target": "Package",
  7998. "version": "[5.0.1, )"
  7999. },
  8000. "MySql.Data.EntityFrameworkCore": {
  8001. "target": "Package",
  8002. "version": "[8.0.22, )"
  8003. },
  8004. "NLog.Web.AspNetCore": {
  8005. "target": "Package",
  8006. "version": "[4.12.0, )"
  8007. },
  8008. "Newtonsoft.Json": {
  8009. "target": "Package",
  8010. "version": "[13.0.1, )"
  8011. },
  8012. "Quartz": {
  8013. "target": "Package",
  8014. "version": "[3.3.2, )"
  8015. },
  8016. "StackExchange.Redis": {
  8017. "target": "Package",
  8018. "version": "[2.2.62, )"
  8019. },
  8020. "Swashbuckle.AspNetCore": {
  8021. "target": "Package",
  8022. "version": "[6.3.1, )"
  8023. },
  8024. "Swashbuckle.AspNetCore.Filters": {
  8025. "target": "Package",
  8026. "version": "[7.0.2, )"
  8027. },
  8028. "System.IdentityModel.Tokens.Jwt": {
  8029. "target": "Package",
  8030. "version": "[6.11.0, )"
  8031. }
  8032. },
  8033. "imports": [
  8034. "net461",
  8035. "net462",
  8036. "net47",
  8037. "net471",
  8038. "net472",
  8039. "net48"
  8040. ],
  8041. "assetTargetFallback": true,
  8042. "warn": true,
  8043. "frameworkReferences": {
  8044. "Microsoft.AspNetCore.App": {
  8045. "privateAssets": "none"
  8046. },
  8047. "Microsoft.NETCore.App": {
  8048. "privateAssets": "all"
  8049. }
  8050. },
  8051. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.408\\RuntimeIdentifierGraph.json"
  8052. }
  8053. }
  8054. }
  8055. }