project.assets.json 425 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "Autofac/6.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "System.Diagnostics.DiagnosticSource": "4.7.1"
  22. },
  23. "compile": {
  24. "lib/net5.0/Autofac.dll": {
  25. "related": ".pdb;.xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/net5.0/Autofac.dll": {
  30. "related": ".pdb;.xml"
  31. }
  32. }
  33. },
  34. "Autofac.Extensions.DependencyInjection/7.1.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Autofac": "6.0.0",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0"
  39. },
  40. "compile": {
  41. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  42. "related": ".pdb;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {
  47. "related": ".pdb;.xml"
  48. }
  49. }
  50. },
  51. "Autofac.Extras.DynamicProxy/6.0.0": {
  52. "type": "package",
  53. "dependencies": {
  54. "Autofac": "6.0.0",
  55. "Castle.Core": "4.4.0"
  56. },
  57. "compile": {
  58. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  59. "related": ".pdb;.xml"
  60. }
  61. },
  62. "runtime": {
  63. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  64. "related": ".pdb;.xml"
  65. }
  66. }
  67. },
  68. "AutoMapper/10.1.1": {
  69. "type": "package",
  70. "dependencies": {
  71. "Microsoft.CSharp": "4.7.0",
  72. "System.Reflection.Emit": "4.7.0"
  73. },
  74. "compile": {
  75. "lib/netstandard2.0/AutoMapper.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/netstandard2.0/AutoMapper.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  86. "type": "package",
  87. "dependencies": {
  88. "AutoMapper": "[10.1.1, 11.0.0)",
  89. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0",
  90. "Microsoft.Extensions.Options": "3.0.0"
  91. },
  92. "compile": {
  93. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  94. },
  95. "runtime": {
  96. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  97. }
  98. },
  99. "BouncyCastle.Cryptography/2.2.1": {
  100. "type": "package",
  101. "compile": {
  102. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "BouncyCastle.NetCore/1.8.5": {
  113. "type": "package",
  114. "compile": {
  115. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  116. "related": ".xml"
  117. }
  118. },
  119. "runtime": {
  120. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  121. "related": ".xml"
  122. }
  123. }
  124. },
  125. "Castle.Core/4.4.0": {
  126. "type": "package",
  127. "dependencies": {
  128. "NETStandard.Library": "1.6.1",
  129. "System.Collections.Specialized": "4.3.0",
  130. "System.ComponentModel": "4.3.0",
  131. "System.ComponentModel.TypeConverter": "4.3.0",
  132. "System.Diagnostics.TraceSource": "4.3.0",
  133. "System.Dynamic.Runtime": "4.3.0",
  134. "System.Reflection": "4.3.0",
  135. "System.Reflection.Emit": "4.3.0",
  136. "System.Reflection.TypeExtensions": "4.3.0",
  137. "System.Xml.XmlDocument": "4.3.0"
  138. },
  139. "compile": {
  140. "lib/netstandard1.5/Castle.Core.dll": {
  141. "related": ".xml"
  142. }
  143. },
  144. "runtime": {
  145. "lib/netstandard1.5/Castle.Core.dll": {
  146. "related": ".xml"
  147. }
  148. }
  149. },
  150. "Coravel/4.2.1": {
  151. "type": "package",
  152. "dependencies": {
  153. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  154. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  155. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  156. },
  157. "compile": {
  158. "lib/netstandard2.0/Coravel.dll": {
  159. "related": ".xml"
  160. }
  161. },
  162. "runtime": {
  163. "lib/netstandard2.0/Coravel.dll": {
  164. "related": ".xml"
  165. }
  166. }
  167. },
  168. "Enums.NET/4.0.1": {
  169. "type": "package",
  170. "compile": {
  171. "lib/netcoreapp3.0/Enums.NET.dll": {
  172. "related": ".pdb;.xml"
  173. }
  174. },
  175. "runtime": {
  176. "lib/netcoreapp3.0/Enums.NET.dll": {
  177. "related": ".pdb;.xml"
  178. }
  179. }
  180. },
  181. "FluentEmail.Core/3.0.2": {
  182. "type": "package",
  183. "dependencies": {
  184. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  185. },
  186. "compile": {
  187. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  191. }
  192. },
  193. "FluentEmail.Smtp/3.0.2": {
  194. "type": "package",
  195. "dependencies": {
  196. "FluentEmail.Core": "3.0.2"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  200. },
  201. "runtime": {
  202. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  203. }
  204. },
  205. "Google.Protobuf/3.11.4": {
  206. "type": "package",
  207. "dependencies": {
  208. "System.Memory": "4.5.2"
  209. },
  210. "compile": {
  211. "lib/netstandard2.0/Google.Protobuf.dll": {
  212. "related": ".pdb;.xml"
  213. }
  214. },
  215. "runtime": {
  216. "lib/netstandard2.0/Google.Protobuf.dll": {
  217. "related": ".pdb;.xml"
  218. }
  219. }
  220. },
  221. "Humanizer.Core/2.8.26": {
  222. "type": "package",
  223. "compile": {
  224. "lib/netstandard2.0/_._": {
  225. "related": ".xml"
  226. }
  227. },
  228. "runtime": {
  229. "lib/netstandard2.0/Humanizer.dll": {
  230. "related": ".xml"
  231. }
  232. }
  233. },
  234. "InfluxData.Net/8.0.1": {
  235. "type": "package",
  236. "dependencies": {
  237. "Newtonsoft.Json": "10.0.3",
  238. "System.Net.Http": "4.3.2"
  239. },
  240. "compile": {
  241. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  242. "related": ".dll.config;.pdb"
  243. },
  244. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  245. "related": ".dll.config;.pdb"
  246. },
  247. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  248. "related": ".dll.config;.pdb"
  249. },
  250. "lib/netstandard2.0/InfluxData.Net.dll": {
  251. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  252. }
  253. },
  254. "runtime": {
  255. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  256. "related": ".dll.config;.pdb"
  257. },
  258. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  259. "related": ".dll.config;.pdb"
  260. },
  261. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  262. "related": ".dll.config;.pdb"
  263. },
  264. "lib/netstandard2.0/InfluxData.Net.dll": {
  265. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  266. }
  267. }
  268. },
  269. "IP2Region.Ex/1.2.0": {
  270. "type": "package",
  271. "compile": {
  272. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  273. },
  274. "runtime": {
  275. "lib/netstandard2.0/IP2Region.Ex.dll": {}
  276. }
  277. },
  278. "IPTools.China/1.6.0": {
  279. "type": "package",
  280. "dependencies": {
  281. "IP2Region.Ex": "1.2.0",
  282. "IPTools.Core": "1.6.0"
  283. },
  284. "compile": {
  285. "lib/net5.0/IPTools.China.dll": {}
  286. },
  287. "runtime": {
  288. "lib/net5.0/IPTools.China.dll": {}
  289. }
  290. },
  291. "IPTools.Core/1.6.0": {
  292. "type": "package",
  293. "dependencies": {
  294. "IP2Region.Ex": "1.2.0"
  295. },
  296. "compile": {
  297. "lib/net5.0/IPTools.Core.dll": {}
  298. },
  299. "runtime": {
  300. "lib/net5.0/IPTools.Core.dll": {}
  301. },
  302. "frameworkReferences": [
  303. "Microsoft.AspNetCore.App"
  304. ]
  305. },
  306. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  307. "type": "package",
  308. "dependencies": {
  309. "AdvancedStringBuilder": "0.1.0",
  310. "JavaScriptEngineSwitcher.Core": "3.21.0"
  311. },
  312. "compile": {
  313. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  314. "related": ".xml"
  315. }
  316. },
  317. "runtime": {
  318. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  319. "related": ".xml"
  320. }
  321. },
  322. "resource": {
  323. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  324. "locale": "ru-RU"
  325. }
  326. }
  327. },
  328. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  329. "type": "package",
  330. "runtimeTargets": {
  331. "runtimes/linux-x64/native/libChakraCore.so": {
  332. "assetType": "native",
  333. "rid": "linux-x64"
  334. }
  335. }
  336. },
  337. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  338. "type": "package",
  339. "build": {
  340. "build/_._": {}
  341. },
  342. "runtimeTargets": {
  343. "runtimes/win-x64/native/ChakraCore.dll": {
  344. "assetType": "native",
  345. "rid": "win-x64"
  346. }
  347. }
  348. },
  349. "JavaScriptEngineSwitcher.Core/3.21.0": {
  350. "type": "package",
  351. "dependencies": {
  352. "AdvancedStringBuilder": "0.1.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  361. "related": ".xml"
  362. }
  363. },
  364. "resource": {
  365. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  366. "locale": "ru-RU"
  367. }
  368. }
  369. },
  370. "K4os.Compression.LZ4/1.1.11": {
  371. "type": "package",
  372. "dependencies": {
  373. "System.Memory": "4.5.3"
  374. },
  375. "compile": {
  376. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "runtime": {
  381. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  382. "related": ".xml"
  383. }
  384. }
  385. },
  386. "K4os.Compression.LZ4.Streams/1.1.11": {
  387. "type": "package",
  388. "dependencies": {
  389. "K4os.Compression.LZ4": "1.1.11",
  390. "K4os.Hash.xxHash": "1.0.6"
  391. },
  392. "compile": {
  393. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  394. "related": ".xml"
  395. }
  396. },
  397. "runtime": {
  398. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  399. "related": ".xml"
  400. }
  401. }
  402. },
  403. "K4os.Hash.xxHash/1.0.6": {
  404. "type": "package",
  405. "dependencies": {
  406. "System.Memory": "4.5.3"
  407. },
  408. "compile": {
  409. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  410. "related": ".xml"
  411. }
  412. },
  413. "runtime": {
  414. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  415. "related": ".xml"
  416. }
  417. }
  418. },
  419. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  420. "type": "package",
  421. "dependencies": {
  422. "Microsoft.EntityFrameworkCore": "5.0.0"
  423. },
  424. "compile": {
  425. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  426. "related": ".xml"
  427. }
  428. },
  429. "runtime": {
  430. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  431. "related": ".xml"
  432. }
  433. }
  434. },
  435. "log4net/2.0.17": {
  436. "type": "package",
  437. "dependencies": {
  438. "System.Configuration.ConfigurationManager": "4.5.0"
  439. },
  440. "compile": {
  441. "lib/netstandard2.0/log4net.dll": {
  442. "related": ".xml"
  443. }
  444. },
  445. "runtime": {
  446. "lib/netstandard2.0/log4net.dll": {
  447. "related": ".xml"
  448. }
  449. }
  450. },
  451. "MathNet.Numerics.Signed/4.15.0": {
  452. "type": "package",
  453. "compile": {
  454. "lib/netstandard2.0/MathNet.Numerics.dll": {
  455. "related": ".xml"
  456. }
  457. },
  458. "runtime": {
  459. "lib/netstandard2.0/MathNet.Numerics.dll": {
  460. "related": ".xml"
  461. }
  462. }
  463. },
  464. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  465. "type": "package",
  466. "dependencies": {
  467. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  468. },
  469. "compile": {
  470. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  471. "related": ".xml"
  472. }
  473. },
  474. "runtime": {
  475. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  476. "related": ".xml"
  477. }
  478. },
  479. "frameworkReferences": [
  480. "Microsoft.AspNetCore.App"
  481. ]
  482. },
  483. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1"
  487. },
  488. "compile": {
  489. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  490. "related": ".xml"
  491. }
  492. },
  493. "runtime": {
  494. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
  495. "related": ".xml"
  496. }
  497. },
  498. "frameworkReferences": [
  499. "Microsoft.AspNetCore.App"
  500. ]
  501. },
  502. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  503. "type": "package",
  504. "dependencies": {
  505. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  506. "System.Text.Encodings.Web": "4.5.0"
  507. },
  508. "compile": {
  509. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  510. "related": ".xml"
  511. }
  512. },
  513. "runtime": {
  514. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  515. "related": ".xml"
  516. }
  517. }
  518. },
  519. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Extensions.Primitives": "5.0.0",
  523. "System.IO.Pipelines": "5.0.0"
  524. },
  525. "compile": {
  526. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  527. "related": ".xml"
  528. }
  529. },
  530. "runtime": {
  531. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  532. "related": ".xml"
  533. }
  534. }
  535. },
  536. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  537. "type": "package",
  538. "dependencies": {
  539. "Microsoft.CSharp": "4.7.0",
  540. "Newtonsoft.Json": "12.0.2"
  541. },
  542. "compile": {
  543. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  544. "related": ".xml"
  545. }
  546. },
  547. "runtime": {
  548. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  549. "related": ".xml"
  550. }
  551. }
  552. },
  553. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  554. "type": "package",
  555. "dependencies": {
  556. "Microsoft.AspNetCore.JsonPatch": "5.0.0",
  557. "Newtonsoft.Json": "12.0.2",
  558. "Newtonsoft.Json.Bson": "1.0.2"
  559. },
  560. "compile": {
  561. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  562. "related": ".xml"
  563. }
  564. },
  565. "runtime": {
  566. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  567. "related": ".xml"
  568. }
  569. },
  570. "frameworkReferences": [
  571. "Microsoft.AspNetCore.App"
  572. ]
  573. },
  574. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  575. "type": "package",
  576. "dependencies": {
  577. "Microsoft.Extensions.Logging.Console": "3.1.30",
  578. "Newtonsoft.Json": "13.0.1"
  579. },
  580. "compile": {
  581. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  582. },
  583. "runtime": {
  584. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  585. },
  586. "frameworkReferences": [
  587. "Microsoft.AspNetCore.App"
  588. ]
  589. },
  590. "Microsoft.CSharp/4.7.0": {
  591. "type": "package",
  592. "compile": {
  593. "ref/netcoreapp2.0/_._": {}
  594. },
  595. "runtime": {
  596. "lib/netcoreapp2.0/_._": {}
  597. }
  598. },
  599. "Microsoft.EntityFrameworkCore/5.0.4": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.4",
  603. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.4",
  604. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  605. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  606. "Microsoft.Extensions.Logging": "5.0.0",
  607. "System.Collections.Immutable": "5.0.0",
  608. "System.ComponentModel.Annotations": "5.0.0",
  609. "System.Diagnostics.DiagnosticSource": "5.0.1"
  610. },
  611. "compile": {
  612. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  613. "related": ".xml"
  614. }
  615. },
  616. "runtime": {
  617. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  618. "related": ".xml"
  619. }
  620. }
  621. },
  622. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  623. "type": "package",
  624. "compile": {
  625. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  626. "related": ".xml"
  627. }
  628. },
  629. "runtime": {
  630. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  631. "related": ".xml"
  632. }
  633. }
  634. },
  635. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  636. "type": "package",
  637. "compile": {
  638. "lib/netstandard2.0/_._": {}
  639. },
  640. "runtime": {
  641. "lib/netstandard2.0/_._": {}
  642. }
  643. },
  644. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  645. "type": "package",
  646. "dependencies": {
  647. "Humanizer.Core": "2.8.26",
  648. "Microsoft.CSharp": "4.7.0",
  649. "Microsoft.EntityFrameworkCore.Relational": "5.0.4"
  650. },
  651. "compile": {
  652. "lib/netstandard2.1/_._": {
  653. "related": ".xml"
  654. }
  655. },
  656. "runtime": {
  657. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {
  658. "related": ".xml"
  659. }
  660. },
  661. "build": {
  662. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {}
  663. }
  664. },
  665. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  666. "type": "package",
  667. "dependencies": {
  668. "Microsoft.EntityFrameworkCore": "5.0.4",
  669. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  670. },
  671. "compile": {
  672. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  678. "related": ".xml"
  679. }
  680. }
  681. },
  682. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  683. "type": "package",
  684. "build": {
  685. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  686. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  687. },
  688. "buildMultiTargeting": {
  689. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  690. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  691. }
  692. },
  693. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  694. "type": "package",
  695. "dependencies": {
  696. "Microsoft.Extensions.Primitives": "5.0.0"
  697. },
  698. "compile": {
  699. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  700. "related": ".xml"
  701. }
  702. },
  703. "runtime": {
  704. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  705. "related": ".xml"
  706. }
  707. }
  708. },
  709. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  710. "type": "package",
  711. "dependencies": {
  712. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  713. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  714. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  715. "Microsoft.Extensions.Options": "5.0.0",
  716. "Microsoft.Extensions.Primitives": "5.0.0"
  717. },
  718. "compile": {
  719. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  720. "related": ".xml"
  721. }
  722. },
  723. "runtime": {
  724. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  725. "related": ".xml"
  726. }
  727. }
  728. },
  729. "Microsoft.Extensions.Configuration/5.0.0": {
  730. "type": "package",
  731. "dependencies": {
  732. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  733. "Microsoft.Extensions.Primitives": "5.0.0"
  734. },
  735. "compile": {
  736. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  737. "related": ".xml"
  738. }
  739. },
  740. "runtime": {
  741. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  742. "related": ".xml"
  743. }
  744. }
  745. },
  746. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  747. "type": "package",
  748. "dependencies": {
  749. "Microsoft.Extensions.Primitives": "5.0.0"
  750. },
  751. "compile": {
  752. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  753. "related": ".xml"
  754. }
  755. },
  756. "runtime": {
  757. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  758. "related": ".xml"
  759. }
  760. }
  761. },
  762. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  763. "type": "package",
  764. "dependencies": {
  765. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  766. },
  767. "compile": {
  768. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  769. "related": ".xml"
  770. }
  771. },
  772. "runtime": {
  773. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  774. "related": ".xml"
  775. }
  776. }
  777. },
  778. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  779. "type": "package",
  780. "dependencies": {
  781. "Microsoft.Extensions.Configuration": "5.0.0",
  782. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  783. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  784. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  785. "Microsoft.Extensions.Primitives": "5.0.0"
  786. },
  787. "compile": {
  788. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  789. "related": ".xml"
  790. }
  791. },
  792. "runtime": {
  793. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  794. "related": ".xml"
  795. }
  796. }
  797. },
  798. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  799. "type": "package",
  800. "dependencies": {
  801. "Microsoft.Extensions.Configuration": "5.0.0",
  802. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  803. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  804. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  805. },
  806. "compile": {
  807. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  808. "related": ".xml"
  809. }
  810. },
  811. "runtime": {
  812. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  813. "related": ".xml"
  814. }
  815. }
  816. },
  817. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  818. "type": "package",
  819. "dependencies": {
  820. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  821. },
  822. "compile": {
  823. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  824. "related": ".xml"
  825. }
  826. },
  827. "runtime": {
  828. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  829. "related": ".xml"
  830. }
  831. }
  832. },
  833. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  834. "type": "package",
  835. "compile": {
  836. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  837. "related": ".xml"
  838. }
  839. },
  840. "runtime": {
  841. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  842. "related": ".xml"
  843. }
  844. }
  845. },
  846. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.Extensions.Primitives": "5.0.0"
  850. },
  851. "compile": {
  852. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  853. "related": ".xml"
  854. }
  855. },
  856. "runtime": {
  857. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  858. "related": ".xml"
  859. }
  860. }
  861. },
  862. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  863. "type": "package",
  864. "dependencies": {
  865. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  866. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  867. "Microsoft.Extensions.Primitives": "5.0.0"
  868. },
  869. "compile": {
  870. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  871. "related": ".xml"
  872. }
  873. },
  874. "runtime": {
  875. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  876. "related": ".xml"
  877. }
  878. }
  879. },
  880. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  881. "type": "package",
  882. "compile": {
  883. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  884. "related": ".xml"
  885. }
  886. },
  887. "runtime": {
  888. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  889. "related": ".xml"
  890. }
  891. }
  892. },
  893. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  894. "type": "package",
  895. "dependencies": {
  896. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  897. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  898. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  899. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  900. },
  901. "compile": {
  902. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  903. "related": ".xml"
  904. }
  905. },
  906. "runtime": {
  907. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  908. "related": ".xml"
  909. }
  910. }
  911. },
  912. "Microsoft.Extensions.Http/5.0.0": {
  913. "type": "package",
  914. "dependencies": {
  915. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  916. "Microsoft.Extensions.Logging": "5.0.0",
  917. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  918. "Microsoft.Extensions.Options": "5.0.0"
  919. },
  920. "compile": {
  921. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  922. "related": ".xml"
  923. }
  924. },
  925. "runtime": {
  926. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  927. "related": ".xml"
  928. }
  929. }
  930. },
  931. "Microsoft.Extensions.Logging/5.0.0": {
  932. "type": "package",
  933. "dependencies": {
  934. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  935. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  936. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  937. "Microsoft.Extensions.Options": "5.0.0"
  938. },
  939. "compile": {
  940. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  941. "related": ".xml"
  942. }
  943. },
  944. "runtime": {
  945. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  946. "related": ".xml"
  947. }
  948. }
  949. },
  950. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  951. "type": "package",
  952. "compile": {
  953. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  954. "related": ".xml"
  955. }
  956. },
  957. "runtime": {
  958. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  959. "related": ".xml"
  960. }
  961. }
  962. },
  963. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  964. "type": "package",
  965. "dependencies": {
  966. "Microsoft.Extensions.Logging": "3.1.30",
  967. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  968. },
  969. "compile": {
  970. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  971. "related": ".xml"
  972. }
  973. },
  974. "runtime": {
  975. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  976. "related": ".xml"
  977. }
  978. }
  979. },
  980. "Microsoft.Extensions.Logging.Console/3.1.30": {
  981. "type": "package",
  982. "dependencies": {
  983. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  984. "Microsoft.Extensions.Logging": "3.1.30",
  985. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  986. },
  987. "compile": {
  988. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  989. "related": ".xml"
  990. }
  991. },
  992. "runtime": {
  993. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  994. "related": ".xml"
  995. }
  996. }
  997. },
  998. "Microsoft.Extensions.Options/5.0.0": {
  999. "type": "package",
  1000. "dependencies": {
  1001. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1002. "Microsoft.Extensions.Primitives": "5.0.0"
  1003. },
  1004. "compile": {
  1005. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1006. "related": ".xml"
  1007. }
  1008. },
  1009. "runtime": {
  1010. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1011. "related": ".xml"
  1012. }
  1013. }
  1014. },
  1015. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1016. "type": "package",
  1017. "dependencies": {
  1018. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  1019. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  1020. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  1021. "Microsoft.Extensions.Options": "3.1.30"
  1022. },
  1023. "compile": {
  1024. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1025. "related": ".xml"
  1026. }
  1027. },
  1028. "runtime": {
  1029. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1030. "related": ".xml"
  1031. }
  1032. }
  1033. },
  1034. "Microsoft.Extensions.Primitives/5.0.0": {
  1035. "type": "package",
  1036. "compile": {
  1037. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1038. "related": ".xml"
  1039. }
  1040. },
  1041. "runtime": {
  1042. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1043. "related": ".xml"
  1044. }
  1045. }
  1046. },
  1047. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  1048. "type": "package",
  1049. "dependencies": {
  1050. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1051. },
  1052. "compile": {
  1053. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1054. "related": ".xml"
  1055. }
  1056. },
  1057. "runtime": {
  1058. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1059. "related": ".xml"
  1060. }
  1061. }
  1062. },
  1063. "Microsoft.IdentityModel.Logging/6.7.1": {
  1064. "type": "package",
  1065. "compile": {
  1066. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1067. "related": ".xml"
  1068. }
  1069. },
  1070. "runtime": {
  1071. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1072. "related": ".xml"
  1073. }
  1074. }
  1075. },
  1076. "Microsoft.IdentityModel.Protocols/6.7.1": {
  1077. "type": "package",
  1078. "dependencies": {
  1079. "Microsoft.IdentityModel.Logging": "6.7.1",
  1080. "Microsoft.IdentityModel.Tokens": "6.7.1"
  1081. },
  1082. "compile": {
  1083. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1084. "related": ".xml"
  1085. }
  1086. },
  1087. "runtime": {
  1088. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1089. "related": ".xml"
  1090. }
  1091. }
  1092. },
  1093. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  1094. "type": "package",
  1095. "dependencies": {
  1096. "Microsoft.IdentityModel.Protocols": "6.7.1",
  1097. "System.IdentityModel.Tokens.Jwt": "6.7.1"
  1098. },
  1099. "compile": {
  1100. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1101. "related": ".xml"
  1102. }
  1103. },
  1104. "runtime": {
  1105. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1106. "related": ".xml"
  1107. }
  1108. }
  1109. },
  1110. "Microsoft.IdentityModel.Tokens/6.7.1": {
  1111. "type": "package",
  1112. "dependencies": {
  1113. "Microsoft.CSharp": "4.5.0",
  1114. "Microsoft.IdentityModel.Logging": "6.7.1",
  1115. "System.Security.Cryptography.Cng": "4.5.0"
  1116. },
  1117. "compile": {
  1118. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1119. "related": ".xml"
  1120. }
  1121. },
  1122. "runtime": {
  1123. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1124. "related": ".xml"
  1125. }
  1126. }
  1127. },
  1128. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  1129. "type": "package",
  1130. "compile": {
  1131. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1132. "related": ".xml"
  1133. }
  1134. },
  1135. "runtime": {
  1136. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  1137. "related": ".xml"
  1138. }
  1139. }
  1140. },
  1141. "Microsoft.NETCore.Platforms/5.0.0": {
  1142. "type": "package",
  1143. "compile": {
  1144. "lib/netstandard1.0/_._": {}
  1145. },
  1146. "runtime": {
  1147. "lib/netstandard1.0/_._": {}
  1148. }
  1149. },
  1150. "Microsoft.NETCore.Targets/1.1.0": {
  1151. "type": "package",
  1152. "compile": {
  1153. "lib/netstandard1.0/_._": {}
  1154. },
  1155. "runtime": {
  1156. "lib/netstandard1.0/_._": {}
  1157. }
  1158. },
  1159. "Microsoft.OpenApi/1.2.3": {
  1160. "type": "package",
  1161. "compile": {
  1162. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1163. "related": ".pdb;.xml"
  1164. }
  1165. },
  1166. "runtime": {
  1167. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1168. "related": ".pdb;.xml"
  1169. }
  1170. }
  1171. },
  1172. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  1173. "type": "package",
  1174. "build": {
  1175. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  1176. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  1177. }
  1178. },
  1179. "Microsoft.Win32.Primitives/4.3.0": {
  1180. "type": "package",
  1181. "dependencies": {
  1182. "Microsoft.NETCore.Platforms": "1.1.0",
  1183. "Microsoft.NETCore.Targets": "1.1.0",
  1184. "System.Runtime": "4.3.0"
  1185. },
  1186. "compile": {
  1187. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1188. "related": ".xml"
  1189. }
  1190. }
  1191. },
  1192. "Microsoft.Win32.SystemEvents/6.0.0": {
  1193. "type": "package",
  1194. "compile": {
  1195. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1196. "related": ".xml"
  1197. }
  1198. },
  1199. "runtime": {
  1200. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1201. "related": ".xml"
  1202. }
  1203. },
  1204. "build": {
  1205. "buildTransitive/netcoreapp3.1/_._": {}
  1206. },
  1207. "runtimeTargets": {
  1208. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1209. "assetType": "runtime",
  1210. "rid": "win"
  1211. }
  1212. }
  1213. },
  1214. "MySql.Data/8.0.23": {
  1215. "type": "package",
  1216. "dependencies": {
  1217. "BouncyCastle.NetCore": "1.8.5",
  1218. "Google.Protobuf": "3.11.4",
  1219. "K4os.Compression.LZ4": "1.1.11",
  1220. "K4os.Compression.LZ4.Streams": "1.1.11",
  1221. "K4os.Hash.xxHash": "1.0.6",
  1222. "SSH.NET": "2020.0.0-beta1",
  1223. "System.Buffers": "4.5.1",
  1224. "System.Configuration.ConfigurationManager": "4.4.1",
  1225. "System.Security.Permissions": "4.7.0",
  1226. "System.Text.Encoding.CodePages": "4.4.0"
  1227. },
  1228. "compile": {
  1229. "lib/net5.0/MySql.Data.dll": {
  1230. "related": ".xml"
  1231. },
  1232. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1233. "lib/net5.0/Zstandard.Net.dll": {}
  1234. },
  1235. "runtime": {
  1236. "lib/net5.0/MySql.Data.dll": {
  1237. "related": ".xml"
  1238. },
  1239. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  1240. "lib/net5.0/Zstandard.Net.dll": {}
  1241. }
  1242. },
  1243. "MySqlConnector/1.1.0": {
  1244. "type": "package",
  1245. "compile": {
  1246. "lib/net5.0/MySqlConnector.dll": {
  1247. "related": ".xml"
  1248. }
  1249. },
  1250. "runtime": {
  1251. "lib/net5.0/MySqlConnector.dll": {
  1252. "related": ".xml"
  1253. }
  1254. }
  1255. },
  1256. "NETStandard.Library/1.6.1": {
  1257. "type": "package",
  1258. "dependencies": {
  1259. "Microsoft.NETCore.Platforms": "1.1.0",
  1260. "Microsoft.Win32.Primitives": "4.3.0",
  1261. "System.AppContext": "4.3.0",
  1262. "System.Collections": "4.3.0",
  1263. "System.Collections.Concurrent": "4.3.0",
  1264. "System.Console": "4.3.0",
  1265. "System.Diagnostics.Debug": "4.3.0",
  1266. "System.Diagnostics.Tools": "4.3.0",
  1267. "System.Diagnostics.Tracing": "4.3.0",
  1268. "System.Globalization": "4.3.0",
  1269. "System.Globalization.Calendars": "4.3.0",
  1270. "System.IO": "4.3.0",
  1271. "System.IO.Compression": "4.3.0",
  1272. "System.IO.Compression.ZipFile": "4.3.0",
  1273. "System.IO.FileSystem": "4.3.0",
  1274. "System.IO.FileSystem.Primitives": "4.3.0",
  1275. "System.Linq": "4.3.0",
  1276. "System.Linq.Expressions": "4.3.0",
  1277. "System.Net.Http": "4.3.0",
  1278. "System.Net.Primitives": "4.3.0",
  1279. "System.Net.Sockets": "4.3.0",
  1280. "System.ObjectModel": "4.3.0",
  1281. "System.Reflection": "4.3.0",
  1282. "System.Reflection.Extensions": "4.3.0",
  1283. "System.Reflection.Primitives": "4.3.0",
  1284. "System.Resources.ResourceManager": "4.3.0",
  1285. "System.Runtime": "4.3.0",
  1286. "System.Runtime.Extensions": "4.3.0",
  1287. "System.Runtime.Handles": "4.3.0",
  1288. "System.Runtime.InteropServices": "4.3.0",
  1289. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1290. "System.Runtime.Numerics": "4.3.0",
  1291. "System.Security.Cryptography.Algorithms": "4.3.0",
  1292. "System.Security.Cryptography.Encoding": "4.3.0",
  1293. "System.Security.Cryptography.Primitives": "4.3.0",
  1294. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1295. "System.Text.Encoding": "4.3.0",
  1296. "System.Text.Encoding.Extensions": "4.3.0",
  1297. "System.Text.RegularExpressions": "4.3.0",
  1298. "System.Threading": "4.3.0",
  1299. "System.Threading.Tasks": "4.3.0",
  1300. "System.Threading.Timer": "4.3.0",
  1301. "System.Xml.ReaderWriter": "4.3.0",
  1302. "System.Xml.XDocument": "4.3.0"
  1303. }
  1304. },
  1305. "Newtonsoft.Json/13.0.1": {
  1306. "type": "package",
  1307. "compile": {
  1308. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1309. "related": ".xml"
  1310. }
  1311. },
  1312. "runtime": {
  1313. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1314. "related": ".xml"
  1315. }
  1316. }
  1317. },
  1318. "Newtonsoft.Json.Bson/1.0.2": {
  1319. "type": "package",
  1320. "dependencies": {
  1321. "Newtonsoft.Json": "12.0.1"
  1322. },
  1323. "compile": {
  1324. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1325. "related": ".pdb;.xml"
  1326. }
  1327. },
  1328. "runtime": {
  1329. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1330. "related": ".pdb;.xml"
  1331. }
  1332. }
  1333. },
  1334. "NPOI/2.6.2": {
  1335. "type": "package",
  1336. "dependencies": {
  1337. "BouncyCastle.Cryptography": "2.2.1",
  1338. "Enums.NET": "4.0.1",
  1339. "MathNet.Numerics.Signed": "4.15.0",
  1340. "Microsoft.IO.RecyclableMemoryStream": "2.3.2",
  1341. "SharpZipLib": "1.3.3",
  1342. "SixLabors.Fonts": "1.0.0",
  1343. "SixLabors.ImageSharp": "2.1.4",
  1344. "System.Configuration.ConfigurationManager": "6.0.0",
  1345. "System.Security.Cryptography.Xml": "6.0.1"
  1346. },
  1347. "compile": {
  1348. "lib/netstandard2.1/NPOI.Core.dll": {
  1349. "related": ".pdb;.xml"
  1350. },
  1351. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1352. "related": ".pdb;.xml"
  1353. },
  1354. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1355. "related": ".pdb;.xml"
  1356. },
  1357. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1358. "related": ".pdb;.xml"
  1359. }
  1360. },
  1361. "runtime": {
  1362. "lib/netstandard2.1/NPOI.Core.dll": {
  1363. "related": ".pdb;.xml"
  1364. },
  1365. "lib/netstandard2.1/NPOI.OOXML.dll": {
  1366. "related": ".pdb;.xml"
  1367. },
  1368. "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {
  1369. "related": ".pdb;.xml"
  1370. },
  1371. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {
  1372. "related": ".pdb;.xml"
  1373. }
  1374. }
  1375. },
  1376. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1377. "type": "package",
  1378. "dependencies": {
  1379. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1380. "MySqlConnector": "1.1.0"
  1381. },
  1382. "compile": {
  1383. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1384. "related": ".xml"
  1385. }
  1386. },
  1387. "runtime": {
  1388. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1389. "related": ".xml"
  1390. }
  1391. }
  1392. },
  1393. "QRCoder/1.4.3": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "System.Drawing.Common": "5.0.3"
  1397. },
  1398. "compile": {
  1399. "lib/net5.0/QRCoder.dll": {}
  1400. },
  1401. "runtime": {
  1402. "lib/net5.0/QRCoder.dll": {}
  1403. }
  1404. },
  1405. "Quartz/3.3.3": {
  1406. "type": "package",
  1407. "dependencies": {
  1408. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1409. "System.Configuration.ConfigurationManager": "4.7.0",
  1410. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1411. },
  1412. "compile": {
  1413. "lib/netstandard2.0/Quartz.dll": {
  1414. "related": ".xml"
  1415. }
  1416. },
  1417. "runtime": {
  1418. "lib/netstandard2.0/Quartz.dll": {
  1419. "related": ".xml"
  1420. }
  1421. }
  1422. },
  1423. "RabbitMQ.Client/6.8.1": {
  1424. "type": "package",
  1425. "dependencies": {
  1426. "System.Memory": "4.5.5",
  1427. "System.Threading.Channels": "7.0.0"
  1428. },
  1429. "compile": {
  1430. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1431. "related": ".xml"
  1432. }
  1433. },
  1434. "runtime": {
  1435. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1436. "related": ".xml"
  1437. }
  1438. }
  1439. },
  1440. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1441. "type": "package",
  1442. "runtimeTargets": {
  1443. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1444. "assetType": "native",
  1445. "rid": "debian.8-x64"
  1446. }
  1447. }
  1448. },
  1449. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1450. "type": "package",
  1451. "runtimeTargets": {
  1452. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1453. "assetType": "native",
  1454. "rid": "fedora.23-x64"
  1455. }
  1456. }
  1457. },
  1458. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1459. "type": "package",
  1460. "runtimeTargets": {
  1461. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1462. "assetType": "native",
  1463. "rid": "fedora.24-x64"
  1464. }
  1465. }
  1466. },
  1467. "runtime.native.System/4.3.0": {
  1468. "type": "package",
  1469. "dependencies": {
  1470. "Microsoft.NETCore.Platforms": "1.1.0",
  1471. "Microsoft.NETCore.Targets": "1.1.0"
  1472. },
  1473. "compile": {
  1474. "lib/netstandard1.0/_._": {}
  1475. },
  1476. "runtime": {
  1477. "lib/netstandard1.0/_._": {}
  1478. }
  1479. },
  1480. "runtime.native.System.IO.Compression/4.3.0": {
  1481. "type": "package",
  1482. "dependencies": {
  1483. "Microsoft.NETCore.Platforms": "1.1.0",
  1484. "Microsoft.NETCore.Targets": "1.1.0"
  1485. },
  1486. "compile": {
  1487. "lib/netstandard1.0/_._": {}
  1488. },
  1489. "runtime": {
  1490. "lib/netstandard1.0/_._": {}
  1491. }
  1492. },
  1493. "runtime.native.System.Net.Http/4.3.0": {
  1494. "type": "package",
  1495. "dependencies": {
  1496. "Microsoft.NETCore.Platforms": "1.1.0",
  1497. "Microsoft.NETCore.Targets": "1.1.0"
  1498. },
  1499. "compile": {
  1500. "lib/netstandard1.0/_._": {}
  1501. },
  1502. "runtime": {
  1503. "lib/netstandard1.0/_._": {}
  1504. }
  1505. },
  1506. "runtime.native.System.Net.Security/4.3.0": {
  1507. "type": "package",
  1508. "dependencies": {
  1509. "Microsoft.NETCore.Platforms": "1.1.0",
  1510. "Microsoft.NETCore.Targets": "1.1.0"
  1511. },
  1512. "compile": {
  1513. "lib/netstandard1.0/_._": {}
  1514. },
  1515. "runtime": {
  1516. "lib/netstandard1.0/_._": {}
  1517. }
  1518. },
  1519. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1520. "type": "package",
  1521. "dependencies": {
  1522. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1523. },
  1524. "compile": {
  1525. "lib/netstandard1.0/_._": {}
  1526. },
  1527. "runtime": {
  1528. "lib/netstandard1.0/_._": {}
  1529. }
  1530. },
  1531. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1532. "type": "package",
  1533. "dependencies": {
  1534. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1535. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1536. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1537. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1538. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1539. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1540. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1541. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1542. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1543. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1544. },
  1545. "compile": {
  1546. "lib/netstandard1.0/_._": {}
  1547. },
  1548. "runtime": {
  1549. "lib/netstandard1.0/_._": {}
  1550. }
  1551. },
  1552. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1553. "type": "package",
  1554. "runtimeTargets": {
  1555. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1556. "assetType": "native",
  1557. "rid": "opensuse.13.2-x64"
  1558. }
  1559. }
  1560. },
  1561. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1562. "type": "package",
  1563. "runtimeTargets": {
  1564. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1565. "assetType": "native",
  1566. "rid": "opensuse.42.1-x64"
  1567. }
  1568. }
  1569. },
  1570. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1571. "type": "package",
  1572. "runtimeTargets": {
  1573. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1574. "assetType": "native",
  1575. "rid": "osx.10.10-x64"
  1576. }
  1577. }
  1578. },
  1579. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1580. "type": "package",
  1581. "runtimeTargets": {
  1582. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1583. "assetType": "native",
  1584. "rid": "osx.10.10-x64"
  1585. }
  1586. }
  1587. },
  1588. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1589. "type": "package",
  1590. "runtimeTargets": {
  1591. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1592. "assetType": "native",
  1593. "rid": "rhel.7-x64"
  1594. }
  1595. }
  1596. },
  1597. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1598. "type": "package",
  1599. "runtimeTargets": {
  1600. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1601. "assetType": "native",
  1602. "rid": "ubuntu.14.04-x64"
  1603. }
  1604. }
  1605. },
  1606. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1607. "type": "package",
  1608. "runtimeTargets": {
  1609. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1610. "assetType": "native",
  1611. "rid": "ubuntu.16.04-x64"
  1612. }
  1613. }
  1614. },
  1615. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1616. "type": "package",
  1617. "runtimeTargets": {
  1618. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1619. "assetType": "native",
  1620. "rid": "ubuntu.16.10-x64"
  1621. }
  1622. }
  1623. },
  1624. "SharpZipLib/1.3.3": {
  1625. "type": "package",
  1626. "compile": {
  1627. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1628. "related": ".pdb;.xml"
  1629. }
  1630. },
  1631. "runtime": {
  1632. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
  1633. "related": ".pdb;.xml"
  1634. }
  1635. }
  1636. },
  1637. "SixLabors.Fonts/1.0.0": {
  1638. "type": "package",
  1639. "compile": {
  1640. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1641. "related": ".xml"
  1642. }
  1643. },
  1644. "runtime": {
  1645. "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
  1646. "related": ".xml"
  1647. }
  1648. }
  1649. },
  1650. "SixLabors.ImageSharp/2.1.6": {
  1651. "type": "package",
  1652. "dependencies": {
  1653. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1654. "System.Text.Encoding.CodePages": "5.0.0"
  1655. },
  1656. "compile": {
  1657. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1658. "related": ".xml"
  1659. }
  1660. },
  1661. "runtime": {
  1662. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1663. "related": ".xml"
  1664. }
  1665. }
  1666. },
  1667. "SSH.NET/2020.0.0-beta1": {
  1668. "type": "package",
  1669. "dependencies": {
  1670. "SshNet.Security.Cryptography": "[1.3.0]"
  1671. },
  1672. "compile": {
  1673. "lib/netstandard2.0/Renci.SshNet.dll": {
  1674. "related": ".xml"
  1675. }
  1676. },
  1677. "runtime": {
  1678. "lib/netstandard2.0/Renci.SshNet.dll": {
  1679. "related": ".xml"
  1680. }
  1681. }
  1682. },
  1683. "SshNet.Security.Cryptography/1.3.0": {
  1684. "type": "package",
  1685. "compile": {
  1686. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1687. "related": ".xml"
  1688. }
  1689. },
  1690. "runtime": {
  1691. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1692. "related": ".xml"
  1693. }
  1694. }
  1695. },
  1696. "StackExchange.Redis/1.2.4": {
  1697. "type": "package",
  1698. "dependencies": {
  1699. "NETStandard.Library": "1.6.1",
  1700. "System.Collections": "4.3.0",
  1701. "System.Collections.Concurrent": "4.3.0",
  1702. "System.Collections.NonGeneric": "4.3.0",
  1703. "System.Diagnostics.Tools": "4.3.0",
  1704. "System.IO.Compression": "4.3.0",
  1705. "System.IO.FileSystem": "4.3.0",
  1706. "System.Linq": "4.3.0",
  1707. "System.Net.NameResolution": "4.3.0",
  1708. "System.Net.Security": "4.3.0",
  1709. "System.Net.Sockets": "4.3.0",
  1710. "System.Reflection.Emit": "4.3.0",
  1711. "System.Reflection.Emit.Lightweight": "4.3.0",
  1712. "System.Reflection.TypeExtensions": "4.3.0",
  1713. "System.Runtime.Extensions": "4.3.0",
  1714. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1715. "System.Security.Cryptography.Algorithms": "4.3.0",
  1716. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1717. "System.Text.RegularExpressions": "4.3.0",
  1718. "System.Threading": "4.3.0",
  1719. "System.Threading.Thread": "4.3.0",
  1720. "System.Threading.ThreadPool": "4.3.0",
  1721. "System.Threading.Timer": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1725. "related": ".xml"
  1726. }
  1727. },
  1728. "runtime": {
  1729. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1730. "related": ".xml"
  1731. }
  1732. }
  1733. },
  1734. "Swashbuckle.AspNetCore/5.6.3": {
  1735. "type": "package",
  1736. "dependencies": {
  1737. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1738. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1739. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1740. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1741. },
  1742. "build": {
  1743. "build/Swashbuckle.AspNetCore.props": {}
  1744. }
  1745. },
  1746. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1747. "type": "package",
  1748. "dependencies": {
  1749. "Microsoft.OpenApi": "1.2.3"
  1750. },
  1751. "compile": {
  1752. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1753. "related": ".pdb;.xml"
  1754. }
  1755. },
  1756. "runtime": {
  1757. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1758. "related": ".pdb;.xml"
  1759. }
  1760. },
  1761. "frameworkReferences": [
  1762. "Microsoft.AspNetCore.App"
  1763. ]
  1764. },
  1765. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1766. "type": "package",
  1767. "dependencies": {
  1768. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1769. },
  1770. "compile": {
  1771. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1772. "related": ".pdb;.xml"
  1773. }
  1774. },
  1775. "runtime": {
  1776. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1777. "related": ".pdb;.xml"
  1778. }
  1779. },
  1780. "frameworkReferences": [
  1781. "Microsoft.AspNetCore.App"
  1782. ]
  1783. },
  1784. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1785. "type": "package",
  1786. "compile": {
  1787. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1788. "related": ".pdb;.xml"
  1789. }
  1790. },
  1791. "runtime": {
  1792. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1793. "related": ".pdb;.xml"
  1794. }
  1795. },
  1796. "frameworkReferences": [
  1797. "Microsoft.AspNetCore.App"
  1798. ]
  1799. },
  1800. "System.AppContext/4.3.0": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "System.Runtime": "4.3.0"
  1804. },
  1805. "compile": {
  1806. "ref/netstandard1.6/System.AppContext.dll": {
  1807. "related": ".xml"
  1808. }
  1809. },
  1810. "runtime": {
  1811. "lib/netstandard1.6/System.AppContext.dll": {}
  1812. }
  1813. },
  1814. "System.Buffers/4.5.1": {
  1815. "type": "package",
  1816. "compile": {
  1817. "ref/netcoreapp2.0/_._": {}
  1818. },
  1819. "runtime": {
  1820. "lib/netcoreapp2.0/_._": {}
  1821. }
  1822. },
  1823. "System.Collections/4.3.0": {
  1824. "type": "package",
  1825. "dependencies": {
  1826. "Microsoft.NETCore.Platforms": "1.1.0",
  1827. "Microsoft.NETCore.Targets": "1.1.0",
  1828. "System.Runtime": "4.3.0"
  1829. },
  1830. "compile": {
  1831. "ref/netstandard1.3/System.Collections.dll": {
  1832. "related": ".xml"
  1833. }
  1834. }
  1835. },
  1836. "System.Collections.Concurrent/4.3.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "System.Collections": "4.3.0",
  1840. "System.Diagnostics.Debug": "4.3.0",
  1841. "System.Diagnostics.Tracing": "4.3.0",
  1842. "System.Globalization": "4.3.0",
  1843. "System.Reflection": "4.3.0",
  1844. "System.Resources.ResourceManager": "4.3.0",
  1845. "System.Runtime": "4.3.0",
  1846. "System.Runtime.Extensions": "4.3.0",
  1847. "System.Threading": "4.3.0",
  1848. "System.Threading.Tasks": "4.3.0"
  1849. },
  1850. "compile": {
  1851. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1852. "related": ".xml"
  1853. }
  1854. },
  1855. "runtime": {
  1856. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1857. }
  1858. },
  1859. "System.Collections.Immutable/5.0.0": {
  1860. "type": "package",
  1861. "compile": {
  1862. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1863. "related": ".xml"
  1864. }
  1865. },
  1866. "runtime": {
  1867. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1868. "related": ".xml"
  1869. }
  1870. }
  1871. },
  1872. "System.Collections.NonGeneric/4.3.0": {
  1873. "type": "package",
  1874. "dependencies": {
  1875. "System.Diagnostics.Debug": "4.3.0",
  1876. "System.Globalization": "4.3.0",
  1877. "System.Resources.ResourceManager": "4.3.0",
  1878. "System.Runtime": "4.3.0",
  1879. "System.Runtime.Extensions": "4.3.0",
  1880. "System.Threading": "4.3.0"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1884. "related": ".xml"
  1885. }
  1886. },
  1887. "runtime": {
  1888. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1889. }
  1890. },
  1891. "System.Collections.Specialized/4.3.0": {
  1892. "type": "package",
  1893. "dependencies": {
  1894. "System.Collections.NonGeneric": "4.3.0",
  1895. "System.Globalization": "4.3.0",
  1896. "System.Globalization.Extensions": "4.3.0",
  1897. "System.Resources.ResourceManager": "4.3.0",
  1898. "System.Runtime": "4.3.0",
  1899. "System.Runtime.Extensions": "4.3.0",
  1900. "System.Threading": "4.3.0"
  1901. },
  1902. "compile": {
  1903. "ref/netstandard1.3/System.Collections.Specialized.dll": {
  1904. "related": ".xml"
  1905. }
  1906. },
  1907. "runtime": {
  1908. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1909. }
  1910. },
  1911. "System.ComponentModel/4.3.0": {
  1912. "type": "package",
  1913. "dependencies": {
  1914. "System.Runtime": "4.3.0"
  1915. },
  1916. "compile": {
  1917. "ref/netstandard1.0/System.ComponentModel.dll": {
  1918. "related": ".xml"
  1919. }
  1920. },
  1921. "runtime": {
  1922. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1923. }
  1924. },
  1925. "System.ComponentModel.Annotations/5.0.0": {
  1926. "type": "package",
  1927. "compile": {
  1928. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1929. "related": ".xml"
  1930. }
  1931. },
  1932. "runtime": {
  1933. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1934. "related": ".xml"
  1935. }
  1936. }
  1937. },
  1938. "System.ComponentModel.Primitives/4.3.0": {
  1939. "type": "package",
  1940. "dependencies": {
  1941. "System.ComponentModel": "4.3.0",
  1942. "System.Resources.ResourceManager": "4.3.0",
  1943. "System.Runtime": "4.3.0"
  1944. },
  1945. "compile": {
  1946. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1947. "related": ".xml"
  1948. }
  1949. },
  1950. "runtime": {
  1951. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1952. }
  1953. },
  1954. "System.ComponentModel.TypeConverter/4.3.0": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "System.Collections": "4.3.0",
  1958. "System.Collections.NonGeneric": "4.3.0",
  1959. "System.Collections.Specialized": "4.3.0",
  1960. "System.ComponentModel": "4.3.0",
  1961. "System.ComponentModel.Primitives": "4.3.0",
  1962. "System.Globalization": "4.3.0",
  1963. "System.Linq": "4.3.0",
  1964. "System.Reflection": "4.3.0",
  1965. "System.Reflection.Extensions": "4.3.0",
  1966. "System.Reflection.Primitives": "4.3.0",
  1967. "System.Reflection.TypeExtensions": "4.3.0",
  1968. "System.Resources.ResourceManager": "4.3.0",
  1969. "System.Runtime": "4.3.0",
  1970. "System.Runtime.Extensions": "4.3.0",
  1971. "System.Threading": "4.3.0"
  1972. },
  1973. "compile": {
  1974. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1975. "related": ".xml"
  1976. }
  1977. },
  1978. "runtime": {
  1979. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1980. }
  1981. },
  1982. "System.Configuration.ConfigurationManager/6.0.0": {
  1983. "type": "package",
  1984. "dependencies": {
  1985. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1986. "System.Security.Permissions": "6.0.0"
  1987. },
  1988. "compile": {
  1989. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1990. "related": ".xml"
  1991. }
  1992. },
  1993. "runtime": {
  1994. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1995. "related": ".xml"
  1996. }
  1997. },
  1998. "build": {
  1999. "buildTransitive/netcoreapp3.1/_._": {}
  2000. }
  2001. },
  2002. "System.Console/4.3.0": {
  2003. "type": "package",
  2004. "dependencies": {
  2005. "Microsoft.NETCore.Platforms": "1.1.0",
  2006. "Microsoft.NETCore.Targets": "1.1.0",
  2007. "System.IO": "4.3.0",
  2008. "System.Runtime": "4.3.0",
  2009. "System.Text.Encoding": "4.3.0"
  2010. },
  2011. "compile": {
  2012. "ref/netstandard1.3/System.Console.dll": {
  2013. "related": ".xml"
  2014. }
  2015. }
  2016. },
  2017. "System.Diagnostics.Debug/4.3.0": {
  2018. "type": "package",
  2019. "dependencies": {
  2020. "Microsoft.NETCore.Platforms": "1.1.0",
  2021. "Microsoft.NETCore.Targets": "1.1.0",
  2022. "System.Runtime": "4.3.0"
  2023. },
  2024. "compile": {
  2025. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2026. "related": ".xml"
  2027. }
  2028. }
  2029. },
  2030. "System.Diagnostics.DiagnosticSource/5.0.1": {
  2031. "type": "package",
  2032. "compile": {
  2033. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2034. "related": ".xml"
  2035. }
  2036. },
  2037. "runtime": {
  2038. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2039. "related": ".xml"
  2040. }
  2041. }
  2042. },
  2043. "System.Diagnostics.Tools/4.3.0": {
  2044. "type": "package",
  2045. "dependencies": {
  2046. "Microsoft.NETCore.Platforms": "1.1.0",
  2047. "Microsoft.NETCore.Targets": "1.1.0",
  2048. "System.Runtime": "4.3.0"
  2049. },
  2050. "compile": {
  2051. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2052. "related": ".xml"
  2053. }
  2054. }
  2055. },
  2056. "System.Diagnostics.TraceSource/4.3.0": {
  2057. "type": "package",
  2058. "dependencies": {
  2059. "Microsoft.NETCore.Platforms": "1.1.0",
  2060. "System.Collections": "4.3.0",
  2061. "System.Diagnostics.Debug": "4.3.0",
  2062. "System.Globalization": "4.3.0",
  2063. "System.Resources.ResourceManager": "4.3.0",
  2064. "System.Runtime": "4.3.0",
  2065. "System.Runtime.Extensions": "4.3.0",
  2066. "System.Threading": "4.3.0",
  2067. "runtime.native.System": "4.3.0"
  2068. },
  2069. "compile": {
  2070. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2071. "related": ".xml"
  2072. }
  2073. },
  2074. "runtimeTargets": {
  2075. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2076. "assetType": "runtime",
  2077. "rid": "unix"
  2078. },
  2079. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2080. "assetType": "runtime",
  2081. "rid": "win"
  2082. }
  2083. }
  2084. },
  2085. "System.Diagnostics.Tracing/4.3.0": {
  2086. "type": "package",
  2087. "dependencies": {
  2088. "Microsoft.NETCore.Platforms": "1.1.0",
  2089. "Microsoft.NETCore.Targets": "1.1.0",
  2090. "System.Runtime": "4.3.0"
  2091. },
  2092. "compile": {
  2093. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2094. "related": ".xml"
  2095. }
  2096. }
  2097. },
  2098. "System.Drawing.Common/6.0.0": {
  2099. "type": "package",
  2100. "dependencies": {
  2101. "Microsoft.Win32.SystemEvents": "6.0.0"
  2102. },
  2103. "compile": {
  2104. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2105. "related": ".xml"
  2106. }
  2107. },
  2108. "runtime": {
  2109. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2110. "related": ".xml"
  2111. }
  2112. },
  2113. "build": {
  2114. "buildTransitive/netcoreapp3.1/_._": {}
  2115. },
  2116. "runtimeTargets": {
  2117. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2118. "assetType": "runtime",
  2119. "rid": "unix"
  2120. },
  2121. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  2122. "assetType": "runtime",
  2123. "rid": "win"
  2124. }
  2125. }
  2126. },
  2127. "System.Dynamic.Runtime/4.3.0": {
  2128. "type": "package",
  2129. "dependencies": {
  2130. "System.Collections": "4.3.0",
  2131. "System.Diagnostics.Debug": "4.3.0",
  2132. "System.Linq": "4.3.0",
  2133. "System.Linq.Expressions": "4.3.0",
  2134. "System.ObjectModel": "4.3.0",
  2135. "System.Reflection": "4.3.0",
  2136. "System.Reflection.Emit": "4.3.0",
  2137. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2138. "System.Reflection.Primitives": "4.3.0",
  2139. "System.Reflection.TypeExtensions": "4.3.0",
  2140. "System.Resources.ResourceManager": "4.3.0",
  2141. "System.Runtime": "4.3.0",
  2142. "System.Runtime.Extensions": "4.3.0",
  2143. "System.Threading": "4.3.0"
  2144. },
  2145. "compile": {
  2146. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2147. "related": ".xml"
  2148. }
  2149. },
  2150. "runtime": {
  2151. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2152. }
  2153. },
  2154. "System.Formats.Asn1/6.0.0": {
  2155. "type": "package",
  2156. "dependencies": {
  2157. "System.Buffers": "4.5.1",
  2158. "System.Memory": "4.5.4"
  2159. },
  2160. "compile": {
  2161. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2162. "related": ".xml"
  2163. }
  2164. },
  2165. "runtime": {
  2166. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  2167. "related": ".xml"
  2168. }
  2169. },
  2170. "build": {
  2171. "buildTransitive/netcoreapp3.1/_._": {}
  2172. }
  2173. },
  2174. "System.Globalization/4.3.0": {
  2175. "type": "package",
  2176. "dependencies": {
  2177. "Microsoft.NETCore.Platforms": "1.1.0",
  2178. "Microsoft.NETCore.Targets": "1.1.0",
  2179. "System.Runtime": "4.3.0"
  2180. },
  2181. "compile": {
  2182. "ref/netstandard1.3/System.Globalization.dll": {
  2183. "related": ".xml"
  2184. }
  2185. }
  2186. },
  2187. "System.Globalization.Calendars/4.3.0": {
  2188. "type": "package",
  2189. "dependencies": {
  2190. "Microsoft.NETCore.Platforms": "1.1.0",
  2191. "Microsoft.NETCore.Targets": "1.1.0",
  2192. "System.Globalization": "4.3.0",
  2193. "System.Runtime": "4.3.0"
  2194. },
  2195. "compile": {
  2196. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2197. "related": ".xml"
  2198. }
  2199. }
  2200. },
  2201. "System.Globalization.Extensions/4.3.0": {
  2202. "type": "package",
  2203. "dependencies": {
  2204. "Microsoft.NETCore.Platforms": "1.1.0",
  2205. "System.Globalization": "4.3.0",
  2206. "System.Resources.ResourceManager": "4.3.0",
  2207. "System.Runtime": "4.3.0",
  2208. "System.Runtime.Extensions": "4.3.0",
  2209. "System.Runtime.InteropServices": "4.3.0"
  2210. },
  2211. "compile": {
  2212. "ref/netstandard1.3/_._": {
  2213. "related": ".xml"
  2214. }
  2215. },
  2216. "runtimeTargets": {
  2217. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2218. "assetType": "runtime",
  2219. "rid": "unix"
  2220. },
  2221. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "win"
  2224. }
  2225. }
  2226. },
  2227. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  2228. "type": "package",
  2229. "dependencies": {
  2230. "Microsoft.IdentityModel.JsonWebTokens": "6.7.1",
  2231. "Microsoft.IdentityModel.Tokens": "6.7.1"
  2232. },
  2233. "compile": {
  2234. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2235. "related": ".xml"
  2236. }
  2237. },
  2238. "runtime": {
  2239. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2240. "related": ".xml"
  2241. }
  2242. }
  2243. },
  2244. "System.IO/4.3.0": {
  2245. "type": "package",
  2246. "dependencies": {
  2247. "Microsoft.NETCore.Platforms": "1.1.0",
  2248. "Microsoft.NETCore.Targets": "1.1.0",
  2249. "System.Runtime": "4.3.0",
  2250. "System.Text.Encoding": "4.3.0",
  2251. "System.Threading.Tasks": "4.3.0"
  2252. },
  2253. "compile": {
  2254. "ref/netstandard1.5/System.IO.dll": {
  2255. "related": ".xml"
  2256. }
  2257. }
  2258. },
  2259. "System.IO.Compression/4.3.0": {
  2260. "type": "package",
  2261. "dependencies": {
  2262. "Microsoft.NETCore.Platforms": "1.1.0",
  2263. "System.Buffers": "4.3.0",
  2264. "System.Collections": "4.3.0",
  2265. "System.Diagnostics.Debug": "4.3.0",
  2266. "System.IO": "4.3.0",
  2267. "System.Resources.ResourceManager": "4.3.0",
  2268. "System.Runtime": "4.3.0",
  2269. "System.Runtime.Extensions": "4.3.0",
  2270. "System.Runtime.Handles": "4.3.0",
  2271. "System.Runtime.InteropServices": "4.3.0",
  2272. "System.Text.Encoding": "4.3.0",
  2273. "System.Threading": "4.3.0",
  2274. "System.Threading.Tasks": "4.3.0",
  2275. "runtime.native.System": "4.3.0",
  2276. "runtime.native.System.IO.Compression": "4.3.0"
  2277. },
  2278. "compile": {
  2279. "ref/netstandard1.3/System.IO.Compression.dll": {
  2280. "related": ".xml"
  2281. }
  2282. },
  2283. "runtimeTargets": {
  2284. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2285. "assetType": "runtime",
  2286. "rid": "unix"
  2287. },
  2288. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2289. "assetType": "runtime",
  2290. "rid": "win"
  2291. }
  2292. }
  2293. },
  2294. "System.IO.Compression.ZipFile/4.3.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "System.Buffers": "4.3.0",
  2298. "System.IO": "4.3.0",
  2299. "System.IO.Compression": "4.3.0",
  2300. "System.IO.FileSystem": "4.3.0",
  2301. "System.IO.FileSystem.Primitives": "4.3.0",
  2302. "System.Resources.ResourceManager": "4.3.0",
  2303. "System.Runtime": "4.3.0",
  2304. "System.Runtime.Extensions": "4.3.0",
  2305. "System.Text.Encoding": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2309. "related": ".xml"
  2310. }
  2311. },
  2312. "runtime": {
  2313. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2314. }
  2315. },
  2316. "System.IO.FileSystem/4.3.0": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "Microsoft.NETCore.Platforms": "1.1.0",
  2320. "Microsoft.NETCore.Targets": "1.1.0",
  2321. "System.IO": "4.3.0",
  2322. "System.IO.FileSystem.Primitives": "4.3.0",
  2323. "System.Runtime": "4.3.0",
  2324. "System.Runtime.Handles": "4.3.0",
  2325. "System.Text.Encoding": "4.3.0",
  2326. "System.Threading.Tasks": "4.3.0"
  2327. },
  2328. "compile": {
  2329. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2330. "related": ".xml"
  2331. }
  2332. }
  2333. },
  2334. "System.IO.FileSystem.Primitives/4.3.0": {
  2335. "type": "package",
  2336. "dependencies": {
  2337. "System.Runtime": "4.3.0"
  2338. },
  2339. "compile": {
  2340. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2341. "related": ".xml"
  2342. }
  2343. },
  2344. "runtime": {
  2345. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2346. }
  2347. },
  2348. "System.IO.Pipelines/5.0.0": {
  2349. "type": "package",
  2350. "compile": {
  2351. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2352. "related": ".xml"
  2353. }
  2354. },
  2355. "runtime": {
  2356. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2357. "related": ".xml"
  2358. }
  2359. }
  2360. },
  2361. "System.Linq/4.3.0": {
  2362. "type": "package",
  2363. "dependencies": {
  2364. "System.Collections": "4.3.0",
  2365. "System.Diagnostics.Debug": "4.3.0",
  2366. "System.Resources.ResourceManager": "4.3.0",
  2367. "System.Runtime": "4.3.0",
  2368. "System.Runtime.Extensions": "4.3.0"
  2369. },
  2370. "compile": {
  2371. "ref/netstandard1.6/System.Linq.dll": {
  2372. "related": ".xml"
  2373. }
  2374. },
  2375. "runtime": {
  2376. "lib/netstandard1.6/System.Linq.dll": {}
  2377. }
  2378. },
  2379. "System.Linq.Expressions/4.3.0": {
  2380. "type": "package",
  2381. "dependencies": {
  2382. "System.Collections": "4.3.0",
  2383. "System.Diagnostics.Debug": "4.3.0",
  2384. "System.Globalization": "4.3.0",
  2385. "System.IO": "4.3.0",
  2386. "System.Linq": "4.3.0",
  2387. "System.ObjectModel": "4.3.0",
  2388. "System.Reflection": "4.3.0",
  2389. "System.Reflection.Emit": "4.3.0",
  2390. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2391. "System.Reflection.Emit.Lightweight": "4.3.0",
  2392. "System.Reflection.Extensions": "4.3.0",
  2393. "System.Reflection.Primitives": "4.3.0",
  2394. "System.Reflection.TypeExtensions": "4.3.0",
  2395. "System.Resources.ResourceManager": "4.3.0",
  2396. "System.Runtime": "4.3.0",
  2397. "System.Runtime.Extensions": "4.3.0",
  2398. "System.Threading": "4.3.0"
  2399. },
  2400. "compile": {
  2401. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2402. "related": ".xml"
  2403. }
  2404. },
  2405. "runtime": {
  2406. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2407. }
  2408. },
  2409. "System.Memory/4.5.5": {
  2410. "type": "package",
  2411. "compile": {
  2412. "ref/netcoreapp2.1/_._": {}
  2413. },
  2414. "runtime": {
  2415. "lib/netcoreapp2.1/_._": {}
  2416. }
  2417. },
  2418. "System.Net.Http/4.3.2": {
  2419. "type": "package",
  2420. "dependencies": {
  2421. "Microsoft.NETCore.Platforms": "1.1.0",
  2422. "System.Collections": "4.3.0",
  2423. "System.Diagnostics.Debug": "4.3.0",
  2424. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2425. "System.Diagnostics.Tracing": "4.3.0",
  2426. "System.Globalization": "4.3.0",
  2427. "System.Globalization.Extensions": "4.3.0",
  2428. "System.IO": "4.3.0",
  2429. "System.IO.FileSystem": "4.3.0",
  2430. "System.Net.Primitives": "4.3.0",
  2431. "System.Resources.ResourceManager": "4.3.0",
  2432. "System.Runtime": "4.3.0",
  2433. "System.Runtime.Extensions": "4.3.0",
  2434. "System.Runtime.Handles": "4.3.0",
  2435. "System.Runtime.InteropServices": "4.3.0",
  2436. "System.Security.Cryptography.Algorithms": "4.3.0",
  2437. "System.Security.Cryptography.Encoding": "4.3.0",
  2438. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2439. "System.Security.Cryptography.Primitives": "4.3.0",
  2440. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2441. "System.Text.Encoding": "4.3.0",
  2442. "System.Threading": "4.3.0",
  2443. "System.Threading.Tasks": "4.3.0",
  2444. "runtime.native.System": "4.3.0",
  2445. "runtime.native.System.Net.Http": "4.3.0",
  2446. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2447. },
  2448. "compile": {
  2449. "ref/netstandard1.3/System.Net.Http.dll": {}
  2450. },
  2451. "runtimeTargets": {
  2452. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2453. "assetType": "runtime",
  2454. "rid": "unix"
  2455. },
  2456. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2457. "assetType": "runtime",
  2458. "rid": "win"
  2459. }
  2460. }
  2461. },
  2462. "System.Net.NameResolution/4.3.0": {
  2463. "type": "package",
  2464. "dependencies": {
  2465. "Microsoft.NETCore.Platforms": "1.1.0",
  2466. "System.Collections": "4.3.0",
  2467. "System.Diagnostics.Tracing": "4.3.0",
  2468. "System.Globalization": "4.3.0",
  2469. "System.Net.Primitives": "4.3.0",
  2470. "System.Resources.ResourceManager": "4.3.0",
  2471. "System.Runtime": "4.3.0",
  2472. "System.Runtime.Extensions": "4.3.0",
  2473. "System.Runtime.Handles": "4.3.0",
  2474. "System.Runtime.InteropServices": "4.3.0",
  2475. "System.Security.Principal.Windows": "4.3.0",
  2476. "System.Threading": "4.3.0",
  2477. "System.Threading.Tasks": "4.3.0",
  2478. "runtime.native.System": "4.3.0"
  2479. },
  2480. "compile": {
  2481. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2482. "related": ".xml"
  2483. }
  2484. },
  2485. "runtimeTargets": {
  2486. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2487. "assetType": "runtime",
  2488. "rid": "unix"
  2489. },
  2490. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2491. "assetType": "runtime",
  2492. "rid": "win"
  2493. }
  2494. }
  2495. },
  2496. "System.Net.Primitives/4.3.0": {
  2497. "type": "package",
  2498. "dependencies": {
  2499. "Microsoft.NETCore.Platforms": "1.1.0",
  2500. "Microsoft.NETCore.Targets": "1.1.0",
  2501. "System.Runtime": "4.3.0",
  2502. "System.Runtime.Handles": "4.3.0"
  2503. },
  2504. "compile": {
  2505. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2506. "related": ".xml"
  2507. }
  2508. }
  2509. },
  2510. "System.Net.Security/4.3.0": {
  2511. "type": "package",
  2512. "dependencies": {
  2513. "Microsoft.NETCore.Platforms": "1.1.0",
  2514. "Microsoft.Win32.Primitives": "4.3.0",
  2515. "System.Collections": "4.3.0",
  2516. "System.Collections.Concurrent": "4.3.0",
  2517. "System.Diagnostics.Tracing": "4.3.0",
  2518. "System.Globalization": "4.3.0",
  2519. "System.Globalization.Extensions": "4.3.0",
  2520. "System.IO": "4.3.0",
  2521. "System.Net.Primitives": "4.3.0",
  2522. "System.Resources.ResourceManager": "4.3.0",
  2523. "System.Runtime": "4.3.0",
  2524. "System.Runtime.Extensions": "4.3.0",
  2525. "System.Runtime.Handles": "4.3.0",
  2526. "System.Runtime.InteropServices": "4.3.0",
  2527. "System.Security.Claims": "4.3.0",
  2528. "System.Security.Cryptography.Algorithms": "4.3.0",
  2529. "System.Security.Cryptography.Encoding": "4.3.0",
  2530. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2531. "System.Security.Cryptography.Primitives": "4.3.0",
  2532. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2533. "System.Security.Principal": "4.3.0",
  2534. "System.Text.Encoding": "4.3.0",
  2535. "System.Threading": "4.3.0",
  2536. "System.Threading.Tasks": "4.3.0",
  2537. "System.Threading.ThreadPool": "4.3.0",
  2538. "runtime.native.System": "4.3.0",
  2539. "runtime.native.System.Net.Security": "4.3.0",
  2540. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2541. },
  2542. "compile": {
  2543. "ref/netstandard1.3/System.Net.Security.dll": {
  2544. "related": ".xml"
  2545. }
  2546. },
  2547. "runtimeTargets": {
  2548. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2549. "assetType": "runtime",
  2550. "rid": "unix"
  2551. },
  2552. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2553. "assetType": "runtime",
  2554. "rid": "win"
  2555. }
  2556. }
  2557. },
  2558. "System.Net.Sockets/4.3.0": {
  2559. "type": "package",
  2560. "dependencies": {
  2561. "Microsoft.NETCore.Platforms": "1.1.0",
  2562. "Microsoft.NETCore.Targets": "1.1.0",
  2563. "System.IO": "4.3.0",
  2564. "System.Net.Primitives": "4.3.0",
  2565. "System.Runtime": "4.3.0",
  2566. "System.Threading.Tasks": "4.3.0"
  2567. },
  2568. "compile": {
  2569. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2570. "related": ".xml"
  2571. }
  2572. }
  2573. },
  2574. "System.ObjectModel/4.3.0": {
  2575. "type": "package",
  2576. "dependencies": {
  2577. "System.Collections": "4.3.0",
  2578. "System.Diagnostics.Debug": "4.3.0",
  2579. "System.Resources.ResourceManager": "4.3.0",
  2580. "System.Runtime": "4.3.0",
  2581. "System.Threading": "4.3.0"
  2582. },
  2583. "compile": {
  2584. "ref/netstandard1.3/System.ObjectModel.dll": {
  2585. "related": ".xml"
  2586. }
  2587. },
  2588. "runtime": {
  2589. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2590. }
  2591. },
  2592. "System.Reflection/4.3.0": {
  2593. "type": "package",
  2594. "dependencies": {
  2595. "Microsoft.NETCore.Platforms": "1.1.0",
  2596. "Microsoft.NETCore.Targets": "1.1.0",
  2597. "System.IO": "4.3.0",
  2598. "System.Reflection.Primitives": "4.3.0",
  2599. "System.Runtime": "4.3.0"
  2600. },
  2601. "compile": {
  2602. "ref/netstandard1.5/System.Reflection.dll": {
  2603. "related": ".xml"
  2604. }
  2605. }
  2606. },
  2607. "System.Reflection.Emit/4.7.0": {
  2608. "type": "package",
  2609. "compile": {
  2610. "ref/netcoreapp2.0/_._": {}
  2611. },
  2612. "runtime": {
  2613. "lib/netcoreapp2.0/_._": {}
  2614. }
  2615. },
  2616. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2617. "type": "package",
  2618. "dependencies": {
  2619. "System.Reflection": "4.3.0",
  2620. "System.Reflection.Primitives": "4.3.0",
  2621. "System.Runtime": "4.3.0"
  2622. },
  2623. "compile": {
  2624. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2625. "related": ".xml"
  2626. }
  2627. },
  2628. "runtime": {
  2629. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2630. }
  2631. },
  2632. "System.Reflection.Emit.Lightweight/4.3.0": {
  2633. "type": "package",
  2634. "dependencies": {
  2635. "System.Reflection": "4.3.0",
  2636. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2637. "System.Reflection.Primitives": "4.3.0",
  2638. "System.Runtime": "4.3.0"
  2639. },
  2640. "compile": {
  2641. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2642. "related": ".xml"
  2643. }
  2644. },
  2645. "runtime": {
  2646. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2647. }
  2648. },
  2649. "System.Reflection.Extensions/4.3.0": {
  2650. "type": "package",
  2651. "dependencies": {
  2652. "Microsoft.NETCore.Platforms": "1.1.0",
  2653. "Microsoft.NETCore.Targets": "1.1.0",
  2654. "System.Reflection": "4.3.0",
  2655. "System.Runtime": "4.3.0"
  2656. },
  2657. "compile": {
  2658. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2659. "related": ".xml"
  2660. }
  2661. }
  2662. },
  2663. "System.Reflection.Primitives/4.3.0": {
  2664. "type": "package",
  2665. "dependencies": {
  2666. "Microsoft.NETCore.Platforms": "1.1.0",
  2667. "Microsoft.NETCore.Targets": "1.1.0",
  2668. "System.Runtime": "4.3.0"
  2669. },
  2670. "compile": {
  2671. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2672. "related": ".xml"
  2673. }
  2674. }
  2675. },
  2676. "System.Reflection.TypeExtensions/4.3.0": {
  2677. "type": "package",
  2678. "dependencies": {
  2679. "System.Reflection": "4.3.0",
  2680. "System.Runtime": "4.3.0"
  2681. },
  2682. "compile": {
  2683. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2684. "related": ".xml"
  2685. }
  2686. },
  2687. "runtime": {
  2688. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2689. }
  2690. },
  2691. "System.Resources.ResourceManager/4.3.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "Microsoft.NETCore.Platforms": "1.1.0",
  2695. "Microsoft.NETCore.Targets": "1.1.0",
  2696. "System.Globalization": "4.3.0",
  2697. "System.Reflection": "4.3.0",
  2698. "System.Runtime": "4.3.0"
  2699. },
  2700. "compile": {
  2701. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2702. "related": ".xml"
  2703. }
  2704. }
  2705. },
  2706. "System.Runtime/4.3.0": {
  2707. "type": "package",
  2708. "dependencies": {
  2709. "Microsoft.NETCore.Platforms": "1.1.0",
  2710. "Microsoft.NETCore.Targets": "1.1.0"
  2711. },
  2712. "compile": {
  2713. "ref/netstandard1.5/System.Runtime.dll": {
  2714. "related": ".xml"
  2715. }
  2716. }
  2717. },
  2718. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2719. "type": "package",
  2720. "compile": {
  2721. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2722. "related": ".xml"
  2723. }
  2724. },
  2725. "runtime": {
  2726. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2727. "related": ".xml"
  2728. }
  2729. }
  2730. },
  2731. "System.Runtime.Extensions/4.3.0": {
  2732. "type": "package",
  2733. "dependencies": {
  2734. "Microsoft.NETCore.Platforms": "1.1.0",
  2735. "Microsoft.NETCore.Targets": "1.1.0",
  2736. "System.Runtime": "4.3.0"
  2737. },
  2738. "compile": {
  2739. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2740. "related": ".xml"
  2741. }
  2742. }
  2743. },
  2744. "System.Runtime.Handles/4.3.0": {
  2745. "type": "package",
  2746. "dependencies": {
  2747. "Microsoft.NETCore.Platforms": "1.1.0",
  2748. "Microsoft.NETCore.Targets": "1.1.0",
  2749. "System.Runtime": "4.3.0"
  2750. },
  2751. "compile": {
  2752. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2753. "related": ".xml"
  2754. }
  2755. }
  2756. },
  2757. "System.Runtime.InteropServices/4.3.0": {
  2758. "type": "package",
  2759. "dependencies": {
  2760. "Microsoft.NETCore.Platforms": "1.1.0",
  2761. "Microsoft.NETCore.Targets": "1.1.0",
  2762. "System.Reflection": "4.3.0",
  2763. "System.Reflection.Primitives": "4.3.0",
  2764. "System.Runtime": "4.3.0",
  2765. "System.Runtime.Handles": "4.3.0"
  2766. },
  2767. "compile": {
  2768. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2769. }
  2770. },
  2771. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2772. "type": "package",
  2773. "dependencies": {
  2774. "System.Reflection": "4.3.0",
  2775. "System.Reflection.Extensions": "4.3.0",
  2776. "System.Resources.ResourceManager": "4.3.0",
  2777. "System.Runtime": "4.3.0",
  2778. "System.Runtime.InteropServices": "4.3.0",
  2779. "System.Threading": "4.3.0",
  2780. "runtime.native.System": "4.3.0"
  2781. },
  2782. "compile": {
  2783. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2784. },
  2785. "runtime": {
  2786. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2787. },
  2788. "runtimeTargets": {
  2789. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2790. "assetType": "runtime",
  2791. "rid": "unix"
  2792. },
  2793. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2794. "assetType": "runtime",
  2795. "rid": "win"
  2796. }
  2797. }
  2798. },
  2799. "System.Runtime.Numerics/4.3.0": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Globalization": "4.3.0",
  2803. "System.Resources.ResourceManager": "4.3.0",
  2804. "System.Runtime": "4.3.0",
  2805. "System.Runtime.Extensions": "4.3.0"
  2806. },
  2807. "compile": {
  2808. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2809. "related": ".xml"
  2810. }
  2811. },
  2812. "runtime": {
  2813. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2814. }
  2815. },
  2816. "System.Security.AccessControl/6.0.0": {
  2817. "type": "package",
  2818. "dependencies": {
  2819. "System.Security.Principal.Windows": "5.0.0"
  2820. },
  2821. "compile": {
  2822. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2823. "related": ".xml"
  2824. }
  2825. },
  2826. "runtime": {
  2827. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2828. "related": ".xml"
  2829. }
  2830. },
  2831. "build": {
  2832. "buildTransitive/netcoreapp3.1/_._": {}
  2833. },
  2834. "runtimeTargets": {
  2835. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  2836. "assetType": "runtime",
  2837. "rid": "win"
  2838. }
  2839. }
  2840. },
  2841. "System.Security.Claims/4.3.0": {
  2842. "type": "package",
  2843. "dependencies": {
  2844. "System.Collections": "4.3.0",
  2845. "System.Globalization": "4.3.0",
  2846. "System.IO": "4.3.0",
  2847. "System.Resources.ResourceManager": "4.3.0",
  2848. "System.Runtime": "4.3.0",
  2849. "System.Runtime.Extensions": "4.3.0",
  2850. "System.Security.Principal": "4.3.0"
  2851. },
  2852. "compile": {
  2853. "ref/netstandard1.3/_._": {
  2854. "related": ".xml"
  2855. }
  2856. },
  2857. "runtime": {
  2858. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2859. }
  2860. },
  2861. "System.Security.Cryptography.Algorithms/4.3.0": {
  2862. "type": "package",
  2863. "dependencies": {
  2864. "Microsoft.NETCore.Platforms": "1.1.0",
  2865. "System.Collections": "4.3.0",
  2866. "System.IO": "4.3.0",
  2867. "System.Resources.ResourceManager": "4.3.0",
  2868. "System.Runtime": "4.3.0",
  2869. "System.Runtime.Extensions": "4.3.0",
  2870. "System.Runtime.Handles": "4.3.0",
  2871. "System.Runtime.InteropServices": "4.3.0",
  2872. "System.Runtime.Numerics": "4.3.0",
  2873. "System.Security.Cryptography.Encoding": "4.3.0",
  2874. "System.Security.Cryptography.Primitives": "4.3.0",
  2875. "System.Text.Encoding": "4.3.0",
  2876. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2877. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2878. },
  2879. "compile": {
  2880. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2881. },
  2882. "runtimeTargets": {
  2883. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2884. "assetType": "runtime",
  2885. "rid": "osx"
  2886. },
  2887. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2888. "assetType": "runtime",
  2889. "rid": "unix"
  2890. },
  2891. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2892. "assetType": "runtime",
  2893. "rid": "win"
  2894. }
  2895. }
  2896. },
  2897. "System.Security.Cryptography.Cng/5.0.0": {
  2898. "type": "package",
  2899. "dependencies": {
  2900. "System.Formats.Asn1": "5.0.0"
  2901. },
  2902. "compile": {
  2903. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2904. "related": ".xml"
  2905. }
  2906. },
  2907. "runtime": {
  2908. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2909. "related": ".xml"
  2910. }
  2911. },
  2912. "runtimeTargets": {
  2913. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2914. "assetType": "runtime",
  2915. "rid": "win"
  2916. }
  2917. }
  2918. },
  2919. "System.Security.Cryptography.Csp/4.3.0": {
  2920. "type": "package",
  2921. "dependencies": {
  2922. "Microsoft.NETCore.Platforms": "1.1.0",
  2923. "System.IO": "4.3.0",
  2924. "System.Reflection": "4.3.0",
  2925. "System.Resources.ResourceManager": "4.3.0",
  2926. "System.Runtime": "4.3.0",
  2927. "System.Runtime.Extensions": "4.3.0",
  2928. "System.Runtime.Handles": "4.3.0",
  2929. "System.Runtime.InteropServices": "4.3.0",
  2930. "System.Security.Cryptography.Algorithms": "4.3.0",
  2931. "System.Security.Cryptography.Encoding": "4.3.0",
  2932. "System.Security.Cryptography.Primitives": "4.3.0",
  2933. "System.Text.Encoding": "4.3.0",
  2934. "System.Threading": "4.3.0"
  2935. },
  2936. "compile": {
  2937. "ref/netstandard1.3/_._": {}
  2938. },
  2939. "runtimeTargets": {
  2940. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2941. "assetType": "runtime",
  2942. "rid": "unix"
  2943. },
  2944. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2945. "assetType": "runtime",
  2946. "rid": "win"
  2947. }
  2948. }
  2949. },
  2950. "System.Security.Cryptography.Encoding/4.3.0": {
  2951. "type": "package",
  2952. "dependencies": {
  2953. "Microsoft.NETCore.Platforms": "1.1.0",
  2954. "System.Collections": "4.3.0",
  2955. "System.Collections.Concurrent": "4.3.0",
  2956. "System.Linq": "4.3.0",
  2957. "System.Resources.ResourceManager": "4.3.0",
  2958. "System.Runtime": "4.3.0",
  2959. "System.Runtime.Extensions": "4.3.0",
  2960. "System.Runtime.Handles": "4.3.0",
  2961. "System.Runtime.InteropServices": "4.3.0",
  2962. "System.Security.Cryptography.Primitives": "4.3.0",
  2963. "System.Text.Encoding": "4.3.0",
  2964. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2965. },
  2966. "compile": {
  2967. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2968. "related": ".xml"
  2969. }
  2970. },
  2971. "runtimeTargets": {
  2972. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2973. "assetType": "runtime",
  2974. "rid": "unix"
  2975. },
  2976. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2977. "assetType": "runtime",
  2978. "rid": "win"
  2979. }
  2980. }
  2981. },
  2982. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2983. "type": "package",
  2984. "dependencies": {
  2985. "System.Collections": "4.3.0",
  2986. "System.IO": "4.3.0",
  2987. "System.Resources.ResourceManager": "4.3.0",
  2988. "System.Runtime": "4.3.0",
  2989. "System.Runtime.Extensions": "4.3.0",
  2990. "System.Runtime.Handles": "4.3.0",
  2991. "System.Runtime.InteropServices": "4.3.0",
  2992. "System.Runtime.Numerics": "4.3.0",
  2993. "System.Security.Cryptography.Algorithms": "4.3.0",
  2994. "System.Security.Cryptography.Encoding": "4.3.0",
  2995. "System.Security.Cryptography.Primitives": "4.3.0",
  2996. "System.Text.Encoding": "4.3.0",
  2997. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2998. },
  2999. "compile": {
  3000. "ref/netstandard1.6/_._": {}
  3001. },
  3002. "runtime": {
  3003. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3004. },
  3005. "runtimeTargets": {
  3006. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3007. "assetType": "runtime",
  3008. "rid": "unix"
  3009. }
  3010. }
  3011. },
  3012. "System.Security.Cryptography.Pkcs/6.0.1": {
  3013. "type": "package",
  3014. "dependencies": {
  3015. "System.Formats.Asn1": "6.0.0",
  3016. "System.Security.Cryptography.Cng": "5.0.0"
  3017. },
  3018. "compile": {
  3019. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3020. "related": ".xml"
  3021. }
  3022. },
  3023. "runtime": {
  3024. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3025. "related": ".xml"
  3026. }
  3027. },
  3028. "build": {
  3029. "buildTransitive/netcoreapp3.1/_._": {}
  3030. },
  3031. "runtimeTargets": {
  3032. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll": {
  3033. "assetType": "runtime",
  3034. "rid": "win"
  3035. }
  3036. }
  3037. },
  3038. "System.Security.Cryptography.Primitives/4.3.0": {
  3039. "type": "package",
  3040. "dependencies": {
  3041. "System.Diagnostics.Debug": "4.3.0",
  3042. "System.Globalization": "4.3.0",
  3043. "System.IO": "4.3.0",
  3044. "System.Resources.ResourceManager": "4.3.0",
  3045. "System.Runtime": "4.3.0",
  3046. "System.Threading": "4.3.0",
  3047. "System.Threading.Tasks": "4.3.0"
  3048. },
  3049. "compile": {
  3050. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3051. },
  3052. "runtime": {
  3053. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3054. }
  3055. },
  3056. "System.Security.Cryptography.ProtectedData/6.0.0": {
  3057. "type": "package",
  3058. "dependencies": {
  3059. "System.Memory": "4.5.4"
  3060. },
  3061. "compile": {
  3062. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3063. "related": ".xml"
  3064. }
  3065. },
  3066. "runtime": {
  3067. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3068. "related": ".xml"
  3069. }
  3070. },
  3071. "build": {
  3072. "buildTransitive/netcoreapp3.1/_._": {}
  3073. },
  3074. "runtimeTargets": {
  3075. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3076. "assetType": "runtime",
  3077. "rid": "win"
  3078. }
  3079. }
  3080. },
  3081. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3082. "type": "package",
  3083. "dependencies": {
  3084. "Microsoft.NETCore.Platforms": "1.1.0",
  3085. "System.Collections": "4.3.0",
  3086. "System.Diagnostics.Debug": "4.3.0",
  3087. "System.Globalization": "4.3.0",
  3088. "System.Globalization.Calendars": "4.3.0",
  3089. "System.IO": "4.3.0",
  3090. "System.IO.FileSystem": "4.3.0",
  3091. "System.IO.FileSystem.Primitives": "4.3.0",
  3092. "System.Resources.ResourceManager": "4.3.0",
  3093. "System.Runtime": "4.3.0",
  3094. "System.Runtime.Extensions": "4.3.0",
  3095. "System.Runtime.Handles": "4.3.0",
  3096. "System.Runtime.InteropServices": "4.3.0",
  3097. "System.Runtime.Numerics": "4.3.0",
  3098. "System.Security.Cryptography.Algorithms": "4.3.0",
  3099. "System.Security.Cryptography.Cng": "4.3.0",
  3100. "System.Security.Cryptography.Csp": "4.3.0",
  3101. "System.Security.Cryptography.Encoding": "4.3.0",
  3102. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3103. "System.Security.Cryptography.Primitives": "4.3.0",
  3104. "System.Text.Encoding": "4.3.0",
  3105. "System.Threading": "4.3.0",
  3106. "runtime.native.System": "4.3.0",
  3107. "runtime.native.System.Net.Http": "4.3.0",
  3108. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3109. },
  3110. "compile": {
  3111. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3112. "related": ".xml"
  3113. }
  3114. },
  3115. "runtimeTargets": {
  3116. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3117. "assetType": "runtime",
  3118. "rid": "unix"
  3119. },
  3120. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3121. "assetType": "runtime",
  3122. "rid": "win"
  3123. }
  3124. }
  3125. },
  3126. "System.Security.Cryptography.Xml/6.0.1": {
  3127. "type": "package",
  3128. "dependencies": {
  3129. "System.Memory": "4.5.4",
  3130. "System.Security.AccessControl": "6.0.0",
  3131. "System.Security.Cryptography.Pkcs": "6.0.1"
  3132. },
  3133. "compile": {
  3134. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3135. "related": ".xml"
  3136. }
  3137. },
  3138. "runtime": {
  3139. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3140. "related": ".xml"
  3141. }
  3142. },
  3143. "build": {
  3144. "buildTransitive/netcoreapp3.1/_._": {}
  3145. }
  3146. },
  3147. "System.Security.Permissions/6.0.0": {
  3148. "type": "package",
  3149. "dependencies": {
  3150. "System.Security.AccessControl": "6.0.0",
  3151. "System.Windows.Extensions": "6.0.0"
  3152. },
  3153. "compile": {
  3154. "lib/net5.0/System.Security.Permissions.dll": {
  3155. "related": ".xml"
  3156. }
  3157. },
  3158. "runtime": {
  3159. "lib/net5.0/System.Security.Permissions.dll": {
  3160. "related": ".xml"
  3161. }
  3162. },
  3163. "build": {
  3164. "buildTransitive/netcoreapp3.1/_._": {}
  3165. }
  3166. },
  3167. "System.Security.Principal/4.3.0": {
  3168. "type": "package",
  3169. "dependencies": {
  3170. "System.Runtime": "4.3.0"
  3171. },
  3172. "compile": {
  3173. "ref/netstandard1.0/System.Security.Principal.dll": {
  3174. "related": ".xml"
  3175. }
  3176. },
  3177. "runtime": {
  3178. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3179. }
  3180. },
  3181. "System.Security.Principal.Windows/5.0.0": {
  3182. "type": "package",
  3183. "compile": {
  3184. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3185. "related": ".xml"
  3186. }
  3187. },
  3188. "runtime": {
  3189. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3190. "related": ".xml"
  3191. }
  3192. },
  3193. "runtimeTargets": {
  3194. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3195. "assetType": "runtime",
  3196. "rid": "unix"
  3197. },
  3198. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3199. "assetType": "runtime",
  3200. "rid": "win"
  3201. }
  3202. }
  3203. },
  3204. "System.Text.Encoding/4.3.0": {
  3205. "type": "package",
  3206. "dependencies": {
  3207. "Microsoft.NETCore.Platforms": "1.1.0",
  3208. "Microsoft.NETCore.Targets": "1.1.0",
  3209. "System.Runtime": "4.3.0"
  3210. },
  3211. "compile": {
  3212. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3213. "related": ".xml"
  3214. }
  3215. }
  3216. },
  3217. "System.Text.Encoding.CodePages/5.0.0": {
  3218. "type": "package",
  3219. "dependencies": {
  3220. "Microsoft.NETCore.Platforms": "5.0.0"
  3221. },
  3222. "compile": {
  3223. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3224. "related": ".xml"
  3225. }
  3226. },
  3227. "runtime": {
  3228. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3229. "related": ".xml"
  3230. }
  3231. },
  3232. "runtimeTargets": {
  3233. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3234. "assetType": "runtime",
  3235. "rid": "win"
  3236. }
  3237. }
  3238. },
  3239. "System.Text.Encoding.Extensions/4.3.0": {
  3240. "type": "package",
  3241. "dependencies": {
  3242. "Microsoft.NETCore.Platforms": "1.1.0",
  3243. "Microsoft.NETCore.Targets": "1.1.0",
  3244. "System.Runtime": "4.3.0",
  3245. "System.Text.Encoding": "4.3.0"
  3246. },
  3247. "compile": {
  3248. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3249. "related": ".xml"
  3250. }
  3251. }
  3252. },
  3253. "System.Text.Encodings.Web/4.5.0": {
  3254. "type": "package",
  3255. "compile": {
  3256. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3257. "related": ".xml"
  3258. }
  3259. },
  3260. "runtime": {
  3261. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3262. "related": ".xml"
  3263. }
  3264. }
  3265. },
  3266. "System.Text.RegularExpressions/4.3.0": {
  3267. "type": "package",
  3268. "dependencies": {
  3269. "System.Runtime": "4.3.0"
  3270. },
  3271. "compile": {
  3272. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3273. },
  3274. "runtime": {
  3275. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3276. }
  3277. },
  3278. "System.Threading/4.3.0": {
  3279. "type": "package",
  3280. "dependencies": {
  3281. "System.Runtime": "4.3.0",
  3282. "System.Threading.Tasks": "4.3.0"
  3283. },
  3284. "compile": {
  3285. "ref/netstandard1.3/System.Threading.dll": {
  3286. "related": ".xml"
  3287. }
  3288. },
  3289. "runtime": {
  3290. "lib/netstandard1.3/System.Threading.dll": {}
  3291. }
  3292. },
  3293. "System.Threading.Channels/7.0.0": {
  3294. "type": "package",
  3295. "compile": {
  3296. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3297. "related": ".xml"
  3298. }
  3299. },
  3300. "runtime": {
  3301. "lib/netstandard2.1/System.Threading.Channels.dll": {
  3302. "related": ".xml"
  3303. }
  3304. },
  3305. "build": {
  3306. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  3307. }
  3308. },
  3309. "System.Threading.Tasks/4.3.0": {
  3310. "type": "package",
  3311. "dependencies": {
  3312. "Microsoft.NETCore.Platforms": "1.1.0",
  3313. "Microsoft.NETCore.Targets": "1.1.0",
  3314. "System.Runtime": "4.3.0"
  3315. },
  3316. "compile": {
  3317. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3318. "related": ".xml"
  3319. }
  3320. }
  3321. },
  3322. "System.Threading.Tasks.Extensions/4.3.0": {
  3323. "type": "package",
  3324. "dependencies": {
  3325. "System.Collections": "4.3.0",
  3326. "System.Runtime": "4.3.0",
  3327. "System.Threading.Tasks": "4.3.0"
  3328. },
  3329. "compile": {
  3330. "lib/netstandard1.0/_._": {
  3331. "related": ".xml"
  3332. }
  3333. },
  3334. "runtime": {
  3335. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  3336. "related": ".xml"
  3337. }
  3338. }
  3339. },
  3340. "System.Threading.Thread/4.3.0": {
  3341. "type": "package",
  3342. "dependencies": {
  3343. "System.Runtime": "4.3.0"
  3344. },
  3345. "compile": {
  3346. "ref/netstandard1.3/System.Threading.Thread.dll": {
  3347. "related": ".xml"
  3348. }
  3349. },
  3350. "runtime": {
  3351. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3352. }
  3353. },
  3354. "System.Threading.ThreadPool/4.3.0": {
  3355. "type": "package",
  3356. "dependencies": {
  3357. "System.Runtime": "4.3.0",
  3358. "System.Runtime.Handles": "4.3.0"
  3359. },
  3360. "compile": {
  3361. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  3362. "related": ".xml"
  3363. }
  3364. },
  3365. "runtime": {
  3366. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3367. }
  3368. },
  3369. "System.Threading.Timer/4.3.0": {
  3370. "type": "package",
  3371. "dependencies": {
  3372. "Microsoft.NETCore.Platforms": "1.1.0",
  3373. "Microsoft.NETCore.Targets": "1.1.0",
  3374. "System.Runtime": "4.3.0"
  3375. },
  3376. "compile": {
  3377. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3378. "related": ".xml"
  3379. }
  3380. }
  3381. },
  3382. "System.Windows.Extensions/6.0.0": {
  3383. "type": "package",
  3384. "dependencies": {
  3385. "System.Drawing.Common": "6.0.0"
  3386. },
  3387. "compile": {
  3388. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3389. "related": ".xml"
  3390. }
  3391. },
  3392. "runtime": {
  3393. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3394. "related": ".xml"
  3395. }
  3396. },
  3397. "runtimeTargets": {
  3398. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  3399. "assetType": "runtime",
  3400. "rid": "win"
  3401. }
  3402. }
  3403. },
  3404. "System.Xml.ReaderWriter/4.3.0": {
  3405. "type": "package",
  3406. "dependencies": {
  3407. "System.Collections": "4.3.0",
  3408. "System.Diagnostics.Debug": "4.3.0",
  3409. "System.Globalization": "4.3.0",
  3410. "System.IO": "4.3.0",
  3411. "System.IO.FileSystem": "4.3.0",
  3412. "System.IO.FileSystem.Primitives": "4.3.0",
  3413. "System.Resources.ResourceManager": "4.3.0",
  3414. "System.Runtime": "4.3.0",
  3415. "System.Runtime.Extensions": "4.3.0",
  3416. "System.Runtime.InteropServices": "4.3.0",
  3417. "System.Text.Encoding": "4.3.0",
  3418. "System.Text.Encoding.Extensions": "4.3.0",
  3419. "System.Text.RegularExpressions": "4.3.0",
  3420. "System.Threading.Tasks": "4.3.0",
  3421. "System.Threading.Tasks.Extensions": "4.3.0"
  3422. },
  3423. "compile": {
  3424. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3425. "related": ".xml"
  3426. }
  3427. },
  3428. "runtime": {
  3429. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3430. }
  3431. },
  3432. "System.Xml.XDocument/4.3.0": {
  3433. "type": "package",
  3434. "dependencies": {
  3435. "System.Collections": "4.3.0",
  3436. "System.Diagnostics.Debug": "4.3.0",
  3437. "System.Diagnostics.Tools": "4.3.0",
  3438. "System.Globalization": "4.3.0",
  3439. "System.IO": "4.3.0",
  3440. "System.Reflection": "4.3.0",
  3441. "System.Resources.ResourceManager": "4.3.0",
  3442. "System.Runtime": "4.3.0",
  3443. "System.Runtime.Extensions": "4.3.0",
  3444. "System.Text.Encoding": "4.3.0",
  3445. "System.Threading": "4.3.0",
  3446. "System.Xml.ReaderWriter": "4.3.0"
  3447. },
  3448. "compile": {
  3449. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3450. "related": ".xml"
  3451. }
  3452. },
  3453. "runtime": {
  3454. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3455. }
  3456. },
  3457. "System.Xml.XmlDocument/4.3.0": {
  3458. "type": "package",
  3459. "dependencies": {
  3460. "System.Collections": "4.3.0",
  3461. "System.Diagnostics.Debug": "4.3.0",
  3462. "System.Globalization": "4.3.0",
  3463. "System.IO": "4.3.0",
  3464. "System.Resources.ResourceManager": "4.3.0",
  3465. "System.Runtime": "4.3.0",
  3466. "System.Runtime.Extensions": "4.3.0",
  3467. "System.Text.Encoding": "4.3.0",
  3468. "System.Threading": "4.3.0",
  3469. "System.Xml.ReaderWriter": "4.3.0"
  3470. },
  3471. "compile": {
  3472. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  3473. "related": ".xml"
  3474. }
  3475. },
  3476. "runtime": {
  3477. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3478. }
  3479. },
  3480. "ToolGood.Words/3.1.0.2": {
  3481. "type": "package",
  3482. "compile": {
  3483. "lib/netstandard2.1/ToolGood.Words.dll": {
  3484. "related": ".xml"
  3485. }
  3486. },
  3487. "runtime": {
  3488. "lib/netstandard2.1/ToolGood.Words.dll": {
  3489. "related": ".xml"
  3490. }
  3491. }
  3492. },
  3493. "UAParser/3.1.47": {
  3494. "type": "package",
  3495. "compile": {
  3496. "lib/netcoreapp2.0/UAParser.dll": {
  3497. "related": ".xml"
  3498. }
  3499. },
  3500. "runtime": {
  3501. "lib/netcoreapp2.0/UAParser.dll": {
  3502. "related": ".xml"
  3503. }
  3504. }
  3505. },
  3506. "ZXing.Net/0.16.9": {
  3507. "type": "package",
  3508. "compile": {
  3509. "lib/net5.0/zxing.dll": {
  3510. "related": ".XML"
  3511. }
  3512. },
  3513. "runtime": {
  3514. "lib/net5.0/zxing.dll": {
  3515. "related": ".XML"
  3516. }
  3517. }
  3518. },
  3519. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3520. "type": "package",
  3521. "dependencies": {
  3522. "SixLabors.ImageSharp": "2.1.3",
  3523. "ZXing.Net": "0.16.9"
  3524. },
  3525. "compile": {
  3526. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3527. "related": ".pdb;.xml"
  3528. }
  3529. },
  3530. "runtime": {
  3531. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3532. "related": ".pdb;.xml"
  3533. }
  3534. }
  3535. },
  3536. "Ropin.Core.Common/1.0.0": {
  3537. "type": "project",
  3538. "framework": ".NETCoreApp,Version=v5.0",
  3539. "dependencies": {
  3540. "Coravel": "4.2.1",
  3541. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3542. "Newtonsoft.Json": "13.0.1",
  3543. "QRCoder": "1.4.3",
  3544. "SixLabors.ImageSharp": "2.1.6",
  3545. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3546. },
  3547. "compile": {
  3548. "bin/placeholder/Ropin.Core.Common.dll": {}
  3549. },
  3550. "runtime": {
  3551. "bin/placeholder/Ropin.Core.Common.dll": {}
  3552. }
  3553. },
  3554. "Ropin.Core.Extensions/1.0.0": {
  3555. "type": "project",
  3556. "framework": ".NETCoreApp,Version=v5.0",
  3557. "dependencies": {
  3558. "Autofac": "6.2.0",
  3559. "Autofac.Extras.DynamicProxy": "6.0.0",
  3560. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3561. "Ropin.Core.Common": "1.0.0",
  3562. "Ropin.Inspection.Common": "1.0.0",
  3563. "Ropin.Inspection.Service": "1.0.0",
  3564. "Ropin.Inspection.Tasks": "1.0.0",
  3565. "StackExchange.Redis": "1.2.4",
  3566. "log4net": "2.0.17"
  3567. },
  3568. "compile": {
  3569. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3570. },
  3571. "runtime": {
  3572. "bin/placeholder/Ropin.Core.Extensions.dll": {}
  3573. }
  3574. },
  3575. "Ropin.Inspection.Common/1.0.0": {
  3576. "type": "project",
  3577. "framework": ".NETCoreApp,Version=v5.0",
  3578. "dependencies": {
  3579. "FluentEmail.Smtp": "3.0.2",
  3580. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3581. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3582. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3583. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3584. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3585. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3586. "Microsoft.Extensions.Configuration": "5.0.0",
  3587. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3588. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3589. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3590. "Microsoft.Extensions.Http": "5.0.0",
  3591. "Newtonsoft.Json": "13.0.1",
  3592. "RabbitMQ.Client": "6.8.1",
  3593. "ToolGood.Words": "3.1.0.2",
  3594. "log4net": "2.0.17"
  3595. },
  3596. "compile": {
  3597. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3598. },
  3599. "runtime": {
  3600. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3601. }
  3602. },
  3603. "Ropin.Inspection.Model/1.0.0": {
  3604. "type": "project",
  3605. "framework": ".NETCoreApp,Version=v5.0",
  3606. "dependencies": {
  3607. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3608. "Microsoft.EntityFrameworkCore": "5.0.0",
  3609. "MySql.Data": "8.0.23",
  3610. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3611. "Ropin.Inspection.Common": "1.0.0"
  3612. },
  3613. "compile": {
  3614. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3615. },
  3616. "runtime": {
  3617. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3618. }
  3619. },
  3620. "Ropin.Inspection.Repository/1.0.0": {
  3621. "type": "project",
  3622. "framework": ".NETCoreApp,Version=v5.0",
  3623. "dependencies": {
  3624. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3625. "Microsoft.EntityFrameworkCore": "5.0.0",
  3626. "Ropin.Inspection.Model": "1.0.0"
  3627. },
  3628. "compile": {
  3629. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3630. },
  3631. "runtime": {
  3632. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3633. }
  3634. },
  3635. "Ropin.Inspection.Service/1.0.0": {
  3636. "type": "project",
  3637. "framework": ".NETCoreApp,Version=v5.0",
  3638. "dependencies": {
  3639. "AutoMapper": "10.1.1",
  3640. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3641. "Newtonsoft.Json": "13.0.1",
  3642. "Ropin.Core.Common": "1.0.0",
  3643. "Ropin.Inspection.Common": "1.0.0",
  3644. "Ropin.Inspection.Model": "1.0.0",
  3645. "Ropin.Inspection.Repository": "1.0.0",
  3646. "log4net": "2.0.17"
  3647. },
  3648. "compile": {
  3649. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3650. },
  3651. "runtime": {
  3652. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  3653. }
  3654. },
  3655. "Ropin.Inspection.Tasks/1.0.0": {
  3656. "type": "project",
  3657. "framework": ".NETCoreApp,Version=v5.0",
  3658. "dependencies": {
  3659. "Quartz": "3.3.3",
  3660. "Ropin.Inspection.Common": "1.0.0",
  3661. "Ropin.Inspection.Model": "1.0.0",
  3662. "Ropin.Inspection.Service": "1.0.0"
  3663. },
  3664. "compile": {
  3665. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3666. },
  3667. "runtime": {
  3668. "bin/placeholder/Ropin.Inspection.Tasks.dll": {}
  3669. }
  3670. }
  3671. }
  3672. },
  3673. "libraries": {
  3674. "AdvancedStringBuilder/0.1.0": {
  3675. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3676. "type": "package",
  3677. "path": "advancedstringbuilder/0.1.0",
  3678. "files": [
  3679. ".nupkg.metadata",
  3680. ".signature.p7s",
  3681. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3682. "advancedstringbuilder.nuspec",
  3683. "lib/net40-client/AdvancedStringBuilder.dll",
  3684. "lib/net40-client/AdvancedStringBuilder.xml",
  3685. "lib/net45/AdvancedStringBuilder.dll",
  3686. "lib/net45/AdvancedStringBuilder.xml",
  3687. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3688. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3689. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3690. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3691. ]
  3692. },
  3693. "Autofac/6.2.0": {
  3694. "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3695. "type": "package",
  3696. "path": "autofac/6.2.0",
  3697. "files": [
  3698. ".nupkg.metadata",
  3699. ".signature.p7s",
  3700. "autofac.6.2.0.nupkg.sha512",
  3701. "autofac.nuspec",
  3702. "icon.png",
  3703. "lib/net5.0/Autofac.dll",
  3704. "lib/net5.0/Autofac.pdb",
  3705. "lib/net5.0/Autofac.xml",
  3706. "lib/netstandard2.0/Autofac.dll",
  3707. "lib/netstandard2.0/Autofac.pdb",
  3708. "lib/netstandard2.0/Autofac.xml",
  3709. "lib/netstandard2.1/Autofac.dll",
  3710. "lib/netstandard2.1/Autofac.pdb",
  3711. "lib/netstandard2.1/Autofac.xml"
  3712. ]
  3713. },
  3714. "Autofac.Extensions.DependencyInjection/7.1.0": {
  3715. "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==",
  3716. "type": "package",
  3717. "path": "autofac.extensions.dependencyinjection/7.1.0",
  3718. "files": [
  3719. ".nupkg.metadata",
  3720. ".signature.p7s",
  3721. "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512",
  3722. "autofac.extensions.dependencyinjection.nuspec",
  3723. "icon.png",
  3724. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  3725. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb",
  3726. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  3727. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  3728. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb",
  3729. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  3730. ]
  3731. },
  3732. "Autofac.Extras.DynamicProxy/6.0.0": {
  3733. "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3734. "type": "package",
  3735. "path": "autofac.extras.dynamicproxy/6.0.0",
  3736. "files": [
  3737. ".nupkg.metadata",
  3738. ".signature.p7s",
  3739. "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512",
  3740. "autofac.extras.dynamicproxy.nuspec",
  3741. "icon.png",
  3742. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  3743. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb",
  3744. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  3745. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  3746. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb",
  3747. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  3748. ]
  3749. },
  3750. "AutoMapper/10.1.1": {
  3751. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3752. "type": "package",
  3753. "path": "automapper/10.1.1",
  3754. "files": [
  3755. ".nupkg.metadata",
  3756. ".signature.p7s",
  3757. "automapper.10.1.1.nupkg.sha512",
  3758. "automapper.nuspec",
  3759. "icon.png",
  3760. "lib/net461/AutoMapper.dll",
  3761. "lib/net461/AutoMapper.xml",
  3762. "lib/netstandard2.0/AutoMapper.dll",
  3763. "lib/netstandard2.0/AutoMapper.xml"
  3764. ]
  3765. },
  3766. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  3767. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  3768. "type": "package",
  3769. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  3770. "files": [
  3771. ".nupkg.metadata",
  3772. ".signature.p7s",
  3773. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  3774. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  3775. "icon.png",
  3776. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  3777. ]
  3778. },
  3779. "BouncyCastle.Cryptography/2.2.1": {
  3780. "sha512": "A6Zr52zVqJKt18ZBsTnX0qhG0kwIQftVAjLmszmkiR/trSp8H+xj1gUOzk7XHwaKgyREMSV1v9XaKrBUeIOdvQ==",
  3781. "type": "package",
  3782. "path": "bouncycastle.cryptography/2.2.1",
  3783. "files": [
  3784. ".nupkg.metadata",
  3785. ".signature.p7s",
  3786. "LICENSE.md",
  3787. "README.md",
  3788. "bouncycastle.cryptography.2.2.1.nupkg.sha512",
  3789. "bouncycastle.cryptography.nuspec",
  3790. "lib/net461/BouncyCastle.Cryptography.dll",
  3791. "lib/net461/BouncyCastle.Cryptography.xml",
  3792. "lib/net6.0/BouncyCastle.Cryptography.dll",
  3793. "lib/net6.0/BouncyCastle.Cryptography.xml",
  3794. "lib/netstandard2.0/BouncyCastle.Cryptography.dll",
  3795. "lib/netstandard2.0/BouncyCastle.Cryptography.xml",
  3796. "packageIcon.png"
  3797. ]
  3798. },
  3799. "BouncyCastle.NetCore/1.8.5": {
  3800. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3801. "type": "package",
  3802. "path": "bouncycastle.netcore/1.8.5",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3807. "bouncycastle.netcore.nuspec",
  3808. "lib/Mono/BouncyCastle.Crypto.dll",
  3809. "lib/Mono/BouncyCastle.Crypto.xml",
  3810. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3811. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3812. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3813. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3814. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3815. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3816. "lib/net20/BouncyCastle.Crypto.dll",
  3817. "lib/net20/BouncyCastle.Crypto.xml",
  3818. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3819. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3820. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3821. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3822. ]
  3823. },
  3824. "Castle.Core/4.4.0": {
  3825. "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3826. "type": "package",
  3827. "path": "castle.core/4.4.0",
  3828. "files": [
  3829. ".nupkg.metadata",
  3830. ".signature.p7s",
  3831. "ASL - Apache Software Foundation License.txt",
  3832. "CHANGELOG.md",
  3833. "LICENSE",
  3834. "castle.core.4.4.0.nupkg.sha512",
  3835. "castle.core.nuspec",
  3836. "lib/net35/Castle.Core.dll",
  3837. "lib/net35/Castle.Core.xml",
  3838. "lib/net40/Castle.Core.dll",
  3839. "lib/net40/Castle.Core.xml",
  3840. "lib/net45/Castle.Core.dll",
  3841. "lib/net45/Castle.Core.xml",
  3842. "lib/netstandard1.3/Castle.Core.dll",
  3843. "lib/netstandard1.3/Castle.Core.xml",
  3844. "lib/netstandard1.5/Castle.Core.dll",
  3845. "lib/netstandard1.5/Castle.Core.xml",
  3846. "readme.txt"
  3847. ]
  3848. },
  3849. "Coravel/4.2.1": {
  3850. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3851. "type": "package",
  3852. "path": "coravel/4.2.1",
  3853. "files": [
  3854. ".nupkg.metadata",
  3855. ".signature.p7s",
  3856. "coravel.4.2.1.nupkg.sha512",
  3857. "coravel.nuspec",
  3858. "lib/netstandard2.0/Coravel.dll",
  3859. "lib/netstandard2.0/Coravel.xml",
  3860. "logo.png",
  3861. "readme.md"
  3862. ]
  3863. },
  3864. "Enums.NET/4.0.1": {
  3865. "sha512": "OUGCd5L8zHZ61GAf436G0gf/H6yrSUkEpV5vm2CbCUuz9Rx7iLFLP5iHSSfmOtqNpuyo4vYte0CvYEmPZXRmRQ==",
  3866. "type": "package",
  3867. "path": "enums.net/4.0.1",
  3868. "files": [
  3869. ".nupkg.metadata",
  3870. ".signature.p7s",
  3871. "enums.net.4.0.1.nupkg.sha512",
  3872. "enums.net.nuspec",
  3873. "lib/net45/Enums.NET.dll",
  3874. "lib/net45/Enums.NET.pdb",
  3875. "lib/net45/Enums.NET.xml",
  3876. "lib/netcoreapp3.0/Enums.NET.dll",
  3877. "lib/netcoreapp3.0/Enums.NET.pdb",
  3878. "lib/netcoreapp3.0/Enums.NET.xml",
  3879. "lib/netstandard1.0/Enums.NET.dll",
  3880. "lib/netstandard1.0/Enums.NET.pdb",
  3881. "lib/netstandard1.0/Enums.NET.xml",
  3882. "lib/netstandard1.1/Enums.NET.dll",
  3883. "lib/netstandard1.1/Enums.NET.pdb",
  3884. "lib/netstandard1.1/Enums.NET.xml",
  3885. "lib/netstandard1.3/Enums.NET.dll",
  3886. "lib/netstandard1.3/Enums.NET.pdb",
  3887. "lib/netstandard1.3/Enums.NET.xml",
  3888. "lib/netstandard2.0/Enums.NET.dll",
  3889. "lib/netstandard2.0/Enums.NET.pdb",
  3890. "lib/netstandard2.0/Enums.NET.xml",
  3891. "lib/netstandard2.1/Enums.NET.dll",
  3892. "lib/netstandard2.1/Enums.NET.pdb",
  3893. "lib/netstandard2.1/Enums.NET.xml"
  3894. ]
  3895. },
  3896. "FluentEmail.Core/3.0.2": {
  3897. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3898. "type": "package",
  3899. "path": "fluentemail.core/3.0.2",
  3900. "files": [
  3901. ".nupkg.metadata",
  3902. ".signature.p7s",
  3903. "fluentemail.core.3.0.2.nupkg.sha512",
  3904. "fluentemail.core.nuspec",
  3905. "fluentemail_logo_64x64.png",
  3906. "lib/netstandard2.0/FluentEmail.Core.dll"
  3907. ]
  3908. },
  3909. "FluentEmail.Smtp/3.0.2": {
  3910. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3911. "type": "package",
  3912. "path": "fluentemail.smtp/3.0.2",
  3913. "files": [
  3914. ".nupkg.metadata",
  3915. ".signature.p7s",
  3916. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3917. "fluentemail.smtp.nuspec",
  3918. "fluentemail_logo_64x64.png",
  3919. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3920. ]
  3921. },
  3922. "Google.Protobuf/3.11.4": {
  3923. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3924. "type": "package",
  3925. "path": "google.protobuf/3.11.4",
  3926. "files": [
  3927. ".nupkg.metadata",
  3928. ".signature.p7s",
  3929. "google.protobuf.3.11.4.nupkg.sha512",
  3930. "google.protobuf.nuspec",
  3931. "lib/net45/Google.Protobuf.dll",
  3932. "lib/net45/Google.Protobuf.pdb",
  3933. "lib/net45/Google.Protobuf.xml",
  3934. "lib/netstandard1.0/Google.Protobuf.dll",
  3935. "lib/netstandard1.0/Google.Protobuf.pdb",
  3936. "lib/netstandard1.0/Google.Protobuf.xml",
  3937. "lib/netstandard2.0/Google.Protobuf.dll",
  3938. "lib/netstandard2.0/Google.Protobuf.pdb",
  3939. "lib/netstandard2.0/Google.Protobuf.xml"
  3940. ]
  3941. },
  3942. "Humanizer.Core/2.8.26": {
  3943. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  3944. "type": "package",
  3945. "path": "humanizer.core/2.8.26",
  3946. "files": [
  3947. ".nupkg.metadata",
  3948. ".signature.p7s",
  3949. "humanizer.core.2.8.26.nupkg.sha512",
  3950. "humanizer.core.nuspec",
  3951. "lib/netstandard1.0/Humanizer.dll",
  3952. "lib/netstandard1.0/Humanizer.xml",
  3953. "lib/netstandard2.0/Humanizer.dll",
  3954. "lib/netstandard2.0/Humanizer.xml",
  3955. "logo.png"
  3956. ]
  3957. },
  3958. "InfluxData.Net/8.0.1": {
  3959. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  3960. "type": "package",
  3961. "path": "influxdata.net/8.0.1",
  3962. "files": [
  3963. ".nupkg.metadata",
  3964. ".signature.p7s",
  3965. "influxdata.net.8.0.1.nupkg.sha512",
  3966. "influxdata.net.nuspec",
  3967. "lib/net461/InfluxData.Net.Common.dll",
  3968. "lib/net461/InfluxData.Net.Common.dll.config",
  3969. "lib/net461/InfluxData.Net.Common.pdb",
  3970. "lib/net461/InfluxData.Net.InfluxDb.dll",
  3971. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  3972. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  3973. "lib/net461/InfluxData.Net.Kapacitor.dll",
  3974. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  3975. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  3976. "lib/net461/InfluxData.Net.dll",
  3977. "lib/net461/InfluxData.Net.dll.config",
  3978. "lib/net461/InfluxData.Net.pdb",
  3979. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  3980. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  3981. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  3982. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  3983. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  3984. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  3985. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  3986. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  3987. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  3988. "lib/netstandard2.0/InfluxData.Net.deps.json",
  3989. "lib/netstandard2.0/InfluxData.Net.dll",
  3990. "lib/netstandard2.0/InfluxData.Net.dll.config",
  3991. "lib/netstandard2.0/InfluxData.Net.pdb"
  3992. ]
  3993. },
  3994. "IP2Region.Ex/1.2.0": {
  3995. "sha512": "B8TxhuAw72cPwjgf8pqDf62l1TJL0jXw4J13fXHg4Igq1OwT7SRotQX6gN6puyIgHVYLtKxnmhFf60oUITxmxA==",
  3996. "type": "package",
  3997. "path": "ip2region.ex/1.2.0",
  3998. "files": [
  3999. ".nupkg.metadata",
  4000. ".signature.p7s",
  4001. "ip2region.ex.1.2.0.nupkg.sha512",
  4002. "ip2region.ex.nuspec",
  4003. "lib/netstandard2.0/IP2Region.Ex.dll"
  4004. ]
  4005. },
  4006. "IPTools.China/1.6.0": {
  4007. "sha512": "12VnC92ffiKlLRwr5Ay3uFvZMCB9SDNn77sVlNycQu1OJAunnuCNBOVZTkg9D2UL2cc+iMwra6if9viXhrrt7w==",
  4008. "type": "package",
  4009. "path": "iptools.china/1.6.0",
  4010. "files": [
  4011. ".nupkg.metadata",
  4012. ".signature.p7s",
  4013. "iptools.china.1.6.0.nupkg.sha512",
  4014. "iptools.china.nuspec",
  4015. "lib/net45/IPTools.China.dll",
  4016. "lib/net451/IPTools.China.dll",
  4017. "lib/net452/IPTools.China.dll",
  4018. "lib/net461/IPTools.China.dll",
  4019. "lib/net5.0/IPTools.China.dll",
  4020. "lib/netcoreapp3.1/IPTools.China.dll"
  4021. ]
  4022. },
  4023. "IPTools.Core/1.6.0": {
  4024. "sha512": "qO+EY5vEwLKtOkQD1aMweM9pIVSFLwTi/Z2ZnX08qBXI4yPdRuguJJvzT2YVk2Addv999A+bWifIS8ahiwJcTg==",
  4025. "type": "package",
  4026. "path": "iptools.core/1.6.0",
  4027. "files": [
  4028. ".nupkg.metadata",
  4029. ".signature.p7s",
  4030. "iptools.core.1.6.0.nupkg.sha512",
  4031. "iptools.core.nuspec",
  4032. "lib/net45/IPTools.Core.dll",
  4033. "lib/net451/IPTools.Core.dll",
  4034. "lib/net452/IPTools.Core.dll",
  4035. "lib/net461/IPTools.Core.dll",
  4036. "lib/net5.0/IPTools.Core.dll",
  4037. "lib/netcoreapp3.1/IPTools.Core.dll"
  4038. ]
  4039. },
  4040. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  4041. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  4042. "type": "package",
  4043. "path": "javascriptengineswitcher.chakracore/3.21.0",
  4044. "files": [
  4045. ".nupkg.metadata",
  4046. ".signature.p7s",
  4047. "LICENSE.txt",
  4048. "advanced-string-builder-license.txt",
  4049. "chakra-samples-license.txt",
  4050. "icon.png",
  4051. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  4052. "javascriptengineswitcher.chakracore.nuspec",
  4053. "jsrt-dotnet-license.txt",
  4054. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  4055. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  4056. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4057. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  4058. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  4059. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4060. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  4061. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  4062. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4063. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  4064. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  4065. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4066. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  4067. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  4068. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4069. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  4070. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  4071. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  4072. "polyfills-for-old-dot-net-license.txt",
  4073. "readme.txt"
  4074. ]
  4075. },
  4076. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  4077. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  4078. "type": "package",
  4079. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  4080. "files": [
  4081. ".nupkg.metadata",
  4082. ".signature.p7s",
  4083. "LICENSE.txt",
  4084. "chakra-core-license.txt",
  4085. "icon.png",
  4086. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  4087. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  4088. "readme.txt",
  4089. "runtimes/linux-x64/native/libChakraCore.so"
  4090. ]
  4091. },
  4092. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  4093. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  4094. "type": "package",
  4095. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  4096. "hasTools": true,
  4097. "files": [
  4098. ".nupkg.metadata",
  4099. ".signature.p7s",
  4100. "LICENSE.txt",
  4101. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  4102. "chakra-core-license.txt",
  4103. "icon.png",
  4104. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  4105. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  4106. "readme.txt",
  4107. "runtimes/win-x64/native/ChakraCore.dll",
  4108. "tools/Install.ps1",
  4109. "tools/Uninstall.ps1"
  4110. ]
  4111. },
  4112. "JavaScriptEngineSwitcher.Core/3.21.0": {
  4113. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  4114. "type": "package",
  4115. "path": "javascriptengineswitcher.core/3.21.0",
  4116. "files": [
  4117. ".nupkg.metadata",
  4118. ".signature.p7s",
  4119. "LICENSE.txt",
  4120. "advanced-string-builder-license.txt",
  4121. "icon.png",
  4122. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  4123. "javascriptengineswitcher.core.nuspec",
  4124. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  4125. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  4126. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4127. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  4128. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  4129. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4130. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  4131. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  4132. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4133. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  4134. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  4135. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  4136. "readme.txt"
  4137. ]
  4138. },
  4139. "K4os.Compression.LZ4/1.1.11": {
  4140. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  4141. "type": "package",
  4142. "path": "k4os.compression.lz4/1.1.11",
  4143. "files": [
  4144. ".nupkg.metadata",
  4145. ".signature.p7s",
  4146. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  4147. "k4os.compression.lz4.nuspec",
  4148. "lib/net45/K4os.Compression.LZ4.dll",
  4149. "lib/net45/K4os.Compression.LZ4.xml",
  4150. "lib/net46/K4os.Compression.LZ4.dll",
  4151. "lib/net46/K4os.Compression.LZ4.xml",
  4152. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4153. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4154. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4155. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4156. ]
  4157. },
  4158. "K4os.Compression.LZ4.Streams/1.1.11": {
  4159. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  4160. "type": "package",
  4161. "path": "k4os.compression.lz4.streams/1.1.11",
  4162. "files": [
  4163. ".nupkg.metadata",
  4164. ".signature.p7s",
  4165. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  4166. "k4os.compression.lz4.streams.nuspec",
  4167. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4168. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4169. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4170. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4171. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4172. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4173. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4174. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  4175. ]
  4176. },
  4177. "K4os.Hash.xxHash/1.0.6": {
  4178. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4179. "type": "package",
  4180. "path": "k4os.hash.xxhash/1.0.6",
  4181. "files": [
  4182. ".nupkg.metadata",
  4183. ".signature.p7s",
  4184. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4185. "k4os.hash.xxhash.nuspec",
  4186. "lib/net45/K4os.Hash.xxHash.dll",
  4187. "lib/net45/K4os.Hash.xxHash.xml",
  4188. "lib/net46/K4os.Hash.xxHash.dll",
  4189. "lib/net46/K4os.Hash.xxHash.xml",
  4190. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4191. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4192. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4193. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4194. ]
  4195. },
  4196. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  4197. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  4198. "type": "package",
  4199. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  4200. "files": [
  4201. ".nupkg.metadata",
  4202. ".signature.p7s",
  4203. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  4204. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  4205. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  4206. "linqkit.microsoft.entityframeworkcore.nuspec"
  4207. ]
  4208. },
  4209. "log4net/2.0.17": {
  4210. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  4211. "type": "package",
  4212. "path": "log4net/2.0.17",
  4213. "files": [
  4214. ".nupkg.metadata",
  4215. ".signature.p7s",
  4216. "lib/net20/log4net.dll",
  4217. "lib/net20/log4net.xml",
  4218. "lib/net35/log4net.dll",
  4219. "lib/net35/log4net.xml",
  4220. "lib/net40-client/log4net.dll",
  4221. "lib/net40-client/log4net.xml",
  4222. "lib/net40/log4net.dll",
  4223. "lib/net40/log4net.xml",
  4224. "lib/net45/log4net.dll",
  4225. "lib/net45/log4net.xml",
  4226. "lib/netstandard1.3/log4net.dll",
  4227. "lib/netstandard1.3/log4net.xml",
  4228. "lib/netstandard2.0/log4net.dll",
  4229. "lib/netstandard2.0/log4net.xml",
  4230. "log4net.2.0.17.nupkg.sha512",
  4231. "log4net.nuspec",
  4232. "package-icon.png"
  4233. ]
  4234. },
  4235. "MathNet.Numerics.Signed/4.15.0": {
  4236. "sha512": "LFjukMRatkg9dgRM7U/gM4uKgaWAX7E0lt3fsVDTPdtBIVuh7uPlksDie290br1/tv1a4Ar/Bz9ywCPSL8PhHg==",
  4237. "type": "package",
  4238. "path": "mathnet.numerics.signed/4.15.0",
  4239. "files": [
  4240. ".nupkg.metadata",
  4241. ".signature.p7s",
  4242. "icon.png",
  4243. "lib/net40/MathNet.Numerics.dll",
  4244. "lib/net40/MathNet.Numerics.xml",
  4245. "lib/net461/MathNet.Numerics.dll",
  4246. "lib/net461/MathNet.Numerics.xml",
  4247. "lib/netstandard1.3/MathNet.Numerics.dll",
  4248. "lib/netstandard1.3/MathNet.Numerics.xml",
  4249. "lib/netstandard2.0/MathNet.Numerics.dll",
  4250. "lib/netstandard2.0/MathNet.Numerics.xml",
  4251. "mathnet.numerics.signed.4.15.0.nupkg.sha512",
  4252. "mathnet.numerics.signed.nuspec"
  4253. ]
  4254. },
  4255. "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.0": {
  4256. "sha512": "26WlfJsOB4QP3VsEVu5GGDSGm5wu6ikQqRUOaZ3BUmyGcMWsD28xFxPxFw4OszYgKpj54QYlyec19KcrEGkqDw==",
  4257. "type": "package",
  4258. "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.0",
  4259. "files": [
  4260. ".nupkg.metadata",
  4261. ".signature.p7s",
  4262. "Icon.png",
  4263. "THIRD-PARTY-NOTICES.TXT",
  4264. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  4265. "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  4266. "microsoft.aspnetcore.authentication.jwtbearer.5.0.0.nupkg.sha512",
  4267. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  4268. ]
  4269. },
  4270. "Microsoft.AspNetCore.Authentication.OpenIdConnect/5.0.0": {
  4271. "sha512": "YzUMJYSVWEEQmHpOhEzOcZ2/ltQ/uP1s8DHK8oaobgsjKUdIeRvEwtVQ5D6zO0vdlj4j9Mw0JD1FrZPGI07fHw==",
  4272. "type": "package",
  4273. "path": "microsoft.aspnetcore.authentication.openidconnect/5.0.0",
  4274. "files": [
  4275. ".nupkg.metadata",
  4276. ".signature.p7s",
  4277. "Icon.png",
  4278. "THIRD-PARTY-NOTICES.TXT",
  4279. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll",
  4280. "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml",
  4281. "microsoft.aspnetcore.authentication.openidconnect.5.0.0.nupkg.sha512",
  4282. "microsoft.aspnetcore.authentication.openidconnect.nuspec"
  4283. ]
  4284. },
  4285. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4286. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4287. "type": "package",
  4288. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4289. "files": [
  4290. ".nupkg.metadata",
  4291. ".signature.p7s",
  4292. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4293. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4294. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4295. "microsoft.aspnetcore.http.abstractions.nuspec"
  4296. ]
  4297. },
  4298. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  4299. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  4300. "type": "package",
  4301. "path": "microsoft.aspnetcore.http.features/5.0.0",
  4302. "files": [
  4303. ".nupkg.metadata",
  4304. ".signature.p7s",
  4305. "Icon.png",
  4306. "THIRD-PARTY-NOTICES.TXT",
  4307. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4308. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4309. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4310. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4311. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4312. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4313. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  4314. "microsoft.aspnetcore.http.features.nuspec"
  4315. ]
  4316. },
  4317. "Microsoft.AspNetCore.JsonPatch/5.0.0": {
  4318. "sha512": "oy/fvnBHpofNPskGcCrzZv1AhY36YHV0lyWy9NC5ye5eHvEJeJsSKjn2fNk/j1lXOuF13H9qrvZrA9zNkymy5Q==",
  4319. "type": "package",
  4320. "path": "microsoft.aspnetcore.jsonpatch/5.0.0",
  4321. "files": [
  4322. ".nupkg.metadata",
  4323. ".signature.p7s",
  4324. "Icon.png",
  4325. "THIRD-PARTY-NOTICES.TXT",
  4326. "lib/net461/Microsoft.AspNetCore.JsonPatch.dll",
  4327. "lib/net461/Microsoft.AspNetCore.JsonPatch.xml",
  4328. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  4329. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  4330. "microsoft.aspnetcore.jsonpatch.5.0.0.nupkg.sha512",
  4331. "microsoft.aspnetcore.jsonpatch.nuspec"
  4332. ]
  4333. },
  4334. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/5.0.0": {
  4335. "sha512": "EnGI7CGWaijTuvUxY0lncAp/q/R7HZJCm8NwqiUHxDjrEWYdC/5oOHafVgNjVpk2zLsDesyaGnJundLnw5KNVA==",
  4336. "type": "package",
  4337. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/5.0.0",
  4338. "files": [
  4339. ".nupkg.metadata",
  4340. ".signature.p7s",
  4341. "Icon.png",
  4342. "THIRD-PARTY-NOTICES.TXT",
  4343. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  4344. "lib/net5.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  4345. "microsoft.aspnetcore.mvc.newtonsoftjson.5.0.0.nupkg.sha512",
  4346. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  4347. ]
  4348. },
  4349. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4350. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4351. "type": "package",
  4352. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4353. "files": [
  4354. ".nupkg.metadata",
  4355. ".signature.p7s",
  4356. "Icon.png",
  4357. "THIRD-PARTY-NOTICES.TXT",
  4358. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  4359. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  4360. "microsoft.aspnetcore.nodeservices.nuspec"
  4361. ]
  4362. },
  4363. "Microsoft.CSharp/4.7.0": {
  4364. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4365. "type": "package",
  4366. "path": "microsoft.csharp/4.7.0",
  4367. "files": [
  4368. ".nupkg.metadata",
  4369. ".signature.p7s",
  4370. "LICENSE.TXT",
  4371. "THIRD-PARTY-NOTICES.TXT",
  4372. "lib/MonoAndroid10/_._",
  4373. "lib/MonoTouch10/_._",
  4374. "lib/net45/_._",
  4375. "lib/netcore50/Microsoft.CSharp.dll",
  4376. "lib/netcoreapp2.0/_._",
  4377. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4378. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4379. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4380. "lib/portable-net45+win8+wp8+wpa81/_._",
  4381. "lib/uap10.0.16299/_._",
  4382. "lib/win8/_._",
  4383. "lib/wp80/_._",
  4384. "lib/wpa81/_._",
  4385. "lib/xamarinios10/_._",
  4386. "lib/xamarinmac20/_._",
  4387. "lib/xamarintvos10/_._",
  4388. "lib/xamarinwatchos10/_._",
  4389. "microsoft.csharp.4.7.0.nupkg.sha512",
  4390. "microsoft.csharp.nuspec",
  4391. "ref/MonoAndroid10/_._",
  4392. "ref/MonoTouch10/_._",
  4393. "ref/net45/_._",
  4394. "ref/netcore50/Microsoft.CSharp.dll",
  4395. "ref/netcore50/Microsoft.CSharp.xml",
  4396. "ref/netcore50/de/Microsoft.CSharp.xml",
  4397. "ref/netcore50/es/Microsoft.CSharp.xml",
  4398. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4399. "ref/netcore50/it/Microsoft.CSharp.xml",
  4400. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4401. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4402. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4403. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4404. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4405. "ref/netcoreapp2.0/_._",
  4406. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4407. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4408. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4409. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4410. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4411. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4412. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4413. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4414. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4415. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4416. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4417. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4418. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4419. "ref/portable-net45+win8+wp8+wpa81/_._",
  4420. "ref/uap10.0.16299/_._",
  4421. "ref/win8/_._",
  4422. "ref/wp80/_._",
  4423. "ref/wpa81/_._",
  4424. "ref/xamarinios10/_._",
  4425. "ref/xamarinmac20/_._",
  4426. "ref/xamarintvos10/_._",
  4427. "ref/xamarinwatchos10/_._",
  4428. "useSharedDesignerContext.txt",
  4429. "version.txt"
  4430. ]
  4431. },
  4432. "Microsoft.EntityFrameworkCore/5.0.4": {
  4433. "sha512": "upRpXluUeONMYO+O3RU8G+ZZcrnDrnNVWg4eJmSfertTdw7Hc5tgIeg/O8+oBKqf+OvBrQKW0U3PI9yoTsuPYg==",
  4434. "type": "package",
  4435. "path": "microsoft.entityframeworkcore/5.0.4",
  4436. "files": [
  4437. ".nupkg.metadata",
  4438. ".signature.p7s",
  4439. "Icon.png",
  4440. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4441. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4442. "microsoft.entityframeworkcore.5.0.4.nupkg.sha512",
  4443. "microsoft.entityframeworkcore.nuspec"
  4444. ]
  4445. },
  4446. "Microsoft.EntityFrameworkCore.Abstractions/5.0.4": {
  4447. "sha512": "4y+y28SHjniLIqj7M7YNRO8khBnCBtkM6TJG8oX0wyEZuLum+3e9vqqna1naaV6Hi4BhXBHcD/sjhIfW1u0ZfQ==",
  4448. "type": "package",
  4449. "path": "microsoft.entityframeworkcore.abstractions/5.0.4",
  4450. "files": [
  4451. ".nupkg.metadata",
  4452. ".signature.p7s",
  4453. "Icon.png",
  4454. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4455. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4456. "microsoft.entityframeworkcore.abstractions.5.0.4.nupkg.sha512",
  4457. "microsoft.entityframeworkcore.abstractions.nuspec"
  4458. ]
  4459. },
  4460. "Microsoft.EntityFrameworkCore.Analyzers/5.0.4": {
  4461. "sha512": "z8OMwlXcUZJCArcDdhR0NRkmS0UyNg08l1LXPZCgYqjBeW8RvNXshH3H5ru/7IOVpyOfKrG5Q3nsgdD18OFG/g==",
  4462. "type": "package",
  4463. "path": "microsoft.entityframeworkcore.analyzers/5.0.4",
  4464. "files": [
  4465. ".nupkg.metadata",
  4466. ".signature.p7s",
  4467. "Icon.png",
  4468. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4469. "lib/netstandard2.0/_._",
  4470. "microsoft.entityframeworkcore.analyzers.5.0.4.nupkg.sha512",
  4471. "microsoft.entityframeworkcore.analyzers.nuspec"
  4472. ]
  4473. },
  4474. "Microsoft.EntityFrameworkCore.Design/5.0.4": {
  4475. "sha512": "LqyE5MX0IUFjsXu3tNIMpTtC4poY7XQogpGdATjK949tCKopxyJuzTZtgsgdc20LGFWQM0UwwyyfUNjs5kKvsw==",
  4476. "type": "package",
  4477. "path": "microsoft.entityframeworkcore.design/5.0.4",
  4478. "files": [
  4479. ".nupkg.metadata",
  4480. ".signature.p7s",
  4481. "Icon.png",
  4482. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props",
  4483. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll",
  4484. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml",
  4485. "microsoft.entityframeworkcore.design.5.0.4.nupkg.sha512",
  4486. "microsoft.entityframeworkcore.design.nuspec"
  4487. ]
  4488. },
  4489. "Microsoft.EntityFrameworkCore.Relational/5.0.4": {
  4490. "sha512": "9Qa6SqX+hJZogo99bICsS6kgQ1C5RtEjPrsvQxjInVdY9QSWsXWIYfem0rv3wi+htwkJuMHVHGSaqG1oeAwe+w==",
  4491. "type": "package",
  4492. "path": "microsoft.entityframeworkcore.relational/5.0.4",
  4493. "files": [
  4494. ".nupkg.metadata",
  4495. ".signature.p7s",
  4496. "Icon.png",
  4497. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4498. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4499. "microsoft.entityframeworkcore.relational.5.0.4.nupkg.sha512",
  4500. "microsoft.entityframeworkcore.relational.nuspec"
  4501. ]
  4502. },
  4503. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4504. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4505. "type": "package",
  4506. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4507. "hasTools": true,
  4508. "files": [
  4509. ".nupkg.metadata",
  4510. ".signature.p7s",
  4511. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4512. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4513. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4514. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4515. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4516. "microsoft.extensions.apidescription.server.nuspec",
  4517. "tools/Newtonsoft.Json.dll",
  4518. "tools/dotnet-getdocument.deps.json",
  4519. "tools/dotnet-getdocument.dll",
  4520. "tools/dotnet-getdocument.runtimeconfig.json",
  4521. "tools/net461-x86/GetDocument.Insider.exe",
  4522. "tools/net461-x86/GetDocument.Insider.exe.config",
  4523. "tools/net461/GetDocument.Insider.exe",
  4524. "tools/net461/GetDocument.Insider.exe.config",
  4525. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4526. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4527. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4528. ]
  4529. },
  4530. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4531. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4532. "type": "package",
  4533. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4534. "files": [
  4535. ".nupkg.metadata",
  4536. ".signature.p7s",
  4537. "Icon.png",
  4538. "LICENSE.TXT",
  4539. "THIRD-PARTY-NOTICES.TXT",
  4540. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4541. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4542. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4543. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4544. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4545. "microsoft.extensions.caching.abstractions.nuspec",
  4546. "useSharedDesignerContext.txt",
  4547. "version.txt"
  4548. ]
  4549. },
  4550. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4551. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4552. "type": "package",
  4553. "path": "microsoft.extensions.caching.memory/5.0.0",
  4554. "files": [
  4555. ".nupkg.metadata",
  4556. ".signature.p7s",
  4557. "Icon.png",
  4558. "LICENSE.TXT",
  4559. "THIRD-PARTY-NOTICES.TXT",
  4560. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4561. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4562. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4563. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4564. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4565. "microsoft.extensions.caching.memory.nuspec",
  4566. "useSharedDesignerContext.txt",
  4567. "version.txt"
  4568. ]
  4569. },
  4570. "Microsoft.Extensions.Configuration/5.0.0": {
  4571. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4572. "type": "package",
  4573. "path": "microsoft.extensions.configuration/5.0.0",
  4574. "files": [
  4575. ".nupkg.metadata",
  4576. ".signature.p7s",
  4577. "Icon.png",
  4578. "LICENSE.TXT",
  4579. "THIRD-PARTY-NOTICES.TXT",
  4580. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4581. "lib/net461/Microsoft.Extensions.Configuration.xml",
  4582. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4583. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4584. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  4585. "microsoft.extensions.configuration.nuspec",
  4586. "useSharedDesignerContext.txt",
  4587. "version.txt"
  4588. ]
  4589. },
  4590. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4591. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4592. "type": "package",
  4593. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4594. "files": [
  4595. ".nupkg.metadata",
  4596. ".signature.p7s",
  4597. "Icon.png",
  4598. "LICENSE.TXT",
  4599. "THIRD-PARTY-NOTICES.TXT",
  4600. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4601. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4602. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4603. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4604. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4605. "microsoft.extensions.configuration.abstractions.nuspec",
  4606. "useSharedDesignerContext.txt",
  4607. "version.txt"
  4608. ]
  4609. },
  4610. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4611. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4612. "type": "package",
  4613. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "Icon.png",
  4618. "LICENSE.TXT",
  4619. "THIRD-PARTY-NOTICES.TXT",
  4620. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  4621. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  4622. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4623. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4624. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  4625. "microsoft.extensions.configuration.binder.nuspec",
  4626. "useSharedDesignerContext.txt",
  4627. "version.txt"
  4628. ]
  4629. },
  4630. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4631. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4632. "type": "package",
  4633. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4634. "files": [
  4635. ".nupkg.metadata",
  4636. ".signature.p7s",
  4637. "Icon.png",
  4638. "LICENSE.TXT",
  4639. "THIRD-PARTY-NOTICES.TXT",
  4640. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4641. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4642. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4643. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4644. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  4645. "microsoft.extensions.configuration.fileextensions.nuspec",
  4646. "useSharedDesignerContext.txt",
  4647. "version.txt"
  4648. ]
  4649. },
  4650. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4651. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4652. "type": "package",
  4653. "path": "microsoft.extensions.configuration.json/5.0.0",
  4654. "files": [
  4655. ".nupkg.metadata",
  4656. ".signature.p7s",
  4657. "Icon.png",
  4658. "LICENSE.TXT",
  4659. "THIRD-PARTY-NOTICES.TXT",
  4660. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  4661. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  4662. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4663. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4664. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  4665. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  4666. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  4667. "microsoft.extensions.configuration.json.nuspec",
  4668. "useSharedDesignerContext.txt",
  4669. "version.txt"
  4670. ]
  4671. },
  4672. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  4673. "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==",
  4674. "type": "package",
  4675. "path": "microsoft.extensions.dependencyinjection/5.0.1",
  4676. "files": [
  4677. ".nupkg.metadata",
  4678. ".signature.p7s",
  4679. "Icon.png",
  4680. "LICENSE.TXT",
  4681. "Microsoft.Extensions.DependencyInjection.5.0.1.nupkg.sha512",
  4682. "Microsoft.Extensions.DependencyInjection.nuspec",
  4683. "THIRD-PARTY-NOTICES.TXT",
  4684. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4685. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4686. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4687. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4688. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4689. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4690. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4691. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4692. "useSharedDesignerContext.txt",
  4693. "version.txt"
  4694. ]
  4695. },
  4696. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4697. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4698. "type": "package",
  4699. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4700. "files": [
  4701. ".nupkg.metadata",
  4702. ".signature.p7s",
  4703. "Icon.png",
  4704. "LICENSE.TXT",
  4705. "THIRD-PARTY-NOTICES.TXT",
  4706. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4707. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4708. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4709. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4710. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4711. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4712. "useSharedDesignerContext.txt",
  4713. "version.txt"
  4714. ]
  4715. },
  4716. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4717. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4718. "type": "package",
  4719. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4720. "files": [
  4721. ".nupkg.metadata",
  4722. ".signature.p7s",
  4723. "Icon.png",
  4724. "LICENSE.TXT",
  4725. "THIRD-PARTY-NOTICES.TXT",
  4726. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4727. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4728. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4729. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4730. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  4731. "microsoft.extensions.fileproviders.abstractions.nuspec",
  4732. "useSharedDesignerContext.txt",
  4733. "version.txt"
  4734. ]
  4735. },
  4736. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4737. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4738. "type": "package",
  4739. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4740. "files": [
  4741. ".nupkg.metadata",
  4742. ".signature.p7s",
  4743. "Icon.png",
  4744. "LICENSE.TXT",
  4745. "THIRD-PARTY-NOTICES.TXT",
  4746. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  4747. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  4748. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4749. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4750. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  4751. "microsoft.extensions.fileproviders.physical.nuspec",
  4752. "useSharedDesignerContext.txt",
  4753. "version.txt"
  4754. ]
  4755. },
  4756. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4757. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4758. "type": "package",
  4759. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4760. "files": [
  4761. ".nupkg.metadata",
  4762. ".signature.p7s",
  4763. "Icon.png",
  4764. "LICENSE.TXT",
  4765. "THIRD-PARTY-NOTICES.TXT",
  4766. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  4767. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  4768. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4769. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4770. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  4771. "microsoft.extensions.filesystemglobbing.nuspec",
  4772. "useSharedDesignerContext.txt",
  4773. "version.txt"
  4774. ]
  4775. },
  4776. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4777. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4778. "type": "package",
  4779. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  4784. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  4785. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4786. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4787. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  4788. "microsoft.extensions.hosting.abstractions.nuspec",
  4789. "packageIcon.png"
  4790. ]
  4791. },
  4792. "Microsoft.Extensions.Http/5.0.0": {
  4793. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4794. "type": "package",
  4795. "path": "microsoft.extensions.http/5.0.0",
  4796. "files": [
  4797. ".nupkg.metadata",
  4798. ".signature.p7s",
  4799. "Icon.png",
  4800. "LICENSE.TXT",
  4801. "THIRD-PARTY-NOTICES.TXT",
  4802. "lib/net461/Microsoft.Extensions.Http.dll",
  4803. "lib/net461/Microsoft.Extensions.Http.xml",
  4804. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  4805. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  4806. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  4807. "microsoft.extensions.http.nuspec",
  4808. "useSharedDesignerContext.txt",
  4809. "version.txt"
  4810. ]
  4811. },
  4812. "Microsoft.Extensions.Logging/5.0.0": {
  4813. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4814. "type": "package",
  4815. "path": "microsoft.extensions.logging/5.0.0",
  4816. "files": [
  4817. ".nupkg.metadata",
  4818. ".signature.p7s",
  4819. "Icon.png",
  4820. "LICENSE.TXT",
  4821. "THIRD-PARTY-NOTICES.TXT",
  4822. "lib/net461/Microsoft.Extensions.Logging.dll",
  4823. "lib/net461/Microsoft.Extensions.Logging.xml",
  4824. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4825. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4826. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4827. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4828. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  4829. "microsoft.extensions.logging.nuspec",
  4830. "useSharedDesignerContext.txt",
  4831. "version.txt"
  4832. ]
  4833. },
  4834. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4835. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4836. "type": "package",
  4837. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4838. "files": [
  4839. ".nupkg.metadata",
  4840. ".signature.p7s",
  4841. "Icon.png",
  4842. "LICENSE.TXT",
  4843. "THIRD-PARTY-NOTICES.TXT",
  4844. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4845. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4846. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4847. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4848. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  4849. "microsoft.extensions.logging.abstractions.nuspec",
  4850. "useSharedDesignerContext.txt",
  4851. "version.txt"
  4852. ]
  4853. },
  4854. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4855. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4856. "type": "package",
  4857. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4858. "files": [
  4859. ".nupkg.metadata",
  4860. ".signature.p7s",
  4861. "Icon.png",
  4862. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4863. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4864. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4865. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4866. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4867. "microsoft.extensions.logging.configuration.nuspec"
  4868. ]
  4869. },
  4870. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4871. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4872. "type": "package",
  4873. "path": "microsoft.extensions.logging.console/3.1.30",
  4874. "files": [
  4875. ".nupkg.metadata",
  4876. ".signature.p7s",
  4877. "Icon.png",
  4878. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4879. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4880. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4881. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4882. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4883. "microsoft.extensions.logging.console.nuspec"
  4884. ]
  4885. },
  4886. "Microsoft.Extensions.Options/5.0.0": {
  4887. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4888. "type": "package",
  4889. "path": "microsoft.extensions.options/5.0.0",
  4890. "files": [
  4891. ".nupkg.metadata",
  4892. ".signature.p7s",
  4893. "Icon.png",
  4894. "LICENSE.TXT",
  4895. "THIRD-PARTY-NOTICES.TXT",
  4896. "lib/net461/Microsoft.Extensions.Options.dll",
  4897. "lib/net461/Microsoft.Extensions.Options.xml",
  4898. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4899. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4900. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4901. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4902. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4903. "microsoft.extensions.options.nuspec",
  4904. "useSharedDesignerContext.txt",
  4905. "version.txt"
  4906. ]
  4907. },
  4908. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4909. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4910. "type": "package",
  4911. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4912. "files": [
  4913. ".nupkg.metadata",
  4914. ".signature.p7s",
  4915. "Icon.png",
  4916. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4917. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4918. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4919. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4920. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4921. "microsoft.extensions.options.configurationextensions.nuspec"
  4922. ]
  4923. },
  4924. "Microsoft.Extensions.Primitives/5.0.0": {
  4925. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4926. "type": "package",
  4927. "path": "microsoft.extensions.primitives/5.0.0",
  4928. "files": [
  4929. ".nupkg.metadata",
  4930. ".signature.p7s",
  4931. "Icon.png",
  4932. "LICENSE.TXT",
  4933. "THIRD-PARTY-NOTICES.TXT",
  4934. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4935. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4936. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4937. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4938. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4939. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4940. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4941. "microsoft.extensions.primitives.nuspec",
  4942. "useSharedDesignerContext.txt",
  4943. "version.txt"
  4944. ]
  4945. },
  4946. "Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
  4947. "sha512": "q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==",
  4948. "type": "package",
  4949. "path": "microsoft.identitymodel.jsonwebtokens/6.7.1",
  4950. "files": [
  4951. ".nupkg.metadata",
  4952. ".signature.p7s",
  4953. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  4954. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  4955. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  4956. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  4957. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4958. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4959. "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
  4960. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4961. ]
  4962. },
  4963. "Microsoft.IdentityModel.Logging/6.7.1": {
  4964. "sha512": "WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==",
  4965. "type": "package",
  4966. "path": "microsoft.identitymodel.logging/6.7.1",
  4967. "files": [
  4968. ".nupkg.metadata",
  4969. ".signature.p7s",
  4970. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  4971. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  4972. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  4973. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  4974. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4975. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4976. "microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
  4977. "microsoft.identitymodel.logging.nuspec"
  4978. ]
  4979. },
  4980. "Microsoft.IdentityModel.Protocols/6.7.1": {
  4981. "sha512": "DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==",
  4982. "type": "package",
  4983. "path": "microsoft.identitymodel.protocols/6.7.1",
  4984. "files": [
  4985. ".nupkg.metadata",
  4986. ".signature.p7s",
  4987. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  4988. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  4989. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  4990. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  4991. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  4992. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  4993. "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512",
  4994. "microsoft.identitymodel.protocols.nuspec"
  4995. ]
  4996. },
  4997. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": {
  4998. "sha512": "99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==",
  4999. "type": "package",
  5000. "path": "microsoft.identitymodel.protocols.openidconnect/6.7.1",
  5001. "files": [
  5002. ".nupkg.metadata",
  5003. ".signature.p7s",
  5004. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5005. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5006. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5007. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5008. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5009. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5010. "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512",
  5011. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  5012. ]
  5013. },
  5014. "Microsoft.IdentityModel.Tokens/6.7.1": {
  5015. "sha512": "Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==",
  5016. "type": "package",
  5017. "path": "microsoft.identitymodel.tokens/6.7.1",
  5018. "files": [
  5019. ".nupkg.metadata",
  5020. ".signature.p7s",
  5021. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5022. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5023. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5024. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5025. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5026. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5027. "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
  5028. "microsoft.identitymodel.tokens.nuspec"
  5029. ]
  5030. },
  5031. "Microsoft.IO.RecyclableMemoryStream/2.3.2": {
  5032. "sha512": "Oh1qXXFdJFcHozvb4H6XYLf2W0meZFuG0A+TfapFPj9z5fd4vxiARGEhAaLj/6XWQaMYIv4SH/9Q6H78Hw0E2Q==",
  5033. "type": "package",
  5034. "path": "microsoft.io.recyclablememorystream/2.3.2",
  5035. "files": [
  5036. ".nupkg.metadata",
  5037. ".signature.p7s",
  5038. "README.md",
  5039. "lib/net462/Microsoft.IO.RecyclableMemoryStream.dll",
  5040. "lib/net462/Microsoft.IO.RecyclableMemoryStream.xml",
  5041. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll",
  5042. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.xml",
  5043. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  5044. "lib/netcoreapp2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  5045. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  5046. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  5047. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  5048. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  5049. "microsoft.io.recyclablememorystream.2.3.2.nupkg.sha512",
  5050. "microsoft.io.recyclablememorystream.nuspec"
  5051. ]
  5052. },
  5053. "Microsoft.NETCore.Platforms/5.0.0": {
  5054. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5055. "type": "package",
  5056. "path": "microsoft.netcore.platforms/5.0.0",
  5057. "files": [
  5058. ".nupkg.metadata",
  5059. ".signature.p7s",
  5060. "Icon.png",
  5061. "LICENSE.TXT",
  5062. "THIRD-PARTY-NOTICES.TXT",
  5063. "lib/netstandard1.0/_._",
  5064. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5065. "microsoft.netcore.platforms.nuspec",
  5066. "runtime.json",
  5067. "useSharedDesignerContext.txt",
  5068. "version.txt"
  5069. ]
  5070. },
  5071. "Microsoft.NETCore.Targets/1.1.0": {
  5072. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5073. "type": "package",
  5074. "path": "microsoft.netcore.targets/1.1.0",
  5075. "files": [
  5076. ".nupkg.metadata",
  5077. ".signature.p7s",
  5078. "ThirdPartyNotices.txt",
  5079. "dotnet_library_license.txt",
  5080. "lib/netstandard1.0/_._",
  5081. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5082. "microsoft.netcore.targets.nuspec",
  5083. "runtime.json"
  5084. ]
  5085. },
  5086. "Microsoft.OpenApi/1.2.3": {
  5087. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  5088. "type": "package",
  5089. "path": "microsoft.openapi/1.2.3",
  5090. "files": [
  5091. ".nupkg.metadata",
  5092. ".signature.p7s",
  5093. "lib/net46/Microsoft.OpenApi.dll",
  5094. "lib/net46/Microsoft.OpenApi.pdb",
  5095. "lib/net46/Microsoft.OpenApi.xml",
  5096. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  5097. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  5098. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  5099. "microsoft.openapi.1.2.3.nupkg.sha512",
  5100. "microsoft.openapi.nuspec"
  5101. ]
  5102. },
  5103. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {
  5104. "sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==",
  5105. "type": "package",
  5106. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.10.9",
  5107. "hasTools": true,
  5108. "files": [
  5109. ".nupkg.metadata",
  5110. ".signature.p7s",
  5111. "EULA.md",
  5112. "ThirdPartyNotices.txt",
  5113. "build/Container.props",
  5114. "build/Container.targets",
  5115. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  5116. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  5117. "build/ToolsTarget.props",
  5118. "build/ToolsTarget.targets",
  5119. "microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
  5120. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  5121. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  5122. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  5123. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  5124. "tools/Newtonsoft.Json.dll",
  5125. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5126. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5127. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5128. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5129. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5130. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5131. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5132. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5133. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5134. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5135. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5136. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5137. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5138. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5139. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5140. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5141. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5142. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5143. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5144. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5145. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5146. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5147. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5148. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5149. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5150. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5151. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5152. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5153. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5154. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5155. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5156. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5157. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5158. "tools/utils/KillProcess.exe",
  5159. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5160. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5161. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  5162. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  5163. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  5164. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  5165. ]
  5166. },
  5167. "Microsoft.Win32.Primitives/4.3.0": {
  5168. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5169. "type": "package",
  5170. "path": "microsoft.win32.primitives/4.3.0",
  5171. "files": [
  5172. ".nupkg.metadata",
  5173. ".signature.p7s",
  5174. "ThirdPartyNotices.txt",
  5175. "dotnet_library_license.txt",
  5176. "lib/MonoAndroid10/_._",
  5177. "lib/MonoTouch10/_._",
  5178. "lib/net46/Microsoft.Win32.Primitives.dll",
  5179. "lib/xamarinios10/_._",
  5180. "lib/xamarinmac20/_._",
  5181. "lib/xamarintvos10/_._",
  5182. "lib/xamarinwatchos10/_._",
  5183. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5184. "microsoft.win32.primitives.nuspec",
  5185. "ref/MonoAndroid10/_._",
  5186. "ref/MonoTouch10/_._",
  5187. "ref/net46/Microsoft.Win32.Primitives.dll",
  5188. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5189. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5190. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5191. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5192. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5193. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5194. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5195. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5196. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5197. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5198. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5199. "ref/xamarinios10/_._",
  5200. "ref/xamarinmac20/_._",
  5201. "ref/xamarintvos10/_._",
  5202. "ref/xamarinwatchos10/_._"
  5203. ]
  5204. },
  5205. "Microsoft.Win32.SystemEvents/6.0.0": {
  5206. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  5207. "type": "package",
  5208. "path": "microsoft.win32.systemevents/6.0.0",
  5209. "files": [
  5210. ".nupkg.metadata",
  5211. ".signature.p7s",
  5212. "Icon.png",
  5213. "LICENSE.TXT",
  5214. "THIRD-PARTY-NOTICES.TXT",
  5215. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  5216. "buildTransitive/netcoreapp3.1/_._",
  5217. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5218. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5219. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5220. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5221. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5222. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5223. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5224. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5225. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  5226. "microsoft.win32.systemevents.nuspec",
  5227. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5228. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5229. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5230. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5231. "useSharedDesignerContext.txt"
  5232. ]
  5233. },
  5234. "MySql.Data/8.0.23": {
  5235. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  5236. "type": "package",
  5237. "path": "mysql.data/8.0.23",
  5238. "files": [
  5239. ".nupkg.metadata",
  5240. ".signature.p7s",
  5241. "lib/net452/MySql.Data.dll",
  5242. "lib/net452/MySql.Data.xml",
  5243. "lib/net452/Ubiety.Dns.Core.dll",
  5244. "lib/net452/Zstandard.Net.dll",
  5245. "lib/net48/MySql.Data.dll",
  5246. "lib/net48/MySql.Data.xml",
  5247. "lib/net48/Ubiety.Dns.Core.dll",
  5248. "lib/net48/Zstandard.Net.dll",
  5249. "lib/net5.0/MySql.Data.dll",
  5250. "lib/net5.0/MySql.Data.xml",
  5251. "lib/net5.0/Ubiety.Dns.Core.dll",
  5252. "lib/net5.0/Zstandard.Net.dll",
  5253. "lib/netstandard2.0/MySql.Data.dll",
  5254. "lib/netstandard2.0/MySql.Data.xml",
  5255. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  5256. "lib/netstandard2.0/Zstandard.Net.dll",
  5257. "lib/netstandard2.1/MySql.Data.dll",
  5258. "lib/netstandard2.1/MySql.Data.xml",
  5259. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  5260. "lib/netstandard2.1/Zstandard.Net.dll",
  5261. "mysql.data.8.0.23.nupkg.sha512",
  5262. "mysql.data.nuspec"
  5263. ]
  5264. },
  5265. "MySqlConnector/1.1.0": {
  5266. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  5267. "type": "package",
  5268. "path": "mysqlconnector/1.1.0",
  5269. "files": [
  5270. ".nupkg.metadata",
  5271. ".signature.p7s",
  5272. "lib/net45/MySqlConnector.dll",
  5273. "lib/net45/MySqlConnector.xml",
  5274. "lib/net461/MySqlConnector.dll",
  5275. "lib/net461/MySqlConnector.xml",
  5276. "lib/net471/MySqlConnector.dll",
  5277. "lib/net471/MySqlConnector.xml",
  5278. "lib/net5.0/MySqlConnector.dll",
  5279. "lib/net5.0/MySqlConnector.xml",
  5280. "lib/netcoreapp2.1/MySqlConnector.dll",
  5281. "lib/netcoreapp2.1/MySqlConnector.xml",
  5282. "lib/netcoreapp3.1/MySqlConnector.dll",
  5283. "lib/netcoreapp3.1/MySqlConnector.xml",
  5284. "lib/netstandard1.3/MySqlConnector.dll",
  5285. "lib/netstandard1.3/MySqlConnector.xml",
  5286. "lib/netstandard2.0/MySqlConnector.dll",
  5287. "lib/netstandard2.0/MySqlConnector.xml",
  5288. "lib/netstandard2.1/MySqlConnector.dll",
  5289. "lib/netstandard2.1/MySqlConnector.xml",
  5290. "logo.png",
  5291. "mysqlconnector.1.1.0.nupkg.sha512",
  5292. "mysqlconnector.nuspec"
  5293. ]
  5294. },
  5295. "NETStandard.Library/1.6.1": {
  5296. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5297. "type": "package",
  5298. "path": "netstandard.library/1.6.1",
  5299. "files": [
  5300. ".nupkg.metadata",
  5301. ".signature.p7s",
  5302. "ThirdPartyNotices.txt",
  5303. "dotnet_library_license.txt",
  5304. "netstandard.library.1.6.1.nupkg.sha512",
  5305. "netstandard.library.nuspec"
  5306. ]
  5307. },
  5308. "Newtonsoft.Json/13.0.1": {
  5309. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5310. "type": "package",
  5311. "path": "newtonsoft.json/13.0.1",
  5312. "files": [
  5313. ".nupkg.metadata",
  5314. ".signature.p7s",
  5315. "LICENSE.md",
  5316. "lib/net20/Newtonsoft.Json.dll",
  5317. "lib/net20/Newtonsoft.Json.xml",
  5318. "lib/net35/Newtonsoft.Json.dll",
  5319. "lib/net35/Newtonsoft.Json.xml",
  5320. "lib/net40/Newtonsoft.Json.dll",
  5321. "lib/net40/Newtonsoft.Json.xml",
  5322. "lib/net45/Newtonsoft.Json.dll",
  5323. "lib/net45/Newtonsoft.Json.xml",
  5324. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5325. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5326. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5327. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5328. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5329. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5330. "newtonsoft.json.13.0.1.nupkg.sha512",
  5331. "newtonsoft.json.nuspec",
  5332. "packageIcon.png"
  5333. ]
  5334. },
  5335. "Newtonsoft.Json.Bson/1.0.2": {
  5336. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  5337. "type": "package",
  5338. "path": "newtonsoft.json.bson/1.0.2",
  5339. "files": [
  5340. ".nupkg.metadata",
  5341. ".signature.p7s",
  5342. "LICENSE.md",
  5343. "lib/net45/Newtonsoft.Json.Bson.dll",
  5344. "lib/net45/Newtonsoft.Json.Bson.pdb",
  5345. "lib/net45/Newtonsoft.Json.Bson.xml",
  5346. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  5347. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  5348. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  5349. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  5350. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  5351. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  5352. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  5353. "newtonsoft.json.bson.nuspec"
  5354. ]
  5355. },
  5356. "NPOI/2.6.2": {
  5357. "sha512": "s5lxJQ1Xy2nr3yDvoMH6og2cb2I8reIrUROf2afjKucS+pWNZG07kwITo+CCS3KaXNiPjUn1YaS1PUf8fT9cHg==",
  5358. "type": "package",
  5359. "path": "npoi/2.6.2",
  5360. "files": [
  5361. ".nupkg.metadata",
  5362. ".signature.p7s",
  5363. "LICENSE",
  5364. "Read Me.txt",
  5365. "lib/net472/NPOI.Core.dll",
  5366. "lib/net472/NPOI.Core.pdb",
  5367. "lib/net472/NPOI.Core.xml",
  5368. "lib/net472/NPOI.OOXML.dll",
  5369. "lib/net472/NPOI.OOXML.pdb",
  5370. "lib/net472/NPOI.OOXML.xml",
  5371. "lib/net472/NPOI.OpenXml4Net.dll",
  5372. "lib/net472/NPOI.OpenXml4Net.pdb",
  5373. "lib/net472/NPOI.OpenXml4Net.xml",
  5374. "lib/net472/NPOI.OpenXmlFormats.dll",
  5375. "lib/net472/NPOI.OpenXmlFormats.pdb",
  5376. "lib/net472/NPOI.OpenXmlFormats.xml",
  5377. "lib/net6.0/NPOI.Core.dll",
  5378. "lib/net6.0/NPOI.Core.pdb",
  5379. "lib/net6.0/NPOI.Core.xml",
  5380. "lib/net6.0/NPOI.OOXML.dll",
  5381. "lib/net6.0/NPOI.OOXML.pdb",
  5382. "lib/net6.0/NPOI.OOXML.xml",
  5383. "lib/net6.0/NPOI.OpenXml4Net.dll",
  5384. "lib/net6.0/NPOI.OpenXml4Net.pdb",
  5385. "lib/net6.0/NPOI.OpenXml4Net.xml",
  5386. "lib/net6.0/NPOI.OpenXmlFormats.dll",
  5387. "lib/net6.0/NPOI.OpenXmlFormats.pdb",
  5388. "lib/net6.0/NPOI.OpenXmlFormats.xml",
  5389. "lib/netstandard2.0/NPOI.Core.dll",
  5390. "lib/netstandard2.0/NPOI.Core.pdb",
  5391. "lib/netstandard2.0/NPOI.Core.xml",
  5392. "lib/netstandard2.0/NPOI.OOXML.dll",
  5393. "lib/netstandard2.0/NPOI.OOXML.pdb",
  5394. "lib/netstandard2.0/NPOI.OOXML.xml",
  5395. "lib/netstandard2.0/NPOI.OpenXml4Net.dll",
  5396. "lib/netstandard2.0/NPOI.OpenXml4Net.pdb",
  5397. "lib/netstandard2.0/NPOI.OpenXml4Net.xml",
  5398. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll",
  5399. "lib/netstandard2.0/NPOI.OpenXmlFormats.pdb",
  5400. "lib/netstandard2.0/NPOI.OpenXmlFormats.xml",
  5401. "lib/netstandard2.1/NPOI.Core.dll",
  5402. "lib/netstandard2.1/NPOI.Core.pdb",
  5403. "lib/netstandard2.1/NPOI.Core.xml",
  5404. "lib/netstandard2.1/NPOI.OOXML.dll",
  5405. "lib/netstandard2.1/NPOI.OOXML.pdb",
  5406. "lib/netstandard2.1/NPOI.OOXML.xml",
  5407. "lib/netstandard2.1/NPOI.OpenXml4Net.dll",
  5408. "lib/netstandard2.1/NPOI.OpenXml4Net.pdb",
  5409. "lib/netstandard2.1/NPOI.OpenXml4Net.xml",
  5410. "lib/netstandard2.1/NPOI.OpenXmlFormats.dll",
  5411. "lib/netstandard2.1/NPOI.OpenXmlFormats.pdb",
  5412. "lib/netstandard2.1/NPOI.OpenXmlFormats.xml",
  5413. "logo/120_120.jpg",
  5414. "logo/240_240.png",
  5415. "logo/32_32.jpg",
  5416. "logo/60_60.jpg",
  5417. "npoi.2.6.2.nupkg.sha512",
  5418. "npoi.nuspec"
  5419. ]
  5420. },
  5421. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  5422. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  5423. "type": "package",
  5424. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  5425. "files": [
  5426. ".nupkg.metadata",
  5427. ".signature.p7s",
  5428. "icon.png",
  5429. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  5430. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  5431. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  5432. "pomelo.entityframeworkcore.mysql.nuspec"
  5433. ]
  5434. },
  5435. "QRCoder/1.4.3": {
  5436. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5437. "type": "package",
  5438. "path": "qrcoder/1.4.3",
  5439. "files": [
  5440. ".nupkg.metadata",
  5441. ".signature.p7s",
  5442. "lib/net35/QRCoder.dll",
  5443. "lib/net40/QRCoder.dll",
  5444. "lib/net5.0-windows7.0/QRCoder.dll",
  5445. "lib/net5.0/QRCoder.dll",
  5446. "lib/net6.0-windows7.0/QRCoder.dll",
  5447. "lib/net6.0/QRCoder.dll",
  5448. "lib/netstandard1.3/QRCoder.dll",
  5449. "lib/netstandard2.0/QRCoder.dll",
  5450. "nuget-icon.png",
  5451. "nuget-readme.md",
  5452. "qrcoder.1.4.3.nupkg.sha512",
  5453. "qrcoder.nuspec"
  5454. ]
  5455. },
  5456. "Quartz/3.3.3": {
  5457. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  5458. "type": "package",
  5459. "path": "quartz/3.3.3",
  5460. "files": [
  5461. ".nupkg.metadata",
  5462. ".signature.p7s",
  5463. "lib/net461/Quartz.dll",
  5464. "lib/net461/Quartz.xml",
  5465. "lib/net472/Quartz.dll",
  5466. "lib/net472/Quartz.xml",
  5467. "lib/netstandard2.0/Quartz.dll",
  5468. "lib/netstandard2.0/Quartz.xml",
  5469. "quartz-logo-small.png",
  5470. "quartz.3.3.3.nupkg.sha512",
  5471. "quartz.nuspec"
  5472. ]
  5473. },
  5474. "RabbitMQ.Client/6.8.1": {
  5475. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  5476. "type": "package",
  5477. "path": "rabbitmq.client/6.8.1",
  5478. "files": [
  5479. ".nupkg.metadata",
  5480. ".signature.p7s",
  5481. "README.md",
  5482. "icon.png",
  5483. "lib/net462/RabbitMQ.Client.dll",
  5484. "lib/net462/RabbitMQ.Client.xml",
  5485. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5486. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5487. "rabbitmq.client.6.8.1.nupkg.sha512",
  5488. "rabbitmq.client.nuspec"
  5489. ]
  5490. },
  5491. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5492. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5493. "type": "package",
  5494. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5495. "files": [
  5496. ".nupkg.metadata",
  5497. ".signature.p7s",
  5498. "ThirdPartyNotices.txt",
  5499. "dotnet_library_license.txt",
  5500. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5501. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5502. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5503. ]
  5504. },
  5505. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5506. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5507. "type": "package",
  5508. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5509. "files": [
  5510. ".nupkg.metadata",
  5511. ".signature.p7s",
  5512. "ThirdPartyNotices.txt",
  5513. "dotnet_library_license.txt",
  5514. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5515. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5516. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5517. ]
  5518. },
  5519. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5520. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5521. "type": "package",
  5522. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5523. "files": [
  5524. ".nupkg.metadata",
  5525. ".signature.p7s",
  5526. "ThirdPartyNotices.txt",
  5527. "dotnet_library_license.txt",
  5528. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5529. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5530. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5531. ]
  5532. },
  5533. "runtime.native.System/4.3.0": {
  5534. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5535. "type": "package",
  5536. "path": "runtime.native.system/4.3.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/netstandard1.0/_._",
  5543. "runtime.native.system.4.3.0.nupkg.sha512",
  5544. "runtime.native.system.nuspec"
  5545. ]
  5546. },
  5547. "runtime.native.System.IO.Compression/4.3.0": {
  5548. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5549. "type": "package",
  5550. "path": "runtime.native.system.io.compression/4.3.0",
  5551. "files": [
  5552. ".nupkg.metadata",
  5553. ".signature.p7s",
  5554. "ThirdPartyNotices.txt",
  5555. "dotnet_library_license.txt",
  5556. "lib/netstandard1.0/_._",
  5557. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5558. "runtime.native.system.io.compression.nuspec"
  5559. ]
  5560. },
  5561. "runtime.native.System.Net.Http/4.3.0": {
  5562. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5563. "type": "package",
  5564. "path": "runtime.native.system.net.http/4.3.0",
  5565. "files": [
  5566. ".nupkg.metadata",
  5567. ".signature.p7s",
  5568. "ThirdPartyNotices.txt",
  5569. "dotnet_library_license.txt",
  5570. "lib/netstandard1.0/_._",
  5571. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5572. "runtime.native.system.net.http.nuspec"
  5573. ]
  5574. },
  5575. "runtime.native.System.Net.Security/4.3.0": {
  5576. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  5577. "type": "package",
  5578. "path": "runtime.native.system.net.security/4.3.0",
  5579. "files": [
  5580. ".nupkg.metadata",
  5581. ".signature.p7s",
  5582. "ThirdPartyNotices.txt",
  5583. "dotnet_library_license.txt",
  5584. "lib/netstandard1.0/_._",
  5585. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  5586. "runtime.native.system.net.security.nuspec"
  5587. ]
  5588. },
  5589. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5590. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5591. "type": "package",
  5592. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5593. "files": [
  5594. ".nupkg.metadata",
  5595. ".signature.p7s",
  5596. "ThirdPartyNotices.txt",
  5597. "dotnet_library_license.txt",
  5598. "lib/netstandard1.0/_._",
  5599. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5600. "runtime.native.system.security.cryptography.apple.nuspec"
  5601. ]
  5602. },
  5603. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5604. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5605. "type": "package",
  5606. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5607. "files": [
  5608. ".nupkg.metadata",
  5609. ".signature.p7s",
  5610. "ThirdPartyNotices.txt",
  5611. "dotnet_library_license.txt",
  5612. "lib/netstandard1.0/_._",
  5613. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5614. "runtime.native.system.security.cryptography.openssl.nuspec"
  5615. ]
  5616. },
  5617. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5618. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5619. "type": "package",
  5620. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5621. "files": [
  5622. ".nupkg.metadata",
  5623. ".signature.p7s",
  5624. "ThirdPartyNotices.txt",
  5625. "dotnet_library_license.txt",
  5626. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5627. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5628. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5629. ]
  5630. },
  5631. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5632. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5633. "type": "package",
  5634. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5635. "files": [
  5636. ".nupkg.metadata",
  5637. ".signature.p7s",
  5638. "ThirdPartyNotices.txt",
  5639. "dotnet_library_license.txt",
  5640. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5641. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5642. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5643. ]
  5644. },
  5645. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5646. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5647. "type": "package",
  5648. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5649. "files": [
  5650. ".nupkg.metadata",
  5651. ".signature.p7s",
  5652. "ThirdPartyNotices.txt",
  5653. "dotnet_library_license.txt",
  5654. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5655. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5656. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5657. ]
  5658. },
  5659. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5660. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5661. "type": "package",
  5662. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5663. "files": [
  5664. ".nupkg.metadata",
  5665. ".signature.p7s",
  5666. "ThirdPartyNotices.txt",
  5667. "dotnet_library_license.txt",
  5668. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5669. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5670. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5671. ]
  5672. },
  5673. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5674. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5675. "type": "package",
  5676. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5677. "files": [
  5678. ".nupkg.metadata",
  5679. ".signature.p7s",
  5680. "ThirdPartyNotices.txt",
  5681. "dotnet_library_license.txt",
  5682. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5683. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5684. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5685. ]
  5686. },
  5687. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5688. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5689. "type": "package",
  5690. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5691. "files": [
  5692. ".nupkg.metadata",
  5693. ".signature.p7s",
  5694. "ThirdPartyNotices.txt",
  5695. "dotnet_library_license.txt",
  5696. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5697. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5698. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5699. ]
  5700. },
  5701. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5702. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5703. "type": "package",
  5704. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5705. "files": [
  5706. ".nupkg.metadata",
  5707. ".signature.p7s",
  5708. "ThirdPartyNotices.txt",
  5709. "dotnet_library_license.txt",
  5710. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5711. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5712. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5713. ]
  5714. },
  5715. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5716. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5717. "type": "package",
  5718. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5719. "files": [
  5720. ".nupkg.metadata",
  5721. ".signature.p7s",
  5722. "ThirdPartyNotices.txt",
  5723. "dotnet_library_license.txt",
  5724. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5725. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5726. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5727. ]
  5728. },
  5729. "SharpZipLib/1.3.3": {
  5730. "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
  5731. "type": "package",
  5732. "path": "sharpziplib/1.3.3",
  5733. "files": [
  5734. ".nupkg.metadata",
  5735. ".signature.p7s",
  5736. "images/sharpziplib-nuget-256x256.png",
  5737. "lib/net45/ICSharpCode.SharpZipLib.dll",
  5738. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  5739. "lib/net45/ICSharpCode.SharpZipLib.xml",
  5740. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  5741. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  5742. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  5743. "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
  5744. "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
  5745. "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
  5746. "sharpziplib.1.3.3.nupkg.sha512",
  5747. "sharpziplib.nuspec"
  5748. ]
  5749. },
  5750. "SixLabors.Fonts/1.0.0": {
  5751. "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==",
  5752. "type": "package",
  5753. "path": "sixlabors.fonts/1.0.0",
  5754. "files": [
  5755. ".nupkg.metadata",
  5756. ".signature.p7s",
  5757. "lib/netcoreapp3.1/SixLabors.Fonts.dll",
  5758. "lib/netcoreapp3.1/SixLabors.Fonts.xml",
  5759. "lib/netstandard2.0/SixLabors.Fonts.dll",
  5760. "lib/netstandard2.0/SixLabors.Fonts.xml",
  5761. "lib/netstandard2.1/SixLabors.Fonts.dll",
  5762. "lib/netstandard2.1/SixLabors.Fonts.xml",
  5763. "sixlabors.fonts.1.0.0.nupkg.sha512",
  5764. "sixlabors.fonts.128.png",
  5765. "sixlabors.fonts.nuspec"
  5766. ]
  5767. },
  5768. "SixLabors.ImageSharp/2.1.6": {
  5769. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  5770. "type": "package",
  5771. "path": "sixlabors.imagesharp/2.1.6",
  5772. "files": [
  5773. ".nupkg.metadata",
  5774. ".signature.p7s",
  5775. "lib/net472/SixLabors.ImageSharp.dll",
  5776. "lib/net472/SixLabors.ImageSharp.xml",
  5777. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  5778. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  5779. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  5780. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  5781. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  5782. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  5783. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  5784. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  5785. "sixlabors.imagesharp.128.png",
  5786. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  5787. "sixlabors.imagesharp.nuspec"
  5788. ]
  5789. },
  5790. "SSH.NET/2020.0.0-beta1": {
  5791. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  5792. "type": "package",
  5793. "path": "ssh.net/2020.0.0-beta1",
  5794. "files": [
  5795. ".nupkg.metadata",
  5796. ".signature.p7s",
  5797. "lib/net35/Renci.SshNet.dll",
  5798. "lib/net35/Renci.SshNet.xml",
  5799. "lib/net40/Renci.SshNet.dll",
  5800. "lib/net40/Renci.SshNet.xml",
  5801. "lib/netstandard1.3/Renci.SshNet.dll",
  5802. "lib/netstandard1.3/Renci.SshNet.xml",
  5803. "lib/netstandard2.0/Renci.SshNet.dll",
  5804. "lib/netstandard2.0/Renci.SshNet.xml",
  5805. "lib/sl4/Renci.SshNet.dll",
  5806. "lib/sl4/Renci.SshNet.xml",
  5807. "lib/sl5/Renci.SshNet.dll",
  5808. "lib/sl5/Renci.SshNet.xml",
  5809. "lib/uap10/Renci.SshNet.dll",
  5810. "lib/uap10/Renci.SshNet.xml",
  5811. "lib/wp71/Renci.SshNet.dll",
  5812. "lib/wp71/Renci.SshNet.xml",
  5813. "lib/wp8/Renci.SshNet.dll",
  5814. "lib/wp8/Renci.SshNet.xml",
  5815. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  5816. "ssh.net.nuspec"
  5817. ]
  5818. },
  5819. "SshNet.Security.Cryptography/1.3.0": {
  5820. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  5821. "type": "package",
  5822. "path": "sshnet.security.cryptography/1.3.0",
  5823. "files": [
  5824. ".nupkg.metadata",
  5825. ".signature.p7s",
  5826. "lib/net20/SshNet.Security.Cryptography.dll",
  5827. "lib/net20/SshNet.Security.Cryptography.xml",
  5828. "lib/net40/SshNet.Security.Cryptography.dll",
  5829. "lib/net40/SshNet.Security.Cryptography.xml",
  5830. "lib/net45/SshNet.Security.Cryptography.dll",
  5831. "lib/net45/SshNet.Security.Cryptography.xml",
  5832. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  5833. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  5834. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  5835. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  5836. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  5837. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  5838. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  5839. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  5840. "lib/sl4/SshNet.Security.Cryptography.dll",
  5841. "lib/sl4/SshNet.Security.Cryptography.xml",
  5842. "lib/sl5/SshNet.Security.Cryptography.dll",
  5843. "lib/sl5/SshNet.Security.Cryptography.xml",
  5844. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  5845. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  5846. "lib/wp71/SshNet.Security.Cryptography.dll",
  5847. "lib/wp71/SshNet.Security.Cryptography.xml",
  5848. "lib/wp8/SshNet.Security.Cryptography.dll",
  5849. "lib/wp8/SshNet.Security.Cryptography.xml",
  5850. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  5851. "sshnet.security.cryptography.nuspec"
  5852. ]
  5853. },
  5854. "StackExchange.Redis/1.2.4": {
  5855. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  5856. "type": "package",
  5857. "path": "stackexchange.redis/1.2.4",
  5858. "files": [
  5859. ".nupkg.metadata",
  5860. ".signature.p7s",
  5861. "lib/net45/StackExchange.Redis.dll",
  5862. "lib/net45/StackExchange.Redis.xml",
  5863. "lib/net46/StackExchange.Redis.dll",
  5864. "lib/net46/StackExchange.Redis.xml",
  5865. "lib/netstandard1.5/StackExchange.Redis.dll",
  5866. "lib/netstandard1.5/StackExchange.Redis.xml",
  5867. "stackexchange.redis.1.2.4.nupkg.sha512",
  5868. "stackexchange.redis.nuspec"
  5869. ]
  5870. },
  5871. "Swashbuckle.AspNetCore/5.6.3": {
  5872. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  5873. "type": "package",
  5874. "path": "swashbuckle.aspnetcore/5.6.3",
  5875. "files": [
  5876. ".nupkg.metadata",
  5877. ".signature.p7s",
  5878. "build/Swashbuckle.AspNetCore.props",
  5879. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  5880. "swashbuckle.aspnetcore.nuspec"
  5881. ]
  5882. },
  5883. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  5884. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  5885. "type": "package",
  5886. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  5887. "files": [
  5888. ".nupkg.metadata",
  5889. ".signature.p7s",
  5890. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5891. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5892. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5893. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5894. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5895. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5896. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  5897. "swashbuckle.aspnetcore.swagger.nuspec"
  5898. ]
  5899. },
  5900. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  5901. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  5902. "type": "package",
  5903. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  5904. "files": [
  5905. ".nupkg.metadata",
  5906. ".signature.p7s",
  5907. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5908. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5909. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5910. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5911. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5912. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5913. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  5914. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5915. ]
  5916. },
  5917. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  5918. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  5919. "type": "package",
  5920. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  5921. "files": [
  5922. ".nupkg.metadata",
  5923. ".signature.p7s",
  5924. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5925. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5926. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5927. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5928. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5929. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5930. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  5931. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5932. ]
  5933. },
  5934. "System.AppContext/4.3.0": {
  5935. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5936. "type": "package",
  5937. "path": "system.appcontext/4.3.0",
  5938. "files": [
  5939. ".nupkg.metadata",
  5940. ".signature.p7s",
  5941. "ThirdPartyNotices.txt",
  5942. "dotnet_library_license.txt",
  5943. "lib/MonoAndroid10/_._",
  5944. "lib/MonoTouch10/_._",
  5945. "lib/net46/System.AppContext.dll",
  5946. "lib/net463/System.AppContext.dll",
  5947. "lib/netcore50/System.AppContext.dll",
  5948. "lib/netstandard1.6/System.AppContext.dll",
  5949. "lib/xamarinios10/_._",
  5950. "lib/xamarinmac20/_._",
  5951. "lib/xamarintvos10/_._",
  5952. "lib/xamarinwatchos10/_._",
  5953. "ref/MonoAndroid10/_._",
  5954. "ref/MonoTouch10/_._",
  5955. "ref/net46/System.AppContext.dll",
  5956. "ref/net463/System.AppContext.dll",
  5957. "ref/netstandard/_._",
  5958. "ref/netstandard1.3/System.AppContext.dll",
  5959. "ref/netstandard1.3/System.AppContext.xml",
  5960. "ref/netstandard1.3/de/System.AppContext.xml",
  5961. "ref/netstandard1.3/es/System.AppContext.xml",
  5962. "ref/netstandard1.3/fr/System.AppContext.xml",
  5963. "ref/netstandard1.3/it/System.AppContext.xml",
  5964. "ref/netstandard1.3/ja/System.AppContext.xml",
  5965. "ref/netstandard1.3/ko/System.AppContext.xml",
  5966. "ref/netstandard1.3/ru/System.AppContext.xml",
  5967. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5968. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5969. "ref/netstandard1.6/System.AppContext.dll",
  5970. "ref/netstandard1.6/System.AppContext.xml",
  5971. "ref/netstandard1.6/de/System.AppContext.xml",
  5972. "ref/netstandard1.6/es/System.AppContext.xml",
  5973. "ref/netstandard1.6/fr/System.AppContext.xml",
  5974. "ref/netstandard1.6/it/System.AppContext.xml",
  5975. "ref/netstandard1.6/ja/System.AppContext.xml",
  5976. "ref/netstandard1.6/ko/System.AppContext.xml",
  5977. "ref/netstandard1.6/ru/System.AppContext.xml",
  5978. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5979. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5980. "ref/xamarinios10/_._",
  5981. "ref/xamarinmac20/_._",
  5982. "ref/xamarintvos10/_._",
  5983. "ref/xamarinwatchos10/_._",
  5984. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5985. "system.appcontext.4.3.0.nupkg.sha512",
  5986. "system.appcontext.nuspec"
  5987. ]
  5988. },
  5989. "System.Buffers/4.5.1": {
  5990. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  5991. "type": "package",
  5992. "path": "system.buffers/4.5.1",
  5993. "files": [
  5994. ".nupkg.metadata",
  5995. ".signature.p7s",
  5996. "LICENSE.TXT",
  5997. "THIRD-PARTY-NOTICES.TXT",
  5998. "lib/net461/System.Buffers.dll",
  5999. "lib/net461/System.Buffers.xml",
  6000. "lib/netcoreapp2.0/_._",
  6001. "lib/netstandard1.1/System.Buffers.dll",
  6002. "lib/netstandard1.1/System.Buffers.xml",
  6003. "lib/netstandard2.0/System.Buffers.dll",
  6004. "lib/netstandard2.0/System.Buffers.xml",
  6005. "lib/uap10.0.16299/_._",
  6006. "ref/net45/System.Buffers.dll",
  6007. "ref/net45/System.Buffers.xml",
  6008. "ref/netcoreapp2.0/_._",
  6009. "ref/netstandard1.1/System.Buffers.dll",
  6010. "ref/netstandard1.1/System.Buffers.xml",
  6011. "ref/netstandard2.0/System.Buffers.dll",
  6012. "ref/netstandard2.0/System.Buffers.xml",
  6013. "ref/uap10.0.16299/_._",
  6014. "system.buffers.4.5.1.nupkg.sha512",
  6015. "system.buffers.nuspec",
  6016. "useSharedDesignerContext.txt",
  6017. "version.txt"
  6018. ]
  6019. },
  6020. "System.Collections/4.3.0": {
  6021. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6022. "type": "package",
  6023. "path": "system.collections/4.3.0",
  6024. "files": [
  6025. ".nupkg.metadata",
  6026. ".signature.p7s",
  6027. "ThirdPartyNotices.txt",
  6028. "dotnet_library_license.txt",
  6029. "lib/MonoAndroid10/_._",
  6030. "lib/MonoTouch10/_._",
  6031. "lib/net45/_._",
  6032. "lib/portable-net45+win8+wp8+wpa81/_._",
  6033. "lib/win8/_._",
  6034. "lib/wp80/_._",
  6035. "lib/wpa81/_._",
  6036. "lib/xamarinios10/_._",
  6037. "lib/xamarinmac20/_._",
  6038. "lib/xamarintvos10/_._",
  6039. "lib/xamarinwatchos10/_._",
  6040. "ref/MonoAndroid10/_._",
  6041. "ref/MonoTouch10/_._",
  6042. "ref/net45/_._",
  6043. "ref/netcore50/System.Collections.dll",
  6044. "ref/netcore50/System.Collections.xml",
  6045. "ref/netcore50/de/System.Collections.xml",
  6046. "ref/netcore50/es/System.Collections.xml",
  6047. "ref/netcore50/fr/System.Collections.xml",
  6048. "ref/netcore50/it/System.Collections.xml",
  6049. "ref/netcore50/ja/System.Collections.xml",
  6050. "ref/netcore50/ko/System.Collections.xml",
  6051. "ref/netcore50/ru/System.Collections.xml",
  6052. "ref/netcore50/zh-hans/System.Collections.xml",
  6053. "ref/netcore50/zh-hant/System.Collections.xml",
  6054. "ref/netstandard1.0/System.Collections.dll",
  6055. "ref/netstandard1.0/System.Collections.xml",
  6056. "ref/netstandard1.0/de/System.Collections.xml",
  6057. "ref/netstandard1.0/es/System.Collections.xml",
  6058. "ref/netstandard1.0/fr/System.Collections.xml",
  6059. "ref/netstandard1.0/it/System.Collections.xml",
  6060. "ref/netstandard1.0/ja/System.Collections.xml",
  6061. "ref/netstandard1.0/ko/System.Collections.xml",
  6062. "ref/netstandard1.0/ru/System.Collections.xml",
  6063. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6064. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6065. "ref/netstandard1.3/System.Collections.dll",
  6066. "ref/netstandard1.3/System.Collections.xml",
  6067. "ref/netstandard1.3/de/System.Collections.xml",
  6068. "ref/netstandard1.3/es/System.Collections.xml",
  6069. "ref/netstandard1.3/fr/System.Collections.xml",
  6070. "ref/netstandard1.3/it/System.Collections.xml",
  6071. "ref/netstandard1.3/ja/System.Collections.xml",
  6072. "ref/netstandard1.3/ko/System.Collections.xml",
  6073. "ref/netstandard1.3/ru/System.Collections.xml",
  6074. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6075. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6076. "ref/portable-net45+win8+wp8+wpa81/_._",
  6077. "ref/win8/_._",
  6078. "ref/wp80/_._",
  6079. "ref/wpa81/_._",
  6080. "ref/xamarinios10/_._",
  6081. "ref/xamarinmac20/_._",
  6082. "ref/xamarintvos10/_._",
  6083. "ref/xamarinwatchos10/_._",
  6084. "system.collections.4.3.0.nupkg.sha512",
  6085. "system.collections.nuspec"
  6086. ]
  6087. },
  6088. "System.Collections.Concurrent/4.3.0": {
  6089. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6090. "type": "package",
  6091. "path": "system.collections.concurrent/4.3.0",
  6092. "files": [
  6093. ".nupkg.metadata",
  6094. ".signature.p7s",
  6095. "ThirdPartyNotices.txt",
  6096. "dotnet_library_license.txt",
  6097. "lib/MonoAndroid10/_._",
  6098. "lib/MonoTouch10/_._",
  6099. "lib/net45/_._",
  6100. "lib/netcore50/System.Collections.Concurrent.dll",
  6101. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6102. "lib/portable-net45+win8+wpa81/_._",
  6103. "lib/win8/_._",
  6104. "lib/wpa81/_._",
  6105. "lib/xamarinios10/_._",
  6106. "lib/xamarinmac20/_._",
  6107. "lib/xamarintvos10/_._",
  6108. "lib/xamarinwatchos10/_._",
  6109. "ref/MonoAndroid10/_._",
  6110. "ref/MonoTouch10/_._",
  6111. "ref/net45/_._",
  6112. "ref/netcore50/System.Collections.Concurrent.dll",
  6113. "ref/netcore50/System.Collections.Concurrent.xml",
  6114. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6115. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6116. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6117. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6118. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6119. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6120. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6121. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6122. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6123. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6124. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6125. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6126. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6127. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6128. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6129. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6130. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6131. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6132. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6133. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6134. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6135. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6136. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6137. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6138. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6139. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6140. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6141. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6142. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6143. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6144. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6145. "ref/portable-net45+win8+wpa81/_._",
  6146. "ref/win8/_._",
  6147. "ref/wpa81/_._",
  6148. "ref/xamarinios10/_._",
  6149. "ref/xamarinmac20/_._",
  6150. "ref/xamarintvos10/_._",
  6151. "ref/xamarinwatchos10/_._",
  6152. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6153. "system.collections.concurrent.nuspec"
  6154. ]
  6155. },
  6156. "System.Collections.Immutable/5.0.0": {
  6157. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6158. "type": "package",
  6159. "path": "system.collections.immutable/5.0.0",
  6160. "files": [
  6161. ".nupkg.metadata",
  6162. ".signature.p7s",
  6163. "Icon.png",
  6164. "LICENSE.TXT",
  6165. "THIRD-PARTY-NOTICES.TXT",
  6166. "lib/net461/System.Collections.Immutable.dll",
  6167. "lib/net461/System.Collections.Immutable.xml",
  6168. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6169. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6170. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6171. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6172. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6173. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6174. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6175. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6176. "system.collections.immutable.5.0.0.nupkg.sha512",
  6177. "system.collections.immutable.nuspec",
  6178. "useSharedDesignerContext.txt",
  6179. "version.txt"
  6180. ]
  6181. },
  6182. "System.Collections.NonGeneric/4.3.0": {
  6183. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6184. "type": "package",
  6185. "path": "system.collections.nongeneric/4.3.0",
  6186. "files": [
  6187. ".nupkg.metadata",
  6188. ".signature.p7s",
  6189. "ThirdPartyNotices.txt",
  6190. "dotnet_library_license.txt",
  6191. "lib/MonoAndroid10/_._",
  6192. "lib/MonoTouch10/_._",
  6193. "lib/net46/System.Collections.NonGeneric.dll",
  6194. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6195. "lib/xamarinios10/_._",
  6196. "lib/xamarinmac20/_._",
  6197. "lib/xamarintvos10/_._",
  6198. "lib/xamarinwatchos10/_._",
  6199. "ref/MonoAndroid10/_._",
  6200. "ref/MonoTouch10/_._",
  6201. "ref/net46/System.Collections.NonGeneric.dll",
  6202. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6203. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6204. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6205. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6206. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6207. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6208. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6209. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6210. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6211. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6212. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6213. "ref/xamarinios10/_._",
  6214. "ref/xamarinmac20/_._",
  6215. "ref/xamarintvos10/_._",
  6216. "ref/xamarinwatchos10/_._",
  6217. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6218. "system.collections.nongeneric.nuspec"
  6219. ]
  6220. },
  6221. "System.Collections.Specialized/4.3.0": {
  6222. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6223. "type": "package",
  6224. "path": "system.collections.specialized/4.3.0",
  6225. "files": [
  6226. ".nupkg.metadata",
  6227. ".signature.p7s",
  6228. "ThirdPartyNotices.txt",
  6229. "dotnet_library_license.txt",
  6230. "lib/MonoAndroid10/_._",
  6231. "lib/MonoTouch10/_._",
  6232. "lib/net46/System.Collections.Specialized.dll",
  6233. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6234. "lib/xamarinios10/_._",
  6235. "lib/xamarinmac20/_._",
  6236. "lib/xamarintvos10/_._",
  6237. "lib/xamarinwatchos10/_._",
  6238. "ref/MonoAndroid10/_._",
  6239. "ref/MonoTouch10/_._",
  6240. "ref/net46/System.Collections.Specialized.dll",
  6241. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6242. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6243. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6244. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6245. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6246. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6247. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6248. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6249. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6250. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6251. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6252. "ref/xamarinios10/_._",
  6253. "ref/xamarinmac20/_._",
  6254. "ref/xamarintvos10/_._",
  6255. "ref/xamarinwatchos10/_._",
  6256. "system.collections.specialized.4.3.0.nupkg.sha512",
  6257. "system.collections.specialized.nuspec"
  6258. ]
  6259. },
  6260. "System.ComponentModel/4.3.0": {
  6261. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6262. "type": "package",
  6263. "path": "system.componentmodel/4.3.0",
  6264. "files": [
  6265. ".nupkg.metadata",
  6266. ".signature.p7s",
  6267. "ThirdPartyNotices.txt",
  6268. "dotnet_library_license.txt",
  6269. "lib/MonoAndroid10/_._",
  6270. "lib/MonoTouch10/_._",
  6271. "lib/net45/_._",
  6272. "lib/netcore50/System.ComponentModel.dll",
  6273. "lib/netstandard1.3/System.ComponentModel.dll",
  6274. "lib/portable-net45+win8+wp8+wpa81/_._",
  6275. "lib/win8/_._",
  6276. "lib/wp80/_._",
  6277. "lib/wpa81/_._",
  6278. "lib/xamarinios10/_._",
  6279. "lib/xamarinmac20/_._",
  6280. "lib/xamarintvos10/_._",
  6281. "lib/xamarinwatchos10/_._",
  6282. "ref/MonoAndroid10/_._",
  6283. "ref/MonoTouch10/_._",
  6284. "ref/net45/_._",
  6285. "ref/netcore50/System.ComponentModel.dll",
  6286. "ref/netcore50/System.ComponentModel.xml",
  6287. "ref/netcore50/de/System.ComponentModel.xml",
  6288. "ref/netcore50/es/System.ComponentModel.xml",
  6289. "ref/netcore50/fr/System.ComponentModel.xml",
  6290. "ref/netcore50/it/System.ComponentModel.xml",
  6291. "ref/netcore50/ja/System.ComponentModel.xml",
  6292. "ref/netcore50/ko/System.ComponentModel.xml",
  6293. "ref/netcore50/ru/System.ComponentModel.xml",
  6294. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6295. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6296. "ref/netstandard1.0/System.ComponentModel.dll",
  6297. "ref/netstandard1.0/System.ComponentModel.xml",
  6298. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6299. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6300. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6301. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6302. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6303. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6304. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6305. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6306. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6307. "ref/portable-net45+win8+wp8+wpa81/_._",
  6308. "ref/win8/_._",
  6309. "ref/wp80/_._",
  6310. "ref/wpa81/_._",
  6311. "ref/xamarinios10/_._",
  6312. "ref/xamarinmac20/_._",
  6313. "ref/xamarintvos10/_._",
  6314. "ref/xamarinwatchos10/_._",
  6315. "system.componentmodel.4.3.0.nupkg.sha512",
  6316. "system.componentmodel.nuspec"
  6317. ]
  6318. },
  6319. "System.ComponentModel.Annotations/5.0.0": {
  6320. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6321. "type": "package",
  6322. "path": "system.componentmodel.annotations/5.0.0",
  6323. "files": [
  6324. ".nupkg.metadata",
  6325. ".signature.p7s",
  6326. "Icon.png",
  6327. "LICENSE.TXT",
  6328. "THIRD-PARTY-NOTICES.TXT",
  6329. "lib/MonoAndroid10/_._",
  6330. "lib/MonoTouch10/_._",
  6331. "lib/net45/_._",
  6332. "lib/net461/System.ComponentModel.Annotations.dll",
  6333. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6334. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6335. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6336. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6337. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6338. "lib/portable-net45+win8/_._",
  6339. "lib/win8/_._",
  6340. "lib/xamarinios10/_._",
  6341. "lib/xamarinmac20/_._",
  6342. "lib/xamarintvos10/_._",
  6343. "lib/xamarinwatchos10/_._",
  6344. "ref/MonoAndroid10/_._",
  6345. "ref/MonoTouch10/_._",
  6346. "ref/net45/_._",
  6347. "ref/net461/System.ComponentModel.Annotations.dll",
  6348. "ref/net461/System.ComponentModel.Annotations.xml",
  6349. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6350. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6351. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6352. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6353. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6354. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6355. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6356. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6357. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6358. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6359. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6360. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6361. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6362. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6363. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6364. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6365. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6366. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6367. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6368. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6369. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6370. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6371. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6372. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6373. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6374. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6375. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6376. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6377. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6378. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6379. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6380. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6381. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6382. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6383. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6384. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6385. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6386. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6387. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6388. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6389. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6390. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6391. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6392. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6393. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6394. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6395. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6396. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6397. "ref/portable-net45+win8/_._",
  6398. "ref/win8/_._",
  6399. "ref/xamarinios10/_._",
  6400. "ref/xamarinmac20/_._",
  6401. "ref/xamarintvos10/_._",
  6402. "ref/xamarinwatchos10/_._",
  6403. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6404. "system.componentmodel.annotations.nuspec",
  6405. "useSharedDesignerContext.txt",
  6406. "version.txt"
  6407. ]
  6408. },
  6409. "System.ComponentModel.Primitives/4.3.0": {
  6410. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6411. "type": "package",
  6412. "path": "system.componentmodel.primitives/4.3.0",
  6413. "files": [
  6414. ".nupkg.metadata",
  6415. ".signature.p7s",
  6416. "ThirdPartyNotices.txt",
  6417. "dotnet_library_license.txt",
  6418. "lib/MonoAndroid10/_._",
  6419. "lib/MonoTouch10/_._",
  6420. "lib/net45/System.ComponentModel.Primitives.dll",
  6421. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6422. "lib/xamarinios10/_._",
  6423. "lib/xamarinmac20/_._",
  6424. "lib/xamarintvos10/_._",
  6425. "lib/xamarinwatchos10/_._",
  6426. "ref/MonoAndroid10/_._",
  6427. "ref/MonoTouch10/_._",
  6428. "ref/net45/System.ComponentModel.Primitives.dll",
  6429. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6430. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6431. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6432. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6433. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6434. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6435. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6436. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6437. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6438. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6439. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6440. "ref/xamarinios10/_._",
  6441. "ref/xamarinmac20/_._",
  6442. "ref/xamarintvos10/_._",
  6443. "ref/xamarinwatchos10/_._",
  6444. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6445. "system.componentmodel.primitives.nuspec"
  6446. ]
  6447. },
  6448. "System.ComponentModel.TypeConverter/4.3.0": {
  6449. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6450. "type": "package",
  6451. "path": "system.componentmodel.typeconverter/4.3.0",
  6452. "files": [
  6453. ".nupkg.metadata",
  6454. ".signature.p7s",
  6455. "ThirdPartyNotices.txt",
  6456. "dotnet_library_license.txt",
  6457. "lib/MonoAndroid10/_._",
  6458. "lib/MonoTouch10/_._",
  6459. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6460. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6461. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6462. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6463. "lib/xamarinios10/_._",
  6464. "lib/xamarinmac20/_._",
  6465. "lib/xamarintvos10/_._",
  6466. "lib/xamarinwatchos10/_._",
  6467. "ref/MonoAndroid10/_._",
  6468. "ref/MonoTouch10/_._",
  6469. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6470. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6471. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6472. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6473. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6474. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6475. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6476. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6477. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6478. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6479. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6480. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6481. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6482. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6483. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6484. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6485. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6486. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6487. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6488. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6489. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6490. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6491. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6492. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6493. "ref/xamarinios10/_._",
  6494. "ref/xamarinmac20/_._",
  6495. "ref/xamarintvos10/_._",
  6496. "ref/xamarinwatchos10/_._",
  6497. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6498. "system.componentmodel.typeconverter.nuspec"
  6499. ]
  6500. },
  6501. "System.Configuration.ConfigurationManager/6.0.0": {
  6502. "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
  6503. "type": "package",
  6504. "path": "system.configuration.configurationmanager/6.0.0",
  6505. "files": [
  6506. ".nupkg.metadata",
  6507. ".signature.p7s",
  6508. "Icon.png",
  6509. "LICENSE.TXT",
  6510. "THIRD-PARTY-NOTICES.TXT",
  6511. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  6512. "buildTransitive/netcoreapp3.1/_._",
  6513. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6514. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6515. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  6516. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  6517. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6518. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6519. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  6520. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  6521. "system.configuration.configurationmanager.6.0.0.nupkg.sha512",
  6522. "system.configuration.configurationmanager.nuspec",
  6523. "useSharedDesignerContext.txt"
  6524. ]
  6525. },
  6526. "System.Console/4.3.0": {
  6527. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6528. "type": "package",
  6529. "path": "system.console/4.3.0",
  6530. "files": [
  6531. ".nupkg.metadata",
  6532. ".signature.p7s",
  6533. "ThirdPartyNotices.txt",
  6534. "dotnet_library_license.txt",
  6535. "lib/MonoAndroid10/_._",
  6536. "lib/MonoTouch10/_._",
  6537. "lib/net46/System.Console.dll",
  6538. "lib/xamarinios10/_._",
  6539. "lib/xamarinmac20/_._",
  6540. "lib/xamarintvos10/_._",
  6541. "lib/xamarinwatchos10/_._",
  6542. "ref/MonoAndroid10/_._",
  6543. "ref/MonoTouch10/_._",
  6544. "ref/net46/System.Console.dll",
  6545. "ref/netstandard1.3/System.Console.dll",
  6546. "ref/netstandard1.3/System.Console.xml",
  6547. "ref/netstandard1.3/de/System.Console.xml",
  6548. "ref/netstandard1.3/es/System.Console.xml",
  6549. "ref/netstandard1.3/fr/System.Console.xml",
  6550. "ref/netstandard1.3/it/System.Console.xml",
  6551. "ref/netstandard1.3/ja/System.Console.xml",
  6552. "ref/netstandard1.3/ko/System.Console.xml",
  6553. "ref/netstandard1.3/ru/System.Console.xml",
  6554. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6555. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6556. "ref/xamarinios10/_._",
  6557. "ref/xamarinmac20/_._",
  6558. "ref/xamarintvos10/_._",
  6559. "ref/xamarinwatchos10/_._",
  6560. "system.console.4.3.0.nupkg.sha512",
  6561. "system.console.nuspec"
  6562. ]
  6563. },
  6564. "System.Diagnostics.Debug/4.3.0": {
  6565. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6566. "type": "package",
  6567. "path": "system.diagnostics.debug/4.3.0",
  6568. "files": [
  6569. ".nupkg.metadata",
  6570. ".signature.p7s",
  6571. "ThirdPartyNotices.txt",
  6572. "dotnet_library_license.txt",
  6573. "lib/MonoAndroid10/_._",
  6574. "lib/MonoTouch10/_._",
  6575. "lib/net45/_._",
  6576. "lib/portable-net45+win8+wp8+wpa81/_._",
  6577. "lib/win8/_._",
  6578. "lib/wp80/_._",
  6579. "lib/wpa81/_._",
  6580. "lib/xamarinios10/_._",
  6581. "lib/xamarinmac20/_._",
  6582. "lib/xamarintvos10/_._",
  6583. "lib/xamarinwatchos10/_._",
  6584. "ref/MonoAndroid10/_._",
  6585. "ref/MonoTouch10/_._",
  6586. "ref/net45/_._",
  6587. "ref/netcore50/System.Diagnostics.Debug.dll",
  6588. "ref/netcore50/System.Diagnostics.Debug.xml",
  6589. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6590. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6591. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6592. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6593. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6594. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6595. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6596. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6597. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6598. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6599. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6600. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6601. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6602. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6603. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6604. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6605. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6606. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6607. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6608. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6609. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6610. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6611. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6612. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6613. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6614. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6615. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6616. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6617. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6618. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6619. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6620. "ref/portable-net45+win8+wp8+wpa81/_._",
  6621. "ref/win8/_._",
  6622. "ref/wp80/_._",
  6623. "ref/wpa81/_._",
  6624. "ref/xamarinios10/_._",
  6625. "ref/xamarinmac20/_._",
  6626. "ref/xamarintvos10/_._",
  6627. "ref/xamarinwatchos10/_._",
  6628. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6629. "system.diagnostics.debug.nuspec"
  6630. ]
  6631. },
  6632. "System.Diagnostics.DiagnosticSource/5.0.1": {
  6633. "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  6634. "type": "package",
  6635. "path": "system.diagnostics.diagnosticsource/5.0.1",
  6636. "files": [
  6637. ".nupkg.metadata",
  6638. ".signature.p7s",
  6639. "Icon.png",
  6640. "LICENSE.TXT",
  6641. "THIRD-PARTY-NOTICES.TXT",
  6642. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6643. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6644. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6645. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6646. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6647. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6648. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6649. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6650. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6651. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6652. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6653. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6654. "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
  6655. "system.diagnostics.diagnosticsource.nuspec",
  6656. "useSharedDesignerContext.txt",
  6657. "version.txt"
  6658. ]
  6659. },
  6660. "System.Diagnostics.Tools/4.3.0": {
  6661. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6662. "type": "package",
  6663. "path": "system.diagnostics.tools/4.3.0",
  6664. "files": [
  6665. ".nupkg.metadata",
  6666. ".signature.p7s",
  6667. "ThirdPartyNotices.txt",
  6668. "dotnet_library_license.txt",
  6669. "lib/MonoAndroid10/_._",
  6670. "lib/MonoTouch10/_._",
  6671. "lib/net45/_._",
  6672. "lib/portable-net45+win8+wp8+wpa81/_._",
  6673. "lib/win8/_._",
  6674. "lib/wp80/_._",
  6675. "lib/wpa81/_._",
  6676. "lib/xamarinios10/_._",
  6677. "lib/xamarinmac20/_._",
  6678. "lib/xamarintvos10/_._",
  6679. "lib/xamarinwatchos10/_._",
  6680. "ref/MonoAndroid10/_._",
  6681. "ref/MonoTouch10/_._",
  6682. "ref/net45/_._",
  6683. "ref/netcore50/System.Diagnostics.Tools.dll",
  6684. "ref/netcore50/System.Diagnostics.Tools.xml",
  6685. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6686. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6687. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6688. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6689. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6690. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6691. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6692. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6693. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6694. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6695. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6696. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6697. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6698. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6699. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6700. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6701. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6702. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6703. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6704. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6705. "ref/portable-net45+win8+wp8+wpa81/_._",
  6706. "ref/win8/_._",
  6707. "ref/wp80/_._",
  6708. "ref/wpa81/_._",
  6709. "ref/xamarinios10/_._",
  6710. "ref/xamarinmac20/_._",
  6711. "ref/xamarintvos10/_._",
  6712. "ref/xamarinwatchos10/_._",
  6713. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6714. "system.diagnostics.tools.nuspec"
  6715. ]
  6716. },
  6717. "System.Diagnostics.TraceSource/4.3.0": {
  6718. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  6719. "type": "package",
  6720. "path": "system.diagnostics.tracesource/4.3.0",
  6721. "files": [
  6722. ".nupkg.metadata",
  6723. ".signature.p7s",
  6724. "ThirdPartyNotices.txt",
  6725. "dotnet_library_license.txt",
  6726. "lib/MonoAndroid10/_._",
  6727. "lib/MonoTouch10/_._",
  6728. "lib/net46/System.Diagnostics.TraceSource.dll",
  6729. "lib/xamarinios10/_._",
  6730. "lib/xamarinmac20/_._",
  6731. "lib/xamarintvos10/_._",
  6732. "lib/xamarinwatchos10/_._",
  6733. "ref/MonoAndroid10/_._",
  6734. "ref/MonoTouch10/_._",
  6735. "ref/net46/System.Diagnostics.TraceSource.dll",
  6736. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6737. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6738. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6739. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6740. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  6741. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  6742. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  6743. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  6744. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  6745. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  6746. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  6747. "ref/xamarinios10/_._",
  6748. "ref/xamarinmac20/_._",
  6749. "ref/xamarintvos10/_._",
  6750. "ref/xamarinwatchos10/_._",
  6751. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6752. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  6753. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6754. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  6755. "system.diagnostics.tracesource.nuspec"
  6756. ]
  6757. },
  6758. "System.Diagnostics.Tracing/4.3.0": {
  6759. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6760. "type": "package",
  6761. "path": "system.diagnostics.tracing/4.3.0",
  6762. "files": [
  6763. ".nupkg.metadata",
  6764. ".signature.p7s",
  6765. "ThirdPartyNotices.txt",
  6766. "dotnet_library_license.txt",
  6767. "lib/MonoAndroid10/_._",
  6768. "lib/MonoTouch10/_._",
  6769. "lib/net45/_._",
  6770. "lib/net462/System.Diagnostics.Tracing.dll",
  6771. "lib/portable-net45+win8+wpa81/_._",
  6772. "lib/win8/_._",
  6773. "lib/wpa81/_._",
  6774. "lib/xamarinios10/_._",
  6775. "lib/xamarinmac20/_._",
  6776. "lib/xamarintvos10/_._",
  6777. "lib/xamarinwatchos10/_._",
  6778. "ref/MonoAndroid10/_._",
  6779. "ref/MonoTouch10/_._",
  6780. "ref/net45/_._",
  6781. "ref/net462/System.Diagnostics.Tracing.dll",
  6782. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6783. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6784. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6785. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6786. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6787. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6788. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6789. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6790. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6791. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6792. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6793. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6794. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6795. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6796. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6797. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6798. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6799. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6800. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6801. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6802. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6803. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6804. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6805. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6806. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6807. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6808. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6809. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6810. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6811. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6812. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6813. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6814. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6815. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6816. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6817. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6818. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6819. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6820. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6821. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6822. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6823. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6824. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6825. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6826. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6827. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6828. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6829. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6830. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6831. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6832. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6833. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6834. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6835. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6836. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6837. "ref/portable-net45+win8+wpa81/_._",
  6838. "ref/win8/_._",
  6839. "ref/wpa81/_._",
  6840. "ref/xamarinios10/_._",
  6841. "ref/xamarinmac20/_._",
  6842. "ref/xamarintvos10/_._",
  6843. "ref/xamarinwatchos10/_._",
  6844. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6845. "system.diagnostics.tracing.nuspec"
  6846. ]
  6847. },
  6848. "System.Drawing.Common/6.0.0": {
  6849. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  6850. "type": "package",
  6851. "path": "system.drawing.common/6.0.0",
  6852. "files": [
  6853. ".nupkg.metadata",
  6854. ".signature.p7s",
  6855. "Icon.png",
  6856. "LICENSE.TXT",
  6857. "THIRD-PARTY-NOTICES.TXT",
  6858. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  6859. "buildTransitive/netcoreapp3.1/_._",
  6860. "lib/MonoAndroid10/_._",
  6861. "lib/MonoTouch10/_._",
  6862. "lib/net461/System.Drawing.Common.dll",
  6863. "lib/net461/System.Drawing.Common.xml",
  6864. "lib/net6.0/System.Drawing.Common.dll",
  6865. "lib/net6.0/System.Drawing.Common.xml",
  6866. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  6867. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  6868. "lib/netstandard2.0/System.Drawing.Common.dll",
  6869. "lib/netstandard2.0/System.Drawing.Common.xml",
  6870. "lib/xamarinios10/_._",
  6871. "lib/xamarinmac20/_._",
  6872. "lib/xamarintvos10/_._",
  6873. "lib/xamarinwatchos10/_._",
  6874. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  6875. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  6876. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  6877. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  6878. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  6879. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  6880. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  6881. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  6882. "system.drawing.common.6.0.0.nupkg.sha512",
  6883. "system.drawing.common.nuspec",
  6884. "useSharedDesignerContext.txt"
  6885. ]
  6886. },
  6887. "System.Dynamic.Runtime/4.3.0": {
  6888. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6889. "type": "package",
  6890. "path": "system.dynamic.runtime/4.3.0",
  6891. "files": [
  6892. ".nupkg.metadata",
  6893. ".signature.p7s",
  6894. "ThirdPartyNotices.txt",
  6895. "dotnet_library_license.txt",
  6896. "lib/MonoAndroid10/_._",
  6897. "lib/MonoTouch10/_._",
  6898. "lib/net45/_._",
  6899. "lib/netcore50/System.Dynamic.Runtime.dll",
  6900. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6901. "lib/portable-net45+win8+wp8+wpa81/_._",
  6902. "lib/win8/_._",
  6903. "lib/wp80/_._",
  6904. "lib/wpa81/_._",
  6905. "lib/xamarinios10/_._",
  6906. "lib/xamarinmac20/_._",
  6907. "lib/xamarintvos10/_._",
  6908. "lib/xamarinwatchos10/_._",
  6909. "ref/MonoAndroid10/_._",
  6910. "ref/MonoTouch10/_._",
  6911. "ref/net45/_._",
  6912. "ref/netcore50/System.Dynamic.Runtime.dll",
  6913. "ref/netcore50/System.Dynamic.Runtime.xml",
  6914. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6915. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6916. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6917. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6918. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6919. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6920. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6921. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6922. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6923. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6924. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6925. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6926. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6927. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6928. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6929. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6930. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6931. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6932. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6933. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6934. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6935. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6936. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6937. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6938. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6939. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6940. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6941. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6942. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6943. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6944. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6945. "ref/portable-net45+win8+wp8+wpa81/_._",
  6946. "ref/win8/_._",
  6947. "ref/wp80/_._",
  6948. "ref/wpa81/_._",
  6949. "ref/xamarinios10/_._",
  6950. "ref/xamarinmac20/_._",
  6951. "ref/xamarintvos10/_._",
  6952. "ref/xamarinwatchos10/_._",
  6953. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6954. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6955. "system.dynamic.runtime.nuspec"
  6956. ]
  6957. },
  6958. "System.Formats.Asn1/6.0.0": {
  6959. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  6960. "type": "package",
  6961. "path": "system.formats.asn1/6.0.0",
  6962. "files": [
  6963. ".nupkg.metadata",
  6964. ".signature.p7s",
  6965. "Icon.png",
  6966. "LICENSE.TXT",
  6967. "THIRD-PARTY-NOTICES.TXT",
  6968. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  6969. "buildTransitive/netcoreapp3.1/_._",
  6970. "lib/net461/System.Formats.Asn1.dll",
  6971. "lib/net461/System.Formats.Asn1.xml",
  6972. "lib/net6.0/System.Formats.Asn1.dll",
  6973. "lib/net6.0/System.Formats.Asn1.xml",
  6974. "lib/netstandard2.0/System.Formats.Asn1.dll",
  6975. "lib/netstandard2.0/System.Formats.Asn1.xml",
  6976. "system.formats.asn1.6.0.0.nupkg.sha512",
  6977. "system.formats.asn1.nuspec",
  6978. "useSharedDesignerContext.txt"
  6979. ]
  6980. },
  6981. "System.Globalization/4.3.0": {
  6982. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6983. "type": "package",
  6984. "path": "system.globalization/4.3.0",
  6985. "files": [
  6986. ".nupkg.metadata",
  6987. ".signature.p7s",
  6988. "ThirdPartyNotices.txt",
  6989. "dotnet_library_license.txt",
  6990. "lib/MonoAndroid10/_._",
  6991. "lib/MonoTouch10/_._",
  6992. "lib/net45/_._",
  6993. "lib/portable-net45+win8+wp8+wpa81/_._",
  6994. "lib/win8/_._",
  6995. "lib/wp80/_._",
  6996. "lib/wpa81/_._",
  6997. "lib/xamarinios10/_._",
  6998. "lib/xamarinmac20/_._",
  6999. "lib/xamarintvos10/_._",
  7000. "lib/xamarinwatchos10/_._",
  7001. "ref/MonoAndroid10/_._",
  7002. "ref/MonoTouch10/_._",
  7003. "ref/net45/_._",
  7004. "ref/netcore50/System.Globalization.dll",
  7005. "ref/netcore50/System.Globalization.xml",
  7006. "ref/netcore50/de/System.Globalization.xml",
  7007. "ref/netcore50/es/System.Globalization.xml",
  7008. "ref/netcore50/fr/System.Globalization.xml",
  7009. "ref/netcore50/it/System.Globalization.xml",
  7010. "ref/netcore50/ja/System.Globalization.xml",
  7011. "ref/netcore50/ko/System.Globalization.xml",
  7012. "ref/netcore50/ru/System.Globalization.xml",
  7013. "ref/netcore50/zh-hans/System.Globalization.xml",
  7014. "ref/netcore50/zh-hant/System.Globalization.xml",
  7015. "ref/netstandard1.0/System.Globalization.dll",
  7016. "ref/netstandard1.0/System.Globalization.xml",
  7017. "ref/netstandard1.0/de/System.Globalization.xml",
  7018. "ref/netstandard1.0/es/System.Globalization.xml",
  7019. "ref/netstandard1.0/fr/System.Globalization.xml",
  7020. "ref/netstandard1.0/it/System.Globalization.xml",
  7021. "ref/netstandard1.0/ja/System.Globalization.xml",
  7022. "ref/netstandard1.0/ko/System.Globalization.xml",
  7023. "ref/netstandard1.0/ru/System.Globalization.xml",
  7024. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7025. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7026. "ref/netstandard1.3/System.Globalization.dll",
  7027. "ref/netstandard1.3/System.Globalization.xml",
  7028. "ref/netstandard1.3/de/System.Globalization.xml",
  7029. "ref/netstandard1.3/es/System.Globalization.xml",
  7030. "ref/netstandard1.3/fr/System.Globalization.xml",
  7031. "ref/netstandard1.3/it/System.Globalization.xml",
  7032. "ref/netstandard1.3/ja/System.Globalization.xml",
  7033. "ref/netstandard1.3/ko/System.Globalization.xml",
  7034. "ref/netstandard1.3/ru/System.Globalization.xml",
  7035. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7036. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7037. "ref/portable-net45+win8+wp8+wpa81/_._",
  7038. "ref/win8/_._",
  7039. "ref/wp80/_._",
  7040. "ref/wpa81/_._",
  7041. "ref/xamarinios10/_._",
  7042. "ref/xamarinmac20/_._",
  7043. "ref/xamarintvos10/_._",
  7044. "ref/xamarinwatchos10/_._",
  7045. "system.globalization.4.3.0.nupkg.sha512",
  7046. "system.globalization.nuspec"
  7047. ]
  7048. },
  7049. "System.Globalization.Calendars/4.3.0": {
  7050. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7051. "type": "package",
  7052. "path": "system.globalization.calendars/4.3.0",
  7053. "files": [
  7054. ".nupkg.metadata",
  7055. ".signature.p7s",
  7056. "ThirdPartyNotices.txt",
  7057. "dotnet_library_license.txt",
  7058. "lib/MonoAndroid10/_._",
  7059. "lib/MonoTouch10/_._",
  7060. "lib/net46/System.Globalization.Calendars.dll",
  7061. "lib/xamarinios10/_._",
  7062. "lib/xamarinmac20/_._",
  7063. "lib/xamarintvos10/_._",
  7064. "lib/xamarinwatchos10/_._",
  7065. "ref/MonoAndroid10/_._",
  7066. "ref/MonoTouch10/_._",
  7067. "ref/net46/System.Globalization.Calendars.dll",
  7068. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7069. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7070. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7071. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7072. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7073. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7074. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7075. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7076. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7077. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7078. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7079. "ref/xamarinios10/_._",
  7080. "ref/xamarinmac20/_._",
  7081. "ref/xamarintvos10/_._",
  7082. "ref/xamarinwatchos10/_._",
  7083. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7084. "system.globalization.calendars.nuspec"
  7085. ]
  7086. },
  7087. "System.Globalization.Extensions/4.3.0": {
  7088. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7089. "type": "package",
  7090. "path": "system.globalization.extensions/4.3.0",
  7091. "files": [
  7092. ".nupkg.metadata",
  7093. ".signature.p7s",
  7094. "ThirdPartyNotices.txt",
  7095. "dotnet_library_license.txt",
  7096. "lib/MonoAndroid10/_._",
  7097. "lib/MonoTouch10/_._",
  7098. "lib/net46/System.Globalization.Extensions.dll",
  7099. "lib/xamarinios10/_._",
  7100. "lib/xamarinmac20/_._",
  7101. "lib/xamarintvos10/_._",
  7102. "lib/xamarinwatchos10/_._",
  7103. "ref/MonoAndroid10/_._",
  7104. "ref/MonoTouch10/_._",
  7105. "ref/net46/System.Globalization.Extensions.dll",
  7106. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7107. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7108. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7109. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7110. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7111. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7112. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7113. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7114. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7115. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7116. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7117. "ref/xamarinios10/_._",
  7118. "ref/xamarinmac20/_._",
  7119. "ref/xamarintvos10/_._",
  7120. "ref/xamarinwatchos10/_._",
  7121. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7122. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7123. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7124. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7125. "system.globalization.extensions.nuspec"
  7126. ]
  7127. },
  7128. "System.IdentityModel.Tokens.Jwt/6.7.1": {
  7129. "sha512": "sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==",
  7130. "type": "package",
  7131. "path": "system.identitymodel.tokens.jwt/6.7.1",
  7132. "files": [
  7133. ".nupkg.metadata",
  7134. ".signature.p7s",
  7135. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  7136. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  7137. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  7138. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  7139. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7140. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7141. "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512",
  7142. "system.identitymodel.tokens.jwt.nuspec"
  7143. ]
  7144. },
  7145. "System.IO/4.3.0": {
  7146. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7147. "type": "package",
  7148. "path": "system.io/4.3.0",
  7149. "files": [
  7150. ".nupkg.metadata",
  7151. ".signature.p7s",
  7152. "ThirdPartyNotices.txt",
  7153. "dotnet_library_license.txt",
  7154. "lib/MonoAndroid10/_._",
  7155. "lib/MonoTouch10/_._",
  7156. "lib/net45/_._",
  7157. "lib/net462/System.IO.dll",
  7158. "lib/portable-net45+win8+wp8+wpa81/_._",
  7159. "lib/win8/_._",
  7160. "lib/wp80/_._",
  7161. "lib/wpa81/_._",
  7162. "lib/xamarinios10/_._",
  7163. "lib/xamarinmac20/_._",
  7164. "lib/xamarintvos10/_._",
  7165. "lib/xamarinwatchos10/_._",
  7166. "ref/MonoAndroid10/_._",
  7167. "ref/MonoTouch10/_._",
  7168. "ref/net45/_._",
  7169. "ref/net462/System.IO.dll",
  7170. "ref/netcore50/System.IO.dll",
  7171. "ref/netcore50/System.IO.xml",
  7172. "ref/netcore50/de/System.IO.xml",
  7173. "ref/netcore50/es/System.IO.xml",
  7174. "ref/netcore50/fr/System.IO.xml",
  7175. "ref/netcore50/it/System.IO.xml",
  7176. "ref/netcore50/ja/System.IO.xml",
  7177. "ref/netcore50/ko/System.IO.xml",
  7178. "ref/netcore50/ru/System.IO.xml",
  7179. "ref/netcore50/zh-hans/System.IO.xml",
  7180. "ref/netcore50/zh-hant/System.IO.xml",
  7181. "ref/netstandard1.0/System.IO.dll",
  7182. "ref/netstandard1.0/System.IO.xml",
  7183. "ref/netstandard1.0/de/System.IO.xml",
  7184. "ref/netstandard1.0/es/System.IO.xml",
  7185. "ref/netstandard1.0/fr/System.IO.xml",
  7186. "ref/netstandard1.0/it/System.IO.xml",
  7187. "ref/netstandard1.0/ja/System.IO.xml",
  7188. "ref/netstandard1.0/ko/System.IO.xml",
  7189. "ref/netstandard1.0/ru/System.IO.xml",
  7190. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7191. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7192. "ref/netstandard1.3/System.IO.dll",
  7193. "ref/netstandard1.3/System.IO.xml",
  7194. "ref/netstandard1.3/de/System.IO.xml",
  7195. "ref/netstandard1.3/es/System.IO.xml",
  7196. "ref/netstandard1.3/fr/System.IO.xml",
  7197. "ref/netstandard1.3/it/System.IO.xml",
  7198. "ref/netstandard1.3/ja/System.IO.xml",
  7199. "ref/netstandard1.3/ko/System.IO.xml",
  7200. "ref/netstandard1.3/ru/System.IO.xml",
  7201. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7202. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7203. "ref/netstandard1.5/System.IO.dll",
  7204. "ref/netstandard1.5/System.IO.xml",
  7205. "ref/netstandard1.5/de/System.IO.xml",
  7206. "ref/netstandard1.5/es/System.IO.xml",
  7207. "ref/netstandard1.5/fr/System.IO.xml",
  7208. "ref/netstandard1.5/it/System.IO.xml",
  7209. "ref/netstandard1.5/ja/System.IO.xml",
  7210. "ref/netstandard1.5/ko/System.IO.xml",
  7211. "ref/netstandard1.5/ru/System.IO.xml",
  7212. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7213. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7214. "ref/portable-net45+win8+wp8+wpa81/_._",
  7215. "ref/win8/_._",
  7216. "ref/wp80/_._",
  7217. "ref/wpa81/_._",
  7218. "ref/xamarinios10/_._",
  7219. "ref/xamarinmac20/_._",
  7220. "ref/xamarintvos10/_._",
  7221. "ref/xamarinwatchos10/_._",
  7222. "system.io.4.3.0.nupkg.sha512",
  7223. "system.io.nuspec"
  7224. ]
  7225. },
  7226. "System.IO.Compression/4.3.0": {
  7227. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7228. "type": "package",
  7229. "path": "system.io.compression/4.3.0",
  7230. "files": [
  7231. ".nupkg.metadata",
  7232. ".signature.p7s",
  7233. "ThirdPartyNotices.txt",
  7234. "dotnet_library_license.txt",
  7235. "lib/MonoAndroid10/_._",
  7236. "lib/MonoTouch10/_._",
  7237. "lib/net45/_._",
  7238. "lib/net46/System.IO.Compression.dll",
  7239. "lib/portable-net45+win8+wpa81/_._",
  7240. "lib/win8/_._",
  7241. "lib/wpa81/_._",
  7242. "lib/xamarinios10/_._",
  7243. "lib/xamarinmac20/_._",
  7244. "lib/xamarintvos10/_._",
  7245. "lib/xamarinwatchos10/_._",
  7246. "ref/MonoAndroid10/_._",
  7247. "ref/MonoTouch10/_._",
  7248. "ref/net45/_._",
  7249. "ref/net46/System.IO.Compression.dll",
  7250. "ref/netcore50/System.IO.Compression.dll",
  7251. "ref/netcore50/System.IO.Compression.xml",
  7252. "ref/netcore50/de/System.IO.Compression.xml",
  7253. "ref/netcore50/es/System.IO.Compression.xml",
  7254. "ref/netcore50/fr/System.IO.Compression.xml",
  7255. "ref/netcore50/it/System.IO.Compression.xml",
  7256. "ref/netcore50/ja/System.IO.Compression.xml",
  7257. "ref/netcore50/ko/System.IO.Compression.xml",
  7258. "ref/netcore50/ru/System.IO.Compression.xml",
  7259. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7260. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7261. "ref/netstandard1.1/System.IO.Compression.dll",
  7262. "ref/netstandard1.1/System.IO.Compression.xml",
  7263. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7264. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7265. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7266. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7267. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7268. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7269. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7270. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7271. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7272. "ref/netstandard1.3/System.IO.Compression.dll",
  7273. "ref/netstandard1.3/System.IO.Compression.xml",
  7274. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7275. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7276. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7277. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7278. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7279. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7280. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7281. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7282. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7283. "ref/portable-net45+win8+wpa81/_._",
  7284. "ref/win8/_._",
  7285. "ref/wpa81/_._",
  7286. "ref/xamarinios10/_._",
  7287. "ref/xamarinmac20/_._",
  7288. "ref/xamarintvos10/_._",
  7289. "ref/xamarinwatchos10/_._",
  7290. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7291. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7292. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7293. "system.io.compression.4.3.0.nupkg.sha512",
  7294. "system.io.compression.nuspec"
  7295. ]
  7296. },
  7297. "System.IO.Compression.ZipFile/4.3.0": {
  7298. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7299. "type": "package",
  7300. "path": "system.io.compression.zipfile/4.3.0",
  7301. "files": [
  7302. ".nupkg.metadata",
  7303. ".signature.p7s",
  7304. "ThirdPartyNotices.txt",
  7305. "dotnet_library_license.txt",
  7306. "lib/MonoAndroid10/_._",
  7307. "lib/MonoTouch10/_._",
  7308. "lib/net46/System.IO.Compression.ZipFile.dll",
  7309. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7310. "lib/xamarinios10/_._",
  7311. "lib/xamarinmac20/_._",
  7312. "lib/xamarintvos10/_._",
  7313. "lib/xamarinwatchos10/_._",
  7314. "ref/MonoAndroid10/_._",
  7315. "ref/MonoTouch10/_._",
  7316. "ref/net46/System.IO.Compression.ZipFile.dll",
  7317. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7318. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7319. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7320. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7321. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7322. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7323. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7324. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7325. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7326. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7327. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7328. "ref/xamarinios10/_._",
  7329. "ref/xamarinmac20/_._",
  7330. "ref/xamarintvos10/_._",
  7331. "ref/xamarinwatchos10/_._",
  7332. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7333. "system.io.compression.zipfile.nuspec"
  7334. ]
  7335. },
  7336. "System.IO.FileSystem/4.3.0": {
  7337. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7338. "type": "package",
  7339. "path": "system.io.filesystem/4.3.0",
  7340. "files": [
  7341. ".nupkg.metadata",
  7342. ".signature.p7s",
  7343. "ThirdPartyNotices.txt",
  7344. "dotnet_library_license.txt",
  7345. "lib/MonoAndroid10/_._",
  7346. "lib/MonoTouch10/_._",
  7347. "lib/net46/System.IO.FileSystem.dll",
  7348. "lib/xamarinios10/_._",
  7349. "lib/xamarinmac20/_._",
  7350. "lib/xamarintvos10/_._",
  7351. "lib/xamarinwatchos10/_._",
  7352. "ref/MonoAndroid10/_._",
  7353. "ref/MonoTouch10/_._",
  7354. "ref/net46/System.IO.FileSystem.dll",
  7355. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7356. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7357. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7358. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7359. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7360. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7361. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7362. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7363. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7364. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7365. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7366. "ref/xamarinios10/_._",
  7367. "ref/xamarinmac20/_._",
  7368. "ref/xamarintvos10/_._",
  7369. "ref/xamarinwatchos10/_._",
  7370. "system.io.filesystem.4.3.0.nupkg.sha512",
  7371. "system.io.filesystem.nuspec"
  7372. ]
  7373. },
  7374. "System.IO.FileSystem.Primitives/4.3.0": {
  7375. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7376. "type": "package",
  7377. "path": "system.io.filesystem.primitives/4.3.0",
  7378. "files": [
  7379. ".nupkg.metadata",
  7380. ".signature.p7s",
  7381. "ThirdPartyNotices.txt",
  7382. "dotnet_library_license.txt",
  7383. "lib/MonoAndroid10/_._",
  7384. "lib/MonoTouch10/_._",
  7385. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7386. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7387. "lib/xamarinios10/_._",
  7388. "lib/xamarinmac20/_._",
  7389. "lib/xamarintvos10/_._",
  7390. "lib/xamarinwatchos10/_._",
  7391. "ref/MonoAndroid10/_._",
  7392. "ref/MonoTouch10/_._",
  7393. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7394. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7395. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7396. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7397. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7398. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7399. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7400. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7401. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7402. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7403. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7404. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7405. "ref/xamarinios10/_._",
  7406. "ref/xamarinmac20/_._",
  7407. "ref/xamarintvos10/_._",
  7408. "ref/xamarinwatchos10/_._",
  7409. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7410. "system.io.filesystem.primitives.nuspec"
  7411. ]
  7412. },
  7413. "System.IO.Pipelines/5.0.0": {
  7414. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  7415. "type": "package",
  7416. "path": "system.io.pipelines/5.0.0",
  7417. "files": [
  7418. ".nupkg.metadata",
  7419. ".signature.p7s",
  7420. "Icon.png",
  7421. "LICENSE.TXT",
  7422. "THIRD-PARTY-NOTICES.TXT",
  7423. "lib/net461/System.IO.Pipelines.dll",
  7424. "lib/net461/System.IO.Pipelines.xml",
  7425. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7426. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7427. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7428. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7429. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7430. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7431. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7432. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7433. "system.io.pipelines.5.0.0.nupkg.sha512",
  7434. "system.io.pipelines.nuspec",
  7435. "useSharedDesignerContext.txt",
  7436. "version.txt"
  7437. ]
  7438. },
  7439. "System.Linq/4.3.0": {
  7440. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7441. "type": "package",
  7442. "path": "system.linq/4.3.0",
  7443. "files": [
  7444. ".nupkg.metadata",
  7445. ".signature.p7s",
  7446. "ThirdPartyNotices.txt",
  7447. "dotnet_library_license.txt",
  7448. "lib/MonoAndroid10/_._",
  7449. "lib/MonoTouch10/_._",
  7450. "lib/net45/_._",
  7451. "lib/net463/System.Linq.dll",
  7452. "lib/netcore50/System.Linq.dll",
  7453. "lib/netstandard1.6/System.Linq.dll",
  7454. "lib/portable-net45+win8+wp8+wpa81/_._",
  7455. "lib/win8/_._",
  7456. "lib/wp80/_._",
  7457. "lib/wpa81/_._",
  7458. "lib/xamarinios10/_._",
  7459. "lib/xamarinmac20/_._",
  7460. "lib/xamarintvos10/_._",
  7461. "lib/xamarinwatchos10/_._",
  7462. "ref/MonoAndroid10/_._",
  7463. "ref/MonoTouch10/_._",
  7464. "ref/net45/_._",
  7465. "ref/net463/System.Linq.dll",
  7466. "ref/netcore50/System.Linq.dll",
  7467. "ref/netcore50/System.Linq.xml",
  7468. "ref/netcore50/de/System.Linq.xml",
  7469. "ref/netcore50/es/System.Linq.xml",
  7470. "ref/netcore50/fr/System.Linq.xml",
  7471. "ref/netcore50/it/System.Linq.xml",
  7472. "ref/netcore50/ja/System.Linq.xml",
  7473. "ref/netcore50/ko/System.Linq.xml",
  7474. "ref/netcore50/ru/System.Linq.xml",
  7475. "ref/netcore50/zh-hans/System.Linq.xml",
  7476. "ref/netcore50/zh-hant/System.Linq.xml",
  7477. "ref/netstandard1.0/System.Linq.dll",
  7478. "ref/netstandard1.0/System.Linq.xml",
  7479. "ref/netstandard1.0/de/System.Linq.xml",
  7480. "ref/netstandard1.0/es/System.Linq.xml",
  7481. "ref/netstandard1.0/fr/System.Linq.xml",
  7482. "ref/netstandard1.0/it/System.Linq.xml",
  7483. "ref/netstandard1.0/ja/System.Linq.xml",
  7484. "ref/netstandard1.0/ko/System.Linq.xml",
  7485. "ref/netstandard1.0/ru/System.Linq.xml",
  7486. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7487. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7488. "ref/netstandard1.6/System.Linq.dll",
  7489. "ref/netstandard1.6/System.Linq.xml",
  7490. "ref/netstandard1.6/de/System.Linq.xml",
  7491. "ref/netstandard1.6/es/System.Linq.xml",
  7492. "ref/netstandard1.6/fr/System.Linq.xml",
  7493. "ref/netstandard1.6/it/System.Linq.xml",
  7494. "ref/netstandard1.6/ja/System.Linq.xml",
  7495. "ref/netstandard1.6/ko/System.Linq.xml",
  7496. "ref/netstandard1.6/ru/System.Linq.xml",
  7497. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7498. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7499. "ref/portable-net45+win8+wp8+wpa81/_._",
  7500. "ref/win8/_._",
  7501. "ref/wp80/_._",
  7502. "ref/wpa81/_._",
  7503. "ref/xamarinios10/_._",
  7504. "ref/xamarinmac20/_._",
  7505. "ref/xamarintvos10/_._",
  7506. "ref/xamarinwatchos10/_._",
  7507. "system.linq.4.3.0.nupkg.sha512",
  7508. "system.linq.nuspec"
  7509. ]
  7510. },
  7511. "System.Linq.Expressions/4.3.0": {
  7512. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7513. "type": "package",
  7514. "path": "system.linq.expressions/4.3.0",
  7515. "files": [
  7516. ".nupkg.metadata",
  7517. ".signature.p7s",
  7518. "ThirdPartyNotices.txt",
  7519. "dotnet_library_license.txt",
  7520. "lib/MonoAndroid10/_._",
  7521. "lib/MonoTouch10/_._",
  7522. "lib/net45/_._",
  7523. "lib/net463/System.Linq.Expressions.dll",
  7524. "lib/netcore50/System.Linq.Expressions.dll",
  7525. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7526. "lib/portable-net45+win8+wp8+wpa81/_._",
  7527. "lib/win8/_._",
  7528. "lib/wp80/_._",
  7529. "lib/wpa81/_._",
  7530. "lib/xamarinios10/_._",
  7531. "lib/xamarinmac20/_._",
  7532. "lib/xamarintvos10/_._",
  7533. "lib/xamarinwatchos10/_._",
  7534. "ref/MonoAndroid10/_._",
  7535. "ref/MonoTouch10/_._",
  7536. "ref/net45/_._",
  7537. "ref/net463/System.Linq.Expressions.dll",
  7538. "ref/netcore50/System.Linq.Expressions.dll",
  7539. "ref/netcore50/System.Linq.Expressions.xml",
  7540. "ref/netcore50/de/System.Linq.Expressions.xml",
  7541. "ref/netcore50/es/System.Linq.Expressions.xml",
  7542. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7543. "ref/netcore50/it/System.Linq.Expressions.xml",
  7544. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7545. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7546. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7547. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7548. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7549. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7550. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7551. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7552. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7553. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7554. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7555. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7556. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7557. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7558. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7559. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7560. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7561. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7562. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7563. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7564. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7565. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7566. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7567. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7568. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7569. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7570. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7571. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7572. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7573. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7574. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7575. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7576. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7577. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7578. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7579. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7580. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7581. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7582. "ref/portable-net45+win8+wp8+wpa81/_._",
  7583. "ref/win8/_._",
  7584. "ref/wp80/_._",
  7585. "ref/wpa81/_._",
  7586. "ref/xamarinios10/_._",
  7587. "ref/xamarinmac20/_._",
  7588. "ref/xamarintvos10/_._",
  7589. "ref/xamarinwatchos10/_._",
  7590. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7591. "system.linq.expressions.4.3.0.nupkg.sha512",
  7592. "system.linq.expressions.nuspec"
  7593. ]
  7594. },
  7595. "System.Memory/4.5.5": {
  7596. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  7597. "type": "package",
  7598. "path": "system.memory/4.5.5",
  7599. "files": [
  7600. ".nupkg.metadata",
  7601. ".signature.p7s",
  7602. "LICENSE.TXT",
  7603. "THIRD-PARTY-NOTICES.TXT",
  7604. "lib/net461/System.Memory.dll",
  7605. "lib/net461/System.Memory.xml",
  7606. "lib/netcoreapp2.1/_._",
  7607. "lib/netstandard1.1/System.Memory.dll",
  7608. "lib/netstandard1.1/System.Memory.xml",
  7609. "lib/netstandard2.0/System.Memory.dll",
  7610. "lib/netstandard2.0/System.Memory.xml",
  7611. "ref/netcoreapp2.1/_._",
  7612. "system.memory.4.5.5.nupkg.sha512",
  7613. "system.memory.nuspec",
  7614. "useSharedDesignerContext.txt",
  7615. "version.txt"
  7616. ]
  7617. },
  7618. "System.Net.Http/4.3.2": {
  7619. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  7620. "type": "package",
  7621. "path": "system.net.http/4.3.2",
  7622. "files": [
  7623. ".nupkg.metadata",
  7624. ".signature.p7s",
  7625. "ThirdPartyNotices.txt",
  7626. "dotnet_library_license.txt",
  7627. "lib/Xamarinmac20/_._",
  7628. "lib/monoandroid10/_._",
  7629. "lib/monotouch10/_._",
  7630. "lib/net45/_._",
  7631. "lib/net46/System.Net.Http.dll",
  7632. "lib/portable-net45+win8+wpa81/_._",
  7633. "lib/win8/_._",
  7634. "lib/wpa81/_._",
  7635. "lib/xamarinios10/_._",
  7636. "lib/xamarintvos10/_._",
  7637. "lib/xamarinwatchos10/_._",
  7638. "ref/Xamarinmac20/_._",
  7639. "ref/monoandroid10/_._",
  7640. "ref/monotouch10/_._",
  7641. "ref/net45/_._",
  7642. "ref/net46/System.Net.Http.dll",
  7643. "ref/netcore50/System.Net.Http.dll",
  7644. "ref/netstandard1.1/System.Net.Http.dll",
  7645. "ref/netstandard1.3/System.Net.Http.dll",
  7646. "ref/portable-net45+win8+wpa81/_._",
  7647. "ref/win8/_._",
  7648. "ref/wpa81/_._",
  7649. "ref/xamarinios10/_._",
  7650. "ref/xamarintvos10/_._",
  7651. "ref/xamarinwatchos10/_._",
  7652. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7653. "runtimes/win/lib/net46/System.Net.Http.dll",
  7654. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7655. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7656. "system.net.http.4.3.2.nupkg.sha512",
  7657. "system.net.http.nuspec"
  7658. ]
  7659. },
  7660. "System.Net.NameResolution/4.3.0": {
  7661. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7662. "type": "package",
  7663. "path": "system.net.nameresolution/4.3.0",
  7664. "files": [
  7665. ".nupkg.metadata",
  7666. ".signature.p7s",
  7667. "ThirdPartyNotices.txt",
  7668. "dotnet_library_license.txt",
  7669. "lib/MonoAndroid10/_._",
  7670. "lib/MonoTouch10/_._",
  7671. "lib/net46/System.Net.NameResolution.dll",
  7672. "lib/xamarinios10/_._",
  7673. "lib/xamarinmac20/_._",
  7674. "lib/xamarintvos10/_._",
  7675. "lib/xamarinwatchos10/_._",
  7676. "ref/MonoAndroid10/_._",
  7677. "ref/MonoTouch10/_._",
  7678. "ref/net46/System.Net.NameResolution.dll",
  7679. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7680. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7681. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7682. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7683. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7684. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7685. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7686. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7687. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7688. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7689. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7690. "ref/xamarinios10/_._",
  7691. "ref/xamarinmac20/_._",
  7692. "ref/xamarintvos10/_._",
  7693. "ref/xamarinwatchos10/_._",
  7694. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7695. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7696. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7697. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7698. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7699. "system.net.nameresolution.nuspec"
  7700. ]
  7701. },
  7702. "System.Net.Primitives/4.3.0": {
  7703. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7704. "type": "package",
  7705. "path": "system.net.primitives/4.3.0",
  7706. "files": [
  7707. ".nupkg.metadata",
  7708. ".signature.p7s",
  7709. "ThirdPartyNotices.txt",
  7710. "dotnet_library_license.txt",
  7711. "lib/MonoAndroid10/_._",
  7712. "lib/MonoTouch10/_._",
  7713. "lib/net45/_._",
  7714. "lib/portable-net45+win8+wp8+wpa81/_._",
  7715. "lib/win8/_._",
  7716. "lib/wp80/_._",
  7717. "lib/wpa81/_._",
  7718. "lib/xamarinios10/_._",
  7719. "lib/xamarinmac20/_._",
  7720. "lib/xamarintvos10/_._",
  7721. "lib/xamarinwatchos10/_._",
  7722. "ref/MonoAndroid10/_._",
  7723. "ref/MonoTouch10/_._",
  7724. "ref/net45/_._",
  7725. "ref/netcore50/System.Net.Primitives.dll",
  7726. "ref/netcore50/System.Net.Primitives.xml",
  7727. "ref/netcore50/de/System.Net.Primitives.xml",
  7728. "ref/netcore50/es/System.Net.Primitives.xml",
  7729. "ref/netcore50/fr/System.Net.Primitives.xml",
  7730. "ref/netcore50/it/System.Net.Primitives.xml",
  7731. "ref/netcore50/ja/System.Net.Primitives.xml",
  7732. "ref/netcore50/ko/System.Net.Primitives.xml",
  7733. "ref/netcore50/ru/System.Net.Primitives.xml",
  7734. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7735. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7736. "ref/netstandard1.0/System.Net.Primitives.dll",
  7737. "ref/netstandard1.0/System.Net.Primitives.xml",
  7738. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7739. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7740. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7741. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7742. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7743. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7744. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7745. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7746. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7747. "ref/netstandard1.1/System.Net.Primitives.dll",
  7748. "ref/netstandard1.1/System.Net.Primitives.xml",
  7749. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7750. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7751. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7752. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7753. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7754. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7755. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7756. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7757. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7758. "ref/netstandard1.3/System.Net.Primitives.dll",
  7759. "ref/netstandard1.3/System.Net.Primitives.xml",
  7760. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7761. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7762. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7763. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7764. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7765. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7766. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7767. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7768. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7769. "ref/portable-net45+win8+wp8+wpa81/_._",
  7770. "ref/win8/_._",
  7771. "ref/wp80/_._",
  7772. "ref/wpa81/_._",
  7773. "ref/xamarinios10/_._",
  7774. "ref/xamarinmac20/_._",
  7775. "ref/xamarintvos10/_._",
  7776. "ref/xamarinwatchos10/_._",
  7777. "system.net.primitives.4.3.0.nupkg.sha512",
  7778. "system.net.primitives.nuspec"
  7779. ]
  7780. },
  7781. "System.Net.Security/4.3.0": {
  7782. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  7783. "type": "package",
  7784. "path": "system.net.security/4.3.0",
  7785. "files": [
  7786. ".nupkg.metadata",
  7787. ".signature.p7s",
  7788. "ThirdPartyNotices.txt",
  7789. "dotnet_library_license.txt",
  7790. "lib/MonoAndroid10/_._",
  7791. "lib/MonoTouch10/_._",
  7792. "lib/net46/System.Net.Security.dll",
  7793. "lib/xamarinios10/_._",
  7794. "lib/xamarinmac20/_._",
  7795. "lib/xamarintvos10/_._",
  7796. "lib/xamarinwatchos10/_._",
  7797. "ref/MonoAndroid10/_._",
  7798. "ref/MonoTouch10/_._",
  7799. "ref/net46/System.Net.Security.dll",
  7800. "ref/netstandard1.3/System.Net.Security.dll",
  7801. "ref/netstandard1.3/System.Net.Security.xml",
  7802. "ref/netstandard1.3/de/System.Net.Security.xml",
  7803. "ref/netstandard1.3/es/System.Net.Security.xml",
  7804. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7805. "ref/netstandard1.3/it/System.Net.Security.xml",
  7806. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7807. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7808. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7809. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7810. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7811. "ref/xamarinios10/_._",
  7812. "ref/xamarinmac20/_._",
  7813. "ref/xamarintvos10/_._",
  7814. "ref/xamarinwatchos10/_._",
  7815. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7816. "runtimes/win/lib/net46/System.Net.Security.dll",
  7817. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7818. "runtimes/win7/lib/netcore50/_._",
  7819. "system.net.security.4.3.0.nupkg.sha512",
  7820. "system.net.security.nuspec"
  7821. ]
  7822. },
  7823. "System.Net.Sockets/4.3.0": {
  7824. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7825. "type": "package",
  7826. "path": "system.net.sockets/4.3.0",
  7827. "files": [
  7828. ".nupkg.metadata",
  7829. ".signature.p7s",
  7830. "ThirdPartyNotices.txt",
  7831. "dotnet_library_license.txt",
  7832. "lib/MonoAndroid10/_._",
  7833. "lib/MonoTouch10/_._",
  7834. "lib/net46/System.Net.Sockets.dll",
  7835. "lib/xamarinios10/_._",
  7836. "lib/xamarinmac20/_._",
  7837. "lib/xamarintvos10/_._",
  7838. "lib/xamarinwatchos10/_._",
  7839. "ref/MonoAndroid10/_._",
  7840. "ref/MonoTouch10/_._",
  7841. "ref/net46/System.Net.Sockets.dll",
  7842. "ref/netstandard1.3/System.Net.Sockets.dll",
  7843. "ref/netstandard1.3/System.Net.Sockets.xml",
  7844. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7845. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7846. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7847. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7848. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7849. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7850. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7851. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7852. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7853. "ref/xamarinios10/_._",
  7854. "ref/xamarinmac20/_._",
  7855. "ref/xamarintvos10/_._",
  7856. "ref/xamarinwatchos10/_._",
  7857. "system.net.sockets.4.3.0.nupkg.sha512",
  7858. "system.net.sockets.nuspec"
  7859. ]
  7860. },
  7861. "System.ObjectModel/4.3.0": {
  7862. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7863. "type": "package",
  7864. "path": "system.objectmodel/4.3.0",
  7865. "files": [
  7866. ".nupkg.metadata",
  7867. ".signature.p7s",
  7868. "ThirdPartyNotices.txt",
  7869. "dotnet_library_license.txt",
  7870. "lib/MonoAndroid10/_._",
  7871. "lib/MonoTouch10/_._",
  7872. "lib/net45/_._",
  7873. "lib/netcore50/System.ObjectModel.dll",
  7874. "lib/netstandard1.3/System.ObjectModel.dll",
  7875. "lib/portable-net45+win8+wp8+wpa81/_._",
  7876. "lib/win8/_._",
  7877. "lib/wp80/_._",
  7878. "lib/wpa81/_._",
  7879. "lib/xamarinios10/_._",
  7880. "lib/xamarinmac20/_._",
  7881. "lib/xamarintvos10/_._",
  7882. "lib/xamarinwatchos10/_._",
  7883. "ref/MonoAndroid10/_._",
  7884. "ref/MonoTouch10/_._",
  7885. "ref/net45/_._",
  7886. "ref/netcore50/System.ObjectModel.dll",
  7887. "ref/netcore50/System.ObjectModel.xml",
  7888. "ref/netcore50/de/System.ObjectModel.xml",
  7889. "ref/netcore50/es/System.ObjectModel.xml",
  7890. "ref/netcore50/fr/System.ObjectModel.xml",
  7891. "ref/netcore50/it/System.ObjectModel.xml",
  7892. "ref/netcore50/ja/System.ObjectModel.xml",
  7893. "ref/netcore50/ko/System.ObjectModel.xml",
  7894. "ref/netcore50/ru/System.ObjectModel.xml",
  7895. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7896. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7897. "ref/netstandard1.0/System.ObjectModel.dll",
  7898. "ref/netstandard1.0/System.ObjectModel.xml",
  7899. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7900. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7901. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7902. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7903. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7904. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7905. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7906. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7907. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7908. "ref/netstandard1.3/System.ObjectModel.dll",
  7909. "ref/netstandard1.3/System.ObjectModel.xml",
  7910. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7911. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7912. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7913. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7914. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7915. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7916. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7917. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7918. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7919. "ref/portable-net45+win8+wp8+wpa81/_._",
  7920. "ref/win8/_._",
  7921. "ref/wp80/_._",
  7922. "ref/wpa81/_._",
  7923. "ref/xamarinios10/_._",
  7924. "ref/xamarinmac20/_._",
  7925. "ref/xamarintvos10/_._",
  7926. "ref/xamarinwatchos10/_._",
  7927. "system.objectmodel.4.3.0.nupkg.sha512",
  7928. "system.objectmodel.nuspec"
  7929. ]
  7930. },
  7931. "System.Reflection/4.3.0": {
  7932. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7933. "type": "package",
  7934. "path": "system.reflection/4.3.0",
  7935. "files": [
  7936. ".nupkg.metadata",
  7937. ".signature.p7s",
  7938. "ThirdPartyNotices.txt",
  7939. "dotnet_library_license.txt",
  7940. "lib/MonoAndroid10/_._",
  7941. "lib/MonoTouch10/_._",
  7942. "lib/net45/_._",
  7943. "lib/net462/System.Reflection.dll",
  7944. "lib/portable-net45+win8+wp8+wpa81/_._",
  7945. "lib/win8/_._",
  7946. "lib/wp80/_._",
  7947. "lib/wpa81/_._",
  7948. "lib/xamarinios10/_._",
  7949. "lib/xamarinmac20/_._",
  7950. "lib/xamarintvos10/_._",
  7951. "lib/xamarinwatchos10/_._",
  7952. "ref/MonoAndroid10/_._",
  7953. "ref/MonoTouch10/_._",
  7954. "ref/net45/_._",
  7955. "ref/net462/System.Reflection.dll",
  7956. "ref/netcore50/System.Reflection.dll",
  7957. "ref/netcore50/System.Reflection.xml",
  7958. "ref/netcore50/de/System.Reflection.xml",
  7959. "ref/netcore50/es/System.Reflection.xml",
  7960. "ref/netcore50/fr/System.Reflection.xml",
  7961. "ref/netcore50/it/System.Reflection.xml",
  7962. "ref/netcore50/ja/System.Reflection.xml",
  7963. "ref/netcore50/ko/System.Reflection.xml",
  7964. "ref/netcore50/ru/System.Reflection.xml",
  7965. "ref/netcore50/zh-hans/System.Reflection.xml",
  7966. "ref/netcore50/zh-hant/System.Reflection.xml",
  7967. "ref/netstandard1.0/System.Reflection.dll",
  7968. "ref/netstandard1.0/System.Reflection.xml",
  7969. "ref/netstandard1.0/de/System.Reflection.xml",
  7970. "ref/netstandard1.0/es/System.Reflection.xml",
  7971. "ref/netstandard1.0/fr/System.Reflection.xml",
  7972. "ref/netstandard1.0/it/System.Reflection.xml",
  7973. "ref/netstandard1.0/ja/System.Reflection.xml",
  7974. "ref/netstandard1.0/ko/System.Reflection.xml",
  7975. "ref/netstandard1.0/ru/System.Reflection.xml",
  7976. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7977. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7978. "ref/netstandard1.3/System.Reflection.dll",
  7979. "ref/netstandard1.3/System.Reflection.xml",
  7980. "ref/netstandard1.3/de/System.Reflection.xml",
  7981. "ref/netstandard1.3/es/System.Reflection.xml",
  7982. "ref/netstandard1.3/fr/System.Reflection.xml",
  7983. "ref/netstandard1.3/it/System.Reflection.xml",
  7984. "ref/netstandard1.3/ja/System.Reflection.xml",
  7985. "ref/netstandard1.3/ko/System.Reflection.xml",
  7986. "ref/netstandard1.3/ru/System.Reflection.xml",
  7987. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7988. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7989. "ref/netstandard1.5/System.Reflection.dll",
  7990. "ref/netstandard1.5/System.Reflection.xml",
  7991. "ref/netstandard1.5/de/System.Reflection.xml",
  7992. "ref/netstandard1.5/es/System.Reflection.xml",
  7993. "ref/netstandard1.5/fr/System.Reflection.xml",
  7994. "ref/netstandard1.5/it/System.Reflection.xml",
  7995. "ref/netstandard1.5/ja/System.Reflection.xml",
  7996. "ref/netstandard1.5/ko/System.Reflection.xml",
  7997. "ref/netstandard1.5/ru/System.Reflection.xml",
  7998. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7999. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8000. "ref/portable-net45+win8+wp8+wpa81/_._",
  8001. "ref/win8/_._",
  8002. "ref/wp80/_._",
  8003. "ref/wpa81/_._",
  8004. "ref/xamarinios10/_._",
  8005. "ref/xamarinmac20/_._",
  8006. "ref/xamarintvos10/_._",
  8007. "ref/xamarinwatchos10/_._",
  8008. "system.reflection.4.3.0.nupkg.sha512",
  8009. "system.reflection.nuspec"
  8010. ]
  8011. },
  8012. "System.Reflection.Emit/4.7.0": {
  8013. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  8014. "type": "package",
  8015. "path": "system.reflection.emit/4.7.0",
  8016. "files": [
  8017. ".nupkg.metadata",
  8018. ".signature.p7s",
  8019. "LICENSE.TXT",
  8020. "THIRD-PARTY-NOTICES.TXT",
  8021. "lib/MonoAndroid10/_._",
  8022. "lib/MonoTouch10/_._",
  8023. "lib/net45/_._",
  8024. "lib/netcore50/System.Reflection.Emit.dll",
  8025. "lib/netcoreapp2.0/_._",
  8026. "lib/netstandard1.1/System.Reflection.Emit.dll",
  8027. "lib/netstandard1.1/System.Reflection.Emit.xml",
  8028. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8029. "lib/netstandard2.0/System.Reflection.Emit.dll",
  8030. "lib/netstandard2.0/System.Reflection.Emit.xml",
  8031. "lib/netstandard2.1/_._",
  8032. "lib/xamarinios10/_._",
  8033. "lib/xamarinmac20/_._",
  8034. "lib/xamarintvos10/_._",
  8035. "lib/xamarinwatchos10/_._",
  8036. "ref/MonoAndroid10/_._",
  8037. "ref/MonoTouch10/_._",
  8038. "ref/net45/_._",
  8039. "ref/netcoreapp2.0/_._",
  8040. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8041. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8042. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8043. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8044. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8045. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8046. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8047. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8048. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8049. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8050. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8051. "ref/netstandard2.0/System.Reflection.Emit.dll",
  8052. "ref/netstandard2.0/System.Reflection.Emit.xml",
  8053. "ref/netstandard2.1/_._",
  8054. "ref/xamarinios10/_._",
  8055. "ref/xamarinmac20/_._",
  8056. "ref/xamarintvos10/_._",
  8057. "ref/xamarinwatchos10/_._",
  8058. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  8059. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  8060. "system.reflection.emit.4.7.0.nupkg.sha512",
  8061. "system.reflection.emit.nuspec",
  8062. "useSharedDesignerContext.txt",
  8063. "version.txt"
  8064. ]
  8065. },
  8066. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8067. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8068. "type": "package",
  8069. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8070. "files": [
  8071. ".nupkg.metadata",
  8072. ".signature.p7s",
  8073. "ThirdPartyNotices.txt",
  8074. "dotnet_library_license.txt",
  8075. "lib/MonoAndroid10/_._",
  8076. "lib/MonoTouch10/_._",
  8077. "lib/net45/_._",
  8078. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8079. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8080. "lib/portable-net45+wp8/_._",
  8081. "lib/wp80/_._",
  8082. "lib/xamarinios10/_._",
  8083. "lib/xamarinmac20/_._",
  8084. "lib/xamarintvos10/_._",
  8085. "lib/xamarinwatchos10/_._",
  8086. "ref/MonoAndroid10/_._",
  8087. "ref/MonoTouch10/_._",
  8088. "ref/net45/_._",
  8089. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8090. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8091. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8092. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8093. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8094. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8095. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8096. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8097. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8098. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8099. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8100. "ref/portable-net45+wp8/_._",
  8101. "ref/wp80/_._",
  8102. "ref/xamarinios10/_._",
  8103. "ref/xamarinmac20/_._",
  8104. "ref/xamarintvos10/_._",
  8105. "ref/xamarinwatchos10/_._",
  8106. "runtimes/aot/lib/netcore50/_._",
  8107. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8108. "system.reflection.emit.ilgeneration.nuspec"
  8109. ]
  8110. },
  8111. "System.Reflection.Emit.Lightweight/4.3.0": {
  8112. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8113. "type": "package",
  8114. "path": "system.reflection.emit.lightweight/4.3.0",
  8115. "files": [
  8116. ".nupkg.metadata",
  8117. ".signature.p7s",
  8118. "ThirdPartyNotices.txt",
  8119. "dotnet_library_license.txt",
  8120. "lib/MonoAndroid10/_._",
  8121. "lib/MonoTouch10/_._",
  8122. "lib/net45/_._",
  8123. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8124. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8125. "lib/portable-net45+wp8/_._",
  8126. "lib/wp80/_._",
  8127. "lib/xamarinios10/_._",
  8128. "lib/xamarinmac20/_._",
  8129. "lib/xamarintvos10/_._",
  8130. "lib/xamarinwatchos10/_._",
  8131. "ref/MonoAndroid10/_._",
  8132. "ref/MonoTouch10/_._",
  8133. "ref/net45/_._",
  8134. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8135. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8136. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8137. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8138. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8139. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8140. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8141. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8142. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8143. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8144. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8145. "ref/portable-net45+wp8/_._",
  8146. "ref/wp80/_._",
  8147. "ref/xamarinios10/_._",
  8148. "ref/xamarinmac20/_._",
  8149. "ref/xamarintvos10/_._",
  8150. "ref/xamarinwatchos10/_._",
  8151. "runtimes/aot/lib/netcore50/_._",
  8152. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8153. "system.reflection.emit.lightweight.nuspec"
  8154. ]
  8155. },
  8156. "System.Reflection.Extensions/4.3.0": {
  8157. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8158. "type": "package",
  8159. "path": "system.reflection.extensions/4.3.0",
  8160. "files": [
  8161. ".nupkg.metadata",
  8162. ".signature.p7s",
  8163. "ThirdPartyNotices.txt",
  8164. "dotnet_library_license.txt",
  8165. "lib/MonoAndroid10/_._",
  8166. "lib/MonoTouch10/_._",
  8167. "lib/net45/_._",
  8168. "lib/portable-net45+win8+wp8+wpa81/_._",
  8169. "lib/win8/_._",
  8170. "lib/wp80/_._",
  8171. "lib/wpa81/_._",
  8172. "lib/xamarinios10/_._",
  8173. "lib/xamarinmac20/_._",
  8174. "lib/xamarintvos10/_._",
  8175. "lib/xamarinwatchos10/_._",
  8176. "ref/MonoAndroid10/_._",
  8177. "ref/MonoTouch10/_._",
  8178. "ref/net45/_._",
  8179. "ref/netcore50/System.Reflection.Extensions.dll",
  8180. "ref/netcore50/System.Reflection.Extensions.xml",
  8181. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8182. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8183. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8184. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8185. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8186. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8187. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8188. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8189. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8190. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8191. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8192. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8193. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8194. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8195. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8196. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8197. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8198. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8199. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8200. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8201. "ref/portable-net45+win8+wp8+wpa81/_._",
  8202. "ref/win8/_._",
  8203. "ref/wp80/_._",
  8204. "ref/wpa81/_._",
  8205. "ref/xamarinios10/_._",
  8206. "ref/xamarinmac20/_._",
  8207. "ref/xamarintvos10/_._",
  8208. "ref/xamarinwatchos10/_._",
  8209. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8210. "system.reflection.extensions.nuspec"
  8211. ]
  8212. },
  8213. "System.Reflection.Primitives/4.3.0": {
  8214. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8215. "type": "package",
  8216. "path": "system.reflection.primitives/4.3.0",
  8217. "files": [
  8218. ".nupkg.metadata",
  8219. ".signature.p7s",
  8220. "ThirdPartyNotices.txt",
  8221. "dotnet_library_license.txt",
  8222. "lib/MonoAndroid10/_._",
  8223. "lib/MonoTouch10/_._",
  8224. "lib/net45/_._",
  8225. "lib/portable-net45+win8+wp8+wpa81/_._",
  8226. "lib/win8/_._",
  8227. "lib/wp80/_._",
  8228. "lib/wpa81/_._",
  8229. "lib/xamarinios10/_._",
  8230. "lib/xamarinmac20/_._",
  8231. "lib/xamarintvos10/_._",
  8232. "lib/xamarinwatchos10/_._",
  8233. "ref/MonoAndroid10/_._",
  8234. "ref/MonoTouch10/_._",
  8235. "ref/net45/_._",
  8236. "ref/netcore50/System.Reflection.Primitives.dll",
  8237. "ref/netcore50/System.Reflection.Primitives.xml",
  8238. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8239. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8240. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8241. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8242. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8243. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8244. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8245. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8246. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8247. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8248. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8249. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8250. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8251. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8252. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8253. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8254. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8255. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8256. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8257. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8258. "ref/portable-net45+win8+wp8+wpa81/_._",
  8259. "ref/win8/_._",
  8260. "ref/wp80/_._",
  8261. "ref/wpa81/_._",
  8262. "ref/xamarinios10/_._",
  8263. "ref/xamarinmac20/_._",
  8264. "ref/xamarintvos10/_._",
  8265. "ref/xamarinwatchos10/_._",
  8266. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8267. "system.reflection.primitives.nuspec"
  8268. ]
  8269. },
  8270. "System.Reflection.TypeExtensions/4.3.0": {
  8271. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8272. "type": "package",
  8273. "path": "system.reflection.typeextensions/4.3.0",
  8274. "files": [
  8275. ".nupkg.metadata",
  8276. ".signature.p7s",
  8277. "ThirdPartyNotices.txt",
  8278. "dotnet_library_license.txt",
  8279. "lib/MonoAndroid10/_._",
  8280. "lib/MonoTouch10/_._",
  8281. "lib/net46/System.Reflection.TypeExtensions.dll",
  8282. "lib/net462/System.Reflection.TypeExtensions.dll",
  8283. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8284. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8285. "lib/xamarinios10/_._",
  8286. "lib/xamarinmac20/_._",
  8287. "lib/xamarintvos10/_._",
  8288. "lib/xamarinwatchos10/_._",
  8289. "ref/MonoAndroid10/_._",
  8290. "ref/MonoTouch10/_._",
  8291. "ref/net46/System.Reflection.TypeExtensions.dll",
  8292. "ref/net462/System.Reflection.TypeExtensions.dll",
  8293. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8294. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8295. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8296. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8297. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8298. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8299. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8300. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8301. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8302. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8303. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8304. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8305. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8306. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8307. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8308. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8309. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8310. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8311. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8312. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8313. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8314. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8315. "ref/xamarinios10/_._",
  8316. "ref/xamarinmac20/_._",
  8317. "ref/xamarintvos10/_._",
  8318. "ref/xamarinwatchos10/_._",
  8319. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8320. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8321. "system.reflection.typeextensions.nuspec"
  8322. ]
  8323. },
  8324. "System.Resources.ResourceManager/4.3.0": {
  8325. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8326. "type": "package",
  8327. "path": "system.resources.resourcemanager/4.3.0",
  8328. "files": [
  8329. ".nupkg.metadata",
  8330. ".signature.p7s",
  8331. "ThirdPartyNotices.txt",
  8332. "dotnet_library_license.txt",
  8333. "lib/MonoAndroid10/_._",
  8334. "lib/MonoTouch10/_._",
  8335. "lib/net45/_._",
  8336. "lib/portable-net45+win8+wp8+wpa81/_._",
  8337. "lib/win8/_._",
  8338. "lib/wp80/_._",
  8339. "lib/wpa81/_._",
  8340. "lib/xamarinios10/_._",
  8341. "lib/xamarinmac20/_._",
  8342. "lib/xamarintvos10/_._",
  8343. "lib/xamarinwatchos10/_._",
  8344. "ref/MonoAndroid10/_._",
  8345. "ref/MonoTouch10/_._",
  8346. "ref/net45/_._",
  8347. "ref/netcore50/System.Resources.ResourceManager.dll",
  8348. "ref/netcore50/System.Resources.ResourceManager.xml",
  8349. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8350. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8351. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8352. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8353. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8354. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8355. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8356. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8357. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8358. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8359. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8360. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8361. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8362. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8363. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8364. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8365. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8366. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8367. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8368. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8369. "ref/portable-net45+win8+wp8+wpa81/_._",
  8370. "ref/win8/_._",
  8371. "ref/wp80/_._",
  8372. "ref/wpa81/_._",
  8373. "ref/xamarinios10/_._",
  8374. "ref/xamarinmac20/_._",
  8375. "ref/xamarintvos10/_._",
  8376. "ref/xamarinwatchos10/_._",
  8377. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8378. "system.resources.resourcemanager.nuspec"
  8379. ]
  8380. },
  8381. "System.Runtime/4.3.0": {
  8382. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8383. "type": "package",
  8384. "path": "system.runtime/4.3.0",
  8385. "files": [
  8386. ".nupkg.metadata",
  8387. ".signature.p7s",
  8388. "ThirdPartyNotices.txt",
  8389. "dotnet_library_license.txt",
  8390. "lib/MonoAndroid10/_._",
  8391. "lib/MonoTouch10/_._",
  8392. "lib/net45/_._",
  8393. "lib/net462/System.Runtime.dll",
  8394. "lib/portable-net45+win8+wp80+wpa81/_._",
  8395. "lib/win8/_._",
  8396. "lib/wp80/_._",
  8397. "lib/wpa81/_._",
  8398. "lib/xamarinios10/_._",
  8399. "lib/xamarinmac20/_._",
  8400. "lib/xamarintvos10/_._",
  8401. "lib/xamarinwatchos10/_._",
  8402. "ref/MonoAndroid10/_._",
  8403. "ref/MonoTouch10/_._",
  8404. "ref/net45/_._",
  8405. "ref/net462/System.Runtime.dll",
  8406. "ref/netcore50/System.Runtime.dll",
  8407. "ref/netcore50/System.Runtime.xml",
  8408. "ref/netcore50/de/System.Runtime.xml",
  8409. "ref/netcore50/es/System.Runtime.xml",
  8410. "ref/netcore50/fr/System.Runtime.xml",
  8411. "ref/netcore50/it/System.Runtime.xml",
  8412. "ref/netcore50/ja/System.Runtime.xml",
  8413. "ref/netcore50/ko/System.Runtime.xml",
  8414. "ref/netcore50/ru/System.Runtime.xml",
  8415. "ref/netcore50/zh-hans/System.Runtime.xml",
  8416. "ref/netcore50/zh-hant/System.Runtime.xml",
  8417. "ref/netstandard1.0/System.Runtime.dll",
  8418. "ref/netstandard1.0/System.Runtime.xml",
  8419. "ref/netstandard1.0/de/System.Runtime.xml",
  8420. "ref/netstandard1.0/es/System.Runtime.xml",
  8421. "ref/netstandard1.0/fr/System.Runtime.xml",
  8422. "ref/netstandard1.0/it/System.Runtime.xml",
  8423. "ref/netstandard1.0/ja/System.Runtime.xml",
  8424. "ref/netstandard1.0/ko/System.Runtime.xml",
  8425. "ref/netstandard1.0/ru/System.Runtime.xml",
  8426. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8427. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8428. "ref/netstandard1.2/System.Runtime.dll",
  8429. "ref/netstandard1.2/System.Runtime.xml",
  8430. "ref/netstandard1.2/de/System.Runtime.xml",
  8431. "ref/netstandard1.2/es/System.Runtime.xml",
  8432. "ref/netstandard1.2/fr/System.Runtime.xml",
  8433. "ref/netstandard1.2/it/System.Runtime.xml",
  8434. "ref/netstandard1.2/ja/System.Runtime.xml",
  8435. "ref/netstandard1.2/ko/System.Runtime.xml",
  8436. "ref/netstandard1.2/ru/System.Runtime.xml",
  8437. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8438. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8439. "ref/netstandard1.3/System.Runtime.dll",
  8440. "ref/netstandard1.3/System.Runtime.xml",
  8441. "ref/netstandard1.3/de/System.Runtime.xml",
  8442. "ref/netstandard1.3/es/System.Runtime.xml",
  8443. "ref/netstandard1.3/fr/System.Runtime.xml",
  8444. "ref/netstandard1.3/it/System.Runtime.xml",
  8445. "ref/netstandard1.3/ja/System.Runtime.xml",
  8446. "ref/netstandard1.3/ko/System.Runtime.xml",
  8447. "ref/netstandard1.3/ru/System.Runtime.xml",
  8448. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8449. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8450. "ref/netstandard1.5/System.Runtime.dll",
  8451. "ref/netstandard1.5/System.Runtime.xml",
  8452. "ref/netstandard1.5/de/System.Runtime.xml",
  8453. "ref/netstandard1.5/es/System.Runtime.xml",
  8454. "ref/netstandard1.5/fr/System.Runtime.xml",
  8455. "ref/netstandard1.5/it/System.Runtime.xml",
  8456. "ref/netstandard1.5/ja/System.Runtime.xml",
  8457. "ref/netstandard1.5/ko/System.Runtime.xml",
  8458. "ref/netstandard1.5/ru/System.Runtime.xml",
  8459. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8460. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8461. "ref/portable-net45+win8+wp80+wpa81/_._",
  8462. "ref/win8/_._",
  8463. "ref/wp80/_._",
  8464. "ref/wpa81/_._",
  8465. "ref/xamarinios10/_._",
  8466. "ref/xamarinmac20/_._",
  8467. "ref/xamarintvos10/_._",
  8468. "ref/xamarinwatchos10/_._",
  8469. "system.runtime.4.3.0.nupkg.sha512",
  8470. "system.runtime.nuspec"
  8471. ]
  8472. },
  8473. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  8474. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  8475. "type": "package",
  8476. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  8477. "files": [
  8478. ".nupkg.metadata",
  8479. ".signature.p7s",
  8480. "Icon.png",
  8481. "LICENSE.TXT",
  8482. "THIRD-PARTY-NOTICES.TXT",
  8483. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  8484. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  8485. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8486. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8487. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8488. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8489. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8490. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8491. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8492. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8493. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8494. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8495. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8496. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8497. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  8498. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  8499. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  8500. "system.runtime.compilerservices.unsafe.nuspec",
  8501. "useSharedDesignerContext.txt",
  8502. "version.txt"
  8503. ]
  8504. },
  8505. "System.Runtime.Extensions/4.3.0": {
  8506. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8507. "type": "package",
  8508. "path": "system.runtime.extensions/4.3.0",
  8509. "files": [
  8510. ".nupkg.metadata",
  8511. ".signature.p7s",
  8512. "ThirdPartyNotices.txt",
  8513. "dotnet_library_license.txt",
  8514. "lib/MonoAndroid10/_._",
  8515. "lib/MonoTouch10/_._",
  8516. "lib/net45/_._",
  8517. "lib/net462/System.Runtime.Extensions.dll",
  8518. "lib/portable-net45+win8+wp8+wpa81/_._",
  8519. "lib/win8/_._",
  8520. "lib/wp80/_._",
  8521. "lib/wpa81/_._",
  8522. "lib/xamarinios10/_._",
  8523. "lib/xamarinmac20/_._",
  8524. "lib/xamarintvos10/_._",
  8525. "lib/xamarinwatchos10/_._",
  8526. "ref/MonoAndroid10/_._",
  8527. "ref/MonoTouch10/_._",
  8528. "ref/net45/_._",
  8529. "ref/net462/System.Runtime.Extensions.dll",
  8530. "ref/netcore50/System.Runtime.Extensions.dll",
  8531. "ref/netcore50/System.Runtime.Extensions.xml",
  8532. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8533. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8534. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8535. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8536. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8537. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8538. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8539. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8540. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8541. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8542. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8543. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8544. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8545. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8546. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8547. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8548. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8549. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8550. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8551. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8552. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8553. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8554. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8555. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8556. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8557. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8558. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8559. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8560. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8561. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8562. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8563. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8564. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8565. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8566. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8567. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8568. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8569. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8570. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8571. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8572. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8573. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8574. "ref/portable-net45+win8+wp8+wpa81/_._",
  8575. "ref/win8/_._",
  8576. "ref/wp80/_._",
  8577. "ref/wpa81/_._",
  8578. "ref/xamarinios10/_._",
  8579. "ref/xamarinmac20/_._",
  8580. "ref/xamarintvos10/_._",
  8581. "ref/xamarinwatchos10/_._",
  8582. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8583. "system.runtime.extensions.nuspec"
  8584. ]
  8585. },
  8586. "System.Runtime.Handles/4.3.0": {
  8587. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8588. "type": "package",
  8589. "path": "system.runtime.handles/4.3.0",
  8590. "files": [
  8591. ".nupkg.metadata",
  8592. ".signature.p7s",
  8593. "ThirdPartyNotices.txt",
  8594. "dotnet_library_license.txt",
  8595. "lib/MonoAndroid10/_._",
  8596. "lib/MonoTouch10/_._",
  8597. "lib/net46/_._",
  8598. "lib/xamarinios10/_._",
  8599. "lib/xamarinmac20/_._",
  8600. "lib/xamarintvos10/_._",
  8601. "lib/xamarinwatchos10/_._",
  8602. "ref/MonoAndroid10/_._",
  8603. "ref/MonoTouch10/_._",
  8604. "ref/net46/_._",
  8605. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8606. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8607. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8608. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8609. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8610. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8611. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8612. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8613. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8614. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8615. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8616. "ref/xamarinios10/_._",
  8617. "ref/xamarinmac20/_._",
  8618. "ref/xamarintvos10/_._",
  8619. "ref/xamarinwatchos10/_._",
  8620. "system.runtime.handles.4.3.0.nupkg.sha512",
  8621. "system.runtime.handles.nuspec"
  8622. ]
  8623. },
  8624. "System.Runtime.InteropServices/4.3.0": {
  8625. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8626. "type": "package",
  8627. "path": "system.runtime.interopservices/4.3.0",
  8628. "files": [
  8629. ".nupkg.metadata",
  8630. ".signature.p7s",
  8631. "ThirdPartyNotices.txt",
  8632. "dotnet_library_license.txt",
  8633. "lib/MonoAndroid10/_._",
  8634. "lib/MonoTouch10/_._",
  8635. "lib/net45/_._",
  8636. "lib/net462/System.Runtime.InteropServices.dll",
  8637. "lib/net463/System.Runtime.InteropServices.dll",
  8638. "lib/portable-net45+win8+wpa81/_._",
  8639. "lib/win8/_._",
  8640. "lib/wpa81/_._",
  8641. "lib/xamarinios10/_._",
  8642. "lib/xamarinmac20/_._",
  8643. "lib/xamarintvos10/_._",
  8644. "lib/xamarinwatchos10/_._",
  8645. "ref/MonoAndroid10/_._",
  8646. "ref/MonoTouch10/_._",
  8647. "ref/net45/_._",
  8648. "ref/net462/System.Runtime.InteropServices.dll",
  8649. "ref/net463/System.Runtime.InteropServices.dll",
  8650. "ref/netcore50/System.Runtime.InteropServices.dll",
  8651. "ref/netcore50/System.Runtime.InteropServices.xml",
  8652. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8653. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8654. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8655. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8656. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8657. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8658. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8659. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8660. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8661. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8662. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8663. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8664. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8665. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8666. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8667. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8668. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8669. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8670. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8671. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8672. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8673. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8674. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8675. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8676. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8677. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8678. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8679. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8680. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8681. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8682. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8683. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8684. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8685. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8686. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8687. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8688. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8689. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8690. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8691. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8692. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8693. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8694. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8695. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8696. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8697. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8698. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8699. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8700. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8701. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8702. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8703. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8704. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8705. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8706. "ref/portable-net45+win8+wpa81/_._",
  8707. "ref/win8/_._",
  8708. "ref/wpa81/_._",
  8709. "ref/xamarinios10/_._",
  8710. "ref/xamarinmac20/_._",
  8711. "ref/xamarintvos10/_._",
  8712. "ref/xamarinwatchos10/_._",
  8713. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8714. "system.runtime.interopservices.nuspec"
  8715. ]
  8716. },
  8717. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8718. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8719. "type": "package",
  8720. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8721. "files": [
  8722. ".nupkg.metadata",
  8723. ".signature.p7s",
  8724. "ThirdPartyNotices.txt",
  8725. "dotnet_library_license.txt",
  8726. "lib/MonoAndroid10/_._",
  8727. "lib/MonoTouch10/_._",
  8728. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8729. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8730. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8731. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8732. "lib/xamarinios10/_._",
  8733. "lib/xamarinmac20/_._",
  8734. "lib/xamarintvos10/_._",
  8735. "lib/xamarinwatchos10/_._",
  8736. "ref/MonoAndroid10/_._",
  8737. "ref/MonoTouch10/_._",
  8738. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8739. "ref/xamarinios10/_._",
  8740. "ref/xamarinmac20/_._",
  8741. "ref/xamarintvos10/_._",
  8742. "ref/xamarinwatchos10/_._",
  8743. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8744. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8745. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8746. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8747. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8748. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8749. "system.runtime.interopservices.runtimeinformation.nuspec"
  8750. ]
  8751. },
  8752. "System.Runtime.Numerics/4.3.0": {
  8753. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8754. "type": "package",
  8755. "path": "system.runtime.numerics/4.3.0",
  8756. "files": [
  8757. ".nupkg.metadata",
  8758. ".signature.p7s",
  8759. "ThirdPartyNotices.txt",
  8760. "dotnet_library_license.txt",
  8761. "lib/MonoAndroid10/_._",
  8762. "lib/MonoTouch10/_._",
  8763. "lib/net45/_._",
  8764. "lib/netcore50/System.Runtime.Numerics.dll",
  8765. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8766. "lib/portable-net45+win8+wpa81/_._",
  8767. "lib/win8/_._",
  8768. "lib/wpa81/_._",
  8769. "lib/xamarinios10/_._",
  8770. "lib/xamarinmac20/_._",
  8771. "lib/xamarintvos10/_._",
  8772. "lib/xamarinwatchos10/_._",
  8773. "ref/MonoAndroid10/_._",
  8774. "ref/MonoTouch10/_._",
  8775. "ref/net45/_._",
  8776. "ref/netcore50/System.Runtime.Numerics.dll",
  8777. "ref/netcore50/System.Runtime.Numerics.xml",
  8778. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8779. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8780. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8781. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8782. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8783. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8784. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8785. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8786. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8787. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8788. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8789. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8790. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8791. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8792. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8793. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8794. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8795. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8796. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8797. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8798. "ref/portable-net45+win8+wpa81/_._",
  8799. "ref/win8/_._",
  8800. "ref/wpa81/_._",
  8801. "ref/xamarinios10/_._",
  8802. "ref/xamarinmac20/_._",
  8803. "ref/xamarintvos10/_._",
  8804. "ref/xamarinwatchos10/_._",
  8805. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8806. "system.runtime.numerics.nuspec"
  8807. ]
  8808. },
  8809. "System.Security.AccessControl/6.0.0": {
  8810. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  8811. "type": "package",
  8812. "path": "system.security.accesscontrol/6.0.0",
  8813. "files": [
  8814. ".nupkg.metadata",
  8815. ".signature.p7s",
  8816. "Icon.png",
  8817. "LICENSE.TXT",
  8818. "THIRD-PARTY-NOTICES.TXT",
  8819. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  8820. "buildTransitive/netcoreapp3.1/_._",
  8821. "lib/net461/System.Security.AccessControl.dll",
  8822. "lib/net461/System.Security.AccessControl.xml",
  8823. "lib/net6.0/System.Security.AccessControl.dll",
  8824. "lib/net6.0/System.Security.AccessControl.xml",
  8825. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8826. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8827. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8828. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8829. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  8830. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  8831. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  8832. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  8833. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  8834. "system.security.accesscontrol.nuspec",
  8835. "useSharedDesignerContext.txt"
  8836. ]
  8837. },
  8838. "System.Security.Claims/4.3.0": {
  8839. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  8840. "type": "package",
  8841. "path": "system.security.claims/4.3.0",
  8842. "files": [
  8843. ".nupkg.metadata",
  8844. ".signature.p7s",
  8845. "ThirdPartyNotices.txt",
  8846. "dotnet_library_license.txt",
  8847. "lib/MonoAndroid10/_._",
  8848. "lib/MonoTouch10/_._",
  8849. "lib/net46/System.Security.Claims.dll",
  8850. "lib/netstandard1.3/System.Security.Claims.dll",
  8851. "lib/xamarinios10/_._",
  8852. "lib/xamarinmac20/_._",
  8853. "lib/xamarintvos10/_._",
  8854. "lib/xamarinwatchos10/_._",
  8855. "ref/MonoAndroid10/_._",
  8856. "ref/MonoTouch10/_._",
  8857. "ref/net46/System.Security.Claims.dll",
  8858. "ref/netstandard1.3/System.Security.Claims.dll",
  8859. "ref/netstandard1.3/System.Security.Claims.xml",
  8860. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8861. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8862. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8863. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8864. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8865. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8866. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8867. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8868. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8869. "ref/xamarinios10/_._",
  8870. "ref/xamarinmac20/_._",
  8871. "ref/xamarintvos10/_._",
  8872. "ref/xamarinwatchos10/_._",
  8873. "system.security.claims.4.3.0.nupkg.sha512",
  8874. "system.security.claims.nuspec"
  8875. ]
  8876. },
  8877. "System.Security.Cryptography.Algorithms/4.3.0": {
  8878. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8879. "type": "package",
  8880. "path": "system.security.cryptography.algorithms/4.3.0",
  8881. "files": [
  8882. ".nupkg.metadata",
  8883. ".signature.p7s",
  8884. "ThirdPartyNotices.txt",
  8885. "dotnet_library_license.txt",
  8886. "lib/MonoAndroid10/_._",
  8887. "lib/MonoTouch10/_._",
  8888. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8889. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8890. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8891. "lib/xamarinios10/_._",
  8892. "lib/xamarinmac20/_._",
  8893. "lib/xamarintvos10/_._",
  8894. "lib/xamarinwatchos10/_._",
  8895. "ref/MonoAndroid10/_._",
  8896. "ref/MonoTouch10/_._",
  8897. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8898. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8899. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8900. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8901. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8902. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8903. "ref/xamarinios10/_._",
  8904. "ref/xamarinmac20/_._",
  8905. "ref/xamarintvos10/_._",
  8906. "ref/xamarinwatchos10/_._",
  8907. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8908. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8909. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8910. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8911. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8912. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8913. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8914. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8915. "system.security.cryptography.algorithms.nuspec"
  8916. ]
  8917. },
  8918. "System.Security.Cryptography.Cng/5.0.0": {
  8919. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  8920. "type": "package",
  8921. "path": "system.security.cryptography.cng/5.0.0",
  8922. "files": [
  8923. ".nupkg.metadata",
  8924. ".signature.p7s",
  8925. "Icon.png",
  8926. "LICENSE.TXT",
  8927. "THIRD-PARTY-NOTICES.TXT",
  8928. "lib/MonoAndroid10/_._",
  8929. "lib/MonoTouch10/_._",
  8930. "lib/net46/System.Security.Cryptography.Cng.dll",
  8931. "lib/net461/System.Security.Cryptography.Cng.dll",
  8932. "lib/net461/System.Security.Cryptography.Cng.xml",
  8933. "lib/net462/System.Security.Cryptography.Cng.dll",
  8934. "lib/net462/System.Security.Cryptography.Cng.xml",
  8935. "lib/net47/System.Security.Cryptography.Cng.dll",
  8936. "lib/net47/System.Security.Cryptography.Cng.xml",
  8937. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8938. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8939. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8940. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8941. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8942. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8943. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8944. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8945. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8946. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8947. "lib/uap10.0.16299/_._",
  8948. "lib/xamarinios10/_._",
  8949. "lib/xamarinmac20/_._",
  8950. "lib/xamarintvos10/_._",
  8951. "lib/xamarinwatchos10/_._",
  8952. "ref/MonoAndroid10/_._",
  8953. "ref/MonoTouch10/_._",
  8954. "ref/net46/System.Security.Cryptography.Cng.dll",
  8955. "ref/net461/System.Security.Cryptography.Cng.dll",
  8956. "ref/net461/System.Security.Cryptography.Cng.xml",
  8957. "ref/net462/System.Security.Cryptography.Cng.dll",
  8958. "ref/net462/System.Security.Cryptography.Cng.xml",
  8959. "ref/net47/System.Security.Cryptography.Cng.dll",
  8960. "ref/net47/System.Security.Cryptography.Cng.xml",
  8961. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8962. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8963. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8964. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8965. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8966. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8967. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8968. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8969. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8970. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8971. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8972. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8973. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8974. "ref/uap10.0.16299/_._",
  8975. "ref/xamarinios10/_._",
  8976. "ref/xamarinmac20/_._",
  8977. "ref/xamarintvos10/_._",
  8978. "ref/xamarinwatchos10/_._",
  8979. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8980. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8981. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  8982. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8983. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  8984. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8985. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  8986. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8987. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8988. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8989. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8990. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8991. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8992. "runtimes/win/lib/uap10.0.16299/_._",
  8993. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  8994. "system.security.cryptography.cng.nuspec",
  8995. "useSharedDesignerContext.txt",
  8996. "version.txt"
  8997. ]
  8998. },
  8999. "System.Security.Cryptography.Csp/4.3.0": {
  9000. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  9001. "type": "package",
  9002. "path": "system.security.cryptography.csp/4.3.0",
  9003. "files": [
  9004. ".nupkg.metadata",
  9005. ".signature.p7s",
  9006. "ThirdPartyNotices.txt",
  9007. "dotnet_library_license.txt",
  9008. "lib/MonoAndroid10/_._",
  9009. "lib/MonoTouch10/_._",
  9010. "lib/net46/System.Security.Cryptography.Csp.dll",
  9011. "lib/xamarinios10/_._",
  9012. "lib/xamarinmac20/_._",
  9013. "lib/xamarintvos10/_._",
  9014. "lib/xamarinwatchos10/_._",
  9015. "ref/MonoAndroid10/_._",
  9016. "ref/MonoTouch10/_._",
  9017. "ref/net46/System.Security.Cryptography.Csp.dll",
  9018. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9019. "ref/xamarinios10/_._",
  9020. "ref/xamarinmac20/_._",
  9021. "ref/xamarintvos10/_._",
  9022. "ref/xamarinwatchos10/_._",
  9023. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9024. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9025. "runtimes/win/lib/netcore50/_._",
  9026. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9027. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9028. "system.security.cryptography.csp.nuspec"
  9029. ]
  9030. },
  9031. "System.Security.Cryptography.Encoding/4.3.0": {
  9032. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9033. "type": "package",
  9034. "path": "system.security.cryptography.encoding/4.3.0",
  9035. "files": [
  9036. ".nupkg.metadata",
  9037. ".signature.p7s",
  9038. "ThirdPartyNotices.txt",
  9039. "dotnet_library_license.txt",
  9040. "lib/MonoAndroid10/_._",
  9041. "lib/MonoTouch10/_._",
  9042. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9043. "lib/xamarinios10/_._",
  9044. "lib/xamarinmac20/_._",
  9045. "lib/xamarintvos10/_._",
  9046. "lib/xamarinwatchos10/_._",
  9047. "ref/MonoAndroid10/_._",
  9048. "ref/MonoTouch10/_._",
  9049. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9050. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9051. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9052. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9053. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9054. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9055. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9056. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9057. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9058. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9059. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9060. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9061. "ref/xamarinios10/_._",
  9062. "ref/xamarinmac20/_._",
  9063. "ref/xamarintvos10/_._",
  9064. "ref/xamarinwatchos10/_._",
  9065. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9066. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9067. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9068. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9069. "system.security.cryptography.encoding.nuspec"
  9070. ]
  9071. },
  9072. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9073. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9074. "type": "package",
  9075. "path": "system.security.cryptography.openssl/4.3.0",
  9076. "files": [
  9077. ".nupkg.metadata",
  9078. ".signature.p7s",
  9079. "ThirdPartyNotices.txt",
  9080. "dotnet_library_license.txt",
  9081. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9082. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9083. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9084. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9085. "system.security.cryptography.openssl.nuspec"
  9086. ]
  9087. },
  9088. "System.Security.Cryptography.Pkcs/6.0.1": {
  9089. "sha512": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==",
  9090. "type": "package",
  9091. "path": "system.security.cryptography.pkcs/6.0.1",
  9092. "files": [
  9093. ".nupkg.metadata",
  9094. ".signature.p7s",
  9095. "Icon.png",
  9096. "LICENSE.TXT",
  9097. "THIRD-PARTY-NOTICES.TXT",
  9098. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  9099. "buildTransitive/netcoreapp3.1/_._",
  9100. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  9101. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  9102. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  9103. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  9104. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  9105. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  9106. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9107. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9108. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9109. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9110. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  9111. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  9112. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  9113. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  9114. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  9115. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  9116. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  9117. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  9118. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  9119. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  9120. "system.security.cryptography.pkcs.6.0.1.nupkg.sha512",
  9121. "system.security.cryptography.pkcs.nuspec",
  9122. "useSharedDesignerContext.txt"
  9123. ]
  9124. },
  9125. "System.Security.Cryptography.Primitives/4.3.0": {
  9126. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9127. "type": "package",
  9128. "path": "system.security.cryptography.primitives/4.3.0",
  9129. "files": [
  9130. ".nupkg.metadata",
  9131. ".signature.p7s",
  9132. "ThirdPartyNotices.txt",
  9133. "dotnet_library_license.txt",
  9134. "lib/MonoAndroid10/_._",
  9135. "lib/MonoTouch10/_._",
  9136. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9137. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9138. "lib/xamarinios10/_._",
  9139. "lib/xamarinmac20/_._",
  9140. "lib/xamarintvos10/_._",
  9141. "lib/xamarinwatchos10/_._",
  9142. "ref/MonoAndroid10/_._",
  9143. "ref/MonoTouch10/_._",
  9144. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9145. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9146. "ref/xamarinios10/_._",
  9147. "ref/xamarinmac20/_._",
  9148. "ref/xamarintvos10/_._",
  9149. "ref/xamarinwatchos10/_._",
  9150. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9151. "system.security.cryptography.primitives.nuspec"
  9152. ]
  9153. },
  9154. "System.Security.Cryptography.ProtectedData/6.0.0": {
  9155. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  9156. "type": "package",
  9157. "path": "system.security.cryptography.protecteddata/6.0.0",
  9158. "files": [
  9159. ".nupkg.metadata",
  9160. ".signature.p7s",
  9161. "Icon.png",
  9162. "LICENSE.TXT",
  9163. "THIRD-PARTY-NOTICES.TXT",
  9164. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  9165. "buildTransitive/netcoreapp3.1/_._",
  9166. "lib/MonoAndroid10/_._",
  9167. "lib/MonoTouch10/_._",
  9168. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9169. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9170. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  9171. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  9172. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9173. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9174. "lib/xamarinios10/_._",
  9175. "lib/xamarinmac20/_._",
  9176. "lib/xamarintvos10/_._",
  9177. "lib/xamarinwatchos10/_._",
  9178. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9179. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9180. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  9181. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  9182. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9183. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9184. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  9185. "system.security.cryptography.protecteddata.nuspec",
  9186. "useSharedDesignerContext.txt"
  9187. ]
  9188. },
  9189. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9190. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9191. "type": "package",
  9192. "path": "system.security.cryptography.x509certificates/4.3.0",
  9193. "files": [
  9194. ".nupkg.metadata",
  9195. ".signature.p7s",
  9196. "ThirdPartyNotices.txt",
  9197. "dotnet_library_license.txt",
  9198. "lib/MonoAndroid10/_._",
  9199. "lib/MonoTouch10/_._",
  9200. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9201. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9202. "lib/xamarinios10/_._",
  9203. "lib/xamarinmac20/_._",
  9204. "lib/xamarintvos10/_._",
  9205. "lib/xamarinwatchos10/_._",
  9206. "ref/MonoAndroid10/_._",
  9207. "ref/MonoTouch10/_._",
  9208. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9209. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9210. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9211. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9212. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9213. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9214. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9215. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9216. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9217. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9218. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9219. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9220. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9221. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9222. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9223. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9224. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9225. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9226. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9227. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9228. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9229. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9230. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9231. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9232. "ref/xamarinios10/_._",
  9233. "ref/xamarinmac20/_._",
  9234. "ref/xamarintvos10/_._",
  9235. "ref/xamarinwatchos10/_._",
  9236. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9237. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9238. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9239. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9240. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9241. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9242. "system.security.cryptography.x509certificates.nuspec"
  9243. ]
  9244. },
  9245. "System.Security.Cryptography.Xml/6.0.1": {
  9246. "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==",
  9247. "type": "package",
  9248. "path": "system.security.cryptography.xml/6.0.1",
  9249. "files": [
  9250. ".nupkg.metadata",
  9251. ".signature.p7s",
  9252. "Icon.png",
  9253. "LICENSE.TXT",
  9254. "THIRD-PARTY-NOTICES.TXT",
  9255. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
  9256. "buildTransitive/netcoreapp3.1/_._",
  9257. "lib/net461/System.Security.Cryptography.Xml.dll",
  9258. "lib/net461/System.Security.Cryptography.Xml.xml",
  9259. "lib/net6.0/System.Security.Cryptography.Xml.dll",
  9260. "lib/net6.0/System.Security.Cryptography.Xml.xml",
  9261. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  9262. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  9263. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll",
  9264. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml",
  9265. "system.security.cryptography.xml.6.0.1.nupkg.sha512",
  9266. "system.security.cryptography.xml.nuspec",
  9267. "useSharedDesignerContext.txt"
  9268. ]
  9269. },
  9270. "System.Security.Permissions/6.0.0": {
  9271. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  9272. "type": "package",
  9273. "path": "system.security.permissions/6.0.0",
  9274. "files": [
  9275. ".nupkg.metadata",
  9276. ".signature.p7s",
  9277. "Icon.png",
  9278. "LICENSE.TXT",
  9279. "THIRD-PARTY-NOTICES.TXT",
  9280. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  9281. "buildTransitive/netcoreapp3.1/_._",
  9282. "lib/net461/System.Security.Permissions.dll",
  9283. "lib/net461/System.Security.Permissions.xml",
  9284. "lib/net5.0/System.Security.Permissions.dll",
  9285. "lib/net5.0/System.Security.Permissions.xml",
  9286. "lib/net6.0/System.Security.Permissions.dll",
  9287. "lib/net6.0/System.Security.Permissions.xml",
  9288. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  9289. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  9290. "lib/netstandard2.0/System.Security.Permissions.dll",
  9291. "lib/netstandard2.0/System.Security.Permissions.xml",
  9292. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  9293. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  9294. "system.security.permissions.6.0.0.nupkg.sha512",
  9295. "system.security.permissions.nuspec",
  9296. "useSharedDesignerContext.txt"
  9297. ]
  9298. },
  9299. "System.Security.Principal/4.3.0": {
  9300. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  9301. "type": "package",
  9302. "path": "system.security.principal/4.3.0",
  9303. "files": [
  9304. ".nupkg.metadata",
  9305. ".signature.p7s",
  9306. "ThirdPartyNotices.txt",
  9307. "dotnet_library_license.txt",
  9308. "lib/MonoAndroid10/_._",
  9309. "lib/MonoTouch10/_._",
  9310. "lib/net45/_._",
  9311. "lib/netcore50/System.Security.Principal.dll",
  9312. "lib/netstandard1.0/System.Security.Principal.dll",
  9313. "lib/portable-net45+win8+wp8+wpa81/_._",
  9314. "lib/win8/_._",
  9315. "lib/wp80/_._",
  9316. "lib/wpa81/_._",
  9317. "lib/xamarinios10/_._",
  9318. "lib/xamarinmac20/_._",
  9319. "lib/xamarintvos10/_._",
  9320. "lib/xamarinwatchos10/_._",
  9321. "ref/MonoAndroid10/_._",
  9322. "ref/MonoTouch10/_._",
  9323. "ref/net45/_._",
  9324. "ref/netcore50/System.Security.Principal.dll",
  9325. "ref/netcore50/System.Security.Principal.xml",
  9326. "ref/netcore50/de/System.Security.Principal.xml",
  9327. "ref/netcore50/es/System.Security.Principal.xml",
  9328. "ref/netcore50/fr/System.Security.Principal.xml",
  9329. "ref/netcore50/it/System.Security.Principal.xml",
  9330. "ref/netcore50/ja/System.Security.Principal.xml",
  9331. "ref/netcore50/ko/System.Security.Principal.xml",
  9332. "ref/netcore50/ru/System.Security.Principal.xml",
  9333. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9334. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9335. "ref/netstandard1.0/System.Security.Principal.dll",
  9336. "ref/netstandard1.0/System.Security.Principal.xml",
  9337. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9338. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9339. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9340. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9341. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9342. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9343. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9344. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9345. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9346. "ref/portable-net45+win8+wp8+wpa81/_._",
  9347. "ref/win8/_._",
  9348. "ref/wp80/_._",
  9349. "ref/wpa81/_._",
  9350. "ref/xamarinios10/_._",
  9351. "ref/xamarinmac20/_._",
  9352. "ref/xamarintvos10/_._",
  9353. "ref/xamarinwatchos10/_._",
  9354. "system.security.principal.4.3.0.nupkg.sha512",
  9355. "system.security.principal.nuspec"
  9356. ]
  9357. },
  9358. "System.Security.Principal.Windows/5.0.0": {
  9359. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  9360. "type": "package",
  9361. "path": "system.security.principal.windows/5.0.0",
  9362. "files": [
  9363. ".nupkg.metadata",
  9364. ".signature.p7s",
  9365. "Icon.png",
  9366. "LICENSE.TXT",
  9367. "THIRD-PARTY-NOTICES.TXT",
  9368. "lib/net46/System.Security.Principal.Windows.dll",
  9369. "lib/net461/System.Security.Principal.Windows.dll",
  9370. "lib/net461/System.Security.Principal.Windows.xml",
  9371. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9372. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9373. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9374. "lib/uap10.0.16299/_._",
  9375. "ref/net46/System.Security.Principal.Windows.dll",
  9376. "ref/net461/System.Security.Principal.Windows.dll",
  9377. "ref/net461/System.Security.Principal.Windows.xml",
  9378. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9379. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9380. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9381. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9382. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9383. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9384. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9385. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9386. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9387. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9388. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9389. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9390. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9391. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9392. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9393. "ref/uap10.0.16299/_._",
  9394. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9395. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9396. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9397. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9398. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9399. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9400. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9401. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9402. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9403. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9404. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9405. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9406. "runtimes/win/lib/uap10.0.16299/_._",
  9407. "system.security.principal.windows.5.0.0.nupkg.sha512",
  9408. "system.security.principal.windows.nuspec",
  9409. "useSharedDesignerContext.txt",
  9410. "version.txt"
  9411. ]
  9412. },
  9413. "System.Text.Encoding/4.3.0": {
  9414. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9415. "type": "package",
  9416. "path": "system.text.encoding/4.3.0",
  9417. "files": [
  9418. ".nupkg.metadata",
  9419. ".signature.p7s",
  9420. "ThirdPartyNotices.txt",
  9421. "dotnet_library_license.txt",
  9422. "lib/MonoAndroid10/_._",
  9423. "lib/MonoTouch10/_._",
  9424. "lib/net45/_._",
  9425. "lib/portable-net45+win8+wp8+wpa81/_._",
  9426. "lib/win8/_._",
  9427. "lib/wp80/_._",
  9428. "lib/wpa81/_._",
  9429. "lib/xamarinios10/_._",
  9430. "lib/xamarinmac20/_._",
  9431. "lib/xamarintvos10/_._",
  9432. "lib/xamarinwatchos10/_._",
  9433. "ref/MonoAndroid10/_._",
  9434. "ref/MonoTouch10/_._",
  9435. "ref/net45/_._",
  9436. "ref/netcore50/System.Text.Encoding.dll",
  9437. "ref/netcore50/System.Text.Encoding.xml",
  9438. "ref/netcore50/de/System.Text.Encoding.xml",
  9439. "ref/netcore50/es/System.Text.Encoding.xml",
  9440. "ref/netcore50/fr/System.Text.Encoding.xml",
  9441. "ref/netcore50/it/System.Text.Encoding.xml",
  9442. "ref/netcore50/ja/System.Text.Encoding.xml",
  9443. "ref/netcore50/ko/System.Text.Encoding.xml",
  9444. "ref/netcore50/ru/System.Text.Encoding.xml",
  9445. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9446. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9447. "ref/netstandard1.0/System.Text.Encoding.dll",
  9448. "ref/netstandard1.0/System.Text.Encoding.xml",
  9449. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9450. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9451. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9452. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9453. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9454. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9455. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9456. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9457. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9458. "ref/netstandard1.3/System.Text.Encoding.dll",
  9459. "ref/netstandard1.3/System.Text.Encoding.xml",
  9460. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9461. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9462. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9463. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9464. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9465. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9466. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9467. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9468. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9469. "ref/portable-net45+win8+wp8+wpa81/_._",
  9470. "ref/win8/_._",
  9471. "ref/wp80/_._",
  9472. "ref/wpa81/_._",
  9473. "ref/xamarinios10/_._",
  9474. "ref/xamarinmac20/_._",
  9475. "ref/xamarintvos10/_._",
  9476. "ref/xamarinwatchos10/_._",
  9477. "system.text.encoding.4.3.0.nupkg.sha512",
  9478. "system.text.encoding.nuspec"
  9479. ]
  9480. },
  9481. "System.Text.Encoding.CodePages/5.0.0": {
  9482. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  9483. "type": "package",
  9484. "path": "system.text.encoding.codepages/5.0.0",
  9485. "files": [
  9486. ".nupkg.metadata",
  9487. ".signature.p7s",
  9488. "Icon.png",
  9489. "LICENSE.TXT",
  9490. "THIRD-PARTY-NOTICES.TXT",
  9491. "lib/MonoAndroid10/_._",
  9492. "lib/MonoTouch10/_._",
  9493. "lib/net46/System.Text.Encoding.CodePages.dll",
  9494. "lib/net461/System.Text.Encoding.CodePages.dll",
  9495. "lib/net461/System.Text.Encoding.CodePages.xml",
  9496. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9497. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9498. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9499. "lib/xamarinios10/_._",
  9500. "lib/xamarinmac20/_._",
  9501. "lib/xamarintvos10/_._",
  9502. "lib/xamarinwatchos10/_._",
  9503. "ref/MonoAndroid10/_._",
  9504. "ref/MonoTouch10/_._",
  9505. "ref/xamarinios10/_._",
  9506. "ref/xamarinmac20/_._",
  9507. "ref/xamarintvos10/_._",
  9508. "ref/xamarinwatchos10/_._",
  9509. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9510. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9511. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9512. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9513. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9514. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9515. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9516. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  9517. "system.text.encoding.codepages.nuspec",
  9518. "useSharedDesignerContext.txt",
  9519. "version.txt"
  9520. ]
  9521. },
  9522. "System.Text.Encoding.Extensions/4.3.0": {
  9523. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9524. "type": "package",
  9525. "path": "system.text.encoding.extensions/4.3.0",
  9526. "files": [
  9527. ".nupkg.metadata",
  9528. ".signature.p7s",
  9529. "ThirdPartyNotices.txt",
  9530. "dotnet_library_license.txt",
  9531. "lib/MonoAndroid10/_._",
  9532. "lib/MonoTouch10/_._",
  9533. "lib/net45/_._",
  9534. "lib/portable-net45+win8+wp8+wpa81/_._",
  9535. "lib/win8/_._",
  9536. "lib/wp80/_._",
  9537. "lib/wpa81/_._",
  9538. "lib/xamarinios10/_._",
  9539. "lib/xamarinmac20/_._",
  9540. "lib/xamarintvos10/_._",
  9541. "lib/xamarinwatchos10/_._",
  9542. "ref/MonoAndroid10/_._",
  9543. "ref/MonoTouch10/_._",
  9544. "ref/net45/_._",
  9545. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9546. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9547. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9548. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9549. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9550. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9551. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9552. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9553. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9554. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9555. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9556. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9557. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9558. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9559. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9560. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9561. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9562. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9563. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9564. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9565. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9566. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9567. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9568. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9569. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9570. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9571. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9572. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9573. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9574. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9575. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9576. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9577. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9578. "ref/portable-net45+win8+wp8+wpa81/_._",
  9579. "ref/win8/_._",
  9580. "ref/wp80/_._",
  9581. "ref/wpa81/_._",
  9582. "ref/xamarinios10/_._",
  9583. "ref/xamarinmac20/_._",
  9584. "ref/xamarintvos10/_._",
  9585. "ref/xamarinwatchos10/_._",
  9586. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9587. "system.text.encoding.extensions.nuspec"
  9588. ]
  9589. },
  9590. "System.Text.Encodings.Web/4.5.0": {
  9591. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  9592. "type": "package",
  9593. "path": "system.text.encodings.web/4.5.0",
  9594. "files": [
  9595. ".nupkg.metadata",
  9596. ".signature.p7s",
  9597. "LICENSE.TXT",
  9598. "THIRD-PARTY-NOTICES.TXT",
  9599. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9600. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9601. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9602. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9603. "system.text.encodings.web.4.5.0.nupkg.sha512",
  9604. "system.text.encodings.web.nuspec",
  9605. "useSharedDesignerContext.txt",
  9606. "version.txt"
  9607. ]
  9608. },
  9609. "System.Text.RegularExpressions/4.3.0": {
  9610. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9611. "type": "package",
  9612. "path": "system.text.regularexpressions/4.3.0",
  9613. "files": [
  9614. ".nupkg.metadata",
  9615. ".signature.p7s",
  9616. "ThirdPartyNotices.txt",
  9617. "dotnet_library_license.txt",
  9618. "lib/MonoAndroid10/_._",
  9619. "lib/MonoTouch10/_._",
  9620. "lib/net45/_._",
  9621. "lib/net463/System.Text.RegularExpressions.dll",
  9622. "lib/netcore50/System.Text.RegularExpressions.dll",
  9623. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9624. "lib/portable-net45+win8+wp8+wpa81/_._",
  9625. "lib/win8/_._",
  9626. "lib/wp80/_._",
  9627. "lib/wpa81/_._",
  9628. "lib/xamarinios10/_._",
  9629. "lib/xamarinmac20/_._",
  9630. "lib/xamarintvos10/_._",
  9631. "lib/xamarinwatchos10/_._",
  9632. "ref/MonoAndroid10/_._",
  9633. "ref/MonoTouch10/_._",
  9634. "ref/net45/_._",
  9635. "ref/net463/System.Text.RegularExpressions.dll",
  9636. "ref/netcore50/System.Text.RegularExpressions.dll",
  9637. "ref/netcore50/System.Text.RegularExpressions.xml",
  9638. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9639. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9640. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9641. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9642. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9643. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9644. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9645. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9646. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9647. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9648. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9649. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9650. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9651. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9652. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9653. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9654. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9655. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9656. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9657. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9658. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9659. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9660. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9661. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9662. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9663. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9664. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9665. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9666. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9667. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9668. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9669. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9670. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9671. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9672. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9673. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9674. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9675. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9676. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9677. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9678. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9679. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9680. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9681. "ref/portable-net45+win8+wp8+wpa81/_._",
  9682. "ref/win8/_._",
  9683. "ref/wp80/_._",
  9684. "ref/wpa81/_._",
  9685. "ref/xamarinios10/_._",
  9686. "ref/xamarinmac20/_._",
  9687. "ref/xamarintvos10/_._",
  9688. "ref/xamarinwatchos10/_._",
  9689. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9690. "system.text.regularexpressions.nuspec"
  9691. ]
  9692. },
  9693. "System.Threading/4.3.0": {
  9694. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9695. "type": "package",
  9696. "path": "system.threading/4.3.0",
  9697. "files": [
  9698. ".nupkg.metadata",
  9699. ".signature.p7s",
  9700. "ThirdPartyNotices.txt",
  9701. "dotnet_library_license.txt",
  9702. "lib/MonoAndroid10/_._",
  9703. "lib/MonoTouch10/_._",
  9704. "lib/net45/_._",
  9705. "lib/netcore50/System.Threading.dll",
  9706. "lib/netstandard1.3/System.Threading.dll",
  9707. "lib/portable-net45+win8+wp8+wpa81/_._",
  9708. "lib/win8/_._",
  9709. "lib/wp80/_._",
  9710. "lib/wpa81/_._",
  9711. "lib/xamarinios10/_._",
  9712. "lib/xamarinmac20/_._",
  9713. "lib/xamarintvos10/_._",
  9714. "lib/xamarinwatchos10/_._",
  9715. "ref/MonoAndroid10/_._",
  9716. "ref/MonoTouch10/_._",
  9717. "ref/net45/_._",
  9718. "ref/netcore50/System.Threading.dll",
  9719. "ref/netcore50/System.Threading.xml",
  9720. "ref/netcore50/de/System.Threading.xml",
  9721. "ref/netcore50/es/System.Threading.xml",
  9722. "ref/netcore50/fr/System.Threading.xml",
  9723. "ref/netcore50/it/System.Threading.xml",
  9724. "ref/netcore50/ja/System.Threading.xml",
  9725. "ref/netcore50/ko/System.Threading.xml",
  9726. "ref/netcore50/ru/System.Threading.xml",
  9727. "ref/netcore50/zh-hans/System.Threading.xml",
  9728. "ref/netcore50/zh-hant/System.Threading.xml",
  9729. "ref/netstandard1.0/System.Threading.dll",
  9730. "ref/netstandard1.0/System.Threading.xml",
  9731. "ref/netstandard1.0/de/System.Threading.xml",
  9732. "ref/netstandard1.0/es/System.Threading.xml",
  9733. "ref/netstandard1.0/fr/System.Threading.xml",
  9734. "ref/netstandard1.0/it/System.Threading.xml",
  9735. "ref/netstandard1.0/ja/System.Threading.xml",
  9736. "ref/netstandard1.0/ko/System.Threading.xml",
  9737. "ref/netstandard1.0/ru/System.Threading.xml",
  9738. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9739. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9740. "ref/netstandard1.3/System.Threading.dll",
  9741. "ref/netstandard1.3/System.Threading.xml",
  9742. "ref/netstandard1.3/de/System.Threading.xml",
  9743. "ref/netstandard1.3/es/System.Threading.xml",
  9744. "ref/netstandard1.3/fr/System.Threading.xml",
  9745. "ref/netstandard1.3/it/System.Threading.xml",
  9746. "ref/netstandard1.3/ja/System.Threading.xml",
  9747. "ref/netstandard1.3/ko/System.Threading.xml",
  9748. "ref/netstandard1.3/ru/System.Threading.xml",
  9749. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9750. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9751. "ref/portable-net45+win8+wp8+wpa81/_._",
  9752. "ref/win8/_._",
  9753. "ref/wp80/_._",
  9754. "ref/wpa81/_._",
  9755. "ref/xamarinios10/_._",
  9756. "ref/xamarinmac20/_._",
  9757. "ref/xamarintvos10/_._",
  9758. "ref/xamarinwatchos10/_._",
  9759. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9760. "system.threading.4.3.0.nupkg.sha512",
  9761. "system.threading.nuspec"
  9762. ]
  9763. },
  9764. "System.Threading.Channels/7.0.0": {
  9765. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  9766. "type": "package",
  9767. "path": "system.threading.channels/7.0.0",
  9768. "files": [
  9769. ".nupkg.metadata",
  9770. ".signature.p7s",
  9771. "Icon.png",
  9772. "LICENSE.TXT",
  9773. "THIRD-PARTY-NOTICES.TXT",
  9774. "buildTransitive/net461/System.Threading.Channels.targets",
  9775. "buildTransitive/net462/_._",
  9776. "buildTransitive/net6.0/_._",
  9777. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  9778. "lib/net462/System.Threading.Channels.dll",
  9779. "lib/net462/System.Threading.Channels.xml",
  9780. "lib/net6.0/System.Threading.Channels.dll",
  9781. "lib/net6.0/System.Threading.Channels.xml",
  9782. "lib/net7.0/System.Threading.Channels.dll",
  9783. "lib/net7.0/System.Threading.Channels.xml",
  9784. "lib/netstandard2.0/System.Threading.Channels.dll",
  9785. "lib/netstandard2.0/System.Threading.Channels.xml",
  9786. "lib/netstandard2.1/System.Threading.Channels.dll",
  9787. "lib/netstandard2.1/System.Threading.Channels.xml",
  9788. "system.threading.channels.7.0.0.nupkg.sha512",
  9789. "system.threading.channels.nuspec",
  9790. "useSharedDesignerContext.txt"
  9791. ]
  9792. },
  9793. "System.Threading.Tasks/4.3.0": {
  9794. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9795. "type": "package",
  9796. "path": "system.threading.tasks/4.3.0",
  9797. "files": [
  9798. ".nupkg.metadata",
  9799. ".signature.p7s",
  9800. "ThirdPartyNotices.txt",
  9801. "dotnet_library_license.txt",
  9802. "lib/MonoAndroid10/_._",
  9803. "lib/MonoTouch10/_._",
  9804. "lib/net45/_._",
  9805. "lib/portable-net45+win8+wp8+wpa81/_._",
  9806. "lib/win8/_._",
  9807. "lib/wp80/_._",
  9808. "lib/wpa81/_._",
  9809. "lib/xamarinios10/_._",
  9810. "lib/xamarinmac20/_._",
  9811. "lib/xamarintvos10/_._",
  9812. "lib/xamarinwatchos10/_._",
  9813. "ref/MonoAndroid10/_._",
  9814. "ref/MonoTouch10/_._",
  9815. "ref/net45/_._",
  9816. "ref/netcore50/System.Threading.Tasks.dll",
  9817. "ref/netcore50/System.Threading.Tasks.xml",
  9818. "ref/netcore50/de/System.Threading.Tasks.xml",
  9819. "ref/netcore50/es/System.Threading.Tasks.xml",
  9820. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9821. "ref/netcore50/it/System.Threading.Tasks.xml",
  9822. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9823. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9824. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9825. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9826. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9827. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9828. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9829. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9830. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9831. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9832. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9833. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9834. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9835. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9836. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9837. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9838. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9839. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9840. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9841. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9842. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9843. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9844. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9845. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9846. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9847. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9848. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9849. "ref/portable-net45+win8+wp8+wpa81/_._",
  9850. "ref/win8/_._",
  9851. "ref/wp80/_._",
  9852. "ref/wpa81/_._",
  9853. "ref/xamarinios10/_._",
  9854. "ref/xamarinmac20/_._",
  9855. "ref/xamarintvos10/_._",
  9856. "ref/xamarinwatchos10/_._",
  9857. "system.threading.tasks.4.3.0.nupkg.sha512",
  9858. "system.threading.tasks.nuspec"
  9859. ]
  9860. },
  9861. "System.Threading.Tasks.Extensions/4.3.0": {
  9862. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9863. "type": "package",
  9864. "path": "system.threading.tasks.extensions/4.3.0",
  9865. "files": [
  9866. ".nupkg.metadata",
  9867. ".signature.p7s",
  9868. "ThirdPartyNotices.txt",
  9869. "dotnet_library_license.txt",
  9870. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9871. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9872. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9873. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9874. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9875. "system.threading.tasks.extensions.nuspec"
  9876. ]
  9877. },
  9878. "System.Threading.Thread/4.3.0": {
  9879. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9880. "type": "package",
  9881. "path": "system.threading.thread/4.3.0",
  9882. "files": [
  9883. ".nupkg.metadata",
  9884. ".signature.p7s",
  9885. "ThirdPartyNotices.txt",
  9886. "dotnet_library_license.txt",
  9887. "lib/MonoAndroid10/_._",
  9888. "lib/MonoTouch10/_._",
  9889. "lib/net46/System.Threading.Thread.dll",
  9890. "lib/netcore50/_._",
  9891. "lib/netstandard1.3/System.Threading.Thread.dll",
  9892. "lib/xamarinios10/_._",
  9893. "lib/xamarinmac20/_._",
  9894. "lib/xamarintvos10/_._",
  9895. "lib/xamarinwatchos10/_._",
  9896. "ref/MonoAndroid10/_._",
  9897. "ref/MonoTouch10/_._",
  9898. "ref/net46/System.Threading.Thread.dll",
  9899. "ref/netstandard1.3/System.Threading.Thread.dll",
  9900. "ref/netstandard1.3/System.Threading.Thread.xml",
  9901. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9902. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9903. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9904. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9905. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9906. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9907. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9908. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9909. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9910. "ref/xamarinios10/_._",
  9911. "ref/xamarinmac20/_._",
  9912. "ref/xamarintvos10/_._",
  9913. "ref/xamarinwatchos10/_._",
  9914. "system.threading.thread.4.3.0.nupkg.sha512",
  9915. "system.threading.thread.nuspec"
  9916. ]
  9917. },
  9918. "System.Threading.ThreadPool/4.3.0": {
  9919. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  9920. "type": "package",
  9921. "path": "system.threading.threadpool/4.3.0",
  9922. "files": [
  9923. ".nupkg.metadata",
  9924. ".signature.p7s",
  9925. "ThirdPartyNotices.txt",
  9926. "dotnet_library_license.txt",
  9927. "lib/MonoAndroid10/_._",
  9928. "lib/MonoTouch10/_._",
  9929. "lib/net46/System.Threading.ThreadPool.dll",
  9930. "lib/netcore50/_._",
  9931. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9932. "lib/xamarinios10/_._",
  9933. "lib/xamarinmac20/_._",
  9934. "lib/xamarintvos10/_._",
  9935. "lib/xamarinwatchos10/_._",
  9936. "ref/MonoAndroid10/_._",
  9937. "ref/MonoTouch10/_._",
  9938. "ref/net46/System.Threading.ThreadPool.dll",
  9939. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9940. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9941. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9942. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9943. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9944. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9945. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9946. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9947. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9948. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9949. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9950. "ref/xamarinios10/_._",
  9951. "ref/xamarinmac20/_._",
  9952. "ref/xamarintvos10/_._",
  9953. "ref/xamarinwatchos10/_._",
  9954. "system.threading.threadpool.4.3.0.nupkg.sha512",
  9955. "system.threading.threadpool.nuspec"
  9956. ]
  9957. },
  9958. "System.Threading.Timer/4.3.0": {
  9959. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9960. "type": "package",
  9961. "path": "system.threading.timer/4.3.0",
  9962. "files": [
  9963. ".nupkg.metadata",
  9964. ".signature.p7s",
  9965. "ThirdPartyNotices.txt",
  9966. "dotnet_library_license.txt",
  9967. "lib/MonoAndroid10/_._",
  9968. "lib/MonoTouch10/_._",
  9969. "lib/net451/_._",
  9970. "lib/portable-net451+win81+wpa81/_._",
  9971. "lib/win81/_._",
  9972. "lib/wpa81/_._",
  9973. "lib/xamarinios10/_._",
  9974. "lib/xamarinmac20/_._",
  9975. "lib/xamarintvos10/_._",
  9976. "lib/xamarinwatchos10/_._",
  9977. "ref/MonoAndroid10/_._",
  9978. "ref/MonoTouch10/_._",
  9979. "ref/net451/_._",
  9980. "ref/netcore50/System.Threading.Timer.dll",
  9981. "ref/netcore50/System.Threading.Timer.xml",
  9982. "ref/netcore50/de/System.Threading.Timer.xml",
  9983. "ref/netcore50/es/System.Threading.Timer.xml",
  9984. "ref/netcore50/fr/System.Threading.Timer.xml",
  9985. "ref/netcore50/it/System.Threading.Timer.xml",
  9986. "ref/netcore50/ja/System.Threading.Timer.xml",
  9987. "ref/netcore50/ko/System.Threading.Timer.xml",
  9988. "ref/netcore50/ru/System.Threading.Timer.xml",
  9989. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9990. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9991. "ref/netstandard1.2/System.Threading.Timer.dll",
  9992. "ref/netstandard1.2/System.Threading.Timer.xml",
  9993. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9994. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9995. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9996. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9997. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9998. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9999. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  10000. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10001. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10002. "ref/portable-net451+win81+wpa81/_._",
  10003. "ref/win81/_._",
  10004. "ref/wpa81/_._",
  10005. "ref/xamarinios10/_._",
  10006. "ref/xamarinmac20/_._",
  10007. "ref/xamarintvos10/_._",
  10008. "ref/xamarinwatchos10/_._",
  10009. "system.threading.timer.4.3.0.nupkg.sha512",
  10010. "system.threading.timer.nuspec"
  10011. ]
  10012. },
  10013. "System.Windows.Extensions/6.0.0": {
  10014. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  10015. "type": "package",
  10016. "path": "system.windows.extensions/6.0.0",
  10017. "files": [
  10018. ".nupkg.metadata",
  10019. ".signature.p7s",
  10020. "Icon.png",
  10021. "LICENSE.TXT",
  10022. "THIRD-PARTY-NOTICES.TXT",
  10023. "lib/net6.0/System.Windows.Extensions.dll",
  10024. "lib/net6.0/System.Windows.Extensions.xml",
  10025. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  10026. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  10027. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  10028. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  10029. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  10030. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  10031. "system.windows.extensions.6.0.0.nupkg.sha512",
  10032. "system.windows.extensions.nuspec",
  10033. "useSharedDesignerContext.txt"
  10034. ]
  10035. },
  10036. "System.Xml.ReaderWriter/4.3.0": {
  10037. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10038. "type": "package",
  10039. "path": "system.xml.readerwriter/4.3.0",
  10040. "files": [
  10041. ".nupkg.metadata",
  10042. ".signature.p7s",
  10043. "ThirdPartyNotices.txt",
  10044. "dotnet_library_license.txt",
  10045. "lib/MonoAndroid10/_._",
  10046. "lib/MonoTouch10/_._",
  10047. "lib/net45/_._",
  10048. "lib/net46/System.Xml.ReaderWriter.dll",
  10049. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10050. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10051. "lib/portable-net45+win8+wp8+wpa81/_._",
  10052. "lib/win8/_._",
  10053. "lib/wp80/_._",
  10054. "lib/wpa81/_._",
  10055. "lib/xamarinios10/_._",
  10056. "lib/xamarinmac20/_._",
  10057. "lib/xamarintvos10/_._",
  10058. "lib/xamarinwatchos10/_._",
  10059. "ref/MonoAndroid10/_._",
  10060. "ref/MonoTouch10/_._",
  10061. "ref/net45/_._",
  10062. "ref/net46/System.Xml.ReaderWriter.dll",
  10063. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10064. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10065. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10066. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10067. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10068. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10069. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10070. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10071. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10072. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10073. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10074. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10075. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10076. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10077. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10078. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10079. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10080. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10081. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10082. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10083. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10084. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10085. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10086. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10087. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10088. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10089. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10090. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10091. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10092. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10093. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10094. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10095. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10096. "ref/portable-net45+win8+wp8+wpa81/_._",
  10097. "ref/win8/_._",
  10098. "ref/wp80/_._",
  10099. "ref/wpa81/_._",
  10100. "ref/xamarinios10/_._",
  10101. "ref/xamarinmac20/_._",
  10102. "ref/xamarintvos10/_._",
  10103. "ref/xamarinwatchos10/_._",
  10104. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10105. "system.xml.readerwriter.nuspec"
  10106. ]
  10107. },
  10108. "System.Xml.XDocument/4.3.0": {
  10109. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10110. "type": "package",
  10111. "path": "system.xml.xdocument/4.3.0",
  10112. "files": [
  10113. ".nupkg.metadata",
  10114. ".signature.p7s",
  10115. "ThirdPartyNotices.txt",
  10116. "dotnet_library_license.txt",
  10117. "lib/MonoAndroid10/_._",
  10118. "lib/MonoTouch10/_._",
  10119. "lib/net45/_._",
  10120. "lib/netcore50/System.Xml.XDocument.dll",
  10121. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10122. "lib/portable-net45+win8+wp8+wpa81/_._",
  10123. "lib/win8/_._",
  10124. "lib/wp80/_._",
  10125. "lib/wpa81/_._",
  10126. "lib/xamarinios10/_._",
  10127. "lib/xamarinmac20/_._",
  10128. "lib/xamarintvos10/_._",
  10129. "lib/xamarinwatchos10/_._",
  10130. "ref/MonoAndroid10/_._",
  10131. "ref/MonoTouch10/_._",
  10132. "ref/net45/_._",
  10133. "ref/netcore50/System.Xml.XDocument.dll",
  10134. "ref/netcore50/System.Xml.XDocument.xml",
  10135. "ref/netcore50/de/System.Xml.XDocument.xml",
  10136. "ref/netcore50/es/System.Xml.XDocument.xml",
  10137. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10138. "ref/netcore50/it/System.Xml.XDocument.xml",
  10139. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10140. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10141. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10142. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10143. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10144. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10145. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10146. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10147. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10148. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10149. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10150. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10151. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10152. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10153. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10154. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10155. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10156. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10157. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10158. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10159. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10160. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10161. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10162. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10163. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10164. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10165. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10166. "ref/portable-net45+win8+wp8+wpa81/_._",
  10167. "ref/win8/_._",
  10168. "ref/wp80/_._",
  10169. "ref/wpa81/_._",
  10170. "ref/xamarinios10/_._",
  10171. "ref/xamarinmac20/_._",
  10172. "ref/xamarintvos10/_._",
  10173. "ref/xamarinwatchos10/_._",
  10174. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10175. "system.xml.xdocument.nuspec"
  10176. ]
  10177. },
  10178. "System.Xml.XmlDocument/4.3.0": {
  10179. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10180. "type": "package",
  10181. "path": "system.xml.xmldocument/4.3.0",
  10182. "files": [
  10183. ".nupkg.metadata",
  10184. ".signature.p7s",
  10185. "ThirdPartyNotices.txt",
  10186. "dotnet_library_license.txt",
  10187. "lib/MonoAndroid10/_._",
  10188. "lib/MonoTouch10/_._",
  10189. "lib/net46/System.Xml.XmlDocument.dll",
  10190. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10191. "lib/xamarinios10/_._",
  10192. "lib/xamarinmac20/_._",
  10193. "lib/xamarintvos10/_._",
  10194. "lib/xamarinwatchos10/_._",
  10195. "ref/MonoAndroid10/_._",
  10196. "ref/MonoTouch10/_._",
  10197. "ref/net46/System.Xml.XmlDocument.dll",
  10198. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10199. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10200. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10201. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10202. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10203. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10204. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10205. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10206. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10207. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10208. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10209. "ref/xamarinios10/_._",
  10210. "ref/xamarinmac20/_._",
  10211. "ref/xamarintvos10/_._",
  10212. "ref/xamarinwatchos10/_._",
  10213. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10214. "system.xml.xmldocument.nuspec"
  10215. ]
  10216. },
  10217. "ToolGood.Words/3.1.0.2": {
  10218. "sha512": "UcLdUjzkN0yeT8q591XpDsAs6bKue2T7Z6smYju3ku5ABuuSFVAr8WCTTzjVqpmlpEN/O3gC2Jai2Ujlir+BLg==",
  10219. "type": "package",
  10220. "path": "toolgood.words/3.1.0.2",
  10221. "files": [
  10222. ".nupkg.metadata",
  10223. ".signature.p7s",
  10224. "LICENSE",
  10225. "lib/net6.0/ToolGood.Words.dll",
  10226. "lib/net6.0/ToolGood.Words.xml",
  10227. "lib/net8.0/ToolGood.Words.dll",
  10228. "lib/net8.0/ToolGood.Words.xml",
  10229. "lib/net9.0/ToolGood.Words.dll",
  10230. "lib/net9.0/ToolGood.Words.xml",
  10231. "lib/netstandard2.1/ToolGood.Words.dll",
  10232. "lib/netstandard2.1/ToolGood.Words.xml",
  10233. "toolgood.words.3.1.0.2.nupkg.sha512",
  10234. "toolgood.words.nuspec"
  10235. ]
  10236. },
  10237. "UAParser/3.1.47": {
  10238. "sha512": "I68Jl/Vs5RQZdz9BbmYtnXgujg0jVd61LhKbyNZOCm9lBxZFGxLbiQo6yFj21VYi7DzPvEvrVOmeC6v41AoLfw==",
  10239. "type": "package",
  10240. "path": "uaparser/3.1.47",
  10241. "files": [
  10242. ".nupkg.metadata",
  10243. ".signature.p7s",
  10244. "lib/net20/UAParser.dll",
  10245. "lib/net20/UAParser.xml",
  10246. "lib/net35/UAParser.dll",
  10247. "lib/net35/UAParser.xml",
  10248. "lib/net40/UAParser.dll",
  10249. "lib/net40/UAParser.xml",
  10250. "lib/net45/UAParser.dll",
  10251. "lib/net45/UAParser.xml",
  10252. "lib/netcoreapp2.0/UAParser.dll",
  10253. "lib/netcoreapp2.0/UAParser.xml",
  10254. "lib/netstandard1.0/UAParser.dll",
  10255. "lib/netstandard1.0/UAParser.xml",
  10256. "lib/netstandard1.3/UAParser.dll",
  10257. "lib/netstandard1.3/UAParser.xml",
  10258. "lib/netstandard1.6/UAParser.dll",
  10259. "lib/netstandard1.6/UAParser.xml",
  10260. "uaparser.3.1.47.nupkg.sha512",
  10261. "uaparser.nuspec"
  10262. ]
  10263. },
  10264. "ZXing.Net/0.16.9": {
  10265. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  10266. "type": "package",
  10267. "path": "zxing.net/0.16.9",
  10268. "files": [
  10269. ".nupkg.metadata",
  10270. ".signature.p7s",
  10271. "lib/native/zxing.XML",
  10272. "lib/native/zxing.pri",
  10273. "lib/native/zxing.winmd",
  10274. "lib/net20-cf/zxing.ce2.0.dll",
  10275. "lib/net20-cf/zxing.ce2.0.xml",
  10276. "lib/net20/zxing.XML",
  10277. "lib/net20/zxing.dll",
  10278. "lib/net35-cf/zxing.ce3.5.dll",
  10279. "lib/net35-cf/zxing.ce3.5.xml",
  10280. "lib/net35/zxing.XML",
  10281. "lib/net35/zxing.dll",
  10282. "lib/net40/zxing.XML",
  10283. "lib/net40/zxing.dll",
  10284. "lib/net40/zxing.presentation.XML",
  10285. "lib/net40/zxing.presentation.dll",
  10286. "lib/net45/zxing.XML",
  10287. "lib/net45/zxing.dll",
  10288. "lib/net45/zxing.presentation.XML",
  10289. "lib/net45/zxing.presentation.dll",
  10290. "lib/net461/zxing.XML",
  10291. "lib/net461/zxing.dll",
  10292. "lib/net461/zxing.presentation.XML",
  10293. "lib/net461/zxing.presentation.dll",
  10294. "lib/net47/zxing.XML",
  10295. "lib/net47/zxing.dll",
  10296. "lib/net47/zxing.presentation.XML",
  10297. "lib/net47/zxing.presentation.dll",
  10298. "lib/net48/zxing.XML",
  10299. "lib/net48/zxing.dll",
  10300. "lib/net48/zxing.presentation.XML",
  10301. "lib/net48/zxing.presentation.dll",
  10302. "lib/net5.0/zxing.XML",
  10303. "lib/net5.0/zxing.dll",
  10304. "lib/net6.0/zxing.XML",
  10305. "lib/net6.0/zxing.dll",
  10306. "lib/net7.0/zxing.XML",
  10307. "lib/net7.0/zxing.dll",
  10308. "lib/netcoreapp3.0/zxing.dll",
  10309. "lib/netcoreapp3.0/zxing.xml",
  10310. "lib/netcoreapp3.1/zxing.dll",
  10311. "lib/netcoreapp3.1/zxing.xml",
  10312. "lib/netstandard1.0/zxing.dll",
  10313. "lib/netstandard1.0/zxing.xml",
  10314. "lib/netstandard1.1/zxing.dll",
  10315. "lib/netstandard1.1/zxing.xml",
  10316. "lib/netstandard1.3/zxing.dll",
  10317. "lib/netstandard1.3/zxing.xml",
  10318. "lib/netstandard2.0/zxing.dll",
  10319. "lib/netstandard2.0/zxing.xml",
  10320. "lib/netstandard2.1/zxing.dll",
  10321. "lib/netstandard2.1/zxing.xml",
  10322. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  10323. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  10324. "lib/sl3-wp/zxing.wp7.0.XML",
  10325. "lib/sl3-wp/zxing.wp7.0.dll",
  10326. "lib/sl4-wp71/zxing.wp7.1.XML",
  10327. "lib/sl4-wp71/zxing.wp7.1.dll",
  10328. "lib/sl4/zxing.sl4.XML",
  10329. "lib/sl4/zxing.sl4.dll",
  10330. "lib/sl5/zxing.sl5.XML",
  10331. "lib/sl5/zxing.sl5.dll",
  10332. "lib/uap10/zxing.dll",
  10333. "lib/uap10/zxing.pri",
  10334. "lib/uap10/zxing.xml",
  10335. "lib/windows8-managed/zxing.winrt.XML",
  10336. "lib/windows8-managed/zxing.winrt.dll",
  10337. "lib/windows8/zxing.XML",
  10338. "lib/windows8/zxing.pri",
  10339. "lib/windows8/zxing.winmd",
  10340. "lib/wp8/zxing.wp8.0.XML",
  10341. "lib/wp8/zxing.wp8.0.dll",
  10342. "logo.jpg",
  10343. "zxing.net.0.16.9.nupkg.sha512",
  10344. "zxing.net.nuspec"
  10345. ]
  10346. },
  10347. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  10348. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  10349. "type": "package",
  10350. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  10351. "files": [
  10352. ".nupkg.metadata",
  10353. ".signature.p7s",
  10354. "lib/net472/ZXing.ImageSharp.V2.dll",
  10355. "lib/net472/ZXing.ImageSharp.V2.pdb",
  10356. "lib/net472/ZXing.ImageSharp.V2.xml",
  10357. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  10358. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  10359. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  10360. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  10361. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  10362. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  10363. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  10364. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  10365. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  10366. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  10367. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  10368. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  10369. "logo.jpg",
  10370. "readme.md",
  10371. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  10372. "zxing.net.bindings.imagesharp.v2.nuspec"
  10373. ]
  10374. },
  10375. "Ropin.Core.Common/1.0.0": {
  10376. "type": "project",
  10377. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  10378. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  10379. },
  10380. "Ropin.Core.Extensions/1.0.0": {
  10381. "type": "project",
  10382. "path": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj",
  10383. "msbuildProject": "../Ropin.Core.Extensions/Ropin.Core.Extensions.csproj"
  10384. },
  10385. "Ropin.Inspection.Common/1.0.0": {
  10386. "type": "project",
  10387. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  10388. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  10389. },
  10390. "Ropin.Inspection.Model/1.0.0": {
  10391. "type": "project",
  10392. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  10393. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  10394. },
  10395. "Ropin.Inspection.Repository/1.0.0": {
  10396. "type": "project",
  10397. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  10398. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  10399. },
  10400. "Ropin.Inspection.Service/1.0.0": {
  10401. "type": "project",
  10402. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  10403. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  10404. },
  10405. "Ropin.Inspection.Tasks/1.0.0": {
  10406. "type": "project",
  10407. "path": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj",
  10408. "msbuildProject": "../Ropin.Inspection.Tasks/Ropin.Inspection.Tasks.csproj"
  10409. }
  10410. },
  10411. "projectFileDependencyGroups": {
  10412. "net5.0": [
  10413. "AutoMapper >= 10.1.1",
  10414. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  10415. "Autofac.Extensions.DependencyInjection >= 7.1.0",
  10416. "IPTools.China >= 1.6.0",
  10417. "IPTools.Core >= 1.6.0",
  10418. "InfluxData.Net >= 8.0.1",
  10419. "Microsoft.AspNetCore.Authentication.JwtBearer >= 5.0.0",
  10420. "Microsoft.AspNetCore.Authentication.OpenIdConnect >= 5.0.0",
  10421. "Microsoft.AspNetCore.JsonPatch >= 5.0.0",
  10422. "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 5.0.0",
  10423. "Microsoft.EntityFrameworkCore >= 5.0.4",
  10424. "Microsoft.EntityFrameworkCore.Design >= 5.0.4",
  10425. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9",
  10426. "MySql.Data >= 8.0.23",
  10427. "NPOI >= 2.6.2",
  10428. "Pomelo.EntityFrameworkCore.MySql >= 5.0.0-alpha.2",
  10429. "Ropin.Core.Common >= 1.0.0",
  10430. "Ropin.Core.Extensions >= 1.0.0",
  10431. "Ropin.Inspection.Common >= 1.0.0",
  10432. "Ropin.Inspection.Model >= 1.0.0",
  10433. "Ropin.Inspection.Repository >= 1.0.0",
  10434. "Ropin.Inspection.Service >= 1.0.0",
  10435. "Ropin.Inspection.Tasks >= 1.0.0",
  10436. "Swashbuckle.AspNetCore >= 5.6.3",
  10437. "UAParser >= 3.1.47"
  10438. ]
  10439. },
  10440. "packageFolders": {
  10441. "D:\\.nuget\\packages": {},
  10442. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  10443. },
  10444. "project": {
  10445. "version": "1.0.0",
  10446. "restore": {
  10447. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  10448. "projectName": "Ropin.Inspection.Api",
  10449. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\Ropin.Inspection.Api.csproj",
  10450. "packagesPath": "D:\\.nuget\\packages",
  10451. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Api\\obj\\",
  10452. "projectStyle": "PackageReference",
  10453. "fallbackFolders": [
  10454. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  10455. ],
  10456. "configFilePaths": [
  10457. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10458. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10459. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10460. ],
  10461. "originalTargetFrameworks": [
  10462. "net5.0"
  10463. ],
  10464. "sources": {
  10465. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10466. "C:\\Program Files\\dotnet\\library-packs": {},
  10467. "https://api.nuget.org/v3/index.json": {}
  10468. },
  10469. "frameworks": {
  10470. "net5.0": {
  10471. "targetAlias": "net5.0",
  10472. "projectReferences": {
  10473. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  10474. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  10475. },
  10476. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj": {
  10477. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Extensions\\Ropin.Core.Extensions.csproj"
  10478. },
  10479. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  10480. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  10481. },
  10482. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  10483. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  10484. },
  10485. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  10486. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  10487. },
  10488. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  10489. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  10490. },
  10491. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj": {
  10492. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj"
  10493. }
  10494. }
  10495. }
  10496. },
  10497. "warningProperties": {
  10498. "warnAsError": [
  10499. "NU1605"
  10500. ]
  10501. }
  10502. },
  10503. "frameworks": {
  10504. "net5.0": {
  10505. "targetAlias": "net5.0",
  10506. "dependencies": {
  10507. "AutoMapper": {
  10508. "target": "Package",
  10509. "version": "[10.1.1, )"
  10510. },
  10511. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  10512. "target": "Package",
  10513. "version": "[8.1.1, )"
  10514. },
  10515. "Autofac.Extensions.DependencyInjection": {
  10516. "target": "Package",
  10517. "version": "[7.1.0, )"
  10518. },
  10519. "IPTools.China": {
  10520. "target": "Package",
  10521. "version": "[1.6.0, )"
  10522. },
  10523. "IPTools.Core": {
  10524. "target": "Package",
  10525. "version": "[1.6.0, )"
  10526. },
  10527. "InfluxData.Net": {
  10528. "target": "Package",
  10529. "version": "[8.0.1, )"
  10530. },
  10531. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  10532. "target": "Package",
  10533. "version": "[5.0.0, )",
  10534. "noWarn": [
  10535. "NU1605"
  10536. ]
  10537. },
  10538. "Microsoft.AspNetCore.Authentication.OpenIdConnect": {
  10539. "target": "Package",
  10540. "version": "[5.0.0, )",
  10541. "noWarn": [
  10542. "NU1605"
  10543. ]
  10544. },
  10545. "Microsoft.AspNetCore.JsonPatch": {
  10546. "target": "Package",
  10547. "version": "[5.0.0, )"
  10548. },
  10549. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
  10550. "target": "Package",
  10551. "version": "[5.0.0, )"
  10552. },
  10553. "Microsoft.EntityFrameworkCore": {
  10554. "target": "Package",
  10555. "version": "[5.0.4, )"
  10556. },
  10557. "Microsoft.EntityFrameworkCore.Design": {
  10558. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  10559. "suppressParent": "All",
  10560. "target": "Package",
  10561. "version": "[5.0.4, )"
  10562. },
  10563. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  10564. "target": "Package",
  10565. "version": "[1.10.9, )"
  10566. },
  10567. "MySql.Data": {
  10568. "target": "Package",
  10569. "version": "[8.0.23, )"
  10570. },
  10571. "NPOI": {
  10572. "target": "Package",
  10573. "version": "[2.6.2, )"
  10574. },
  10575. "Pomelo.EntityFrameworkCore.MySql": {
  10576. "target": "Package",
  10577. "version": "[5.0.0-alpha.2, )"
  10578. },
  10579. "Swashbuckle.AspNetCore": {
  10580. "target": "Package",
  10581. "version": "[5.6.3, )"
  10582. },
  10583. "UAParser": {
  10584. "target": "Package",
  10585. "version": "[3.1.47, )"
  10586. }
  10587. },
  10588. "imports": [
  10589. "net461",
  10590. "net462",
  10591. "net47",
  10592. "net471",
  10593. "net472",
  10594. "net48",
  10595. "net481"
  10596. ],
  10597. "assetTargetFallback": true,
  10598. "warn": true,
  10599. "frameworkReferences": {
  10600. "Microsoft.AspNetCore.App": {
  10601. "privateAssets": "none"
  10602. },
  10603. "Microsoft.NETCore.App": {
  10604. "privateAssets": "all"
  10605. }
  10606. },
  10607. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10608. }
  10609. }
  10610. }
  10611. }