project.assets.json 374 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237
  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. "BouncyCastle.NetCore/1.8.5": {
  19. "type": "package",
  20. "compile": {
  21. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  22. "related": ".xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  27. "related": ".xml"
  28. }
  29. }
  30. },
  31. "Coravel/4.2.1": {
  32. "type": "package",
  33. "dependencies": {
  34. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  35. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  36. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  37. },
  38. "compile": {
  39. "lib/netstandard2.0/Coravel.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/netstandard2.0/Coravel.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "FBoxClientDriver/1.2.0": {
  50. "type": "package",
  51. "dependencies": {
  52. "FBoxClientDriver.Contract": "1.2.0",
  53. "IdentityModel": "4.3.1",
  54. "Microsoft.AspNet.SignalR.Client": "2.4.1",
  55. "Microsoft.CSharp": "4.5.0",
  56. "Microsoft.Extensions.Logging": "3.1.5",
  57. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  58. "Newtonsoft.Json": "12.0.3",
  59. "Nito.AsyncEx.Coordination": "5.0.0",
  60. "NodaTime": "2.4.7",
  61. "System.ComponentModel.EventBasedAsync": "4.3.0",
  62. "System.IO.FileSystem": "4.3.0",
  63. "System.Net.Http": "4.3.2",
  64. "System.Reactive": "4.4.1",
  65. "System.Runtime.Serialization.Primitives": "4.3.0",
  66. "System.Threading.Thread": "4.3.0"
  67. },
  68. "compile": {
  69. "lib/netstandard2.0/FBoxClientDriver.dll": {
  70. "related": ".xml"
  71. }
  72. },
  73. "runtime": {
  74. "lib/netstandard2.0/FBoxClientDriver.dll": {
  75. "related": ".xml"
  76. }
  77. }
  78. },
  79. "FBoxClientDriver.Contract/1.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Newtonsoft.Json": "12.0.3",
  83. "System.ComponentModel.Primitives": "4.3.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  87. "related": ".xml"
  88. }
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/FBoxClientDriver.Contract.dll": {
  92. "related": ".xml"
  93. }
  94. }
  95. },
  96. "FluentEmail.Core/3.0.2": {
  97. "type": "package",
  98. "dependencies": {
  99. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  103. },
  104. "runtime": {
  105. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  106. }
  107. },
  108. "FluentEmail.Smtp/3.0.2": {
  109. "type": "package",
  110. "dependencies": {
  111. "FluentEmail.Core": "3.0.2"
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  115. },
  116. "runtime": {
  117. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  118. }
  119. },
  120. "Google.Protobuf/3.11.4": {
  121. "type": "package",
  122. "dependencies": {
  123. "System.Memory": "4.5.2"
  124. },
  125. "compile": {
  126. "lib/netstandard2.0/Google.Protobuf.dll": {
  127. "related": ".pdb;.xml"
  128. }
  129. },
  130. "runtime": {
  131. "lib/netstandard2.0/Google.Protobuf.dll": {
  132. "related": ".pdb;.xml"
  133. }
  134. }
  135. },
  136. "IdentityModel/4.3.1": {
  137. "type": "package",
  138. "dependencies": {
  139. "Newtonsoft.Json": "11.0.2",
  140. "System.Text.Encodings.Web": "4.7.0"
  141. },
  142. "compile": {
  143. "lib/netstandard2.0/IdentityModel.dll": {
  144. "related": ".pdb;.xml"
  145. }
  146. },
  147. "runtime": {
  148. "lib/netstandard2.0/IdentityModel.dll": {
  149. "related": ".pdb;.xml"
  150. }
  151. }
  152. },
  153. "InitQ/1.0.0.14": {
  154. "type": "package",
  155. "dependencies": {
  156. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  157. "Microsoft.Extensions.Hosting": "2.1.0",
  158. "Newtonsoft.Json": "13.0.1",
  159. "StackExchange.Redis": "1.2.4"
  160. },
  161. "compile": {
  162. "lib/netcoreapp2.1/InitQ.dll": {}
  163. },
  164. "runtime": {
  165. "lib/netcoreapp2.1/InitQ.dll": {}
  166. }
  167. },
  168. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  169. "type": "package",
  170. "dependencies": {
  171. "AdvancedStringBuilder": "0.1.0",
  172. "JavaScriptEngineSwitcher.Core": "3.21.0"
  173. },
  174. "compile": {
  175. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  176. "related": ".xml"
  177. }
  178. },
  179. "runtime": {
  180. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  181. "related": ".xml"
  182. }
  183. },
  184. "resource": {
  185. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  186. "locale": "ru-RU"
  187. }
  188. }
  189. },
  190. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  191. "type": "package",
  192. "runtimeTargets": {
  193. "runtimes/linux-x64/native/libChakraCore.so": {
  194. "assetType": "native",
  195. "rid": "linux-x64"
  196. }
  197. }
  198. },
  199. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  200. "type": "package",
  201. "build": {
  202. "build/_._": {}
  203. },
  204. "runtimeTargets": {
  205. "runtimes/win-x64/native/ChakraCore.dll": {
  206. "assetType": "native",
  207. "rid": "win-x64"
  208. }
  209. }
  210. },
  211. "JavaScriptEngineSwitcher.Core/3.21.0": {
  212. "type": "package",
  213. "dependencies": {
  214. "AdvancedStringBuilder": "0.1.0"
  215. },
  216. "compile": {
  217. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  218. "related": ".xml"
  219. }
  220. },
  221. "runtime": {
  222. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  223. "related": ".xml"
  224. }
  225. },
  226. "resource": {
  227. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  228. "locale": "ru-RU"
  229. }
  230. }
  231. },
  232. "K4os.Compression.LZ4/1.1.11": {
  233. "type": "package",
  234. "dependencies": {
  235. "System.Memory": "4.5.3"
  236. },
  237. "compile": {
  238. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  239. "related": ".xml"
  240. }
  241. },
  242. "runtime": {
  243. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  244. "related": ".xml"
  245. }
  246. }
  247. },
  248. "K4os.Compression.LZ4.Streams/1.1.11": {
  249. "type": "package",
  250. "dependencies": {
  251. "K4os.Compression.LZ4": "1.1.11",
  252. "K4os.Hash.xxHash": "1.0.6"
  253. },
  254. "compile": {
  255. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  256. "related": ".xml"
  257. }
  258. },
  259. "runtime": {
  260. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  261. "related": ".xml"
  262. }
  263. }
  264. },
  265. "K4os.Hash.xxHash/1.0.6": {
  266. "type": "package",
  267. "dependencies": {
  268. "System.Memory": "4.5.3"
  269. },
  270. "compile": {
  271. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  272. "related": ".xml"
  273. }
  274. },
  275. "runtime": {
  276. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  277. "related": ".xml"
  278. }
  279. }
  280. },
  281. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  282. "type": "package",
  283. "dependencies": {
  284. "Microsoft.EntityFrameworkCore": "5.0.0"
  285. },
  286. "compile": {
  287. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  288. "related": ".xml"
  289. }
  290. },
  291. "runtime": {
  292. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  293. "related": ".xml"
  294. }
  295. }
  296. },
  297. "log4net/2.0.17": {
  298. "type": "package",
  299. "dependencies": {
  300. "System.Configuration.ConfigurationManager": "4.5.0"
  301. },
  302. "compile": {
  303. "lib/netstandard2.0/log4net.dll": {
  304. "related": ".xml"
  305. }
  306. },
  307. "runtime": {
  308. "lib/netstandard2.0/log4net.dll": {
  309. "related": ".xml"
  310. }
  311. }
  312. },
  313. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  314. "type": "package",
  315. "dependencies": {
  316. "Newtonsoft.Json": "11.0.2"
  317. },
  318. "compile": {
  319. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  320. "related": ".pdb;.xml"
  321. }
  322. },
  323. "runtime": {
  324. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll": {
  325. "related": ".pdb;.xml"
  326. }
  327. }
  328. },
  329. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  333. "System.Text.Encodings.Web": "4.5.0"
  334. },
  335. "compile": {
  336. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  337. "related": ".xml"
  338. }
  339. },
  340. "runtime": {
  341. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  342. "related": ".xml"
  343. }
  344. }
  345. },
  346. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  347. "type": "package",
  348. "dependencies": {
  349. "Microsoft.Extensions.Primitives": "5.0.0",
  350. "System.IO.Pipelines": "5.0.0"
  351. },
  352. "compile": {
  353. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  354. "related": ".xml"
  355. }
  356. },
  357. "runtime": {
  358. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  359. "related": ".xml"
  360. }
  361. }
  362. },
  363. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  364. "type": "package",
  365. "dependencies": {
  366. "Microsoft.Extensions.Logging.Console": "3.1.30",
  367. "Newtonsoft.Json": "13.0.1"
  368. },
  369. "compile": {
  370. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  371. },
  372. "runtime": {
  373. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  374. },
  375. "frameworkReferences": [
  376. "Microsoft.AspNetCore.App"
  377. ]
  378. },
  379. "Microsoft.CSharp/4.5.0": {
  380. "type": "package",
  381. "compile": {
  382. "ref/netcoreapp2.0/_._": {}
  383. },
  384. "runtime": {
  385. "lib/netcoreapp2.0/_._": {}
  386. }
  387. },
  388. "Microsoft.EntityFrameworkCore/5.0.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  392. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  393. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  394. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  395. "Microsoft.Extensions.Logging": "5.0.0",
  396. "System.Collections.Immutable": "5.0.0",
  397. "System.ComponentModel.Annotations": "5.0.0",
  398. "System.Diagnostics.DiagnosticSource": "5.0.0"
  399. },
  400. "compile": {
  401. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  402. "related": ".xml"
  403. }
  404. },
  405. "runtime": {
  406. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  407. "related": ".xml"
  408. }
  409. }
  410. },
  411. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  412. "type": "package",
  413. "compile": {
  414. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  415. "related": ".xml"
  416. }
  417. },
  418. "runtime": {
  419. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  420. "related": ".xml"
  421. }
  422. }
  423. },
  424. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  425. "type": "package",
  426. "compile": {
  427. "lib/netstandard2.0/_._": {}
  428. },
  429. "runtime": {
  430. "lib/netstandard2.0/_._": {}
  431. }
  432. },
  433. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  434. "type": "package",
  435. "dependencies": {
  436. "Microsoft.EntityFrameworkCore": "5.0.0",
  437. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  438. },
  439. "compile": {
  440. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  441. "related": ".xml"
  442. }
  443. },
  444. "runtime": {
  445. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  446. "related": ".xml"
  447. }
  448. }
  449. },
  450. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  451. "type": "package",
  452. "build": {
  453. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  454. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  455. },
  456. "buildMultiTargeting": {
  457. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  458. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  459. }
  460. },
  461. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  462. "type": "package",
  463. "dependencies": {
  464. "Microsoft.Extensions.Primitives": "5.0.0"
  465. },
  466. "compile": {
  467. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  473. "related": ".xml"
  474. }
  475. }
  476. },
  477. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  481. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  482. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  483. "Microsoft.Extensions.Options": "5.0.0",
  484. "Microsoft.Extensions.Primitives": "5.0.0"
  485. },
  486. "compile": {
  487. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  488. "related": ".xml"
  489. }
  490. },
  491. "runtime": {
  492. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  493. "related": ".xml"
  494. }
  495. }
  496. },
  497. "Microsoft.Extensions.Configuration/5.0.0": {
  498. "type": "package",
  499. "dependencies": {
  500. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  501. "Microsoft.Extensions.Primitives": "5.0.0"
  502. },
  503. "compile": {
  504. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  505. "related": ".xml"
  506. }
  507. },
  508. "runtime": {
  509. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  510. "related": ".xml"
  511. }
  512. }
  513. },
  514. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  515. "type": "package",
  516. "dependencies": {
  517. "Microsoft.Extensions.Primitives": "5.0.0"
  518. },
  519. "compile": {
  520. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  521. "related": ".xml"
  522. }
  523. },
  524. "runtime": {
  525. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  526. "related": ".xml"
  527. }
  528. }
  529. },
  530. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  531. "type": "package",
  532. "dependencies": {
  533. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  534. },
  535. "compile": {
  536. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  537. "related": ".xml"
  538. }
  539. },
  540. "runtime": {
  541. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  542. "related": ".xml"
  543. }
  544. }
  545. },
  546. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  547. "type": "package",
  548. "dependencies": {
  549. "Microsoft.Extensions.Configuration": "5.0.0",
  550. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  551. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  552. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  553. "Microsoft.Extensions.Primitives": "5.0.0"
  554. },
  555. "compile": {
  556. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  557. "related": ".xml"
  558. }
  559. },
  560. "runtime": {
  561. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  562. "related": ".xml"
  563. }
  564. }
  565. },
  566. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  567. "type": "package",
  568. "dependencies": {
  569. "Microsoft.Extensions.Configuration": "5.0.0",
  570. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  571. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  572. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  573. },
  574. "compile": {
  575. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  576. "related": ".xml"
  577. }
  578. },
  579. "runtime": {
  580. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  581. "related": ".xml"
  582. }
  583. }
  584. },
  585. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  586. "type": "package",
  587. "dependencies": {
  588. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  589. },
  590. "compile": {
  591. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  592. "related": ".xml"
  593. }
  594. },
  595. "runtime": {
  596. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  597. "related": ".xml"
  598. }
  599. }
  600. },
  601. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  602. "type": "package",
  603. "compile": {
  604. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  605. "related": ".xml"
  606. }
  607. },
  608. "runtime": {
  609. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  610. "related": ".xml"
  611. }
  612. }
  613. },
  614. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  615. "type": "package",
  616. "dependencies": {
  617. "Microsoft.Extensions.Primitives": "5.0.0"
  618. },
  619. "compile": {
  620. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "runtime": {
  625. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  626. "related": ".xml"
  627. }
  628. }
  629. },
  630. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  631. "type": "package",
  632. "dependencies": {
  633. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  634. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  635. "Microsoft.Extensions.Primitives": "5.0.0"
  636. },
  637. "compile": {
  638. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  639. "related": ".xml"
  640. }
  641. },
  642. "runtime": {
  643. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  644. "related": ".xml"
  645. }
  646. }
  647. },
  648. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  649. "type": "package",
  650. "compile": {
  651. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  652. "related": ".xml"
  653. }
  654. },
  655. "runtime": {
  656. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  657. "related": ".xml"
  658. }
  659. }
  660. },
  661. "Microsoft.Extensions.Hosting/2.1.0": {
  662. "type": "package",
  663. "dependencies": {
  664. "Microsoft.Extensions.Configuration": "2.1.0",
  665. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  666. "Microsoft.Extensions.FileProviders.Physical": "2.1.0",
  667. "Microsoft.Extensions.Hosting.Abstractions": "2.1.0",
  668. "Microsoft.Extensions.Logging": "2.1.0"
  669. },
  670. "compile": {
  671. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  672. "related": ".xml"
  673. }
  674. },
  675. "runtime": {
  676. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {
  677. "related": ".xml"
  678. }
  679. }
  680. },
  681. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  682. "type": "package",
  683. "dependencies": {
  684. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  685. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  686. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  687. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  688. },
  689. "compile": {
  690. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  691. "related": ".xml"
  692. }
  693. },
  694. "runtime": {
  695. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  696. "related": ".xml"
  697. }
  698. }
  699. },
  700. "Microsoft.Extensions.Http/5.0.0": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  704. "Microsoft.Extensions.Logging": "5.0.0",
  705. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  706. "Microsoft.Extensions.Options": "5.0.0"
  707. },
  708. "compile": {
  709. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  710. "related": ".xml"
  711. }
  712. },
  713. "runtime": {
  714. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  715. "related": ".xml"
  716. }
  717. }
  718. },
  719. "Microsoft.Extensions.Logging/5.0.0": {
  720. "type": "package",
  721. "dependencies": {
  722. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  723. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  724. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  725. "Microsoft.Extensions.Options": "5.0.0"
  726. },
  727. "compile": {
  728. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  729. "related": ".xml"
  730. }
  731. },
  732. "runtime": {
  733. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  734. "related": ".xml"
  735. }
  736. }
  737. },
  738. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  739. "type": "package",
  740. "compile": {
  741. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  742. "related": ".xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  747. "related": ".xml"
  748. }
  749. }
  750. },
  751. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  752. "type": "package",
  753. "dependencies": {
  754. "Microsoft.Extensions.Logging": "3.1.30",
  755. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  756. },
  757. "compile": {
  758. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  759. "related": ".xml"
  760. }
  761. },
  762. "runtime": {
  763. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  764. "related": ".xml"
  765. }
  766. }
  767. },
  768. "Microsoft.Extensions.Logging.Console/3.1.30": {
  769. "type": "package",
  770. "dependencies": {
  771. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  772. "Microsoft.Extensions.Logging": "3.1.30",
  773. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  774. },
  775. "compile": {
  776. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  777. "related": ".xml"
  778. }
  779. },
  780. "runtime": {
  781. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  782. "related": ".xml"
  783. }
  784. }
  785. },
  786. "Microsoft.Extensions.Options/5.0.0": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  790. "Microsoft.Extensions.Primitives": "5.0.0"
  791. },
  792. "compile": {
  793. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  794. "related": ".xml"
  795. }
  796. },
  797. "runtime": {
  798. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  799. "related": ".xml"
  800. }
  801. }
  802. },
  803. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  807. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  808. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  809. "Microsoft.Extensions.Options": "3.1.30"
  810. },
  811. "compile": {
  812. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  813. "related": ".xml"
  814. }
  815. },
  816. "runtime": {
  817. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  818. "related": ".xml"
  819. }
  820. }
  821. },
  822. "Microsoft.Extensions.Primitives/5.0.0": {
  823. "type": "package",
  824. "compile": {
  825. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  826. "related": ".xml"
  827. }
  828. },
  829. "runtime": {
  830. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  831. "related": ".xml"
  832. }
  833. }
  834. },
  835. "Microsoft.NETCore.Platforms/5.0.0": {
  836. "type": "package",
  837. "compile": {
  838. "lib/netstandard1.0/_._": {}
  839. },
  840. "runtime": {
  841. "lib/netstandard1.0/_._": {}
  842. }
  843. },
  844. "Microsoft.NETCore.Targets/1.1.0": {
  845. "type": "package",
  846. "compile": {
  847. "lib/netstandard1.0/_._": {}
  848. },
  849. "runtime": {
  850. "lib/netstandard1.0/_._": {}
  851. }
  852. },
  853. "Microsoft.OpenApi/1.2.3": {
  854. "type": "package",
  855. "compile": {
  856. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  857. "related": ".pdb;.xml"
  858. }
  859. },
  860. "runtime": {
  861. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  862. "related": ".pdb;.xml"
  863. }
  864. }
  865. },
  866. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  867. "type": "package",
  868. "build": {
  869. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  870. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  871. }
  872. },
  873. "Microsoft.Win32.Primitives/4.3.0": {
  874. "type": "package",
  875. "dependencies": {
  876. "Microsoft.NETCore.Platforms": "1.1.0",
  877. "Microsoft.NETCore.Targets": "1.1.0",
  878. "System.Runtime": "4.3.0"
  879. },
  880. "compile": {
  881. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  882. "related": ".xml"
  883. }
  884. }
  885. },
  886. "Microsoft.Win32.SystemEvents/5.0.0": {
  887. "type": "package",
  888. "dependencies": {
  889. "Microsoft.NETCore.Platforms": "5.0.0"
  890. },
  891. "compile": {
  892. "ref/netstandard2.0/_._": {
  893. "related": ".xml"
  894. }
  895. },
  896. "runtime": {
  897. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  898. "related": ".xml"
  899. }
  900. },
  901. "runtimeTargets": {
  902. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  903. "assetType": "runtime",
  904. "rid": "win"
  905. }
  906. }
  907. },
  908. "MySql.Data/8.0.23": {
  909. "type": "package",
  910. "dependencies": {
  911. "BouncyCastle.NetCore": "1.8.5",
  912. "Google.Protobuf": "3.11.4",
  913. "K4os.Compression.LZ4": "1.1.11",
  914. "K4os.Compression.LZ4.Streams": "1.1.11",
  915. "K4os.Hash.xxHash": "1.0.6",
  916. "SSH.NET": "2020.0.0-beta1",
  917. "System.Buffers": "4.5.1",
  918. "System.Configuration.ConfigurationManager": "4.4.1",
  919. "System.Security.Permissions": "4.7.0",
  920. "System.Text.Encoding.CodePages": "4.4.0"
  921. },
  922. "compile": {
  923. "lib/net5.0/MySql.Data.dll": {
  924. "related": ".xml"
  925. },
  926. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  927. "lib/net5.0/Zstandard.Net.dll": {}
  928. },
  929. "runtime": {
  930. "lib/net5.0/MySql.Data.dll": {
  931. "related": ".xml"
  932. },
  933. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  934. "lib/net5.0/Zstandard.Net.dll": {}
  935. }
  936. },
  937. "MySqlConnector/1.1.0": {
  938. "type": "package",
  939. "compile": {
  940. "lib/net5.0/MySqlConnector.dll": {
  941. "related": ".xml"
  942. }
  943. },
  944. "runtime": {
  945. "lib/net5.0/MySqlConnector.dll": {
  946. "related": ".xml"
  947. }
  948. }
  949. },
  950. "NETStandard.Library/1.6.1": {
  951. "type": "package",
  952. "dependencies": {
  953. "Microsoft.NETCore.Platforms": "1.1.0",
  954. "Microsoft.Win32.Primitives": "4.3.0",
  955. "System.AppContext": "4.3.0",
  956. "System.Collections": "4.3.0",
  957. "System.Collections.Concurrent": "4.3.0",
  958. "System.Console": "4.3.0",
  959. "System.Diagnostics.Debug": "4.3.0",
  960. "System.Diagnostics.Tools": "4.3.0",
  961. "System.Diagnostics.Tracing": "4.3.0",
  962. "System.Globalization": "4.3.0",
  963. "System.Globalization.Calendars": "4.3.0",
  964. "System.IO": "4.3.0",
  965. "System.IO.Compression": "4.3.0",
  966. "System.IO.Compression.ZipFile": "4.3.0",
  967. "System.IO.FileSystem": "4.3.0",
  968. "System.IO.FileSystem.Primitives": "4.3.0",
  969. "System.Linq": "4.3.0",
  970. "System.Linq.Expressions": "4.3.0",
  971. "System.Net.Http": "4.3.0",
  972. "System.Net.Primitives": "4.3.0",
  973. "System.Net.Sockets": "4.3.0",
  974. "System.ObjectModel": "4.3.0",
  975. "System.Reflection": "4.3.0",
  976. "System.Reflection.Extensions": "4.3.0",
  977. "System.Reflection.Primitives": "4.3.0",
  978. "System.Resources.ResourceManager": "4.3.0",
  979. "System.Runtime": "4.3.0",
  980. "System.Runtime.Extensions": "4.3.0",
  981. "System.Runtime.Handles": "4.3.0",
  982. "System.Runtime.InteropServices": "4.3.0",
  983. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  984. "System.Runtime.Numerics": "4.3.0",
  985. "System.Security.Cryptography.Algorithms": "4.3.0",
  986. "System.Security.Cryptography.Encoding": "4.3.0",
  987. "System.Security.Cryptography.Primitives": "4.3.0",
  988. "System.Security.Cryptography.X509Certificates": "4.3.0",
  989. "System.Text.Encoding": "4.3.0",
  990. "System.Text.Encoding.Extensions": "4.3.0",
  991. "System.Text.RegularExpressions": "4.3.0",
  992. "System.Threading": "4.3.0",
  993. "System.Threading.Tasks": "4.3.0",
  994. "System.Threading.Timer": "4.3.0",
  995. "System.Xml.ReaderWriter": "4.3.0",
  996. "System.Xml.XDocument": "4.3.0"
  997. }
  998. },
  999. "Newtonsoft.Json/13.0.1": {
  1000. "type": "package",
  1001. "compile": {
  1002. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1003. "related": ".xml"
  1004. }
  1005. },
  1006. "runtime": {
  1007. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1008. "related": ".xml"
  1009. }
  1010. }
  1011. },
  1012. "Nito.AsyncEx.Coordination/5.0.0": {
  1013. "type": "package",
  1014. "dependencies": {
  1015. "Nito.AsyncEx.Tasks": "5.0.0",
  1016. "Nito.Collections.Deque": "1.0.4",
  1017. "Nito.Disposables": "2.0.0"
  1018. },
  1019. "compile": {
  1020. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1021. "related": ".xml"
  1022. }
  1023. },
  1024. "runtime": {
  1025. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1026. "related": ".xml"
  1027. }
  1028. }
  1029. },
  1030. "Nito.AsyncEx.Tasks/5.0.0": {
  1031. "type": "package",
  1032. "dependencies": {
  1033. "Nito.Disposables": "2.0.0"
  1034. },
  1035. "compile": {
  1036. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1037. "related": ".xml"
  1038. }
  1039. },
  1040. "runtime": {
  1041. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1042. "related": ".xml"
  1043. }
  1044. }
  1045. },
  1046. "Nito.Collections.Deque/1.0.4": {
  1047. "type": "package",
  1048. "compile": {
  1049. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1050. "related": ".xml"
  1051. }
  1052. },
  1053. "runtime": {
  1054. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1055. "related": ".xml"
  1056. }
  1057. }
  1058. },
  1059. "Nito.Disposables/2.0.0": {
  1060. "type": "package",
  1061. "dependencies": {
  1062. "System.Collections.Immutable": "1.4.0"
  1063. },
  1064. "compile": {
  1065. "lib/netstandard2.0/Nito.Disposables.dll": {
  1066. "related": ".pdb;.xml"
  1067. }
  1068. },
  1069. "runtime": {
  1070. "lib/netstandard2.0/Nito.Disposables.dll": {
  1071. "related": ".pdb;.xml"
  1072. }
  1073. }
  1074. },
  1075. "NodaTime/2.4.7": {
  1076. "type": "package",
  1077. "compile": {
  1078. "lib/netstandard2.0/NodaTime.dll": {
  1079. "related": ".pdb;.xml"
  1080. }
  1081. },
  1082. "runtime": {
  1083. "lib/netstandard2.0/NodaTime.dll": {
  1084. "related": ".pdb;.xml"
  1085. }
  1086. }
  1087. },
  1088. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  1092. "MySqlConnector": "1.1.0"
  1093. },
  1094. "compile": {
  1095. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1096. "related": ".xml"
  1097. }
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  1101. "related": ".xml"
  1102. }
  1103. }
  1104. },
  1105. "QRCoder/1.4.3": {
  1106. "type": "package",
  1107. "dependencies": {
  1108. "System.Drawing.Common": "5.0.3"
  1109. },
  1110. "compile": {
  1111. "lib/net5.0/QRCoder.dll": {}
  1112. },
  1113. "runtime": {
  1114. "lib/net5.0/QRCoder.dll": {}
  1115. }
  1116. },
  1117. "RabbitMQ.Client/6.8.1": {
  1118. "type": "package",
  1119. "dependencies": {
  1120. "System.Memory": "4.5.5",
  1121. "System.Threading.Channels": "7.0.0"
  1122. },
  1123. "compile": {
  1124. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1125. "related": ".xml"
  1126. }
  1127. },
  1128. "runtime": {
  1129. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1130. "related": ".xml"
  1131. }
  1132. }
  1133. },
  1134. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1135. "type": "package",
  1136. "runtimeTargets": {
  1137. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1138. "assetType": "native",
  1139. "rid": "debian.8-x64"
  1140. }
  1141. }
  1142. },
  1143. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1144. "type": "package",
  1145. "runtimeTargets": {
  1146. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1147. "assetType": "native",
  1148. "rid": "fedora.23-x64"
  1149. }
  1150. }
  1151. },
  1152. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1153. "type": "package",
  1154. "runtimeTargets": {
  1155. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1156. "assetType": "native",
  1157. "rid": "fedora.24-x64"
  1158. }
  1159. }
  1160. },
  1161. "runtime.native.System/4.3.0": {
  1162. "type": "package",
  1163. "dependencies": {
  1164. "Microsoft.NETCore.Platforms": "1.1.0",
  1165. "Microsoft.NETCore.Targets": "1.1.0"
  1166. },
  1167. "compile": {
  1168. "lib/netstandard1.0/_._": {}
  1169. },
  1170. "runtime": {
  1171. "lib/netstandard1.0/_._": {}
  1172. }
  1173. },
  1174. "runtime.native.System.IO.Compression/4.3.0": {
  1175. "type": "package",
  1176. "dependencies": {
  1177. "Microsoft.NETCore.Platforms": "1.1.0",
  1178. "Microsoft.NETCore.Targets": "1.1.0"
  1179. },
  1180. "compile": {
  1181. "lib/netstandard1.0/_._": {}
  1182. },
  1183. "runtime": {
  1184. "lib/netstandard1.0/_._": {}
  1185. }
  1186. },
  1187. "runtime.native.System.Net.Http/4.3.0": {
  1188. "type": "package",
  1189. "dependencies": {
  1190. "Microsoft.NETCore.Platforms": "1.1.0",
  1191. "Microsoft.NETCore.Targets": "1.1.0"
  1192. },
  1193. "compile": {
  1194. "lib/netstandard1.0/_._": {}
  1195. },
  1196. "runtime": {
  1197. "lib/netstandard1.0/_._": {}
  1198. }
  1199. },
  1200. "runtime.native.System.Net.Security/4.3.0": {
  1201. "type": "package",
  1202. "dependencies": {
  1203. "Microsoft.NETCore.Platforms": "1.1.0",
  1204. "Microsoft.NETCore.Targets": "1.1.0"
  1205. },
  1206. "compile": {
  1207. "lib/netstandard1.0/_._": {}
  1208. },
  1209. "runtime": {
  1210. "lib/netstandard1.0/_._": {}
  1211. }
  1212. },
  1213. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1214. "type": "package",
  1215. "dependencies": {
  1216. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1217. },
  1218. "compile": {
  1219. "lib/netstandard1.0/_._": {}
  1220. },
  1221. "runtime": {
  1222. "lib/netstandard1.0/_._": {}
  1223. }
  1224. },
  1225. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1226. "type": "package",
  1227. "dependencies": {
  1228. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1229. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1230. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1231. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1232. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1233. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1234. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1235. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1236. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1237. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1238. },
  1239. "compile": {
  1240. "lib/netstandard1.0/_._": {}
  1241. },
  1242. "runtime": {
  1243. "lib/netstandard1.0/_._": {}
  1244. }
  1245. },
  1246. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1247. "type": "package",
  1248. "runtimeTargets": {
  1249. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1250. "assetType": "native",
  1251. "rid": "opensuse.13.2-x64"
  1252. }
  1253. }
  1254. },
  1255. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1256. "type": "package",
  1257. "runtimeTargets": {
  1258. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1259. "assetType": "native",
  1260. "rid": "opensuse.42.1-x64"
  1261. }
  1262. }
  1263. },
  1264. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1265. "type": "package",
  1266. "runtimeTargets": {
  1267. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1268. "assetType": "native",
  1269. "rid": "osx.10.10-x64"
  1270. }
  1271. }
  1272. },
  1273. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1274. "type": "package",
  1275. "runtimeTargets": {
  1276. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1277. "assetType": "native",
  1278. "rid": "osx.10.10-x64"
  1279. }
  1280. }
  1281. },
  1282. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1283. "type": "package",
  1284. "runtimeTargets": {
  1285. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1286. "assetType": "native",
  1287. "rid": "rhel.7-x64"
  1288. }
  1289. }
  1290. },
  1291. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1292. "type": "package",
  1293. "runtimeTargets": {
  1294. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1295. "assetType": "native",
  1296. "rid": "ubuntu.14.04-x64"
  1297. }
  1298. }
  1299. },
  1300. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1301. "type": "package",
  1302. "runtimeTargets": {
  1303. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1304. "assetType": "native",
  1305. "rid": "ubuntu.16.04-x64"
  1306. }
  1307. }
  1308. },
  1309. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1310. "type": "package",
  1311. "runtimeTargets": {
  1312. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1313. "assetType": "native",
  1314. "rid": "ubuntu.16.10-x64"
  1315. }
  1316. }
  1317. },
  1318. "SixLabors.ImageSharp/2.1.6": {
  1319. "type": "package",
  1320. "dependencies": {
  1321. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1322. "System.Text.Encoding.CodePages": "5.0.0"
  1323. },
  1324. "compile": {
  1325. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1326. "related": ".xml"
  1327. }
  1328. },
  1329. "runtime": {
  1330. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1331. "related": ".xml"
  1332. }
  1333. }
  1334. },
  1335. "SSH.NET/2020.0.0-beta1": {
  1336. "type": "package",
  1337. "dependencies": {
  1338. "SshNet.Security.Cryptography": "[1.3.0]"
  1339. },
  1340. "compile": {
  1341. "lib/netstandard2.0/Renci.SshNet.dll": {
  1342. "related": ".xml"
  1343. }
  1344. },
  1345. "runtime": {
  1346. "lib/netstandard2.0/Renci.SshNet.dll": {
  1347. "related": ".xml"
  1348. }
  1349. }
  1350. },
  1351. "SshNet.Security.Cryptography/1.3.0": {
  1352. "type": "package",
  1353. "compile": {
  1354. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1355. "related": ".xml"
  1356. }
  1357. },
  1358. "runtime": {
  1359. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1360. "related": ".xml"
  1361. }
  1362. }
  1363. },
  1364. "StackExchange.Redis/1.2.4": {
  1365. "type": "package",
  1366. "dependencies": {
  1367. "NETStandard.Library": "1.6.1",
  1368. "System.Collections": "4.3.0",
  1369. "System.Collections.Concurrent": "4.3.0",
  1370. "System.Collections.NonGeneric": "4.3.0",
  1371. "System.Diagnostics.Tools": "4.3.0",
  1372. "System.IO.Compression": "4.3.0",
  1373. "System.IO.FileSystem": "4.3.0",
  1374. "System.Linq": "4.3.0",
  1375. "System.Net.NameResolution": "4.3.0",
  1376. "System.Net.Security": "4.3.0",
  1377. "System.Net.Sockets": "4.3.0",
  1378. "System.Reflection.Emit": "4.3.0",
  1379. "System.Reflection.Emit.Lightweight": "4.3.0",
  1380. "System.Reflection.TypeExtensions": "4.3.0",
  1381. "System.Runtime.Extensions": "4.3.0",
  1382. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1383. "System.Security.Cryptography.Algorithms": "4.3.0",
  1384. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1385. "System.Text.RegularExpressions": "4.3.0",
  1386. "System.Threading": "4.3.0",
  1387. "System.Threading.Thread": "4.3.0",
  1388. "System.Threading.ThreadPool": "4.3.0",
  1389. "System.Threading.Timer": "4.3.0"
  1390. },
  1391. "compile": {
  1392. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1393. "related": ".xml"
  1394. }
  1395. },
  1396. "runtime": {
  1397. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1398. "related": ".xml"
  1399. }
  1400. }
  1401. },
  1402. "Swashbuckle.AspNetCore/5.6.3": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1406. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1407. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1408. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1409. },
  1410. "build": {
  1411. "build/Swashbuckle.AspNetCore.props": {}
  1412. }
  1413. },
  1414. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1415. "type": "package",
  1416. "dependencies": {
  1417. "Microsoft.OpenApi": "1.2.3"
  1418. },
  1419. "compile": {
  1420. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1421. "related": ".pdb;.xml"
  1422. }
  1423. },
  1424. "runtime": {
  1425. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1426. "related": ".pdb;.xml"
  1427. }
  1428. },
  1429. "frameworkReferences": [
  1430. "Microsoft.AspNetCore.App"
  1431. ]
  1432. },
  1433. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1434. "type": "package",
  1435. "dependencies": {
  1436. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1437. },
  1438. "compile": {
  1439. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1440. "related": ".pdb;.xml"
  1441. }
  1442. },
  1443. "runtime": {
  1444. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1445. "related": ".pdb;.xml"
  1446. }
  1447. },
  1448. "frameworkReferences": [
  1449. "Microsoft.AspNetCore.App"
  1450. ]
  1451. },
  1452. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1453. "type": "package",
  1454. "compile": {
  1455. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1456. "related": ".pdb;.xml"
  1457. }
  1458. },
  1459. "runtime": {
  1460. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1461. "related": ".pdb;.xml"
  1462. }
  1463. },
  1464. "frameworkReferences": [
  1465. "Microsoft.AspNetCore.App"
  1466. ]
  1467. },
  1468. "System.AppContext/4.3.0": {
  1469. "type": "package",
  1470. "dependencies": {
  1471. "System.Runtime": "4.3.0"
  1472. },
  1473. "compile": {
  1474. "ref/netstandard1.6/System.AppContext.dll": {
  1475. "related": ".xml"
  1476. }
  1477. },
  1478. "runtime": {
  1479. "lib/netstandard1.6/System.AppContext.dll": {}
  1480. }
  1481. },
  1482. "System.Buffers/4.5.1": {
  1483. "type": "package",
  1484. "compile": {
  1485. "ref/netcoreapp2.0/_._": {}
  1486. },
  1487. "runtime": {
  1488. "lib/netcoreapp2.0/_._": {}
  1489. }
  1490. },
  1491. "System.Collections/4.3.0": {
  1492. "type": "package",
  1493. "dependencies": {
  1494. "Microsoft.NETCore.Platforms": "1.1.0",
  1495. "Microsoft.NETCore.Targets": "1.1.0",
  1496. "System.Runtime": "4.3.0"
  1497. },
  1498. "compile": {
  1499. "ref/netstandard1.3/System.Collections.dll": {
  1500. "related": ".xml"
  1501. }
  1502. }
  1503. },
  1504. "System.Collections.Concurrent/4.3.0": {
  1505. "type": "package",
  1506. "dependencies": {
  1507. "System.Collections": "4.3.0",
  1508. "System.Diagnostics.Debug": "4.3.0",
  1509. "System.Diagnostics.Tracing": "4.3.0",
  1510. "System.Globalization": "4.3.0",
  1511. "System.Reflection": "4.3.0",
  1512. "System.Resources.ResourceManager": "4.3.0",
  1513. "System.Runtime": "4.3.0",
  1514. "System.Runtime.Extensions": "4.3.0",
  1515. "System.Threading": "4.3.0",
  1516. "System.Threading.Tasks": "4.3.0"
  1517. },
  1518. "compile": {
  1519. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1520. "related": ".xml"
  1521. }
  1522. },
  1523. "runtime": {
  1524. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1525. }
  1526. },
  1527. "System.Collections.Immutable/5.0.0": {
  1528. "type": "package",
  1529. "compile": {
  1530. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1531. "related": ".xml"
  1532. }
  1533. },
  1534. "runtime": {
  1535. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1536. "related": ".xml"
  1537. }
  1538. }
  1539. },
  1540. "System.Collections.NonGeneric/4.3.0": {
  1541. "type": "package",
  1542. "dependencies": {
  1543. "System.Diagnostics.Debug": "4.3.0",
  1544. "System.Globalization": "4.3.0",
  1545. "System.Resources.ResourceManager": "4.3.0",
  1546. "System.Runtime": "4.3.0",
  1547. "System.Runtime.Extensions": "4.3.0",
  1548. "System.Threading": "4.3.0"
  1549. },
  1550. "compile": {
  1551. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1552. "related": ".xml"
  1553. }
  1554. },
  1555. "runtime": {
  1556. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1557. }
  1558. },
  1559. "System.ComponentModel/4.3.0": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "System.Runtime": "4.3.0"
  1563. },
  1564. "compile": {
  1565. "ref/netstandard1.0/System.ComponentModel.dll": {
  1566. "related": ".xml"
  1567. }
  1568. },
  1569. "runtime": {
  1570. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1571. }
  1572. },
  1573. "System.ComponentModel.Annotations/5.0.0": {
  1574. "type": "package",
  1575. "compile": {
  1576. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1577. "related": ".xml"
  1578. }
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1582. "related": ".xml"
  1583. }
  1584. }
  1585. },
  1586. "System.ComponentModel.EventBasedAsync/4.3.0": {
  1587. "type": "package",
  1588. "dependencies": {
  1589. "System.Resources.ResourceManager": "4.3.0",
  1590. "System.Runtime": "4.3.0",
  1591. "System.Threading": "4.3.0",
  1592. "System.Threading.Tasks": "4.3.0"
  1593. },
  1594. "compile": {
  1595. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {
  1596. "related": ".xml"
  1597. }
  1598. },
  1599. "runtime": {
  1600. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {}
  1601. }
  1602. },
  1603. "System.ComponentModel.Primitives/4.3.0": {
  1604. "type": "package",
  1605. "dependencies": {
  1606. "System.ComponentModel": "4.3.0",
  1607. "System.Resources.ResourceManager": "4.3.0",
  1608. "System.Runtime": "4.3.0"
  1609. },
  1610. "compile": {
  1611. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1612. "related": ".xml"
  1613. }
  1614. },
  1615. "runtime": {
  1616. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1617. }
  1618. },
  1619. "System.Configuration.ConfigurationManager/4.5.0": {
  1620. "type": "package",
  1621. "dependencies": {
  1622. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1623. "System.Security.Permissions": "4.5.0"
  1624. },
  1625. "compile": {
  1626. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1627. "related": ".xml"
  1628. }
  1629. },
  1630. "runtime": {
  1631. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1632. }
  1633. },
  1634. "System.Console/4.3.0": {
  1635. "type": "package",
  1636. "dependencies": {
  1637. "Microsoft.NETCore.Platforms": "1.1.0",
  1638. "Microsoft.NETCore.Targets": "1.1.0",
  1639. "System.IO": "4.3.0",
  1640. "System.Runtime": "4.3.0",
  1641. "System.Text.Encoding": "4.3.0"
  1642. },
  1643. "compile": {
  1644. "ref/netstandard1.3/System.Console.dll": {
  1645. "related": ".xml"
  1646. }
  1647. }
  1648. },
  1649. "System.Diagnostics.Debug/4.3.0": {
  1650. "type": "package",
  1651. "dependencies": {
  1652. "Microsoft.NETCore.Platforms": "1.1.0",
  1653. "Microsoft.NETCore.Targets": "1.1.0",
  1654. "System.Runtime": "4.3.0"
  1655. },
  1656. "compile": {
  1657. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1658. "related": ".xml"
  1659. }
  1660. }
  1661. },
  1662. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1663. "type": "package",
  1664. "compile": {
  1665. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1666. "related": ".xml"
  1667. }
  1668. },
  1669. "runtime": {
  1670. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1671. "related": ".xml"
  1672. }
  1673. }
  1674. },
  1675. "System.Diagnostics.Tools/4.3.0": {
  1676. "type": "package",
  1677. "dependencies": {
  1678. "Microsoft.NETCore.Platforms": "1.1.0",
  1679. "Microsoft.NETCore.Targets": "1.1.0",
  1680. "System.Runtime": "4.3.0"
  1681. },
  1682. "compile": {
  1683. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1684. "related": ".xml"
  1685. }
  1686. }
  1687. },
  1688. "System.Diagnostics.Tracing/4.3.0": {
  1689. "type": "package",
  1690. "dependencies": {
  1691. "Microsoft.NETCore.Platforms": "1.1.0",
  1692. "Microsoft.NETCore.Targets": "1.1.0",
  1693. "System.Runtime": "4.3.0"
  1694. },
  1695. "compile": {
  1696. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1697. "related": ".xml"
  1698. }
  1699. }
  1700. },
  1701. "System.Drawing.Common/5.0.3": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.Win32.SystemEvents": "5.0.0"
  1705. },
  1706. "compile": {
  1707. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1708. "related": ".xml"
  1709. }
  1710. },
  1711. "runtime": {
  1712. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1713. "related": ".xml"
  1714. }
  1715. },
  1716. "runtimeTargets": {
  1717. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1718. "assetType": "runtime",
  1719. "rid": "unix"
  1720. },
  1721. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1722. "assetType": "runtime",
  1723. "rid": "win"
  1724. }
  1725. }
  1726. },
  1727. "System.Globalization/4.3.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "Microsoft.NETCore.Platforms": "1.1.0",
  1731. "Microsoft.NETCore.Targets": "1.1.0",
  1732. "System.Runtime": "4.3.0"
  1733. },
  1734. "compile": {
  1735. "ref/netstandard1.3/System.Globalization.dll": {
  1736. "related": ".xml"
  1737. }
  1738. }
  1739. },
  1740. "System.Globalization.Calendars/4.3.0": {
  1741. "type": "package",
  1742. "dependencies": {
  1743. "Microsoft.NETCore.Platforms": "1.1.0",
  1744. "Microsoft.NETCore.Targets": "1.1.0",
  1745. "System.Globalization": "4.3.0",
  1746. "System.Runtime": "4.3.0"
  1747. },
  1748. "compile": {
  1749. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1750. "related": ".xml"
  1751. }
  1752. }
  1753. },
  1754. "System.Globalization.Extensions/4.3.0": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "Microsoft.NETCore.Platforms": "1.1.0",
  1758. "System.Globalization": "4.3.0",
  1759. "System.Resources.ResourceManager": "4.3.0",
  1760. "System.Runtime": "4.3.0",
  1761. "System.Runtime.Extensions": "4.3.0",
  1762. "System.Runtime.InteropServices": "4.3.0"
  1763. },
  1764. "compile": {
  1765. "ref/netstandard1.3/_._": {
  1766. "related": ".xml"
  1767. }
  1768. },
  1769. "runtimeTargets": {
  1770. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1771. "assetType": "runtime",
  1772. "rid": "unix"
  1773. },
  1774. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1775. "assetType": "runtime",
  1776. "rid": "win"
  1777. }
  1778. }
  1779. },
  1780. "System.IO/4.3.0": {
  1781. "type": "package",
  1782. "dependencies": {
  1783. "Microsoft.NETCore.Platforms": "1.1.0",
  1784. "Microsoft.NETCore.Targets": "1.1.0",
  1785. "System.Runtime": "4.3.0",
  1786. "System.Text.Encoding": "4.3.0",
  1787. "System.Threading.Tasks": "4.3.0"
  1788. },
  1789. "compile": {
  1790. "ref/netstandard1.5/System.IO.dll": {
  1791. "related": ".xml"
  1792. }
  1793. }
  1794. },
  1795. "System.IO.Compression/4.3.0": {
  1796. "type": "package",
  1797. "dependencies": {
  1798. "Microsoft.NETCore.Platforms": "1.1.0",
  1799. "System.Buffers": "4.3.0",
  1800. "System.Collections": "4.3.0",
  1801. "System.Diagnostics.Debug": "4.3.0",
  1802. "System.IO": "4.3.0",
  1803. "System.Resources.ResourceManager": "4.3.0",
  1804. "System.Runtime": "4.3.0",
  1805. "System.Runtime.Extensions": "4.3.0",
  1806. "System.Runtime.Handles": "4.3.0",
  1807. "System.Runtime.InteropServices": "4.3.0",
  1808. "System.Text.Encoding": "4.3.0",
  1809. "System.Threading": "4.3.0",
  1810. "System.Threading.Tasks": "4.3.0",
  1811. "runtime.native.System": "4.3.0",
  1812. "runtime.native.System.IO.Compression": "4.3.0"
  1813. },
  1814. "compile": {
  1815. "ref/netstandard1.3/System.IO.Compression.dll": {
  1816. "related": ".xml"
  1817. }
  1818. },
  1819. "runtimeTargets": {
  1820. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1821. "assetType": "runtime",
  1822. "rid": "unix"
  1823. },
  1824. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1825. "assetType": "runtime",
  1826. "rid": "win"
  1827. }
  1828. }
  1829. },
  1830. "System.IO.Compression.ZipFile/4.3.0": {
  1831. "type": "package",
  1832. "dependencies": {
  1833. "System.Buffers": "4.3.0",
  1834. "System.IO": "4.3.0",
  1835. "System.IO.Compression": "4.3.0",
  1836. "System.IO.FileSystem": "4.3.0",
  1837. "System.IO.FileSystem.Primitives": "4.3.0",
  1838. "System.Resources.ResourceManager": "4.3.0",
  1839. "System.Runtime": "4.3.0",
  1840. "System.Runtime.Extensions": "4.3.0",
  1841. "System.Text.Encoding": "4.3.0"
  1842. },
  1843. "compile": {
  1844. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1845. "related": ".xml"
  1846. }
  1847. },
  1848. "runtime": {
  1849. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1850. }
  1851. },
  1852. "System.IO.FileSystem/4.3.0": {
  1853. "type": "package",
  1854. "dependencies": {
  1855. "Microsoft.NETCore.Platforms": "1.1.0",
  1856. "Microsoft.NETCore.Targets": "1.1.0",
  1857. "System.IO": "4.3.0",
  1858. "System.IO.FileSystem.Primitives": "4.3.0",
  1859. "System.Runtime": "4.3.0",
  1860. "System.Runtime.Handles": "4.3.0",
  1861. "System.Text.Encoding": "4.3.0",
  1862. "System.Threading.Tasks": "4.3.0"
  1863. },
  1864. "compile": {
  1865. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1866. "related": ".xml"
  1867. }
  1868. }
  1869. },
  1870. "System.IO.FileSystem.Primitives/4.3.0": {
  1871. "type": "package",
  1872. "dependencies": {
  1873. "System.Runtime": "4.3.0"
  1874. },
  1875. "compile": {
  1876. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1877. "related": ".xml"
  1878. }
  1879. },
  1880. "runtime": {
  1881. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1882. }
  1883. },
  1884. "System.IO.Pipelines/5.0.0": {
  1885. "type": "package",
  1886. "compile": {
  1887. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1888. "related": ".xml"
  1889. }
  1890. },
  1891. "runtime": {
  1892. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1893. "related": ".xml"
  1894. }
  1895. }
  1896. },
  1897. "System.Linq/4.3.0": {
  1898. "type": "package",
  1899. "dependencies": {
  1900. "System.Collections": "4.3.0",
  1901. "System.Diagnostics.Debug": "4.3.0",
  1902. "System.Resources.ResourceManager": "4.3.0",
  1903. "System.Runtime": "4.3.0",
  1904. "System.Runtime.Extensions": "4.3.0"
  1905. },
  1906. "compile": {
  1907. "ref/netstandard1.6/System.Linq.dll": {
  1908. "related": ".xml"
  1909. }
  1910. },
  1911. "runtime": {
  1912. "lib/netstandard1.6/System.Linq.dll": {}
  1913. }
  1914. },
  1915. "System.Linq.Expressions/4.3.0": {
  1916. "type": "package",
  1917. "dependencies": {
  1918. "System.Collections": "4.3.0",
  1919. "System.Diagnostics.Debug": "4.3.0",
  1920. "System.Globalization": "4.3.0",
  1921. "System.IO": "4.3.0",
  1922. "System.Linq": "4.3.0",
  1923. "System.ObjectModel": "4.3.0",
  1924. "System.Reflection": "4.3.0",
  1925. "System.Reflection.Emit": "4.3.0",
  1926. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1927. "System.Reflection.Emit.Lightweight": "4.3.0",
  1928. "System.Reflection.Extensions": "4.3.0",
  1929. "System.Reflection.Primitives": "4.3.0",
  1930. "System.Reflection.TypeExtensions": "4.3.0",
  1931. "System.Resources.ResourceManager": "4.3.0",
  1932. "System.Runtime": "4.3.0",
  1933. "System.Runtime.Extensions": "4.3.0",
  1934. "System.Threading": "4.3.0"
  1935. },
  1936. "compile": {
  1937. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1938. "related": ".xml"
  1939. }
  1940. },
  1941. "runtime": {
  1942. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1943. }
  1944. },
  1945. "System.Memory/4.5.5": {
  1946. "type": "package",
  1947. "compile": {
  1948. "ref/netcoreapp2.1/_._": {}
  1949. },
  1950. "runtime": {
  1951. "lib/netcoreapp2.1/_._": {}
  1952. }
  1953. },
  1954. "System.Net.Http/4.3.2": {
  1955. "type": "package",
  1956. "dependencies": {
  1957. "Microsoft.NETCore.Platforms": "1.1.0",
  1958. "System.Collections": "4.3.0",
  1959. "System.Diagnostics.Debug": "4.3.0",
  1960. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1961. "System.Diagnostics.Tracing": "4.3.0",
  1962. "System.Globalization": "4.3.0",
  1963. "System.Globalization.Extensions": "4.3.0",
  1964. "System.IO": "4.3.0",
  1965. "System.IO.FileSystem": "4.3.0",
  1966. "System.Net.Primitives": "4.3.0",
  1967. "System.Resources.ResourceManager": "4.3.0",
  1968. "System.Runtime": "4.3.0",
  1969. "System.Runtime.Extensions": "4.3.0",
  1970. "System.Runtime.Handles": "4.3.0",
  1971. "System.Runtime.InteropServices": "4.3.0",
  1972. "System.Security.Cryptography.Algorithms": "4.3.0",
  1973. "System.Security.Cryptography.Encoding": "4.3.0",
  1974. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1975. "System.Security.Cryptography.Primitives": "4.3.0",
  1976. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1977. "System.Text.Encoding": "4.3.0",
  1978. "System.Threading": "4.3.0",
  1979. "System.Threading.Tasks": "4.3.0",
  1980. "runtime.native.System": "4.3.0",
  1981. "runtime.native.System.Net.Http": "4.3.0",
  1982. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1983. },
  1984. "compile": {
  1985. "ref/netstandard1.3/System.Net.Http.dll": {}
  1986. },
  1987. "runtimeTargets": {
  1988. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1989. "assetType": "runtime",
  1990. "rid": "unix"
  1991. },
  1992. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1993. "assetType": "runtime",
  1994. "rid": "win"
  1995. }
  1996. }
  1997. },
  1998. "System.Net.NameResolution/4.3.0": {
  1999. "type": "package",
  2000. "dependencies": {
  2001. "Microsoft.NETCore.Platforms": "1.1.0",
  2002. "System.Collections": "4.3.0",
  2003. "System.Diagnostics.Tracing": "4.3.0",
  2004. "System.Globalization": "4.3.0",
  2005. "System.Net.Primitives": "4.3.0",
  2006. "System.Resources.ResourceManager": "4.3.0",
  2007. "System.Runtime": "4.3.0",
  2008. "System.Runtime.Extensions": "4.3.0",
  2009. "System.Runtime.Handles": "4.3.0",
  2010. "System.Runtime.InteropServices": "4.3.0",
  2011. "System.Security.Principal.Windows": "4.3.0",
  2012. "System.Threading": "4.3.0",
  2013. "System.Threading.Tasks": "4.3.0",
  2014. "runtime.native.System": "4.3.0"
  2015. },
  2016. "compile": {
  2017. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2018. "related": ".xml"
  2019. }
  2020. },
  2021. "runtimeTargets": {
  2022. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2023. "assetType": "runtime",
  2024. "rid": "unix"
  2025. },
  2026. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2027. "assetType": "runtime",
  2028. "rid": "win"
  2029. }
  2030. }
  2031. },
  2032. "System.Net.Primitives/4.3.0": {
  2033. "type": "package",
  2034. "dependencies": {
  2035. "Microsoft.NETCore.Platforms": "1.1.0",
  2036. "Microsoft.NETCore.Targets": "1.1.0",
  2037. "System.Runtime": "4.3.0",
  2038. "System.Runtime.Handles": "4.3.0"
  2039. },
  2040. "compile": {
  2041. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2042. "related": ".xml"
  2043. }
  2044. }
  2045. },
  2046. "System.Net.Security/4.3.0": {
  2047. "type": "package",
  2048. "dependencies": {
  2049. "Microsoft.NETCore.Platforms": "1.1.0",
  2050. "Microsoft.Win32.Primitives": "4.3.0",
  2051. "System.Collections": "4.3.0",
  2052. "System.Collections.Concurrent": "4.3.0",
  2053. "System.Diagnostics.Tracing": "4.3.0",
  2054. "System.Globalization": "4.3.0",
  2055. "System.Globalization.Extensions": "4.3.0",
  2056. "System.IO": "4.3.0",
  2057. "System.Net.Primitives": "4.3.0",
  2058. "System.Resources.ResourceManager": "4.3.0",
  2059. "System.Runtime": "4.3.0",
  2060. "System.Runtime.Extensions": "4.3.0",
  2061. "System.Runtime.Handles": "4.3.0",
  2062. "System.Runtime.InteropServices": "4.3.0",
  2063. "System.Security.Claims": "4.3.0",
  2064. "System.Security.Cryptography.Algorithms": "4.3.0",
  2065. "System.Security.Cryptography.Encoding": "4.3.0",
  2066. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2067. "System.Security.Cryptography.Primitives": "4.3.0",
  2068. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2069. "System.Security.Principal": "4.3.0",
  2070. "System.Text.Encoding": "4.3.0",
  2071. "System.Threading": "4.3.0",
  2072. "System.Threading.Tasks": "4.3.0",
  2073. "System.Threading.ThreadPool": "4.3.0",
  2074. "runtime.native.System": "4.3.0",
  2075. "runtime.native.System.Net.Security": "4.3.0",
  2076. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2077. },
  2078. "compile": {
  2079. "ref/netstandard1.3/System.Net.Security.dll": {
  2080. "related": ".xml"
  2081. }
  2082. },
  2083. "runtimeTargets": {
  2084. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2085. "assetType": "runtime",
  2086. "rid": "unix"
  2087. },
  2088. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2089. "assetType": "runtime",
  2090. "rid": "win"
  2091. }
  2092. }
  2093. },
  2094. "System.Net.Sockets/4.3.0": {
  2095. "type": "package",
  2096. "dependencies": {
  2097. "Microsoft.NETCore.Platforms": "1.1.0",
  2098. "Microsoft.NETCore.Targets": "1.1.0",
  2099. "System.IO": "4.3.0",
  2100. "System.Net.Primitives": "4.3.0",
  2101. "System.Runtime": "4.3.0",
  2102. "System.Threading.Tasks": "4.3.0"
  2103. },
  2104. "compile": {
  2105. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2106. "related": ".xml"
  2107. }
  2108. }
  2109. },
  2110. "System.ObjectModel/4.3.0": {
  2111. "type": "package",
  2112. "dependencies": {
  2113. "System.Collections": "4.3.0",
  2114. "System.Diagnostics.Debug": "4.3.0",
  2115. "System.Resources.ResourceManager": "4.3.0",
  2116. "System.Runtime": "4.3.0",
  2117. "System.Threading": "4.3.0"
  2118. },
  2119. "compile": {
  2120. "ref/netstandard1.3/System.ObjectModel.dll": {
  2121. "related": ".xml"
  2122. }
  2123. },
  2124. "runtime": {
  2125. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2126. }
  2127. },
  2128. "System.Reactive/4.4.1": {
  2129. "type": "package",
  2130. "compile": {
  2131. "lib/netcoreapp3.0/_._": {}
  2132. },
  2133. "runtime": {
  2134. "lib/netcoreapp3.0/_._": {}
  2135. },
  2136. "build": {
  2137. "buildTransitive/netcoreapp3.0/System.Reactive.targets": {}
  2138. }
  2139. },
  2140. "System.Reflection/4.3.0": {
  2141. "type": "package",
  2142. "dependencies": {
  2143. "Microsoft.NETCore.Platforms": "1.1.0",
  2144. "Microsoft.NETCore.Targets": "1.1.0",
  2145. "System.IO": "4.3.0",
  2146. "System.Reflection.Primitives": "4.3.0",
  2147. "System.Runtime": "4.3.0"
  2148. },
  2149. "compile": {
  2150. "ref/netstandard1.5/System.Reflection.dll": {
  2151. "related": ".xml"
  2152. }
  2153. }
  2154. },
  2155. "System.Reflection.Emit/4.3.0": {
  2156. "type": "package",
  2157. "dependencies": {
  2158. "System.IO": "4.3.0",
  2159. "System.Reflection": "4.3.0",
  2160. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2161. "System.Reflection.Primitives": "4.3.0",
  2162. "System.Runtime": "4.3.0"
  2163. },
  2164. "compile": {
  2165. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2166. "related": ".xml"
  2167. }
  2168. },
  2169. "runtime": {
  2170. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2171. }
  2172. },
  2173. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2174. "type": "package",
  2175. "dependencies": {
  2176. "System.Reflection": "4.3.0",
  2177. "System.Reflection.Primitives": "4.3.0",
  2178. "System.Runtime": "4.3.0"
  2179. },
  2180. "compile": {
  2181. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2182. "related": ".xml"
  2183. }
  2184. },
  2185. "runtime": {
  2186. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2187. }
  2188. },
  2189. "System.Reflection.Emit.Lightweight/4.3.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "System.Reflection": "4.3.0",
  2193. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2194. "System.Reflection.Primitives": "4.3.0",
  2195. "System.Runtime": "4.3.0"
  2196. },
  2197. "compile": {
  2198. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2199. "related": ".xml"
  2200. }
  2201. },
  2202. "runtime": {
  2203. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2204. }
  2205. },
  2206. "System.Reflection.Extensions/4.3.0": {
  2207. "type": "package",
  2208. "dependencies": {
  2209. "Microsoft.NETCore.Platforms": "1.1.0",
  2210. "Microsoft.NETCore.Targets": "1.1.0",
  2211. "System.Reflection": "4.3.0",
  2212. "System.Runtime": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2216. "related": ".xml"
  2217. }
  2218. }
  2219. },
  2220. "System.Reflection.Primitives/4.3.0": {
  2221. "type": "package",
  2222. "dependencies": {
  2223. "Microsoft.NETCore.Platforms": "1.1.0",
  2224. "Microsoft.NETCore.Targets": "1.1.0",
  2225. "System.Runtime": "4.3.0"
  2226. },
  2227. "compile": {
  2228. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2229. "related": ".xml"
  2230. }
  2231. }
  2232. },
  2233. "System.Reflection.TypeExtensions/4.3.0": {
  2234. "type": "package",
  2235. "dependencies": {
  2236. "System.Reflection": "4.3.0",
  2237. "System.Runtime": "4.3.0"
  2238. },
  2239. "compile": {
  2240. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2241. "related": ".xml"
  2242. }
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2246. }
  2247. },
  2248. "System.Resources.ResourceManager/4.3.0": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "Microsoft.NETCore.Platforms": "1.1.0",
  2252. "Microsoft.NETCore.Targets": "1.1.0",
  2253. "System.Globalization": "4.3.0",
  2254. "System.Reflection": "4.3.0",
  2255. "System.Runtime": "4.3.0"
  2256. },
  2257. "compile": {
  2258. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2259. "related": ".xml"
  2260. }
  2261. }
  2262. },
  2263. "System.Runtime/4.3.0": {
  2264. "type": "package",
  2265. "dependencies": {
  2266. "Microsoft.NETCore.Platforms": "1.1.0",
  2267. "Microsoft.NETCore.Targets": "1.1.0"
  2268. },
  2269. "compile": {
  2270. "ref/netstandard1.5/System.Runtime.dll": {
  2271. "related": ".xml"
  2272. }
  2273. }
  2274. },
  2275. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2276. "type": "package",
  2277. "compile": {
  2278. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2279. "related": ".xml"
  2280. }
  2281. },
  2282. "runtime": {
  2283. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2284. "related": ".xml"
  2285. }
  2286. }
  2287. },
  2288. "System.Runtime.Extensions/4.3.0": {
  2289. "type": "package",
  2290. "dependencies": {
  2291. "Microsoft.NETCore.Platforms": "1.1.0",
  2292. "Microsoft.NETCore.Targets": "1.1.0",
  2293. "System.Runtime": "4.3.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2297. "related": ".xml"
  2298. }
  2299. }
  2300. },
  2301. "System.Runtime.Handles/4.3.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "Microsoft.NETCore.Platforms": "1.1.0",
  2305. "Microsoft.NETCore.Targets": "1.1.0",
  2306. "System.Runtime": "4.3.0"
  2307. },
  2308. "compile": {
  2309. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2310. "related": ".xml"
  2311. }
  2312. }
  2313. },
  2314. "System.Runtime.InteropServices/4.3.0": {
  2315. "type": "package",
  2316. "dependencies": {
  2317. "Microsoft.NETCore.Platforms": "1.1.0",
  2318. "Microsoft.NETCore.Targets": "1.1.0",
  2319. "System.Reflection": "4.3.0",
  2320. "System.Reflection.Primitives": "4.3.0",
  2321. "System.Runtime": "4.3.0",
  2322. "System.Runtime.Handles": "4.3.0"
  2323. },
  2324. "compile": {
  2325. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2326. }
  2327. },
  2328. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2329. "type": "package",
  2330. "dependencies": {
  2331. "System.Reflection": "4.3.0",
  2332. "System.Reflection.Extensions": "4.3.0",
  2333. "System.Resources.ResourceManager": "4.3.0",
  2334. "System.Runtime": "4.3.0",
  2335. "System.Runtime.InteropServices": "4.3.0",
  2336. "System.Threading": "4.3.0",
  2337. "runtime.native.System": "4.3.0"
  2338. },
  2339. "compile": {
  2340. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2341. },
  2342. "runtime": {
  2343. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2344. },
  2345. "runtimeTargets": {
  2346. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2347. "assetType": "runtime",
  2348. "rid": "unix"
  2349. },
  2350. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2351. "assetType": "runtime",
  2352. "rid": "win"
  2353. }
  2354. }
  2355. },
  2356. "System.Runtime.Numerics/4.3.0": {
  2357. "type": "package",
  2358. "dependencies": {
  2359. "System.Globalization": "4.3.0",
  2360. "System.Resources.ResourceManager": "4.3.0",
  2361. "System.Runtime": "4.3.0",
  2362. "System.Runtime.Extensions": "4.3.0"
  2363. },
  2364. "compile": {
  2365. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2366. "related": ".xml"
  2367. }
  2368. },
  2369. "runtime": {
  2370. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2371. }
  2372. },
  2373. "System.Runtime.Serialization.Primitives/4.3.0": {
  2374. "type": "package",
  2375. "dependencies": {
  2376. "System.Resources.ResourceManager": "4.3.0",
  2377. "System.Runtime": "4.3.0"
  2378. },
  2379. "compile": {
  2380. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  2381. "related": ".xml"
  2382. }
  2383. },
  2384. "runtime": {
  2385. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2386. }
  2387. },
  2388. "System.Security.AccessControl/4.7.0": {
  2389. "type": "package",
  2390. "dependencies": {
  2391. "Microsoft.NETCore.Platforms": "3.1.0",
  2392. "System.Security.Principal.Windows": "4.7.0"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtime": {
  2400. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2401. "related": ".xml"
  2402. }
  2403. },
  2404. "runtimeTargets": {
  2405. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2406. "assetType": "runtime",
  2407. "rid": "win"
  2408. }
  2409. }
  2410. },
  2411. "System.Security.Claims/4.3.0": {
  2412. "type": "package",
  2413. "dependencies": {
  2414. "System.Collections": "4.3.0",
  2415. "System.Globalization": "4.3.0",
  2416. "System.IO": "4.3.0",
  2417. "System.Resources.ResourceManager": "4.3.0",
  2418. "System.Runtime": "4.3.0",
  2419. "System.Runtime.Extensions": "4.3.0",
  2420. "System.Security.Principal": "4.3.0"
  2421. },
  2422. "compile": {
  2423. "ref/netstandard1.3/_._": {
  2424. "related": ".xml"
  2425. }
  2426. },
  2427. "runtime": {
  2428. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2429. }
  2430. },
  2431. "System.Security.Cryptography.Algorithms/4.3.0": {
  2432. "type": "package",
  2433. "dependencies": {
  2434. "Microsoft.NETCore.Platforms": "1.1.0",
  2435. "System.Collections": "4.3.0",
  2436. "System.IO": "4.3.0",
  2437. "System.Resources.ResourceManager": "4.3.0",
  2438. "System.Runtime": "4.3.0",
  2439. "System.Runtime.Extensions": "4.3.0",
  2440. "System.Runtime.Handles": "4.3.0",
  2441. "System.Runtime.InteropServices": "4.3.0",
  2442. "System.Runtime.Numerics": "4.3.0",
  2443. "System.Security.Cryptography.Encoding": "4.3.0",
  2444. "System.Security.Cryptography.Primitives": "4.3.0",
  2445. "System.Text.Encoding": "4.3.0",
  2446. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2447. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2448. },
  2449. "compile": {
  2450. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2451. },
  2452. "runtimeTargets": {
  2453. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2454. "assetType": "runtime",
  2455. "rid": "osx"
  2456. },
  2457. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2458. "assetType": "runtime",
  2459. "rid": "unix"
  2460. },
  2461. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2462. "assetType": "runtime",
  2463. "rid": "win"
  2464. }
  2465. }
  2466. },
  2467. "System.Security.Cryptography.Cng/4.3.0": {
  2468. "type": "package",
  2469. "dependencies": {
  2470. "Microsoft.NETCore.Platforms": "1.1.0",
  2471. "System.IO": "4.3.0",
  2472. "System.Resources.ResourceManager": "4.3.0",
  2473. "System.Runtime": "4.3.0",
  2474. "System.Runtime.Extensions": "4.3.0",
  2475. "System.Runtime.Handles": "4.3.0",
  2476. "System.Runtime.InteropServices": "4.3.0",
  2477. "System.Security.Cryptography.Algorithms": "4.3.0",
  2478. "System.Security.Cryptography.Encoding": "4.3.0",
  2479. "System.Security.Cryptography.Primitives": "4.3.0",
  2480. "System.Text.Encoding": "4.3.0"
  2481. },
  2482. "compile": {
  2483. "ref/netstandard1.6/_._": {}
  2484. },
  2485. "runtimeTargets": {
  2486. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2487. "assetType": "runtime",
  2488. "rid": "unix"
  2489. },
  2490. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2491. "assetType": "runtime",
  2492. "rid": "win"
  2493. }
  2494. }
  2495. },
  2496. "System.Security.Cryptography.Csp/4.3.0": {
  2497. "type": "package",
  2498. "dependencies": {
  2499. "Microsoft.NETCore.Platforms": "1.1.0",
  2500. "System.IO": "4.3.0",
  2501. "System.Reflection": "4.3.0",
  2502. "System.Resources.ResourceManager": "4.3.0",
  2503. "System.Runtime": "4.3.0",
  2504. "System.Runtime.Extensions": "4.3.0",
  2505. "System.Runtime.Handles": "4.3.0",
  2506. "System.Runtime.InteropServices": "4.3.0",
  2507. "System.Security.Cryptography.Algorithms": "4.3.0",
  2508. "System.Security.Cryptography.Encoding": "4.3.0",
  2509. "System.Security.Cryptography.Primitives": "4.3.0",
  2510. "System.Text.Encoding": "4.3.0",
  2511. "System.Threading": "4.3.0"
  2512. },
  2513. "compile": {
  2514. "ref/netstandard1.3/_._": {}
  2515. },
  2516. "runtimeTargets": {
  2517. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2518. "assetType": "runtime",
  2519. "rid": "unix"
  2520. },
  2521. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2522. "assetType": "runtime",
  2523. "rid": "win"
  2524. }
  2525. }
  2526. },
  2527. "System.Security.Cryptography.Encoding/4.3.0": {
  2528. "type": "package",
  2529. "dependencies": {
  2530. "Microsoft.NETCore.Platforms": "1.1.0",
  2531. "System.Collections": "4.3.0",
  2532. "System.Collections.Concurrent": "4.3.0",
  2533. "System.Linq": "4.3.0",
  2534. "System.Resources.ResourceManager": "4.3.0",
  2535. "System.Runtime": "4.3.0",
  2536. "System.Runtime.Extensions": "4.3.0",
  2537. "System.Runtime.Handles": "4.3.0",
  2538. "System.Runtime.InteropServices": "4.3.0",
  2539. "System.Security.Cryptography.Primitives": "4.3.0",
  2540. "System.Text.Encoding": "4.3.0",
  2541. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2542. },
  2543. "compile": {
  2544. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2545. "related": ".xml"
  2546. }
  2547. },
  2548. "runtimeTargets": {
  2549. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2550. "assetType": "runtime",
  2551. "rid": "unix"
  2552. },
  2553. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2554. "assetType": "runtime",
  2555. "rid": "win"
  2556. }
  2557. }
  2558. },
  2559. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2560. "type": "package",
  2561. "dependencies": {
  2562. "System.Collections": "4.3.0",
  2563. "System.IO": "4.3.0",
  2564. "System.Resources.ResourceManager": "4.3.0",
  2565. "System.Runtime": "4.3.0",
  2566. "System.Runtime.Extensions": "4.3.0",
  2567. "System.Runtime.Handles": "4.3.0",
  2568. "System.Runtime.InteropServices": "4.3.0",
  2569. "System.Runtime.Numerics": "4.3.0",
  2570. "System.Security.Cryptography.Algorithms": "4.3.0",
  2571. "System.Security.Cryptography.Encoding": "4.3.0",
  2572. "System.Security.Cryptography.Primitives": "4.3.0",
  2573. "System.Text.Encoding": "4.3.0",
  2574. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2575. },
  2576. "compile": {
  2577. "ref/netstandard1.6/_._": {}
  2578. },
  2579. "runtime": {
  2580. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2581. },
  2582. "runtimeTargets": {
  2583. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2584. "assetType": "runtime",
  2585. "rid": "unix"
  2586. }
  2587. }
  2588. },
  2589. "System.Security.Cryptography.Primitives/4.3.0": {
  2590. "type": "package",
  2591. "dependencies": {
  2592. "System.Diagnostics.Debug": "4.3.0",
  2593. "System.Globalization": "4.3.0",
  2594. "System.IO": "4.3.0",
  2595. "System.Resources.ResourceManager": "4.3.0",
  2596. "System.Runtime": "4.3.0",
  2597. "System.Threading": "4.3.0",
  2598. "System.Threading.Tasks": "4.3.0"
  2599. },
  2600. "compile": {
  2601. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2602. },
  2603. "runtime": {
  2604. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2605. }
  2606. },
  2607. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2608. "type": "package",
  2609. "compile": {
  2610. "ref/netstandard2.0/_._": {
  2611. "related": ".xml"
  2612. }
  2613. },
  2614. "runtime": {
  2615. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2616. },
  2617. "runtimeTargets": {
  2618. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2619. "assetType": "runtime",
  2620. "rid": "win"
  2621. }
  2622. }
  2623. },
  2624. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2625. "type": "package",
  2626. "dependencies": {
  2627. "Microsoft.NETCore.Platforms": "1.1.0",
  2628. "System.Collections": "4.3.0",
  2629. "System.Diagnostics.Debug": "4.3.0",
  2630. "System.Globalization": "4.3.0",
  2631. "System.Globalization.Calendars": "4.3.0",
  2632. "System.IO": "4.3.0",
  2633. "System.IO.FileSystem": "4.3.0",
  2634. "System.IO.FileSystem.Primitives": "4.3.0",
  2635. "System.Resources.ResourceManager": "4.3.0",
  2636. "System.Runtime": "4.3.0",
  2637. "System.Runtime.Extensions": "4.3.0",
  2638. "System.Runtime.Handles": "4.3.0",
  2639. "System.Runtime.InteropServices": "4.3.0",
  2640. "System.Runtime.Numerics": "4.3.0",
  2641. "System.Security.Cryptography.Algorithms": "4.3.0",
  2642. "System.Security.Cryptography.Cng": "4.3.0",
  2643. "System.Security.Cryptography.Csp": "4.3.0",
  2644. "System.Security.Cryptography.Encoding": "4.3.0",
  2645. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2646. "System.Security.Cryptography.Primitives": "4.3.0",
  2647. "System.Text.Encoding": "4.3.0",
  2648. "System.Threading": "4.3.0",
  2649. "runtime.native.System": "4.3.0",
  2650. "runtime.native.System.Net.Http": "4.3.0",
  2651. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2652. },
  2653. "compile": {
  2654. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2655. "related": ".xml"
  2656. }
  2657. },
  2658. "runtimeTargets": {
  2659. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2660. "assetType": "runtime",
  2661. "rid": "unix"
  2662. },
  2663. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2664. "assetType": "runtime",
  2665. "rid": "win"
  2666. }
  2667. }
  2668. },
  2669. "System.Security.Permissions/4.7.0": {
  2670. "type": "package",
  2671. "dependencies": {
  2672. "System.Security.AccessControl": "4.7.0",
  2673. "System.Windows.Extensions": "4.7.0"
  2674. },
  2675. "compile": {
  2676. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2677. "related": ".xml"
  2678. }
  2679. },
  2680. "runtime": {
  2681. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2682. "related": ".xml"
  2683. }
  2684. }
  2685. },
  2686. "System.Security.Principal/4.3.0": {
  2687. "type": "package",
  2688. "dependencies": {
  2689. "System.Runtime": "4.3.0"
  2690. },
  2691. "compile": {
  2692. "ref/netstandard1.0/System.Security.Principal.dll": {
  2693. "related": ".xml"
  2694. }
  2695. },
  2696. "runtime": {
  2697. "lib/netstandard1.0/System.Security.Principal.dll": {}
  2698. }
  2699. },
  2700. "System.Security.Principal.Windows/4.7.0": {
  2701. "type": "package",
  2702. "compile": {
  2703. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2704. "related": ".xml"
  2705. }
  2706. },
  2707. "runtime": {
  2708. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2709. "related": ".xml"
  2710. }
  2711. },
  2712. "runtimeTargets": {
  2713. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2714. "assetType": "runtime",
  2715. "rid": "unix"
  2716. },
  2717. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2718. "assetType": "runtime",
  2719. "rid": "win"
  2720. }
  2721. }
  2722. },
  2723. "System.Text.Encoding/4.3.0": {
  2724. "type": "package",
  2725. "dependencies": {
  2726. "Microsoft.NETCore.Platforms": "1.1.0",
  2727. "Microsoft.NETCore.Targets": "1.1.0",
  2728. "System.Runtime": "4.3.0"
  2729. },
  2730. "compile": {
  2731. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2732. "related": ".xml"
  2733. }
  2734. }
  2735. },
  2736. "System.Text.Encoding.CodePages/5.0.0": {
  2737. "type": "package",
  2738. "dependencies": {
  2739. "Microsoft.NETCore.Platforms": "5.0.0"
  2740. },
  2741. "compile": {
  2742. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2743. "related": ".xml"
  2744. }
  2745. },
  2746. "runtime": {
  2747. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2748. "related": ".xml"
  2749. }
  2750. },
  2751. "runtimeTargets": {
  2752. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2753. "assetType": "runtime",
  2754. "rid": "win"
  2755. }
  2756. }
  2757. },
  2758. "System.Text.Encoding.Extensions/4.3.0": {
  2759. "type": "package",
  2760. "dependencies": {
  2761. "Microsoft.NETCore.Platforms": "1.1.0",
  2762. "Microsoft.NETCore.Targets": "1.1.0",
  2763. "System.Runtime": "4.3.0",
  2764. "System.Text.Encoding": "4.3.0"
  2765. },
  2766. "compile": {
  2767. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2768. "related": ".xml"
  2769. }
  2770. }
  2771. },
  2772. "System.Text.Encodings.Web/4.7.0": {
  2773. "type": "package",
  2774. "compile": {
  2775. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2776. "related": ".xml"
  2777. }
  2778. },
  2779. "runtime": {
  2780. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  2781. "related": ".xml"
  2782. }
  2783. }
  2784. },
  2785. "System.Text.RegularExpressions/4.3.0": {
  2786. "type": "package",
  2787. "dependencies": {
  2788. "System.Runtime": "4.3.0"
  2789. },
  2790. "compile": {
  2791. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2792. },
  2793. "runtime": {
  2794. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2795. }
  2796. },
  2797. "System.Threading/4.3.0": {
  2798. "type": "package",
  2799. "dependencies": {
  2800. "System.Runtime": "4.3.0",
  2801. "System.Threading.Tasks": "4.3.0"
  2802. },
  2803. "compile": {
  2804. "ref/netstandard1.3/System.Threading.dll": {
  2805. "related": ".xml"
  2806. }
  2807. },
  2808. "runtime": {
  2809. "lib/netstandard1.3/System.Threading.dll": {}
  2810. }
  2811. },
  2812. "System.Threading.Channels/7.0.0": {
  2813. "type": "package",
  2814. "compile": {
  2815. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2816. "related": ".xml"
  2817. }
  2818. },
  2819. "runtime": {
  2820. "lib/netstandard2.1/System.Threading.Channels.dll": {
  2821. "related": ".xml"
  2822. }
  2823. },
  2824. "build": {
  2825. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  2826. }
  2827. },
  2828. "System.Threading.Tasks/4.3.0": {
  2829. "type": "package",
  2830. "dependencies": {
  2831. "Microsoft.NETCore.Platforms": "1.1.0",
  2832. "Microsoft.NETCore.Targets": "1.1.0",
  2833. "System.Runtime": "4.3.0"
  2834. },
  2835. "compile": {
  2836. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2837. "related": ".xml"
  2838. }
  2839. }
  2840. },
  2841. "System.Threading.Tasks.Extensions/4.3.0": {
  2842. "type": "package",
  2843. "dependencies": {
  2844. "System.Collections": "4.3.0",
  2845. "System.Runtime": "4.3.0",
  2846. "System.Threading.Tasks": "4.3.0"
  2847. },
  2848. "compile": {
  2849. "lib/netstandard1.0/_._": {
  2850. "related": ".xml"
  2851. }
  2852. },
  2853. "runtime": {
  2854. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2855. "related": ".xml"
  2856. }
  2857. }
  2858. },
  2859. "System.Threading.Thread/4.3.0": {
  2860. "type": "package",
  2861. "dependencies": {
  2862. "System.Runtime": "4.3.0"
  2863. },
  2864. "compile": {
  2865. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2866. "related": ".xml"
  2867. }
  2868. },
  2869. "runtime": {
  2870. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2871. }
  2872. },
  2873. "System.Threading.ThreadPool/4.3.0": {
  2874. "type": "package",
  2875. "dependencies": {
  2876. "System.Runtime": "4.3.0",
  2877. "System.Runtime.Handles": "4.3.0"
  2878. },
  2879. "compile": {
  2880. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2881. "related": ".xml"
  2882. }
  2883. },
  2884. "runtime": {
  2885. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2886. }
  2887. },
  2888. "System.Threading.Timer/4.3.0": {
  2889. "type": "package",
  2890. "dependencies": {
  2891. "Microsoft.NETCore.Platforms": "1.1.0",
  2892. "Microsoft.NETCore.Targets": "1.1.0",
  2893. "System.Runtime": "4.3.0"
  2894. },
  2895. "compile": {
  2896. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2897. "related": ".xml"
  2898. }
  2899. }
  2900. },
  2901. "System.Windows.Extensions/4.7.0": {
  2902. "type": "package",
  2903. "dependencies": {
  2904. "System.Drawing.Common": "4.7.0"
  2905. },
  2906. "compile": {
  2907. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2908. "related": ".xml"
  2909. }
  2910. },
  2911. "runtime": {
  2912. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2913. "related": ".xml"
  2914. }
  2915. },
  2916. "runtimeTargets": {
  2917. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2918. "assetType": "runtime",
  2919. "rid": "win"
  2920. }
  2921. }
  2922. },
  2923. "System.Xml.ReaderWriter/4.3.0": {
  2924. "type": "package",
  2925. "dependencies": {
  2926. "System.Collections": "4.3.0",
  2927. "System.Diagnostics.Debug": "4.3.0",
  2928. "System.Globalization": "4.3.0",
  2929. "System.IO": "4.3.0",
  2930. "System.IO.FileSystem": "4.3.0",
  2931. "System.IO.FileSystem.Primitives": "4.3.0",
  2932. "System.Resources.ResourceManager": "4.3.0",
  2933. "System.Runtime": "4.3.0",
  2934. "System.Runtime.Extensions": "4.3.0",
  2935. "System.Runtime.InteropServices": "4.3.0",
  2936. "System.Text.Encoding": "4.3.0",
  2937. "System.Text.Encoding.Extensions": "4.3.0",
  2938. "System.Text.RegularExpressions": "4.3.0",
  2939. "System.Threading.Tasks": "4.3.0",
  2940. "System.Threading.Tasks.Extensions": "4.3.0"
  2941. },
  2942. "compile": {
  2943. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2944. "related": ".xml"
  2945. }
  2946. },
  2947. "runtime": {
  2948. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2949. }
  2950. },
  2951. "System.Xml.XDocument/4.3.0": {
  2952. "type": "package",
  2953. "dependencies": {
  2954. "System.Collections": "4.3.0",
  2955. "System.Diagnostics.Debug": "4.3.0",
  2956. "System.Diagnostics.Tools": "4.3.0",
  2957. "System.Globalization": "4.3.0",
  2958. "System.IO": "4.3.0",
  2959. "System.Reflection": "4.3.0",
  2960. "System.Resources.ResourceManager": "4.3.0",
  2961. "System.Runtime": "4.3.0",
  2962. "System.Runtime.Extensions": "4.3.0",
  2963. "System.Text.Encoding": "4.3.0",
  2964. "System.Threading": "4.3.0",
  2965. "System.Xml.ReaderWriter": "4.3.0"
  2966. },
  2967. "compile": {
  2968. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2969. "related": ".xml"
  2970. }
  2971. },
  2972. "runtime": {
  2973. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2974. }
  2975. },
  2976. "ZXing.Net/0.16.9": {
  2977. "type": "package",
  2978. "compile": {
  2979. "lib/net5.0/zxing.dll": {
  2980. "related": ".XML"
  2981. }
  2982. },
  2983. "runtime": {
  2984. "lib/net5.0/zxing.dll": {
  2985. "related": ".XML"
  2986. }
  2987. }
  2988. },
  2989. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  2990. "type": "package",
  2991. "dependencies": {
  2992. "SixLabors.ImageSharp": "2.1.3",
  2993. "ZXing.Net": "0.16.9"
  2994. },
  2995. "compile": {
  2996. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2997. "related": ".pdb;.xml"
  2998. }
  2999. },
  3000. "runtime": {
  3001. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  3002. "related": ".pdb;.xml"
  3003. }
  3004. }
  3005. },
  3006. "Ropin.Core.Common/1.0.0": {
  3007. "type": "project",
  3008. "framework": ".NETCoreApp,Version=v5.0",
  3009. "dependencies": {
  3010. "Coravel": "4.2.1",
  3011. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  3012. "Newtonsoft.Json": "13.0.1",
  3013. "QRCoder": "1.4.3",
  3014. "SixLabors.ImageSharp": "2.1.6",
  3015. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  3016. },
  3017. "compile": {
  3018. "bin/placeholder/Ropin.Core.Common.dll": {}
  3019. },
  3020. "runtime": {
  3021. "bin/placeholder/Ropin.Core.Common.dll": {}
  3022. }
  3023. },
  3024. "Ropin.Inspection.Common/1.0.0": {
  3025. "type": "project",
  3026. "framework": ".NETCoreApp,Version=v5.0",
  3027. "dependencies": {
  3028. "FluentEmail.Smtp": "3.0.2",
  3029. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  3030. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  3031. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  3032. "JavaScriptEngineSwitcher.Core": "3.21.0",
  3033. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3034. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  3035. "Microsoft.Extensions.Configuration": "5.0.0",
  3036. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  3037. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  3038. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  3039. "Microsoft.Extensions.Http": "5.0.0",
  3040. "Newtonsoft.Json": "13.0.1",
  3041. "RabbitMQ.Client": "6.8.1",
  3042. "log4net": "2.0.17"
  3043. },
  3044. "compile": {
  3045. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3046. },
  3047. "runtime": {
  3048. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  3049. }
  3050. },
  3051. "Ropin.Inspection.Model/1.0.0": {
  3052. "type": "project",
  3053. "framework": ".NETCoreApp,Version=v5.0",
  3054. "dependencies": {
  3055. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  3056. "Microsoft.EntityFrameworkCore": "5.0.0",
  3057. "MySql.Data": "8.0.23",
  3058. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  3059. "Ropin.Inspection.Common": "1.0.0"
  3060. },
  3061. "compile": {
  3062. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3063. },
  3064. "runtime": {
  3065. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  3066. }
  3067. },
  3068. "Ropin.Inspection.Repository/1.0.0": {
  3069. "type": "project",
  3070. "framework": ".NETCoreApp,Version=v5.0",
  3071. "dependencies": {
  3072. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  3073. "Microsoft.EntityFrameworkCore": "5.0.0",
  3074. "Ropin.Inspection.Model": "1.0.0"
  3075. },
  3076. "compile": {
  3077. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3078. },
  3079. "runtime": {
  3080. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  3081. }
  3082. }
  3083. }
  3084. },
  3085. "libraries": {
  3086. "AdvancedStringBuilder/0.1.0": {
  3087. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3088. "type": "package",
  3089. "path": "advancedstringbuilder/0.1.0",
  3090. "files": [
  3091. ".nupkg.metadata",
  3092. ".signature.p7s",
  3093. "advancedstringbuilder.0.1.0.nupkg.sha512",
  3094. "advancedstringbuilder.nuspec",
  3095. "lib/net40-client/AdvancedStringBuilder.dll",
  3096. "lib/net40-client/AdvancedStringBuilder.xml",
  3097. "lib/net45/AdvancedStringBuilder.dll",
  3098. "lib/net45/AdvancedStringBuilder.xml",
  3099. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  3100. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  3101. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  3102. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  3103. ]
  3104. },
  3105. "BouncyCastle.NetCore/1.8.5": {
  3106. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3107. "type": "package",
  3108. "path": "bouncycastle.netcore/1.8.5",
  3109. "files": [
  3110. ".nupkg.metadata",
  3111. ".signature.p7s",
  3112. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  3113. "bouncycastle.netcore.nuspec",
  3114. "lib/Mono/BouncyCastle.Crypto.dll",
  3115. "lib/Mono/BouncyCastle.Crypto.xml",
  3116. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  3117. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  3118. "lib/MonoMac/BouncyCastle.Crypto.dll",
  3119. "lib/MonoMac/BouncyCastle.Crypto.xml",
  3120. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  3121. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  3122. "lib/net20/BouncyCastle.Crypto.dll",
  3123. "lib/net20/BouncyCastle.Crypto.xml",
  3124. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3125. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3126. "lib/xamarinios/BouncyCastle.Crypto.dll",
  3127. "lib/xamarinios/BouncyCastle.Crypto.xml"
  3128. ]
  3129. },
  3130. "Coravel/4.2.1": {
  3131. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3132. "type": "package",
  3133. "path": "coravel/4.2.1",
  3134. "files": [
  3135. ".nupkg.metadata",
  3136. ".signature.p7s",
  3137. "coravel.4.2.1.nupkg.sha512",
  3138. "coravel.nuspec",
  3139. "lib/netstandard2.0/Coravel.dll",
  3140. "lib/netstandard2.0/Coravel.xml",
  3141. "logo.png",
  3142. "readme.md"
  3143. ]
  3144. },
  3145. "FBoxClientDriver/1.2.0": {
  3146. "sha512": "Q0dRbWuEb/u8JdEi7yAgGPi8/eSoNzbiBsZZFjxQlKSmFhpKu42L+nP3AtBa01ixQFIrZDBGAm4Yu+ic3gBGgA==",
  3147. "type": "package",
  3148. "path": "fboxclientdriver/1.2.0",
  3149. "files": [
  3150. ".nupkg.metadata",
  3151. ".signature.p7s",
  3152. "fboxclientdriver.1.2.0.nupkg.sha512",
  3153. "fboxclientdriver.nuspec",
  3154. "lib/netstandard2.0/FBoxClientDriver.dll",
  3155. "lib/netstandard2.0/FBoxClientDriver.xml"
  3156. ]
  3157. },
  3158. "FBoxClientDriver.Contract/1.2.0": {
  3159. "sha512": "0L2u1+ys8Gf0zME6W9tdnqymSV+aSv5Ltz+1DW/iAXsjOus1yDCzFf4Kubqa/9k4gq16687JbQRN6iPGhpDS7Q==",
  3160. "type": "package",
  3161. "path": "fboxclientdriver.contract/1.2.0",
  3162. "files": [
  3163. ".nupkg.metadata",
  3164. ".signature.p7s",
  3165. "fboxclientdriver.contract.1.2.0.nupkg.sha512",
  3166. "fboxclientdriver.contract.nuspec",
  3167. "lib/netstandard2.0/FBoxClientDriver.Contract.dll",
  3168. "lib/netstandard2.0/FBoxClientDriver.Contract.xml"
  3169. ]
  3170. },
  3171. "FluentEmail.Core/3.0.2": {
  3172. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3173. "type": "package",
  3174. "path": "fluentemail.core/3.0.2",
  3175. "files": [
  3176. ".nupkg.metadata",
  3177. ".signature.p7s",
  3178. "fluentemail.core.3.0.2.nupkg.sha512",
  3179. "fluentemail.core.nuspec",
  3180. "fluentemail_logo_64x64.png",
  3181. "lib/netstandard2.0/FluentEmail.Core.dll"
  3182. ]
  3183. },
  3184. "FluentEmail.Smtp/3.0.2": {
  3185. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3186. "type": "package",
  3187. "path": "fluentemail.smtp/3.0.2",
  3188. "files": [
  3189. ".nupkg.metadata",
  3190. ".signature.p7s",
  3191. "fluentemail.smtp.3.0.2.nupkg.sha512",
  3192. "fluentemail.smtp.nuspec",
  3193. "fluentemail_logo_64x64.png",
  3194. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  3195. ]
  3196. },
  3197. "Google.Protobuf/3.11.4": {
  3198. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3199. "type": "package",
  3200. "path": "google.protobuf/3.11.4",
  3201. "files": [
  3202. ".nupkg.metadata",
  3203. ".signature.p7s",
  3204. "google.protobuf.3.11.4.nupkg.sha512",
  3205. "google.protobuf.nuspec",
  3206. "lib/net45/Google.Protobuf.dll",
  3207. "lib/net45/Google.Protobuf.pdb",
  3208. "lib/net45/Google.Protobuf.xml",
  3209. "lib/netstandard1.0/Google.Protobuf.dll",
  3210. "lib/netstandard1.0/Google.Protobuf.pdb",
  3211. "lib/netstandard1.0/Google.Protobuf.xml",
  3212. "lib/netstandard2.0/Google.Protobuf.dll",
  3213. "lib/netstandard2.0/Google.Protobuf.pdb",
  3214. "lib/netstandard2.0/Google.Protobuf.xml"
  3215. ]
  3216. },
  3217. "IdentityModel/4.3.1": {
  3218. "sha512": "96op5Wjw87oW5JB/FXbchK3vaYiJ5qWpWDwP739hoBfRdII7DrqqHZKpKsT/yjp4GA5ifpjAr/LW1aKQp9KkdA==",
  3219. "type": "package",
  3220. "path": "identitymodel/4.3.1",
  3221. "files": [
  3222. ".nupkg.metadata",
  3223. ".signature.p7s",
  3224. "icon.jpg",
  3225. "identitymodel.4.3.1.nupkg.sha512",
  3226. "identitymodel.nuspec",
  3227. "lib/net461/IdentityModel.dll",
  3228. "lib/net461/IdentityModel.pdb",
  3229. "lib/net461/IdentityModel.xml",
  3230. "lib/net472/IdentityModel.dll",
  3231. "lib/net472/IdentityModel.pdb",
  3232. "lib/net472/IdentityModel.xml",
  3233. "lib/netstandard2.0/IdentityModel.dll",
  3234. "lib/netstandard2.0/IdentityModel.pdb",
  3235. "lib/netstandard2.0/IdentityModel.xml"
  3236. ]
  3237. },
  3238. "InitQ/1.0.0.14": {
  3239. "sha512": "BGl5TzrUZYL1UUQUBbKA1n+w7AkwFZ7x/NuW5FQ4kCxMTvv62fPFyk2jgZL6Q+iDIZfu0JhN0eV/o5Suox7MaQ==",
  3240. "type": "package",
  3241. "path": "initq/1.0.0.14",
  3242. "files": [
  3243. ".nupkg.metadata",
  3244. ".signature.p7s",
  3245. "initq.1.0.0.14.nupkg.sha512",
  3246. "initq.nuspec",
  3247. "lib/netcoreapp2.1/InitQ.dll"
  3248. ]
  3249. },
  3250. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3251. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3252. "type": "package",
  3253. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3254. "files": [
  3255. ".nupkg.metadata",
  3256. ".signature.p7s",
  3257. "LICENSE.txt",
  3258. "advanced-string-builder-license.txt",
  3259. "chakra-samples-license.txt",
  3260. "icon.png",
  3261. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  3262. "javascriptengineswitcher.chakracore.nuspec",
  3263. "jsrt-dotnet-license.txt",
  3264. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  3265. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  3266. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3267. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  3268. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  3269. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3270. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  3271. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  3272. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3273. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  3274. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  3275. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3276. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  3277. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  3278. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3279. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  3280. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  3281. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  3282. "polyfills-for-old-dot-net-license.txt",
  3283. "readme.txt"
  3284. ]
  3285. },
  3286. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3287. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3288. "type": "package",
  3289. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3290. "files": [
  3291. ".nupkg.metadata",
  3292. ".signature.p7s",
  3293. "LICENSE.txt",
  3294. "chakra-core-license.txt",
  3295. "icon.png",
  3296. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  3297. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  3298. "readme.txt",
  3299. "runtimes/linux-x64/native/libChakraCore.so"
  3300. ]
  3301. },
  3302. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3303. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3304. "type": "package",
  3305. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3306. "hasTools": true,
  3307. "files": [
  3308. ".nupkg.metadata",
  3309. ".signature.p7s",
  3310. "LICENSE.txt",
  3311. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  3312. "chakra-core-license.txt",
  3313. "icon.png",
  3314. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  3315. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  3316. "readme.txt",
  3317. "runtimes/win-x64/native/ChakraCore.dll",
  3318. "tools/Install.ps1",
  3319. "tools/Uninstall.ps1"
  3320. ]
  3321. },
  3322. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3323. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3324. "type": "package",
  3325. "path": "javascriptengineswitcher.core/3.21.0",
  3326. "files": [
  3327. ".nupkg.metadata",
  3328. ".signature.p7s",
  3329. "LICENSE.txt",
  3330. "advanced-string-builder-license.txt",
  3331. "icon.png",
  3332. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  3333. "javascriptengineswitcher.core.nuspec",
  3334. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  3335. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  3336. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3337. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  3338. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  3339. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3340. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  3341. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  3342. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3343. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  3344. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  3345. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  3346. "readme.txt"
  3347. ]
  3348. },
  3349. "K4os.Compression.LZ4/1.1.11": {
  3350. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3351. "type": "package",
  3352. "path": "k4os.compression.lz4/1.1.11",
  3353. "files": [
  3354. ".nupkg.metadata",
  3355. ".signature.p7s",
  3356. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  3357. "k4os.compression.lz4.nuspec",
  3358. "lib/net45/K4os.Compression.LZ4.dll",
  3359. "lib/net45/K4os.Compression.LZ4.xml",
  3360. "lib/net46/K4os.Compression.LZ4.dll",
  3361. "lib/net46/K4os.Compression.LZ4.xml",
  3362. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  3363. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  3364. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  3365. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  3366. ]
  3367. },
  3368. "K4os.Compression.LZ4.Streams/1.1.11": {
  3369. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3370. "type": "package",
  3371. "path": "k4os.compression.lz4.streams/1.1.11",
  3372. "files": [
  3373. ".nupkg.metadata",
  3374. ".signature.p7s",
  3375. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  3376. "k4os.compression.lz4.streams.nuspec",
  3377. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  3378. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  3379. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  3380. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  3381. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  3382. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  3383. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  3384. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  3385. ]
  3386. },
  3387. "K4os.Hash.xxHash/1.0.6": {
  3388. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3389. "type": "package",
  3390. "path": "k4os.hash.xxhash/1.0.6",
  3391. "files": [
  3392. ".nupkg.metadata",
  3393. ".signature.p7s",
  3394. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  3395. "k4os.hash.xxhash.nuspec",
  3396. "lib/net45/K4os.Hash.xxHash.dll",
  3397. "lib/net45/K4os.Hash.xxHash.xml",
  3398. "lib/net46/K4os.Hash.xxHash.dll",
  3399. "lib/net46/K4os.Hash.xxHash.xml",
  3400. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  3401. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  3402. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  3403. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  3404. ]
  3405. },
  3406. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3407. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3408. "type": "package",
  3409. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3410. "files": [
  3411. ".nupkg.metadata",
  3412. ".signature.p7s",
  3413. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  3414. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  3415. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  3416. "linqkit.microsoft.entityframeworkcore.nuspec"
  3417. ]
  3418. },
  3419. "log4net/2.0.17": {
  3420. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3421. "type": "package",
  3422. "path": "log4net/2.0.17",
  3423. "files": [
  3424. ".nupkg.metadata",
  3425. ".signature.p7s",
  3426. "lib/net20/log4net.dll",
  3427. "lib/net20/log4net.xml",
  3428. "lib/net35/log4net.dll",
  3429. "lib/net35/log4net.xml",
  3430. "lib/net40-client/log4net.dll",
  3431. "lib/net40-client/log4net.xml",
  3432. "lib/net40/log4net.dll",
  3433. "lib/net40/log4net.xml",
  3434. "lib/net45/log4net.dll",
  3435. "lib/net45/log4net.xml",
  3436. "lib/netstandard1.3/log4net.dll",
  3437. "lib/netstandard1.3/log4net.xml",
  3438. "lib/netstandard2.0/log4net.dll",
  3439. "lib/netstandard2.0/log4net.xml",
  3440. "log4net.2.0.17.nupkg.sha512",
  3441. "log4net.nuspec",
  3442. "package-icon.png"
  3443. ]
  3444. },
  3445. "Microsoft.AspNet.SignalR.Client/2.4.1": {
  3446. "sha512": "x5Bc1LkjBZV9GEjflBF0zsKgXbpFkTAArQMAdbhKKC1MopLaFPUYQZrCAPgGSAW8OudHGhyEfMZ5vJbdBu8IsA==",
  3447. "type": "package",
  3448. "path": "microsoft.aspnet.signalr.client/2.4.1",
  3449. "files": [
  3450. ".nupkg.metadata",
  3451. ".signature.p7s",
  3452. "lib/net40/Microsoft.AspNet.SignalR.Client.dll",
  3453. "lib/net40/Microsoft.AspNet.SignalR.Client.pdb",
  3454. "lib/net40/Microsoft.AspNet.SignalR.Client.xml",
  3455. "lib/net45/Microsoft.AspNet.SignalR.Client.dll",
  3456. "lib/net45/Microsoft.AspNet.SignalR.Client.pdb",
  3457. "lib/net45/Microsoft.AspNet.SignalR.Client.xml",
  3458. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.dll",
  3459. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.pdb",
  3460. "lib/netstandard1.3/Microsoft.AspNet.SignalR.Client.xml",
  3461. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.dll",
  3462. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.pdb",
  3463. "lib/netstandard2.0/Microsoft.AspNet.SignalR.Client.xml",
  3464. "microsoft.aspnet.signalr.client.2.4.1.nupkg.sha512",
  3465. "microsoft.aspnet.signalr.client.nuspec"
  3466. ]
  3467. },
  3468. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3469. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3470. "type": "package",
  3471. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3472. "files": [
  3473. ".nupkg.metadata",
  3474. ".signature.p7s",
  3475. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3476. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3477. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3478. "microsoft.aspnetcore.http.abstractions.nuspec"
  3479. ]
  3480. },
  3481. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3482. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3483. "type": "package",
  3484. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3485. "files": [
  3486. ".nupkg.metadata",
  3487. ".signature.p7s",
  3488. "Icon.png",
  3489. "THIRD-PARTY-NOTICES.TXT",
  3490. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  3491. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  3492. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  3493. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  3494. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3495. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3496. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  3497. "microsoft.aspnetcore.http.features.nuspec"
  3498. ]
  3499. },
  3500. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  3501. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  3502. "type": "package",
  3503. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  3504. "files": [
  3505. ".nupkg.metadata",
  3506. ".signature.p7s",
  3507. "Icon.png",
  3508. "THIRD-PARTY-NOTICES.TXT",
  3509. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  3510. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  3511. "microsoft.aspnetcore.nodeservices.nuspec"
  3512. ]
  3513. },
  3514. "Microsoft.CSharp/4.5.0": {
  3515. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3516. "type": "package",
  3517. "path": "microsoft.csharp/4.5.0",
  3518. "files": [
  3519. ".nupkg.metadata",
  3520. ".signature.p7s",
  3521. "LICENSE.TXT",
  3522. "THIRD-PARTY-NOTICES.TXT",
  3523. "lib/MonoAndroid10/_._",
  3524. "lib/MonoTouch10/_._",
  3525. "lib/net45/_._",
  3526. "lib/netcore50/Microsoft.CSharp.dll",
  3527. "lib/netcoreapp2.0/_._",
  3528. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3529. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3530. "lib/portable-net45+win8+wp8+wpa81/_._",
  3531. "lib/uap10.0.16299/_._",
  3532. "lib/win8/_._",
  3533. "lib/wp80/_._",
  3534. "lib/wpa81/_._",
  3535. "lib/xamarinios10/_._",
  3536. "lib/xamarinmac20/_._",
  3537. "lib/xamarintvos10/_._",
  3538. "lib/xamarinwatchos10/_._",
  3539. "microsoft.csharp.4.5.0.nupkg.sha512",
  3540. "microsoft.csharp.nuspec",
  3541. "ref/MonoAndroid10/_._",
  3542. "ref/MonoTouch10/_._",
  3543. "ref/net45/_._",
  3544. "ref/netcore50/Microsoft.CSharp.dll",
  3545. "ref/netcore50/Microsoft.CSharp.xml",
  3546. "ref/netcore50/de/Microsoft.CSharp.xml",
  3547. "ref/netcore50/es/Microsoft.CSharp.xml",
  3548. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3549. "ref/netcore50/it/Microsoft.CSharp.xml",
  3550. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3551. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3552. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3553. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3554. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3555. "ref/netcoreapp2.0/_._",
  3556. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3557. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3558. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3559. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3560. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3561. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3562. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3563. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3564. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3565. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3566. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3567. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3568. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3569. "ref/portable-net45+win8+wp8+wpa81/_._",
  3570. "ref/uap10.0.16299/_._",
  3571. "ref/win8/_._",
  3572. "ref/wp80/_._",
  3573. "ref/wpa81/_._",
  3574. "ref/xamarinios10/_._",
  3575. "ref/xamarinmac20/_._",
  3576. "ref/xamarintvos10/_._",
  3577. "ref/xamarinwatchos10/_._",
  3578. "useSharedDesignerContext.txt",
  3579. "version.txt"
  3580. ]
  3581. },
  3582. "Microsoft.EntityFrameworkCore/5.0.0": {
  3583. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  3584. "type": "package",
  3585. "path": "microsoft.entityframeworkcore/5.0.0",
  3586. "files": [
  3587. ".nupkg.metadata",
  3588. ".signature.p7s",
  3589. "Icon.png",
  3590. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  3591. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  3592. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  3593. "microsoft.entityframeworkcore.nuspec"
  3594. ]
  3595. },
  3596. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  3597. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  3598. "type": "package",
  3599. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  3600. "files": [
  3601. ".nupkg.metadata",
  3602. ".signature.p7s",
  3603. "Icon.png",
  3604. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3605. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3606. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  3607. "microsoft.entityframeworkcore.abstractions.nuspec"
  3608. ]
  3609. },
  3610. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  3611. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  3612. "type": "package",
  3613. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  3614. "files": [
  3615. ".nupkg.metadata",
  3616. ".signature.p7s",
  3617. "Icon.png",
  3618. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3619. "lib/netstandard2.0/_._",
  3620. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  3621. "microsoft.entityframeworkcore.analyzers.nuspec"
  3622. ]
  3623. },
  3624. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  3625. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  3626. "type": "package",
  3627. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  3628. "files": [
  3629. ".nupkg.metadata",
  3630. ".signature.p7s",
  3631. "Icon.png",
  3632. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  3633. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  3634. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  3635. "microsoft.entityframeworkcore.relational.nuspec"
  3636. ]
  3637. },
  3638. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3639. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3640. "type": "package",
  3641. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3642. "hasTools": true,
  3643. "files": [
  3644. ".nupkg.metadata",
  3645. ".signature.p7s",
  3646. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3647. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3648. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3649. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3650. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3651. "microsoft.extensions.apidescription.server.nuspec",
  3652. "tools/Newtonsoft.Json.dll",
  3653. "tools/dotnet-getdocument.deps.json",
  3654. "tools/dotnet-getdocument.dll",
  3655. "tools/dotnet-getdocument.runtimeconfig.json",
  3656. "tools/net461-x86/GetDocument.Insider.exe",
  3657. "tools/net461-x86/GetDocument.Insider.exe.config",
  3658. "tools/net461/GetDocument.Insider.exe",
  3659. "tools/net461/GetDocument.Insider.exe.config",
  3660. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3661. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3662. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3663. ]
  3664. },
  3665. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  3666. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  3667. "type": "package",
  3668. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  3669. "files": [
  3670. ".nupkg.metadata",
  3671. ".signature.p7s",
  3672. "Icon.png",
  3673. "LICENSE.TXT",
  3674. "THIRD-PARTY-NOTICES.TXT",
  3675. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3676. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3677. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3678. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3679. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  3680. "microsoft.extensions.caching.abstractions.nuspec",
  3681. "useSharedDesignerContext.txt",
  3682. "version.txt"
  3683. ]
  3684. },
  3685. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  3686. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  3687. "type": "package",
  3688. "path": "microsoft.extensions.caching.memory/5.0.0",
  3689. "files": [
  3690. ".nupkg.metadata",
  3691. ".signature.p7s",
  3692. "Icon.png",
  3693. "LICENSE.TXT",
  3694. "THIRD-PARTY-NOTICES.TXT",
  3695. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3696. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3697. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3698. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3699. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  3700. "microsoft.extensions.caching.memory.nuspec",
  3701. "useSharedDesignerContext.txt",
  3702. "version.txt"
  3703. ]
  3704. },
  3705. "Microsoft.Extensions.Configuration/5.0.0": {
  3706. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  3707. "type": "package",
  3708. "path": "microsoft.extensions.configuration/5.0.0",
  3709. "files": [
  3710. ".nupkg.metadata",
  3711. ".signature.p7s",
  3712. "Icon.png",
  3713. "LICENSE.TXT",
  3714. "THIRD-PARTY-NOTICES.TXT",
  3715. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3716. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3717. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3718. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3719. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  3720. "microsoft.extensions.configuration.nuspec",
  3721. "useSharedDesignerContext.txt",
  3722. "version.txt"
  3723. ]
  3724. },
  3725. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  3726. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  3727. "type": "package",
  3728. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  3729. "files": [
  3730. ".nupkg.metadata",
  3731. ".signature.p7s",
  3732. "Icon.png",
  3733. "LICENSE.TXT",
  3734. "THIRD-PARTY-NOTICES.TXT",
  3735. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3736. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3737. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3738. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3739. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  3740. "microsoft.extensions.configuration.abstractions.nuspec",
  3741. "useSharedDesignerContext.txt",
  3742. "version.txt"
  3743. ]
  3744. },
  3745. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  3746. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  3747. "type": "package",
  3748. "path": "microsoft.extensions.configuration.binder/5.0.0",
  3749. "files": [
  3750. ".nupkg.metadata",
  3751. ".signature.p7s",
  3752. "Icon.png",
  3753. "LICENSE.TXT",
  3754. "THIRD-PARTY-NOTICES.TXT",
  3755. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3756. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3757. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3758. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3759. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  3760. "microsoft.extensions.configuration.binder.nuspec",
  3761. "useSharedDesignerContext.txt",
  3762. "version.txt"
  3763. ]
  3764. },
  3765. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  3766. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  3767. "type": "package",
  3768. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  3769. "files": [
  3770. ".nupkg.metadata",
  3771. ".signature.p7s",
  3772. "Icon.png",
  3773. "LICENSE.TXT",
  3774. "THIRD-PARTY-NOTICES.TXT",
  3775. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3776. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3777. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3778. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3779. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  3780. "microsoft.extensions.configuration.fileextensions.nuspec",
  3781. "useSharedDesignerContext.txt",
  3782. "version.txt"
  3783. ]
  3784. },
  3785. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  3786. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  3787. "type": "package",
  3788. "path": "microsoft.extensions.configuration.json/5.0.0",
  3789. "files": [
  3790. ".nupkg.metadata",
  3791. ".signature.p7s",
  3792. "Icon.png",
  3793. "LICENSE.TXT",
  3794. "THIRD-PARTY-NOTICES.TXT",
  3795. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3796. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3797. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3798. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3799. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3800. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3801. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  3802. "microsoft.extensions.configuration.json.nuspec",
  3803. "useSharedDesignerContext.txt",
  3804. "version.txt"
  3805. ]
  3806. },
  3807. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  3808. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  3809. "type": "package",
  3810. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  3811. "files": [
  3812. ".nupkg.metadata",
  3813. ".signature.p7s",
  3814. "Icon.png",
  3815. "LICENSE.TXT",
  3816. "THIRD-PARTY-NOTICES.TXT",
  3817. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3818. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3819. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  3820. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  3821. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3822. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3823. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3824. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3825. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  3826. "microsoft.extensions.dependencyinjection.nuspec",
  3827. "useSharedDesignerContext.txt",
  3828. "version.txt"
  3829. ]
  3830. },
  3831. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  3832. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  3833. "type": "package",
  3834. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  3835. "files": [
  3836. ".nupkg.metadata",
  3837. ".signature.p7s",
  3838. "Icon.png",
  3839. "LICENSE.TXT",
  3840. "THIRD-PARTY-NOTICES.TXT",
  3841. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3842. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3843. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3844. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3845. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  3846. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3847. "useSharedDesignerContext.txt",
  3848. "version.txt"
  3849. ]
  3850. },
  3851. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  3852. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  3853. "type": "package",
  3854. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  3855. "files": [
  3856. ".nupkg.metadata",
  3857. ".signature.p7s",
  3858. "Icon.png",
  3859. "LICENSE.TXT",
  3860. "THIRD-PARTY-NOTICES.TXT",
  3861. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3862. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3863. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3864. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3865. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  3866. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3867. "useSharedDesignerContext.txt",
  3868. "version.txt"
  3869. ]
  3870. },
  3871. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  3872. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  3873. "type": "package",
  3874. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  3875. "files": [
  3876. ".nupkg.metadata",
  3877. ".signature.p7s",
  3878. "Icon.png",
  3879. "LICENSE.TXT",
  3880. "THIRD-PARTY-NOTICES.TXT",
  3881. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3882. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3883. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3884. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3885. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  3886. "microsoft.extensions.fileproviders.physical.nuspec",
  3887. "useSharedDesignerContext.txt",
  3888. "version.txt"
  3889. ]
  3890. },
  3891. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  3892. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  3893. "type": "package",
  3894. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  3895. "files": [
  3896. ".nupkg.metadata",
  3897. ".signature.p7s",
  3898. "Icon.png",
  3899. "LICENSE.TXT",
  3900. "THIRD-PARTY-NOTICES.TXT",
  3901. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3902. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3903. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3904. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3905. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  3906. "microsoft.extensions.filesystemglobbing.nuspec",
  3907. "useSharedDesignerContext.txt",
  3908. "version.txt"
  3909. ]
  3910. },
  3911. "Microsoft.Extensions.Hosting/2.1.0": {
  3912. "sha512": "nqOrLtBqpwRT006vdQ2Vp87uiuYztiZcZAndFqH91ZH4SQgr8wImCVQwzUgTxx1DSrpIW765+xrZTZqsoGtvqg==",
  3913. "type": "package",
  3914. "path": "microsoft.extensions.hosting/2.1.0",
  3915. "files": [
  3916. ".nupkg.metadata",
  3917. ".signature.p7s",
  3918. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  3919. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  3920. "microsoft.extensions.hosting.2.1.0.nupkg.sha512",
  3921. "microsoft.extensions.hosting.nuspec"
  3922. ]
  3923. },
  3924. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  3925. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  3926. "type": "package",
  3927. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  3928. "files": [
  3929. ".nupkg.metadata",
  3930. ".signature.p7s",
  3931. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3932. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3933. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3934. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3935. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  3936. "microsoft.extensions.hosting.abstractions.nuspec",
  3937. "packageIcon.png"
  3938. ]
  3939. },
  3940. "Microsoft.Extensions.Http/5.0.0": {
  3941. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  3942. "type": "package",
  3943. "path": "microsoft.extensions.http/5.0.0",
  3944. "files": [
  3945. ".nupkg.metadata",
  3946. ".signature.p7s",
  3947. "Icon.png",
  3948. "LICENSE.TXT",
  3949. "THIRD-PARTY-NOTICES.TXT",
  3950. "lib/net461/Microsoft.Extensions.Http.dll",
  3951. "lib/net461/Microsoft.Extensions.Http.xml",
  3952. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  3953. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  3954. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  3955. "microsoft.extensions.http.nuspec",
  3956. "useSharedDesignerContext.txt",
  3957. "version.txt"
  3958. ]
  3959. },
  3960. "Microsoft.Extensions.Logging/5.0.0": {
  3961. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  3962. "type": "package",
  3963. "path": "microsoft.extensions.logging/5.0.0",
  3964. "files": [
  3965. ".nupkg.metadata",
  3966. ".signature.p7s",
  3967. "Icon.png",
  3968. "LICENSE.TXT",
  3969. "THIRD-PARTY-NOTICES.TXT",
  3970. "lib/net461/Microsoft.Extensions.Logging.dll",
  3971. "lib/net461/Microsoft.Extensions.Logging.xml",
  3972. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3973. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3974. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3975. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3976. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  3977. "microsoft.extensions.logging.nuspec",
  3978. "useSharedDesignerContext.txt",
  3979. "version.txt"
  3980. ]
  3981. },
  3982. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  3983. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  3984. "type": "package",
  3985. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  3986. "files": [
  3987. ".nupkg.metadata",
  3988. ".signature.p7s",
  3989. "Icon.png",
  3990. "LICENSE.TXT",
  3991. "THIRD-PARTY-NOTICES.TXT",
  3992. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3993. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3994. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3995. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3996. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  3997. "microsoft.extensions.logging.abstractions.nuspec",
  3998. "useSharedDesignerContext.txt",
  3999. "version.txt"
  4000. ]
  4001. },
  4002. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4003. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4004. "type": "package",
  4005. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4006. "files": [
  4007. ".nupkg.metadata",
  4008. ".signature.p7s",
  4009. "Icon.png",
  4010. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  4011. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  4012. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4013. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4014. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  4015. "microsoft.extensions.logging.configuration.nuspec"
  4016. ]
  4017. },
  4018. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4019. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4020. "type": "package",
  4021. "path": "microsoft.extensions.logging.console/3.1.30",
  4022. "files": [
  4023. ".nupkg.metadata",
  4024. ".signature.p7s",
  4025. "Icon.png",
  4026. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  4027. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  4028. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4029. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4030. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  4031. "microsoft.extensions.logging.console.nuspec"
  4032. ]
  4033. },
  4034. "Microsoft.Extensions.Options/5.0.0": {
  4035. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4036. "type": "package",
  4037. "path": "microsoft.extensions.options/5.0.0",
  4038. "files": [
  4039. ".nupkg.metadata",
  4040. ".signature.p7s",
  4041. "Icon.png",
  4042. "LICENSE.TXT",
  4043. "THIRD-PARTY-NOTICES.TXT",
  4044. "lib/net461/Microsoft.Extensions.Options.dll",
  4045. "lib/net461/Microsoft.Extensions.Options.xml",
  4046. "lib/net5.0/Microsoft.Extensions.Options.dll",
  4047. "lib/net5.0/Microsoft.Extensions.Options.xml",
  4048. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4049. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4050. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  4051. "microsoft.extensions.options.nuspec",
  4052. "useSharedDesignerContext.txt",
  4053. "version.txt"
  4054. ]
  4055. },
  4056. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4057. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4058. "type": "package",
  4059. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4060. "files": [
  4061. ".nupkg.metadata",
  4062. ".signature.p7s",
  4063. "Icon.png",
  4064. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4065. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4066. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4067. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4068. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  4069. "microsoft.extensions.options.configurationextensions.nuspec"
  4070. ]
  4071. },
  4072. "Microsoft.Extensions.Primitives/5.0.0": {
  4073. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4074. "type": "package",
  4075. "path": "microsoft.extensions.primitives/5.0.0",
  4076. "files": [
  4077. ".nupkg.metadata",
  4078. ".signature.p7s",
  4079. "Icon.png",
  4080. "LICENSE.TXT",
  4081. "THIRD-PARTY-NOTICES.TXT",
  4082. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4083. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4084. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  4085. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  4086. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4087. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4088. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  4089. "microsoft.extensions.primitives.nuspec",
  4090. "useSharedDesignerContext.txt",
  4091. "version.txt"
  4092. ]
  4093. },
  4094. "Microsoft.NETCore.Platforms/5.0.0": {
  4095. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4096. "type": "package",
  4097. "path": "microsoft.netcore.platforms/5.0.0",
  4098. "files": [
  4099. ".nupkg.metadata",
  4100. ".signature.p7s",
  4101. "Icon.png",
  4102. "LICENSE.TXT",
  4103. "THIRD-PARTY-NOTICES.TXT",
  4104. "lib/netstandard1.0/_._",
  4105. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4106. "microsoft.netcore.platforms.nuspec",
  4107. "runtime.json",
  4108. "useSharedDesignerContext.txt",
  4109. "version.txt"
  4110. ]
  4111. },
  4112. "Microsoft.NETCore.Targets/1.1.0": {
  4113. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4114. "type": "package",
  4115. "path": "microsoft.netcore.targets/1.1.0",
  4116. "files": [
  4117. ".nupkg.metadata",
  4118. ".signature.p7s",
  4119. "ThirdPartyNotices.txt",
  4120. "dotnet_library_license.txt",
  4121. "lib/netstandard1.0/_._",
  4122. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4123. "microsoft.netcore.targets.nuspec",
  4124. "runtime.json"
  4125. ]
  4126. },
  4127. "Microsoft.OpenApi/1.2.3": {
  4128. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4129. "type": "package",
  4130. "path": "microsoft.openapi/1.2.3",
  4131. "files": [
  4132. ".nupkg.metadata",
  4133. ".signature.p7s",
  4134. "lib/net46/Microsoft.OpenApi.dll",
  4135. "lib/net46/Microsoft.OpenApi.pdb",
  4136. "lib/net46/Microsoft.OpenApi.xml",
  4137. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4138. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4139. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4140. "microsoft.openapi.1.2.3.nupkg.sha512",
  4141. "microsoft.openapi.nuspec"
  4142. ]
  4143. },
  4144. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4145. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4146. "type": "package",
  4147. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4148. "hasTools": true,
  4149. "files": [
  4150. ".nupkg.metadata",
  4151. ".signature.p7s",
  4152. "CHANGELOG.md",
  4153. "EULA.md",
  4154. "ThirdPartyNotices.txt",
  4155. "build/Container.props",
  4156. "build/Container.targets",
  4157. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  4158. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  4159. "build/Rules/GeneralBrowseObject.xaml",
  4160. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  4161. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  4162. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  4163. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  4164. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  4165. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  4166. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  4167. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  4168. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  4169. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  4170. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  4171. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  4172. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  4173. "build/ToolsTarget.props",
  4174. "build/ToolsTarget.targets",
  4175. "icon.png",
  4176. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  4177. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  4178. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  4179. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  4180. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  4181. "tools/Newtonsoft.Json.dll",
  4182. "tools/System.Security.Principal.Windows.dll",
  4183. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4184. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4185. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4186. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4187. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4188. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4189. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4190. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4191. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4192. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4193. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4194. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4195. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4196. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4197. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4198. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4199. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4200. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4201. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4202. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4203. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4204. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4205. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4206. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4207. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4208. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4209. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4210. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4211. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4212. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4213. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4214. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4215. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4216. "tools/utils/KillProcess.exe",
  4217. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4218. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4219. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  4220. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  4221. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  4222. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  4223. ]
  4224. },
  4225. "Microsoft.Win32.Primitives/4.3.0": {
  4226. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4227. "type": "package",
  4228. "path": "microsoft.win32.primitives/4.3.0",
  4229. "files": [
  4230. ".nupkg.metadata",
  4231. ".signature.p7s",
  4232. "ThirdPartyNotices.txt",
  4233. "dotnet_library_license.txt",
  4234. "lib/MonoAndroid10/_._",
  4235. "lib/MonoTouch10/_._",
  4236. "lib/net46/Microsoft.Win32.Primitives.dll",
  4237. "lib/xamarinios10/_._",
  4238. "lib/xamarinmac20/_._",
  4239. "lib/xamarintvos10/_._",
  4240. "lib/xamarinwatchos10/_._",
  4241. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4242. "microsoft.win32.primitives.nuspec",
  4243. "ref/MonoAndroid10/_._",
  4244. "ref/MonoTouch10/_._",
  4245. "ref/net46/Microsoft.Win32.Primitives.dll",
  4246. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4247. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4248. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4249. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4250. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4251. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4252. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4253. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4254. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4255. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4256. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4257. "ref/xamarinios10/_._",
  4258. "ref/xamarinmac20/_._",
  4259. "ref/xamarintvos10/_._",
  4260. "ref/xamarinwatchos10/_._"
  4261. ]
  4262. },
  4263. "Microsoft.Win32.SystemEvents/5.0.0": {
  4264. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4265. "type": "package",
  4266. "path": "microsoft.win32.systemevents/5.0.0",
  4267. "files": [
  4268. ".nupkg.metadata",
  4269. ".signature.p7s",
  4270. "Icon.png",
  4271. "LICENSE.TXT",
  4272. "THIRD-PARTY-NOTICES.TXT",
  4273. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4274. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4275. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4276. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4277. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  4278. "microsoft.win32.systemevents.nuspec",
  4279. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4280. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4281. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4282. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4283. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4284. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4285. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4286. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4287. "useSharedDesignerContext.txt",
  4288. "version.txt"
  4289. ]
  4290. },
  4291. "MySql.Data/8.0.23": {
  4292. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4293. "type": "package",
  4294. "path": "mysql.data/8.0.23",
  4295. "files": [
  4296. ".nupkg.metadata",
  4297. ".signature.p7s",
  4298. "lib/net452/MySql.Data.dll",
  4299. "lib/net452/MySql.Data.xml",
  4300. "lib/net452/Ubiety.Dns.Core.dll",
  4301. "lib/net452/Zstandard.Net.dll",
  4302. "lib/net48/MySql.Data.dll",
  4303. "lib/net48/MySql.Data.xml",
  4304. "lib/net48/Ubiety.Dns.Core.dll",
  4305. "lib/net48/Zstandard.Net.dll",
  4306. "lib/net5.0/MySql.Data.dll",
  4307. "lib/net5.0/MySql.Data.xml",
  4308. "lib/net5.0/Ubiety.Dns.Core.dll",
  4309. "lib/net5.0/Zstandard.Net.dll",
  4310. "lib/netstandard2.0/MySql.Data.dll",
  4311. "lib/netstandard2.0/MySql.Data.xml",
  4312. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4313. "lib/netstandard2.0/Zstandard.Net.dll",
  4314. "lib/netstandard2.1/MySql.Data.dll",
  4315. "lib/netstandard2.1/MySql.Data.xml",
  4316. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4317. "lib/netstandard2.1/Zstandard.Net.dll",
  4318. "mysql.data.8.0.23.nupkg.sha512",
  4319. "mysql.data.nuspec"
  4320. ]
  4321. },
  4322. "MySqlConnector/1.1.0": {
  4323. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4324. "type": "package",
  4325. "path": "mysqlconnector/1.1.0",
  4326. "files": [
  4327. ".nupkg.metadata",
  4328. ".signature.p7s",
  4329. "lib/net45/MySqlConnector.dll",
  4330. "lib/net45/MySqlConnector.xml",
  4331. "lib/net461/MySqlConnector.dll",
  4332. "lib/net461/MySqlConnector.xml",
  4333. "lib/net471/MySqlConnector.dll",
  4334. "lib/net471/MySqlConnector.xml",
  4335. "lib/net5.0/MySqlConnector.dll",
  4336. "lib/net5.0/MySqlConnector.xml",
  4337. "lib/netcoreapp2.1/MySqlConnector.dll",
  4338. "lib/netcoreapp2.1/MySqlConnector.xml",
  4339. "lib/netcoreapp3.1/MySqlConnector.dll",
  4340. "lib/netcoreapp3.1/MySqlConnector.xml",
  4341. "lib/netstandard1.3/MySqlConnector.dll",
  4342. "lib/netstandard1.3/MySqlConnector.xml",
  4343. "lib/netstandard2.0/MySqlConnector.dll",
  4344. "lib/netstandard2.0/MySqlConnector.xml",
  4345. "lib/netstandard2.1/MySqlConnector.dll",
  4346. "lib/netstandard2.1/MySqlConnector.xml",
  4347. "logo.png",
  4348. "mysqlconnector.1.1.0.nupkg.sha512",
  4349. "mysqlconnector.nuspec"
  4350. ]
  4351. },
  4352. "NETStandard.Library/1.6.1": {
  4353. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4354. "type": "package",
  4355. "path": "netstandard.library/1.6.1",
  4356. "files": [
  4357. ".nupkg.metadata",
  4358. ".signature.p7s",
  4359. "ThirdPartyNotices.txt",
  4360. "dotnet_library_license.txt",
  4361. "netstandard.library.1.6.1.nupkg.sha512",
  4362. "netstandard.library.nuspec"
  4363. ]
  4364. },
  4365. "Newtonsoft.Json/13.0.1": {
  4366. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4367. "type": "package",
  4368. "path": "newtonsoft.json/13.0.1",
  4369. "files": [
  4370. ".nupkg.metadata",
  4371. ".signature.p7s",
  4372. "LICENSE.md",
  4373. "lib/net20/Newtonsoft.Json.dll",
  4374. "lib/net20/Newtonsoft.Json.xml",
  4375. "lib/net35/Newtonsoft.Json.dll",
  4376. "lib/net35/Newtonsoft.Json.xml",
  4377. "lib/net40/Newtonsoft.Json.dll",
  4378. "lib/net40/Newtonsoft.Json.xml",
  4379. "lib/net45/Newtonsoft.Json.dll",
  4380. "lib/net45/Newtonsoft.Json.xml",
  4381. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4382. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4383. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4384. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4385. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4386. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4387. "newtonsoft.json.13.0.1.nupkg.sha512",
  4388. "newtonsoft.json.nuspec",
  4389. "packageIcon.png"
  4390. ]
  4391. },
  4392. "Nito.AsyncEx.Coordination/5.0.0": {
  4393. "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
  4394. "type": "package",
  4395. "path": "nito.asyncex.coordination/5.0.0",
  4396. "files": [
  4397. ".nupkg.metadata",
  4398. ".signature.p7s",
  4399. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  4400. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  4401. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  4402. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  4403. "nito.asyncex.coordination.5.0.0.nupkg.sha512",
  4404. "nito.asyncex.coordination.nuspec"
  4405. ]
  4406. },
  4407. "Nito.AsyncEx.Tasks/5.0.0": {
  4408. "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
  4409. "type": "package",
  4410. "path": "nito.asyncex.tasks/5.0.0",
  4411. "files": [
  4412. ".nupkg.metadata",
  4413. ".signature.p7s",
  4414. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  4415. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  4416. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  4417. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  4418. "nito.asyncex.tasks.5.0.0.nupkg.sha512",
  4419. "nito.asyncex.tasks.nuspec"
  4420. ]
  4421. },
  4422. "Nito.Collections.Deque/1.0.4": {
  4423. "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
  4424. "type": "package",
  4425. "path": "nito.collections.deque/1.0.4",
  4426. "files": [
  4427. ".nupkg.metadata",
  4428. ".signature.p7s",
  4429. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  4430. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  4431. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  4432. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  4433. "nito.collections.deque.1.0.4.nupkg.sha512",
  4434. "nito.collections.deque.nuspec"
  4435. ]
  4436. },
  4437. "Nito.Disposables/2.0.0": {
  4438. "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
  4439. "type": "package",
  4440. "path": "nito.disposables/2.0.0",
  4441. "files": [
  4442. ".nupkg.metadata",
  4443. ".signature.p7s",
  4444. "lib/netstandard1.0/Nito.Disposables.dll",
  4445. "lib/netstandard1.0/Nito.Disposables.pdb",
  4446. "lib/netstandard1.0/Nito.Disposables.xml",
  4447. "lib/netstandard2.0/Nito.Disposables.dll",
  4448. "lib/netstandard2.0/Nito.Disposables.pdb",
  4449. "lib/netstandard2.0/Nito.Disposables.xml",
  4450. "nito.disposables.2.0.0.nupkg.sha512",
  4451. "nito.disposables.nuspec"
  4452. ]
  4453. },
  4454. "NodaTime/2.4.7": {
  4455. "sha512": "qXOjY8467lqeOLDOZa7TmHL4jvlMDz9xcQuMXgXW7fvVXJNMx1Z6DBVozK+FMzH4eHscccfpgJmv8ua9s8mtbA==",
  4456. "type": "package",
  4457. "path": "nodatime/2.4.7",
  4458. "files": [
  4459. ".nupkg.metadata",
  4460. ".signature.p7s",
  4461. "lib/net45/NodaTime.dll",
  4462. "lib/net45/NodaTime.pdb",
  4463. "lib/net45/NodaTime.xml",
  4464. "lib/netstandard1.3/NodaTime.dll",
  4465. "lib/netstandard1.3/NodaTime.pdb",
  4466. "lib/netstandard1.3/NodaTime.xml",
  4467. "lib/netstandard2.0/NodaTime.dll",
  4468. "lib/netstandard2.0/NodaTime.pdb",
  4469. "lib/netstandard2.0/NodaTime.xml",
  4470. "nodatime.2.4.7.nupkg.sha512",
  4471. "nodatime.nuspec"
  4472. ]
  4473. },
  4474. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4475. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4476. "type": "package",
  4477. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4478. "files": [
  4479. ".nupkg.metadata",
  4480. ".signature.p7s",
  4481. "icon.png",
  4482. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  4483. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  4484. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  4485. "pomelo.entityframeworkcore.mysql.nuspec"
  4486. ]
  4487. },
  4488. "QRCoder/1.4.3": {
  4489. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4490. "type": "package",
  4491. "path": "qrcoder/1.4.3",
  4492. "files": [
  4493. ".nupkg.metadata",
  4494. ".signature.p7s",
  4495. "lib/net35/QRCoder.dll",
  4496. "lib/net40/QRCoder.dll",
  4497. "lib/net5.0-windows7.0/QRCoder.dll",
  4498. "lib/net5.0/QRCoder.dll",
  4499. "lib/net6.0-windows7.0/QRCoder.dll",
  4500. "lib/net6.0/QRCoder.dll",
  4501. "lib/netstandard1.3/QRCoder.dll",
  4502. "lib/netstandard2.0/QRCoder.dll",
  4503. "nuget-icon.png",
  4504. "nuget-readme.md",
  4505. "qrcoder.1.4.3.nupkg.sha512",
  4506. "qrcoder.nuspec"
  4507. ]
  4508. },
  4509. "RabbitMQ.Client/6.8.1": {
  4510. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4511. "type": "package",
  4512. "path": "rabbitmq.client/6.8.1",
  4513. "files": [
  4514. ".nupkg.metadata",
  4515. ".signature.p7s",
  4516. "README.md",
  4517. "icon.png",
  4518. "lib/net462/RabbitMQ.Client.dll",
  4519. "lib/net462/RabbitMQ.Client.xml",
  4520. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4521. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4522. "rabbitmq.client.6.8.1.nupkg.sha512",
  4523. "rabbitmq.client.nuspec"
  4524. ]
  4525. },
  4526. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4527. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4528. "type": "package",
  4529. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4530. "files": [
  4531. ".nupkg.metadata",
  4532. ".signature.p7s",
  4533. "ThirdPartyNotices.txt",
  4534. "dotnet_library_license.txt",
  4535. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4536. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4537. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4538. ]
  4539. },
  4540. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4541. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4542. "type": "package",
  4543. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4544. "files": [
  4545. ".nupkg.metadata",
  4546. ".signature.p7s",
  4547. "ThirdPartyNotices.txt",
  4548. "dotnet_library_license.txt",
  4549. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4550. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4551. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4552. ]
  4553. },
  4554. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4555. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4556. "type": "package",
  4557. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4558. "files": [
  4559. ".nupkg.metadata",
  4560. ".signature.p7s",
  4561. "ThirdPartyNotices.txt",
  4562. "dotnet_library_license.txt",
  4563. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4564. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4565. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4566. ]
  4567. },
  4568. "runtime.native.System/4.3.0": {
  4569. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4570. "type": "package",
  4571. "path": "runtime.native.system/4.3.0",
  4572. "files": [
  4573. ".nupkg.metadata",
  4574. ".signature.p7s",
  4575. "ThirdPartyNotices.txt",
  4576. "dotnet_library_license.txt",
  4577. "lib/netstandard1.0/_._",
  4578. "runtime.native.system.4.3.0.nupkg.sha512",
  4579. "runtime.native.system.nuspec"
  4580. ]
  4581. },
  4582. "runtime.native.System.IO.Compression/4.3.0": {
  4583. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4584. "type": "package",
  4585. "path": "runtime.native.system.io.compression/4.3.0",
  4586. "files": [
  4587. ".nupkg.metadata",
  4588. ".signature.p7s",
  4589. "ThirdPartyNotices.txt",
  4590. "dotnet_library_license.txt",
  4591. "lib/netstandard1.0/_._",
  4592. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4593. "runtime.native.system.io.compression.nuspec"
  4594. ]
  4595. },
  4596. "runtime.native.System.Net.Http/4.3.0": {
  4597. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4598. "type": "package",
  4599. "path": "runtime.native.system.net.http/4.3.0",
  4600. "files": [
  4601. ".nupkg.metadata",
  4602. ".signature.p7s",
  4603. "ThirdPartyNotices.txt",
  4604. "dotnet_library_license.txt",
  4605. "lib/netstandard1.0/_._",
  4606. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4607. "runtime.native.system.net.http.nuspec"
  4608. ]
  4609. },
  4610. "runtime.native.System.Net.Security/4.3.0": {
  4611. "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4612. "type": "package",
  4613. "path": "runtime.native.system.net.security/4.3.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "ThirdPartyNotices.txt",
  4618. "dotnet_library_license.txt",
  4619. "lib/netstandard1.0/_._",
  4620. "runtime.native.system.net.security.4.3.0.nupkg.sha512",
  4621. "runtime.native.system.net.security.nuspec"
  4622. ]
  4623. },
  4624. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4625. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4626. "type": "package",
  4627. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4628. "files": [
  4629. ".nupkg.metadata",
  4630. ".signature.p7s",
  4631. "ThirdPartyNotices.txt",
  4632. "dotnet_library_license.txt",
  4633. "lib/netstandard1.0/_._",
  4634. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4635. "runtime.native.system.security.cryptography.apple.nuspec"
  4636. ]
  4637. },
  4638. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4639. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4640. "type": "package",
  4641. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4642. "files": [
  4643. ".nupkg.metadata",
  4644. ".signature.p7s",
  4645. "ThirdPartyNotices.txt",
  4646. "dotnet_library_license.txt",
  4647. "lib/netstandard1.0/_._",
  4648. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4649. "runtime.native.system.security.cryptography.openssl.nuspec"
  4650. ]
  4651. },
  4652. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4653. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4654. "type": "package",
  4655. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4656. "files": [
  4657. ".nupkg.metadata",
  4658. ".signature.p7s",
  4659. "ThirdPartyNotices.txt",
  4660. "dotnet_library_license.txt",
  4661. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4662. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4663. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4664. ]
  4665. },
  4666. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4667. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4668. "type": "package",
  4669. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "ThirdPartyNotices.txt",
  4674. "dotnet_library_license.txt",
  4675. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4676. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4677. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4678. ]
  4679. },
  4680. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4681. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4682. "type": "package",
  4683. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4684. "files": [
  4685. ".nupkg.metadata",
  4686. ".signature.p7s",
  4687. "ThirdPartyNotices.txt",
  4688. "dotnet_library_license.txt",
  4689. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4690. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4691. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4692. ]
  4693. },
  4694. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4695. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4696. "type": "package",
  4697. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4698. "files": [
  4699. ".nupkg.metadata",
  4700. ".signature.p7s",
  4701. "ThirdPartyNotices.txt",
  4702. "dotnet_library_license.txt",
  4703. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4704. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4705. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4706. ]
  4707. },
  4708. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4709. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4710. "type": "package",
  4711. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4712. "files": [
  4713. ".nupkg.metadata",
  4714. ".signature.p7s",
  4715. "ThirdPartyNotices.txt",
  4716. "dotnet_library_license.txt",
  4717. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4718. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4719. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4720. ]
  4721. },
  4722. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4723. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4724. "type": "package",
  4725. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4726. "files": [
  4727. ".nupkg.metadata",
  4728. ".signature.p7s",
  4729. "ThirdPartyNotices.txt",
  4730. "dotnet_library_license.txt",
  4731. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4732. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4733. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4734. ]
  4735. },
  4736. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4737. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4738. "type": "package",
  4739. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4740. "files": [
  4741. ".nupkg.metadata",
  4742. ".signature.p7s",
  4743. "ThirdPartyNotices.txt",
  4744. "dotnet_library_license.txt",
  4745. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4746. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4747. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4748. ]
  4749. },
  4750. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4751. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4752. "type": "package",
  4753. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4754. "files": [
  4755. ".nupkg.metadata",
  4756. ".signature.p7s",
  4757. "ThirdPartyNotices.txt",
  4758. "dotnet_library_license.txt",
  4759. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4760. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4761. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4762. ]
  4763. },
  4764. "SixLabors.ImageSharp/2.1.6": {
  4765. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4766. "type": "package",
  4767. "path": "sixlabors.imagesharp/2.1.6",
  4768. "files": [
  4769. ".nupkg.metadata",
  4770. ".signature.p7s",
  4771. "lib/net472/SixLabors.ImageSharp.dll",
  4772. "lib/net472/SixLabors.ImageSharp.xml",
  4773. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  4774. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  4775. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  4776. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  4777. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  4778. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  4779. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  4780. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  4781. "sixlabors.imagesharp.128.png",
  4782. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  4783. "sixlabors.imagesharp.nuspec"
  4784. ]
  4785. },
  4786. "SSH.NET/2020.0.0-beta1": {
  4787. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4788. "type": "package",
  4789. "path": "ssh.net/2020.0.0-beta1",
  4790. "files": [
  4791. ".nupkg.metadata",
  4792. ".signature.p7s",
  4793. "lib/net35/Renci.SshNet.dll",
  4794. "lib/net35/Renci.SshNet.xml",
  4795. "lib/net40/Renci.SshNet.dll",
  4796. "lib/net40/Renci.SshNet.xml",
  4797. "lib/netstandard1.3/Renci.SshNet.dll",
  4798. "lib/netstandard1.3/Renci.SshNet.xml",
  4799. "lib/netstandard2.0/Renci.SshNet.dll",
  4800. "lib/netstandard2.0/Renci.SshNet.xml",
  4801. "lib/sl4/Renci.SshNet.dll",
  4802. "lib/sl4/Renci.SshNet.xml",
  4803. "lib/sl5/Renci.SshNet.dll",
  4804. "lib/sl5/Renci.SshNet.xml",
  4805. "lib/uap10/Renci.SshNet.dll",
  4806. "lib/uap10/Renci.SshNet.xml",
  4807. "lib/wp71/Renci.SshNet.dll",
  4808. "lib/wp71/Renci.SshNet.xml",
  4809. "lib/wp8/Renci.SshNet.dll",
  4810. "lib/wp8/Renci.SshNet.xml",
  4811. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  4812. "ssh.net.nuspec"
  4813. ]
  4814. },
  4815. "SshNet.Security.Cryptography/1.3.0": {
  4816. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4817. "type": "package",
  4818. "path": "sshnet.security.cryptography/1.3.0",
  4819. "files": [
  4820. ".nupkg.metadata",
  4821. ".signature.p7s",
  4822. "lib/net20/SshNet.Security.Cryptography.dll",
  4823. "lib/net20/SshNet.Security.Cryptography.xml",
  4824. "lib/net40/SshNet.Security.Cryptography.dll",
  4825. "lib/net40/SshNet.Security.Cryptography.xml",
  4826. "lib/net45/SshNet.Security.Cryptography.dll",
  4827. "lib/net45/SshNet.Security.Cryptography.xml",
  4828. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  4829. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  4830. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  4831. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  4832. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  4833. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  4834. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  4835. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  4836. "lib/sl4/SshNet.Security.Cryptography.dll",
  4837. "lib/sl4/SshNet.Security.Cryptography.xml",
  4838. "lib/sl5/SshNet.Security.Cryptography.dll",
  4839. "lib/sl5/SshNet.Security.Cryptography.xml",
  4840. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  4841. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  4842. "lib/wp71/SshNet.Security.Cryptography.dll",
  4843. "lib/wp71/SshNet.Security.Cryptography.xml",
  4844. "lib/wp8/SshNet.Security.Cryptography.dll",
  4845. "lib/wp8/SshNet.Security.Cryptography.xml",
  4846. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  4847. "sshnet.security.cryptography.nuspec"
  4848. ]
  4849. },
  4850. "StackExchange.Redis/1.2.4": {
  4851. "sha512": "xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4852. "type": "package",
  4853. "path": "stackexchange.redis/1.2.4",
  4854. "files": [
  4855. ".nupkg.metadata",
  4856. ".signature.p7s",
  4857. "lib/net45/StackExchange.Redis.dll",
  4858. "lib/net45/StackExchange.Redis.xml",
  4859. "lib/net46/StackExchange.Redis.dll",
  4860. "lib/net46/StackExchange.Redis.xml",
  4861. "lib/netstandard1.5/StackExchange.Redis.dll",
  4862. "lib/netstandard1.5/StackExchange.Redis.xml",
  4863. "stackexchange.redis.1.2.4.nupkg.sha512",
  4864. "stackexchange.redis.nuspec"
  4865. ]
  4866. },
  4867. "Swashbuckle.AspNetCore/5.6.3": {
  4868. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  4869. "type": "package",
  4870. "path": "swashbuckle.aspnetcore/5.6.3",
  4871. "files": [
  4872. ".nupkg.metadata",
  4873. ".signature.p7s",
  4874. "build/Swashbuckle.AspNetCore.props",
  4875. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  4876. "swashbuckle.aspnetcore.nuspec"
  4877. ]
  4878. },
  4879. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  4880. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  4881. "type": "package",
  4882. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  4883. "files": [
  4884. ".nupkg.metadata",
  4885. ".signature.p7s",
  4886. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4887. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4888. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4889. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4890. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4891. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4892. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  4893. "swashbuckle.aspnetcore.swagger.nuspec"
  4894. ]
  4895. },
  4896. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  4897. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  4898. "type": "package",
  4899. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  4900. "files": [
  4901. ".nupkg.metadata",
  4902. ".signature.p7s",
  4903. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4904. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4905. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4906. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4907. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4908. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4909. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  4910. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4911. ]
  4912. },
  4913. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  4914. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  4915. "type": "package",
  4916. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  4917. "files": [
  4918. ".nupkg.metadata",
  4919. ".signature.p7s",
  4920. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4921. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4922. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4923. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4924. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4925. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4926. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  4927. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4928. ]
  4929. },
  4930. "System.AppContext/4.3.0": {
  4931. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4932. "type": "package",
  4933. "path": "system.appcontext/4.3.0",
  4934. "files": [
  4935. ".nupkg.metadata",
  4936. ".signature.p7s",
  4937. "ThirdPartyNotices.txt",
  4938. "dotnet_library_license.txt",
  4939. "lib/MonoAndroid10/_._",
  4940. "lib/MonoTouch10/_._",
  4941. "lib/net46/System.AppContext.dll",
  4942. "lib/net463/System.AppContext.dll",
  4943. "lib/netcore50/System.AppContext.dll",
  4944. "lib/netstandard1.6/System.AppContext.dll",
  4945. "lib/xamarinios10/_._",
  4946. "lib/xamarinmac20/_._",
  4947. "lib/xamarintvos10/_._",
  4948. "lib/xamarinwatchos10/_._",
  4949. "ref/MonoAndroid10/_._",
  4950. "ref/MonoTouch10/_._",
  4951. "ref/net46/System.AppContext.dll",
  4952. "ref/net463/System.AppContext.dll",
  4953. "ref/netstandard/_._",
  4954. "ref/netstandard1.3/System.AppContext.dll",
  4955. "ref/netstandard1.3/System.AppContext.xml",
  4956. "ref/netstandard1.3/de/System.AppContext.xml",
  4957. "ref/netstandard1.3/es/System.AppContext.xml",
  4958. "ref/netstandard1.3/fr/System.AppContext.xml",
  4959. "ref/netstandard1.3/it/System.AppContext.xml",
  4960. "ref/netstandard1.3/ja/System.AppContext.xml",
  4961. "ref/netstandard1.3/ko/System.AppContext.xml",
  4962. "ref/netstandard1.3/ru/System.AppContext.xml",
  4963. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4964. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4965. "ref/netstandard1.6/System.AppContext.dll",
  4966. "ref/netstandard1.6/System.AppContext.xml",
  4967. "ref/netstandard1.6/de/System.AppContext.xml",
  4968. "ref/netstandard1.6/es/System.AppContext.xml",
  4969. "ref/netstandard1.6/fr/System.AppContext.xml",
  4970. "ref/netstandard1.6/it/System.AppContext.xml",
  4971. "ref/netstandard1.6/ja/System.AppContext.xml",
  4972. "ref/netstandard1.6/ko/System.AppContext.xml",
  4973. "ref/netstandard1.6/ru/System.AppContext.xml",
  4974. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4975. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4976. "ref/xamarinios10/_._",
  4977. "ref/xamarinmac20/_._",
  4978. "ref/xamarintvos10/_._",
  4979. "ref/xamarinwatchos10/_._",
  4980. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4981. "system.appcontext.4.3.0.nupkg.sha512",
  4982. "system.appcontext.nuspec"
  4983. ]
  4984. },
  4985. "System.Buffers/4.5.1": {
  4986. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4987. "type": "package",
  4988. "path": "system.buffers/4.5.1",
  4989. "files": [
  4990. ".nupkg.metadata",
  4991. ".signature.p7s",
  4992. "LICENSE.TXT",
  4993. "THIRD-PARTY-NOTICES.TXT",
  4994. "lib/net461/System.Buffers.dll",
  4995. "lib/net461/System.Buffers.xml",
  4996. "lib/netcoreapp2.0/_._",
  4997. "lib/netstandard1.1/System.Buffers.dll",
  4998. "lib/netstandard1.1/System.Buffers.xml",
  4999. "lib/netstandard2.0/System.Buffers.dll",
  5000. "lib/netstandard2.0/System.Buffers.xml",
  5001. "lib/uap10.0.16299/_._",
  5002. "ref/net45/System.Buffers.dll",
  5003. "ref/net45/System.Buffers.xml",
  5004. "ref/netcoreapp2.0/_._",
  5005. "ref/netstandard1.1/System.Buffers.dll",
  5006. "ref/netstandard1.1/System.Buffers.xml",
  5007. "ref/netstandard2.0/System.Buffers.dll",
  5008. "ref/netstandard2.0/System.Buffers.xml",
  5009. "ref/uap10.0.16299/_._",
  5010. "system.buffers.4.5.1.nupkg.sha512",
  5011. "system.buffers.nuspec",
  5012. "useSharedDesignerContext.txt",
  5013. "version.txt"
  5014. ]
  5015. },
  5016. "System.Collections/4.3.0": {
  5017. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5018. "type": "package",
  5019. "path": "system.collections/4.3.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "ThirdPartyNotices.txt",
  5024. "dotnet_library_license.txt",
  5025. "lib/MonoAndroid10/_._",
  5026. "lib/MonoTouch10/_._",
  5027. "lib/net45/_._",
  5028. "lib/portable-net45+win8+wp8+wpa81/_._",
  5029. "lib/win8/_._",
  5030. "lib/wp80/_._",
  5031. "lib/wpa81/_._",
  5032. "lib/xamarinios10/_._",
  5033. "lib/xamarinmac20/_._",
  5034. "lib/xamarintvos10/_._",
  5035. "lib/xamarinwatchos10/_._",
  5036. "ref/MonoAndroid10/_._",
  5037. "ref/MonoTouch10/_._",
  5038. "ref/net45/_._",
  5039. "ref/netcore50/System.Collections.dll",
  5040. "ref/netcore50/System.Collections.xml",
  5041. "ref/netcore50/de/System.Collections.xml",
  5042. "ref/netcore50/es/System.Collections.xml",
  5043. "ref/netcore50/fr/System.Collections.xml",
  5044. "ref/netcore50/it/System.Collections.xml",
  5045. "ref/netcore50/ja/System.Collections.xml",
  5046. "ref/netcore50/ko/System.Collections.xml",
  5047. "ref/netcore50/ru/System.Collections.xml",
  5048. "ref/netcore50/zh-hans/System.Collections.xml",
  5049. "ref/netcore50/zh-hant/System.Collections.xml",
  5050. "ref/netstandard1.0/System.Collections.dll",
  5051. "ref/netstandard1.0/System.Collections.xml",
  5052. "ref/netstandard1.0/de/System.Collections.xml",
  5053. "ref/netstandard1.0/es/System.Collections.xml",
  5054. "ref/netstandard1.0/fr/System.Collections.xml",
  5055. "ref/netstandard1.0/it/System.Collections.xml",
  5056. "ref/netstandard1.0/ja/System.Collections.xml",
  5057. "ref/netstandard1.0/ko/System.Collections.xml",
  5058. "ref/netstandard1.0/ru/System.Collections.xml",
  5059. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5060. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5061. "ref/netstandard1.3/System.Collections.dll",
  5062. "ref/netstandard1.3/System.Collections.xml",
  5063. "ref/netstandard1.3/de/System.Collections.xml",
  5064. "ref/netstandard1.3/es/System.Collections.xml",
  5065. "ref/netstandard1.3/fr/System.Collections.xml",
  5066. "ref/netstandard1.3/it/System.Collections.xml",
  5067. "ref/netstandard1.3/ja/System.Collections.xml",
  5068. "ref/netstandard1.3/ko/System.Collections.xml",
  5069. "ref/netstandard1.3/ru/System.Collections.xml",
  5070. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5071. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5072. "ref/portable-net45+win8+wp8+wpa81/_._",
  5073. "ref/win8/_._",
  5074. "ref/wp80/_._",
  5075. "ref/wpa81/_._",
  5076. "ref/xamarinios10/_._",
  5077. "ref/xamarinmac20/_._",
  5078. "ref/xamarintvos10/_._",
  5079. "ref/xamarinwatchos10/_._",
  5080. "system.collections.4.3.0.nupkg.sha512",
  5081. "system.collections.nuspec"
  5082. ]
  5083. },
  5084. "System.Collections.Concurrent/4.3.0": {
  5085. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5086. "type": "package",
  5087. "path": "system.collections.concurrent/4.3.0",
  5088. "files": [
  5089. ".nupkg.metadata",
  5090. ".signature.p7s",
  5091. "ThirdPartyNotices.txt",
  5092. "dotnet_library_license.txt",
  5093. "lib/MonoAndroid10/_._",
  5094. "lib/MonoTouch10/_._",
  5095. "lib/net45/_._",
  5096. "lib/netcore50/System.Collections.Concurrent.dll",
  5097. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5098. "lib/portable-net45+win8+wpa81/_._",
  5099. "lib/win8/_._",
  5100. "lib/wpa81/_._",
  5101. "lib/xamarinios10/_._",
  5102. "lib/xamarinmac20/_._",
  5103. "lib/xamarintvos10/_._",
  5104. "lib/xamarinwatchos10/_._",
  5105. "ref/MonoAndroid10/_._",
  5106. "ref/MonoTouch10/_._",
  5107. "ref/net45/_._",
  5108. "ref/netcore50/System.Collections.Concurrent.dll",
  5109. "ref/netcore50/System.Collections.Concurrent.xml",
  5110. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5111. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5112. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5113. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5114. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5115. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5116. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5117. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5118. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5119. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5120. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5121. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5122. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5123. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5124. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5125. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5126. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5127. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5128. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5129. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5130. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5131. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5132. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5133. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5134. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5135. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5136. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5137. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5138. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5139. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5140. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5141. "ref/portable-net45+win8+wpa81/_._",
  5142. "ref/win8/_._",
  5143. "ref/wpa81/_._",
  5144. "ref/xamarinios10/_._",
  5145. "ref/xamarinmac20/_._",
  5146. "ref/xamarintvos10/_._",
  5147. "ref/xamarinwatchos10/_._",
  5148. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5149. "system.collections.concurrent.nuspec"
  5150. ]
  5151. },
  5152. "System.Collections.Immutable/5.0.0": {
  5153. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  5154. "type": "package",
  5155. "path": "system.collections.immutable/5.0.0",
  5156. "files": [
  5157. ".nupkg.metadata",
  5158. ".signature.p7s",
  5159. "Icon.png",
  5160. "LICENSE.TXT",
  5161. "THIRD-PARTY-NOTICES.TXT",
  5162. "lib/net461/System.Collections.Immutable.dll",
  5163. "lib/net461/System.Collections.Immutable.xml",
  5164. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5165. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5166. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5167. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5168. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5169. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5170. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5171. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5172. "system.collections.immutable.5.0.0.nupkg.sha512",
  5173. "system.collections.immutable.nuspec",
  5174. "useSharedDesignerContext.txt",
  5175. "version.txt"
  5176. ]
  5177. },
  5178. "System.Collections.NonGeneric/4.3.0": {
  5179. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5180. "type": "package",
  5181. "path": "system.collections.nongeneric/4.3.0",
  5182. "files": [
  5183. ".nupkg.metadata",
  5184. ".signature.p7s",
  5185. "ThirdPartyNotices.txt",
  5186. "dotnet_library_license.txt",
  5187. "lib/MonoAndroid10/_._",
  5188. "lib/MonoTouch10/_._",
  5189. "lib/net46/System.Collections.NonGeneric.dll",
  5190. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5191. "lib/xamarinios10/_._",
  5192. "lib/xamarinmac20/_._",
  5193. "lib/xamarintvos10/_._",
  5194. "lib/xamarinwatchos10/_._",
  5195. "ref/MonoAndroid10/_._",
  5196. "ref/MonoTouch10/_._",
  5197. "ref/net46/System.Collections.NonGeneric.dll",
  5198. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5199. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5200. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5201. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5202. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5203. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5204. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5205. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5206. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5207. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5208. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5209. "ref/xamarinios10/_._",
  5210. "ref/xamarinmac20/_._",
  5211. "ref/xamarintvos10/_._",
  5212. "ref/xamarinwatchos10/_._",
  5213. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5214. "system.collections.nongeneric.nuspec"
  5215. ]
  5216. },
  5217. "System.ComponentModel/4.3.0": {
  5218. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5219. "type": "package",
  5220. "path": "system.componentmodel/4.3.0",
  5221. "files": [
  5222. ".nupkg.metadata",
  5223. ".signature.p7s",
  5224. "ThirdPartyNotices.txt",
  5225. "dotnet_library_license.txt",
  5226. "lib/MonoAndroid10/_._",
  5227. "lib/MonoTouch10/_._",
  5228. "lib/net45/_._",
  5229. "lib/netcore50/System.ComponentModel.dll",
  5230. "lib/netstandard1.3/System.ComponentModel.dll",
  5231. "lib/portable-net45+win8+wp8+wpa81/_._",
  5232. "lib/win8/_._",
  5233. "lib/wp80/_._",
  5234. "lib/wpa81/_._",
  5235. "lib/xamarinios10/_._",
  5236. "lib/xamarinmac20/_._",
  5237. "lib/xamarintvos10/_._",
  5238. "lib/xamarinwatchos10/_._",
  5239. "ref/MonoAndroid10/_._",
  5240. "ref/MonoTouch10/_._",
  5241. "ref/net45/_._",
  5242. "ref/netcore50/System.ComponentModel.dll",
  5243. "ref/netcore50/System.ComponentModel.xml",
  5244. "ref/netcore50/de/System.ComponentModel.xml",
  5245. "ref/netcore50/es/System.ComponentModel.xml",
  5246. "ref/netcore50/fr/System.ComponentModel.xml",
  5247. "ref/netcore50/it/System.ComponentModel.xml",
  5248. "ref/netcore50/ja/System.ComponentModel.xml",
  5249. "ref/netcore50/ko/System.ComponentModel.xml",
  5250. "ref/netcore50/ru/System.ComponentModel.xml",
  5251. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5252. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5253. "ref/netstandard1.0/System.ComponentModel.dll",
  5254. "ref/netstandard1.0/System.ComponentModel.xml",
  5255. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5256. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5257. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5258. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5259. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5260. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5261. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5262. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5263. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5264. "ref/portable-net45+win8+wp8+wpa81/_._",
  5265. "ref/win8/_._",
  5266. "ref/wp80/_._",
  5267. "ref/wpa81/_._",
  5268. "ref/xamarinios10/_._",
  5269. "ref/xamarinmac20/_._",
  5270. "ref/xamarintvos10/_._",
  5271. "ref/xamarinwatchos10/_._",
  5272. "system.componentmodel.4.3.0.nupkg.sha512",
  5273. "system.componentmodel.nuspec"
  5274. ]
  5275. },
  5276. "System.ComponentModel.Annotations/5.0.0": {
  5277. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  5278. "type": "package",
  5279. "path": "system.componentmodel.annotations/5.0.0",
  5280. "files": [
  5281. ".nupkg.metadata",
  5282. ".signature.p7s",
  5283. "Icon.png",
  5284. "LICENSE.TXT",
  5285. "THIRD-PARTY-NOTICES.TXT",
  5286. "lib/MonoAndroid10/_._",
  5287. "lib/MonoTouch10/_._",
  5288. "lib/net45/_._",
  5289. "lib/net461/System.ComponentModel.Annotations.dll",
  5290. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5291. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5292. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5293. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5294. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5295. "lib/portable-net45+win8/_._",
  5296. "lib/win8/_._",
  5297. "lib/xamarinios10/_._",
  5298. "lib/xamarinmac20/_._",
  5299. "lib/xamarintvos10/_._",
  5300. "lib/xamarinwatchos10/_._",
  5301. "ref/MonoAndroid10/_._",
  5302. "ref/MonoTouch10/_._",
  5303. "ref/net45/_._",
  5304. "ref/net461/System.ComponentModel.Annotations.dll",
  5305. "ref/net461/System.ComponentModel.Annotations.xml",
  5306. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5307. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5308. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5309. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5310. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5311. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5312. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5313. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5314. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5315. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5316. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5317. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5318. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5319. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5320. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5321. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5322. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5323. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5324. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5325. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5326. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5327. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5328. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5329. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5330. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5331. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5332. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5333. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5334. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5335. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5336. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5337. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5338. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5339. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5340. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5341. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5342. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5343. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5344. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5345. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5346. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5347. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5348. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5349. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5350. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5351. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5352. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5353. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5354. "ref/portable-net45+win8/_._",
  5355. "ref/win8/_._",
  5356. "ref/xamarinios10/_._",
  5357. "ref/xamarinmac20/_._",
  5358. "ref/xamarintvos10/_._",
  5359. "ref/xamarinwatchos10/_._",
  5360. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  5361. "system.componentmodel.annotations.nuspec",
  5362. "useSharedDesignerContext.txt",
  5363. "version.txt"
  5364. ]
  5365. },
  5366. "System.ComponentModel.EventBasedAsync/4.3.0": {
  5367. "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==",
  5368. "type": "package",
  5369. "path": "system.componentmodel.eventbasedasync/4.3.0",
  5370. "files": [
  5371. ".nupkg.metadata",
  5372. ".signature.p7s",
  5373. "ThirdPartyNotices.txt",
  5374. "dotnet_library_license.txt",
  5375. "lib/MonoAndroid10/_._",
  5376. "lib/MonoTouch10/_._",
  5377. "lib/net45/_._",
  5378. "lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5379. "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5380. "lib/portable-net45+win8+wp8+wpa81/_._",
  5381. "lib/win8/_._",
  5382. "lib/wp80/_._",
  5383. "lib/wpa81/_._",
  5384. "lib/xamarinios10/_._",
  5385. "lib/xamarinmac20/_._",
  5386. "lib/xamarintvos10/_._",
  5387. "lib/xamarinwatchos10/_._",
  5388. "ref/MonoAndroid10/_._",
  5389. "ref/MonoTouch10/_._",
  5390. "ref/net45/_._",
  5391. "ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
  5392. "ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
  5393. "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
  5394. "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
  5395. "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
  5396. "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
  5397. "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
  5398. "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
  5399. "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
  5400. "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5401. "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5402. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
  5403. "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
  5404. "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
  5405. "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
  5406. "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
  5407. "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
  5408. "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
  5409. "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
  5410. "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
  5411. "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5412. "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5413. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
  5414. "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
  5415. "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
  5416. "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
  5417. "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
  5418. "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
  5419. "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
  5420. "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
  5421. "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
  5422. "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
  5423. "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
  5424. "ref/portable-net45+win8+wp8+wpa81/_._",
  5425. "ref/win8/_._",
  5426. "ref/wp80/_._",
  5427. "ref/wpa81/_._",
  5428. "ref/xamarinios10/_._",
  5429. "ref/xamarinmac20/_._",
  5430. "ref/xamarintvos10/_._",
  5431. "ref/xamarinwatchos10/_._",
  5432. "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512",
  5433. "system.componentmodel.eventbasedasync.nuspec"
  5434. ]
  5435. },
  5436. "System.ComponentModel.Primitives/4.3.0": {
  5437. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5438. "type": "package",
  5439. "path": "system.componentmodel.primitives/4.3.0",
  5440. "files": [
  5441. ".nupkg.metadata",
  5442. ".signature.p7s",
  5443. "ThirdPartyNotices.txt",
  5444. "dotnet_library_license.txt",
  5445. "lib/MonoAndroid10/_._",
  5446. "lib/MonoTouch10/_._",
  5447. "lib/net45/System.ComponentModel.Primitives.dll",
  5448. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5449. "lib/xamarinios10/_._",
  5450. "lib/xamarinmac20/_._",
  5451. "lib/xamarintvos10/_._",
  5452. "lib/xamarinwatchos10/_._",
  5453. "ref/MonoAndroid10/_._",
  5454. "ref/MonoTouch10/_._",
  5455. "ref/net45/System.ComponentModel.Primitives.dll",
  5456. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5457. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5458. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5459. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5460. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5461. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5462. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5463. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5464. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5465. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5466. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5467. "ref/xamarinios10/_._",
  5468. "ref/xamarinmac20/_._",
  5469. "ref/xamarintvos10/_._",
  5470. "ref/xamarinwatchos10/_._",
  5471. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5472. "system.componentmodel.primitives.nuspec"
  5473. ]
  5474. },
  5475. "System.Configuration.ConfigurationManager/4.5.0": {
  5476. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5477. "type": "package",
  5478. "path": "system.configuration.configurationmanager/4.5.0",
  5479. "files": [
  5480. ".nupkg.metadata",
  5481. ".signature.p7s",
  5482. "LICENSE.TXT",
  5483. "THIRD-PARTY-NOTICES.TXT",
  5484. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5485. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5486. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5487. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5488. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5489. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5490. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5491. "system.configuration.configurationmanager.nuspec",
  5492. "useSharedDesignerContext.txt",
  5493. "version.txt"
  5494. ]
  5495. },
  5496. "System.Console/4.3.0": {
  5497. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5498. "type": "package",
  5499. "path": "system.console/4.3.0",
  5500. "files": [
  5501. ".nupkg.metadata",
  5502. ".signature.p7s",
  5503. "ThirdPartyNotices.txt",
  5504. "dotnet_library_license.txt",
  5505. "lib/MonoAndroid10/_._",
  5506. "lib/MonoTouch10/_._",
  5507. "lib/net46/System.Console.dll",
  5508. "lib/xamarinios10/_._",
  5509. "lib/xamarinmac20/_._",
  5510. "lib/xamarintvos10/_._",
  5511. "lib/xamarinwatchos10/_._",
  5512. "ref/MonoAndroid10/_._",
  5513. "ref/MonoTouch10/_._",
  5514. "ref/net46/System.Console.dll",
  5515. "ref/netstandard1.3/System.Console.dll",
  5516. "ref/netstandard1.3/System.Console.xml",
  5517. "ref/netstandard1.3/de/System.Console.xml",
  5518. "ref/netstandard1.3/es/System.Console.xml",
  5519. "ref/netstandard1.3/fr/System.Console.xml",
  5520. "ref/netstandard1.3/it/System.Console.xml",
  5521. "ref/netstandard1.3/ja/System.Console.xml",
  5522. "ref/netstandard1.3/ko/System.Console.xml",
  5523. "ref/netstandard1.3/ru/System.Console.xml",
  5524. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5525. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5526. "ref/xamarinios10/_._",
  5527. "ref/xamarinmac20/_._",
  5528. "ref/xamarintvos10/_._",
  5529. "ref/xamarinwatchos10/_._",
  5530. "system.console.4.3.0.nupkg.sha512",
  5531. "system.console.nuspec"
  5532. ]
  5533. },
  5534. "System.Diagnostics.Debug/4.3.0": {
  5535. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5536. "type": "package",
  5537. "path": "system.diagnostics.debug/4.3.0",
  5538. "files": [
  5539. ".nupkg.metadata",
  5540. ".signature.p7s",
  5541. "ThirdPartyNotices.txt",
  5542. "dotnet_library_license.txt",
  5543. "lib/MonoAndroid10/_._",
  5544. "lib/MonoTouch10/_._",
  5545. "lib/net45/_._",
  5546. "lib/portable-net45+win8+wp8+wpa81/_._",
  5547. "lib/win8/_._",
  5548. "lib/wp80/_._",
  5549. "lib/wpa81/_._",
  5550. "lib/xamarinios10/_._",
  5551. "lib/xamarinmac20/_._",
  5552. "lib/xamarintvos10/_._",
  5553. "lib/xamarinwatchos10/_._",
  5554. "ref/MonoAndroid10/_._",
  5555. "ref/MonoTouch10/_._",
  5556. "ref/net45/_._",
  5557. "ref/netcore50/System.Diagnostics.Debug.dll",
  5558. "ref/netcore50/System.Diagnostics.Debug.xml",
  5559. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5560. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5561. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5562. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5563. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5564. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5565. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5566. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5567. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5568. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5569. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5570. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5571. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5572. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5573. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5574. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5575. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5576. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5577. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5578. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5579. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5580. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5581. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5582. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5583. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5584. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5585. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5586. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5587. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5588. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5589. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5590. "ref/portable-net45+win8+wp8+wpa81/_._",
  5591. "ref/win8/_._",
  5592. "ref/wp80/_._",
  5593. "ref/wpa81/_._",
  5594. "ref/xamarinios10/_._",
  5595. "ref/xamarinmac20/_._",
  5596. "ref/xamarintvos10/_._",
  5597. "ref/xamarinwatchos10/_._",
  5598. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5599. "system.diagnostics.debug.nuspec"
  5600. ]
  5601. },
  5602. "System.Diagnostics.DiagnosticSource/5.0.0": {
  5603. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  5604. "type": "package",
  5605. "path": "system.diagnostics.diagnosticsource/5.0.0",
  5606. "files": [
  5607. ".nupkg.metadata",
  5608. ".signature.p7s",
  5609. "Icon.png",
  5610. "LICENSE.TXT",
  5611. "THIRD-PARTY-NOTICES.TXT",
  5612. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5613. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5614. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5615. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5616. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5617. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5618. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5619. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5620. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5621. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5622. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5623. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5624. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  5625. "system.diagnostics.diagnosticsource.nuspec",
  5626. "useSharedDesignerContext.txt",
  5627. "version.txt"
  5628. ]
  5629. },
  5630. "System.Diagnostics.Tools/4.3.0": {
  5631. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5632. "type": "package",
  5633. "path": "system.diagnostics.tools/4.3.0",
  5634. "files": [
  5635. ".nupkg.metadata",
  5636. ".signature.p7s",
  5637. "ThirdPartyNotices.txt",
  5638. "dotnet_library_license.txt",
  5639. "lib/MonoAndroid10/_._",
  5640. "lib/MonoTouch10/_._",
  5641. "lib/net45/_._",
  5642. "lib/portable-net45+win8+wp8+wpa81/_._",
  5643. "lib/win8/_._",
  5644. "lib/wp80/_._",
  5645. "lib/wpa81/_._",
  5646. "lib/xamarinios10/_._",
  5647. "lib/xamarinmac20/_._",
  5648. "lib/xamarintvos10/_._",
  5649. "lib/xamarinwatchos10/_._",
  5650. "ref/MonoAndroid10/_._",
  5651. "ref/MonoTouch10/_._",
  5652. "ref/net45/_._",
  5653. "ref/netcore50/System.Diagnostics.Tools.dll",
  5654. "ref/netcore50/System.Diagnostics.Tools.xml",
  5655. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5656. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5657. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5658. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5659. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5660. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5661. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5662. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5663. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5664. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5665. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5666. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5667. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5668. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5669. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5670. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5671. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5672. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5673. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5674. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5675. "ref/portable-net45+win8+wp8+wpa81/_._",
  5676. "ref/win8/_._",
  5677. "ref/wp80/_._",
  5678. "ref/wpa81/_._",
  5679. "ref/xamarinios10/_._",
  5680. "ref/xamarinmac20/_._",
  5681. "ref/xamarintvos10/_._",
  5682. "ref/xamarinwatchos10/_._",
  5683. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5684. "system.diagnostics.tools.nuspec"
  5685. ]
  5686. },
  5687. "System.Diagnostics.Tracing/4.3.0": {
  5688. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5689. "type": "package",
  5690. "path": "system.diagnostics.tracing/4.3.0",
  5691. "files": [
  5692. ".nupkg.metadata",
  5693. ".signature.p7s",
  5694. "ThirdPartyNotices.txt",
  5695. "dotnet_library_license.txt",
  5696. "lib/MonoAndroid10/_._",
  5697. "lib/MonoTouch10/_._",
  5698. "lib/net45/_._",
  5699. "lib/net462/System.Diagnostics.Tracing.dll",
  5700. "lib/portable-net45+win8+wpa81/_._",
  5701. "lib/win8/_._",
  5702. "lib/wpa81/_._",
  5703. "lib/xamarinios10/_._",
  5704. "lib/xamarinmac20/_._",
  5705. "lib/xamarintvos10/_._",
  5706. "lib/xamarinwatchos10/_._",
  5707. "ref/MonoAndroid10/_._",
  5708. "ref/MonoTouch10/_._",
  5709. "ref/net45/_._",
  5710. "ref/net462/System.Diagnostics.Tracing.dll",
  5711. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5712. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5713. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5714. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5715. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5716. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5717. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5718. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5719. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5720. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5721. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5722. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5723. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5724. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5725. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5726. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5727. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5728. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5729. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5730. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5731. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5732. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5733. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5734. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5735. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5736. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5737. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5738. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5739. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5740. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5741. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5742. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5743. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5744. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5745. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5746. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5747. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5748. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5749. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5750. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5751. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5752. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5753. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5754. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5755. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5756. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5757. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5758. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5759. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5760. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5761. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5762. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5763. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5764. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5765. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5766. "ref/portable-net45+win8+wpa81/_._",
  5767. "ref/win8/_._",
  5768. "ref/wpa81/_._",
  5769. "ref/xamarinios10/_._",
  5770. "ref/xamarinmac20/_._",
  5771. "ref/xamarintvos10/_._",
  5772. "ref/xamarinwatchos10/_._",
  5773. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5774. "system.diagnostics.tracing.nuspec"
  5775. ]
  5776. },
  5777. "System.Drawing.Common/5.0.3": {
  5778. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  5779. "type": "package",
  5780. "path": "system.drawing.common/5.0.3",
  5781. "files": [
  5782. ".nupkg.metadata",
  5783. ".signature.p7s",
  5784. "Icon.png",
  5785. "LICENSE.TXT",
  5786. "THIRD-PARTY-NOTICES.TXT",
  5787. "lib/MonoAndroid10/_._",
  5788. "lib/MonoTouch10/_._",
  5789. "lib/net461/System.Drawing.Common.dll",
  5790. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  5791. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  5792. "lib/netstandard2.0/System.Drawing.Common.dll",
  5793. "lib/xamarinios10/_._",
  5794. "lib/xamarinmac20/_._",
  5795. "lib/xamarintvos10/_._",
  5796. "lib/xamarinwatchos10/_._",
  5797. "ref/MonoAndroid10/_._",
  5798. "ref/MonoTouch10/_._",
  5799. "ref/net461/System.Drawing.Common.dll",
  5800. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5801. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5802. "ref/netstandard2.0/System.Drawing.Common.dll",
  5803. "ref/xamarinios10/_._",
  5804. "ref/xamarinmac20/_._",
  5805. "ref/xamarintvos10/_._",
  5806. "ref/xamarinwatchos10/_._",
  5807. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5808. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5809. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5810. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5811. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5812. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5813. "system.drawing.common.5.0.3.nupkg.sha512",
  5814. "system.drawing.common.nuspec",
  5815. "useSharedDesignerContext.txt",
  5816. "version.txt"
  5817. ]
  5818. },
  5819. "System.Globalization/4.3.0": {
  5820. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5821. "type": "package",
  5822. "path": "system.globalization/4.3.0",
  5823. "files": [
  5824. ".nupkg.metadata",
  5825. ".signature.p7s",
  5826. "ThirdPartyNotices.txt",
  5827. "dotnet_library_license.txt",
  5828. "lib/MonoAndroid10/_._",
  5829. "lib/MonoTouch10/_._",
  5830. "lib/net45/_._",
  5831. "lib/portable-net45+win8+wp8+wpa81/_._",
  5832. "lib/win8/_._",
  5833. "lib/wp80/_._",
  5834. "lib/wpa81/_._",
  5835. "lib/xamarinios10/_._",
  5836. "lib/xamarinmac20/_._",
  5837. "lib/xamarintvos10/_._",
  5838. "lib/xamarinwatchos10/_._",
  5839. "ref/MonoAndroid10/_._",
  5840. "ref/MonoTouch10/_._",
  5841. "ref/net45/_._",
  5842. "ref/netcore50/System.Globalization.dll",
  5843. "ref/netcore50/System.Globalization.xml",
  5844. "ref/netcore50/de/System.Globalization.xml",
  5845. "ref/netcore50/es/System.Globalization.xml",
  5846. "ref/netcore50/fr/System.Globalization.xml",
  5847. "ref/netcore50/it/System.Globalization.xml",
  5848. "ref/netcore50/ja/System.Globalization.xml",
  5849. "ref/netcore50/ko/System.Globalization.xml",
  5850. "ref/netcore50/ru/System.Globalization.xml",
  5851. "ref/netcore50/zh-hans/System.Globalization.xml",
  5852. "ref/netcore50/zh-hant/System.Globalization.xml",
  5853. "ref/netstandard1.0/System.Globalization.dll",
  5854. "ref/netstandard1.0/System.Globalization.xml",
  5855. "ref/netstandard1.0/de/System.Globalization.xml",
  5856. "ref/netstandard1.0/es/System.Globalization.xml",
  5857. "ref/netstandard1.0/fr/System.Globalization.xml",
  5858. "ref/netstandard1.0/it/System.Globalization.xml",
  5859. "ref/netstandard1.0/ja/System.Globalization.xml",
  5860. "ref/netstandard1.0/ko/System.Globalization.xml",
  5861. "ref/netstandard1.0/ru/System.Globalization.xml",
  5862. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5863. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5864. "ref/netstandard1.3/System.Globalization.dll",
  5865. "ref/netstandard1.3/System.Globalization.xml",
  5866. "ref/netstandard1.3/de/System.Globalization.xml",
  5867. "ref/netstandard1.3/es/System.Globalization.xml",
  5868. "ref/netstandard1.3/fr/System.Globalization.xml",
  5869. "ref/netstandard1.3/it/System.Globalization.xml",
  5870. "ref/netstandard1.3/ja/System.Globalization.xml",
  5871. "ref/netstandard1.3/ko/System.Globalization.xml",
  5872. "ref/netstandard1.3/ru/System.Globalization.xml",
  5873. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5874. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5875. "ref/portable-net45+win8+wp8+wpa81/_._",
  5876. "ref/win8/_._",
  5877. "ref/wp80/_._",
  5878. "ref/wpa81/_._",
  5879. "ref/xamarinios10/_._",
  5880. "ref/xamarinmac20/_._",
  5881. "ref/xamarintvos10/_._",
  5882. "ref/xamarinwatchos10/_._",
  5883. "system.globalization.4.3.0.nupkg.sha512",
  5884. "system.globalization.nuspec"
  5885. ]
  5886. },
  5887. "System.Globalization.Calendars/4.3.0": {
  5888. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5889. "type": "package",
  5890. "path": "system.globalization.calendars/4.3.0",
  5891. "files": [
  5892. ".nupkg.metadata",
  5893. ".signature.p7s",
  5894. "ThirdPartyNotices.txt",
  5895. "dotnet_library_license.txt",
  5896. "lib/MonoAndroid10/_._",
  5897. "lib/MonoTouch10/_._",
  5898. "lib/net46/System.Globalization.Calendars.dll",
  5899. "lib/xamarinios10/_._",
  5900. "lib/xamarinmac20/_._",
  5901. "lib/xamarintvos10/_._",
  5902. "lib/xamarinwatchos10/_._",
  5903. "ref/MonoAndroid10/_._",
  5904. "ref/MonoTouch10/_._",
  5905. "ref/net46/System.Globalization.Calendars.dll",
  5906. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5907. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5908. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5909. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5910. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5911. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5912. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5913. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5914. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5915. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5916. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5917. "ref/xamarinios10/_._",
  5918. "ref/xamarinmac20/_._",
  5919. "ref/xamarintvos10/_._",
  5920. "ref/xamarinwatchos10/_._",
  5921. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5922. "system.globalization.calendars.nuspec"
  5923. ]
  5924. },
  5925. "System.Globalization.Extensions/4.3.0": {
  5926. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5927. "type": "package",
  5928. "path": "system.globalization.extensions/4.3.0",
  5929. "files": [
  5930. ".nupkg.metadata",
  5931. ".signature.p7s",
  5932. "ThirdPartyNotices.txt",
  5933. "dotnet_library_license.txt",
  5934. "lib/MonoAndroid10/_._",
  5935. "lib/MonoTouch10/_._",
  5936. "lib/net46/System.Globalization.Extensions.dll",
  5937. "lib/xamarinios10/_._",
  5938. "lib/xamarinmac20/_._",
  5939. "lib/xamarintvos10/_._",
  5940. "lib/xamarinwatchos10/_._",
  5941. "ref/MonoAndroid10/_._",
  5942. "ref/MonoTouch10/_._",
  5943. "ref/net46/System.Globalization.Extensions.dll",
  5944. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5945. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5946. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5947. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5948. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5949. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5950. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5951. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5952. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5953. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5954. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5955. "ref/xamarinios10/_._",
  5956. "ref/xamarinmac20/_._",
  5957. "ref/xamarintvos10/_._",
  5958. "ref/xamarinwatchos10/_._",
  5959. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5960. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5961. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5962. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5963. "system.globalization.extensions.nuspec"
  5964. ]
  5965. },
  5966. "System.IO/4.3.0": {
  5967. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5968. "type": "package",
  5969. "path": "system.io/4.3.0",
  5970. "files": [
  5971. ".nupkg.metadata",
  5972. ".signature.p7s",
  5973. "ThirdPartyNotices.txt",
  5974. "dotnet_library_license.txt",
  5975. "lib/MonoAndroid10/_._",
  5976. "lib/MonoTouch10/_._",
  5977. "lib/net45/_._",
  5978. "lib/net462/System.IO.dll",
  5979. "lib/portable-net45+win8+wp8+wpa81/_._",
  5980. "lib/win8/_._",
  5981. "lib/wp80/_._",
  5982. "lib/wpa81/_._",
  5983. "lib/xamarinios10/_._",
  5984. "lib/xamarinmac20/_._",
  5985. "lib/xamarintvos10/_._",
  5986. "lib/xamarinwatchos10/_._",
  5987. "ref/MonoAndroid10/_._",
  5988. "ref/MonoTouch10/_._",
  5989. "ref/net45/_._",
  5990. "ref/net462/System.IO.dll",
  5991. "ref/netcore50/System.IO.dll",
  5992. "ref/netcore50/System.IO.xml",
  5993. "ref/netcore50/de/System.IO.xml",
  5994. "ref/netcore50/es/System.IO.xml",
  5995. "ref/netcore50/fr/System.IO.xml",
  5996. "ref/netcore50/it/System.IO.xml",
  5997. "ref/netcore50/ja/System.IO.xml",
  5998. "ref/netcore50/ko/System.IO.xml",
  5999. "ref/netcore50/ru/System.IO.xml",
  6000. "ref/netcore50/zh-hans/System.IO.xml",
  6001. "ref/netcore50/zh-hant/System.IO.xml",
  6002. "ref/netstandard1.0/System.IO.dll",
  6003. "ref/netstandard1.0/System.IO.xml",
  6004. "ref/netstandard1.0/de/System.IO.xml",
  6005. "ref/netstandard1.0/es/System.IO.xml",
  6006. "ref/netstandard1.0/fr/System.IO.xml",
  6007. "ref/netstandard1.0/it/System.IO.xml",
  6008. "ref/netstandard1.0/ja/System.IO.xml",
  6009. "ref/netstandard1.0/ko/System.IO.xml",
  6010. "ref/netstandard1.0/ru/System.IO.xml",
  6011. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6012. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6013. "ref/netstandard1.3/System.IO.dll",
  6014. "ref/netstandard1.3/System.IO.xml",
  6015. "ref/netstandard1.3/de/System.IO.xml",
  6016. "ref/netstandard1.3/es/System.IO.xml",
  6017. "ref/netstandard1.3/fr/System.IO.xml",
  6018. "ref/netstandard1.3/it/System.IO.xml",
  6019. "ref/netstandard1.3/ja/System.IO.xml",
  6020. "ref/netstandard1.3/ko/System.IO.xml",
  6021. "ref/netstandard1.3/ru/System.IO.xml",
  6022. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6023. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6024. "ref/netstandard1.5/System.IO.dll",
  6025. "ref/netstandard1.5/System.IO.xml",
  6026. "ref/netstandard1.5/de/System.IO.xml",
  6027. "ref/netstandard1.5/es/System.IO.xml",
  6028. "ref/netstandard1.5/fr/System.IO.xml",
  6029. "ref/netstandard1.5/it/System.IO.xml",
  6030. "ref/netstandard1.5/ja/System.IO.xml",
  6031. "ref/netstandard1.5/ko/System.IO.xml",
  6032. "ref/netstandard1.5/ru/System.IO.xml",
  6033. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6034. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6035. "ref/portable-net45+win8+wp8+wpa81/_._",
  6036. "ref/win8/_._",
  6037. "ref/wp80/_._",
  6038. "ref/wpa81/_._",
  6039. "ref/xamarinios10/_._",
  6040. "ref/xamarinmac20/_._",
  6041. "ref/xamarintvos10/_._",
  6042. "ref/xamarinwatchos10/_._",
  6043. "system.io.4.3.0.nupkg.sha512",
  6044. "system.io.nuspec"
  6045. ]
  6046. },
  6047. "System.IO.Compression/4.3.0": {
  6048. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6049. "type": "package",
  6050. "path": "system.io.compression/4.3.0",
  6051. "files": [
  6052. ".nupkg.metadata",
  6053. ".signature.p7s",
  6054. "ThirdPartyNotices.txt",
  6055. "dotnet_library_license.txt",
  6056. "lib/MonoAndroid10/_._",
  6057. "lib/MonoTouch10/_._",
  6058. "lib/net45/_._",
  6059. "lib/net46/System.IO.Compression.dll",
  6060. "lib/portable-net45+win8+wpa81/_._",
  6061. "lib/win8/_._",
  6062. "lib/wpa81/_._",
  6063. "lib/xamarinios10/_._",
  6064. "lib/xamarinmac20/_._",
  6065. "lib/xamarintvos10/_._",
  6066. "lib/xamarinwatchos10/_._",
  6067. "ref/MonoAndroid10/_._",
  6068. "ref/MonoTouch10/_._",
  6069. "ref/net45/_._",
  6070. "ref/net46/System.IO.Compression.dll",
  6071. "ref/netcore50/System.IO.Compression.dll",
  6072. "ref/netcore50/System.IO.Compression.xml",
  6073. "ref/netcore50/de/System.IO.Compression.xml",
  6074. "ref/netcore50/es/System.IO.Compression.xml",
  6075. "ref/netcore50/fr/System.IO.Compression.xml",
  6076. "ref/netcore50/it/System.IO.Compression.xml",
  6077. "ref/netcore50/ja/System.IO.Compression.xml",
  6078. "ref/netcore50/ko/System.IO.Compression.xml",
  6079. "ref/netcore50/ru/System.IO.Compression.xml",
  6080. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6081. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6082. "ref/netstandard1.1/System.IO.Compression.dll",
  6083. "ref/netstandard1.1/System.IO.Compression.xml",
  6084. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6085. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6086. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6087. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6088. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6089. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6090. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6091. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6092. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6093. "ref/netstandard1.3/System.IO.Compression.dll",
  6094. "ref/netstandard1.3/System.IO.Compression.xml",
  6095. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6096. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6097. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6098. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6099. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6100. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6101. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6102. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6103. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6104. "ref/portable-net45+win8+wpa81/_._",
  6105. "ref/win8/_._",
  6106. "ref/wpa81/_._",
  6107. "ref/xamarinios10/_._",
  6108. "ref/xamarinmac20/_._",
  6109. "ref/xamarintvos10/_._",
  6110. "ref/xamarinwatchos10/_._",
  6111. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6112. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6113. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6114. "system.io.compression.4.3.0.nupkg.sha512",
  6115. "system.io.compression.nuspec"
  6116. ]
  6117. },
  6118. "System.IO.Compression.ZipFile/4.3.0": {
  6119. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6120. "type": "package",
  6121. "path": "system.io.compression.zipfile/4.3.0",
  6122. "files": [
  6123. ".nupkg.metadata",
  6124. ".signature.p7s",
  6125. "ThirdPartyNotices.txt",
  6126. "dotnet_library_license.txt",
  6127. "lib/MonoAndroid10/_._",
  6128. "lib/MonoTouch10/_._",
  6129. "lib/net46/System.IO.Compression.ZipFile.dll",
  6130. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6131. "lib/xamarinios10/_._",
  6132. "lib/xamarinmac20/_._",
  6133. "lib/xamarintvos10/_._",
  6134. "lib/xamarinwatchos10/_._",
  6135. "ref/MonoAndroid10/_._",
  6136. "ref/MonoTouch10/_._",
  6137. "ref/net46/System.IO.Compression.ZipFile.dll",
  6138. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6139. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6140. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6141. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6142. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6143. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6144. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6145. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6146. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6147. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6148. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6149. "ref/xamarinios10/_._",
  6150. "ref/xamarinmac20/_._",
  6151. "ref/xamarintvos10/_._",
  6152. "ref/xamarinwatchos10/_._",
  6153. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6154. "system.io.compression.zipfile.nuspec"
  6155. ]
  6156. },
  6157. "System.IO.FileSystem/4.3.0": {
  6158. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6159. "type": "package",
  6160. "path": "system.io.filesystem/4.3.0",
  6161. "files": [
  6162. ".nupkg.metadata",
  6163. ".signature.p7s",
  6164. "ThirdPartyNotices.txt",
  6165. "dotnet_library_license.txt",
  6166. "lib/MonoAndroid10/_._",
  6167. "lib/MonoTouch10/_._",
  6168. "lib/net46/System.IO.FileSystem.dll",
  6169. "lib/xamarinios10/_._",
  6170. "lib/xamarinmac20/_._",
  6171. "lib/xamarintvos10/_._",
  6172. "lib/xamarinwatchos10/_._",
  6173. "ref/MonoAndroid10/_._",
  6174. "ref/MonoTouch10/_._",
  6175. "ref/net46/System.IO.FileSystem.dll",
  6176. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6177. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6178. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6179. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6180. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6181. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6182. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6183. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6184. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6185. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6186. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6187. "ref/xamarinios10/_._",
  6188. "ref/xamarinmac20/_._",
  6189. "ref/xamarintvos10/_._",
  6190. "ref/xamarinwatchos10/_._",
  6191. "system.io.filesystem.4.3.0.nupkg.sha512",
  6192. "system.io.filesystem.nuspec"
  6193. ]
  6194. },
  6195. "System.IO.FileSystem.Primitives/4.3.0": {
  6196. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6197. "type": "package",
  6198. "path": "system.io.filesystem.primitives/4.3.0",
  6199. "files": [
  6200. ".nupkg.metadata",
  6201. ".signature.p7s",
  6202. "ThirdPartyNotices.txt",
  6203. "dotnet_library_license.txt",
  6204. "lib/MonoAndroid10/_._",
  6205. "lib/MonoTouch10/_._",
  6206. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6207. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6208. "lib/xamarinios10/_._",
  6209. "lib/xamarinmac20/_._",
  6210. "lib/xamarintvos10/_._",
  6211. "lib/xamarinwatchos10/_._",
  6212. "ref/MonoAndroid10/_._",
  6213. "ref/MonoTouch10/_._",
  6214. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6215. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6216. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6217. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6218. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6219. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6220. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6221. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6222. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6223. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6224. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6225. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6226. "ref/xamarinios10/_._",
  6227. "ref/xamarinmac20/_._",
  6228. "ref/xamarintvos10/_._",
  6229. "ref/xamarinwatchos10/_._",
  6230. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6231. "system.io.filesystem.primitives.nuspec"
  6232. ]
  6233. },
  6234. "System.IO.Pipelines/5.0.0": {
  6235. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  6236. "type": "package",
  6237. "path": "system.io.pipelines/5.0.0",
  6238. "files": [
  6239. ".nupkg.metadata",
  6240. ".signature.p7s",
  6241. "Icon.png",
  6242. "LICENSE.TXT",
  6243. "THIRD-PARTY-NOTICES.TXT",
  6244. "lib/net461/System.IO.Pipelines.dll",
  6245. "lib/net461/System.IO.Pipelines.xml",
  6246. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  6247. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  6248. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6249. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6250. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6251. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6252. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  6253. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  6254. "system.io.pipelines.5.0.0.nupkg.sha512",
  6255. "system.io.pipelines.nuspec",
  6256. "useSharedDesignerContext.txt",
  6257. "version.txt"
  6258. ]
  6259. },
  6260. "System.Linq/4.3.0": {
  6261. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6262. "type": "package",
  6263. "path": "system.linq/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/net463/System.Linq.dll",
  6273. "lib/netcore50/System.Linq.dll",
  6274. "lib/netstandard1.6/System.Linq.dll",
  6275. "lib/portable-net45+win8+wp8+wpa81/_._",
  6276. "lib/win8/_._",
  6277. "lib/wp80/_._",
  6278. "lib/wpa81/_._",
  6279. "lib/xamarinios10/_._",
  6280. "lib/xamarinmac20/_._",
  6281. "lib/xamarintvos10/_._",
  6282. "lib/xamarinwatchos10/_._",
  6283. "ref/MonoAndroid10/_._",
  6284. "ref/MonoTouch10/_._",
  6285. "ref/net45/_._",
  6286. "ref/net463/System.Linq.dll",
  6287. "ref/netcore50/System.Linq.dll",
  6288. "ref/netcore50/System.Linq.xml",
  6289. "ref/netcore50/de/System.Linq.xml",
  6290. "ref/netcore50/es/System.Linq.xml",
  6291. "ref/netcore50/fr/System.Linq.xml",
  6292. "ref/netcore50/it/System.Linq.xml",
  6293. "ref/netcore50/ja/System.Linq.xml",
  6294. "ref/netcore50/ko/System.Linq.xml",
  6295. "ref/netcore50/ru/System.Linq.xml",
  6296. "ref/netcore50/zh-hans/System.Linq.xml",
  6297. "ref/netcore50/zh-hant/System.Linq.xml",
  6298. "ref/netstandard1.0/System.Linq.dll",
  6299. "ref/netstandard1.0/System.Linq.xml",
  6300. "ref/netstandard1.0/de/System.Linq.xml",
  6301. "ref/netstandard1.0/es/System.Linq.xml",
  6302. "ref/netstandard1.0/fr/System.Linq.xml",
  6303. "ref/netstandard1.0/it/System.Linq.xml",
  6304. "ref/netstandard1.0/ja/System.Linq.xml",
  6305. "ref/netstandard1.0/ko/System.Linq.xml",
  6306. "ref/netstandard1.0/ru/System.Linq.xml",
  6307. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6308. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6309. "ref/netstandard1.6/System.Linq.dll",
  6310. "ref/netstandard1.6/System.Linq.xml",
  6311. "ref/netstandard1.6/de/System.Linq.xml",
  6312. "ref/netstandard1.6/es/System.Linq.xml",
  6313. "ref/netstandard1.6/fr/System.Linq.xml",
  6314. "ref/netstandard1.6/it/System.Linq.xml",
  6315. "ref/netstandard1.6/ja/System.Linq.xml",
  6316. "ref/netstandard1.6/ko/System.Linq.xml",
  6317. "ref/netstandard1.6/ru/System.Linq.xml",
  6318. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6319. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6320. "ref/portable-net45+win8+wp8+wpa81/_._",
  6321. "ref/win8/_._",
  6322. "ref/wp80/_._",
  6323. "ref/wpa81/_._",
  6324. "ref/xamarinios10/_._",
  6325. "ref/xamarinmac20/_._",
  6326. "ref/xamarintvos10/_._",
  6327. "ref/xamarinwatchos10/_._",
  6328. "system.linq.4.3.0.nupkg.sha512",
  6329. "system.linq.nuspec"
  6330. ]
  6331. },
  6332. "System.Linq.Expressions/4.3.0": {
  6333. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6334. "type": "package",
  6335. "path": "system.linq.expressions/4.3.0",
  6336. "files": [
  6337. ".nupkg.metadata",
  6338. ".signature.p7s",
  6339. "ThirdPartyNotices.txt",
  6340. "dotnet_library_license.txt",
  6341. "lib/MonoAndroid10/_._",
  6342. "lib/MonoTouch10/_._",
  6343. "lib/net45/_._",
  6344. "lib/net463/System.Linq.Expressions.dll",
  6345. "lib/netcore50/System.Linq.Expressions.dll",
  6346. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6347. "lib/portable-net45+win8+wp8+wpa81/_._",
  6348. "lib/win8/_._",
  6349. "lib/wp80/_._",
  6350. "lib/wpa81/_._",
  6351. "lib/xamarinios10/_._",
  6352. "lib/xamarinmac20/_._",
  6353. "lib/xamarintvos10/_._",
  6354. "lib/xamarinwatchos10/_._",
  6355. "ref/MonoAndroid10/_._",
  6356. "ref/MonoTouch10/_._",
  6357. "ref/net45/_._",
  6358. "ref/net463/System.Linq.Expressions.dll",
  6359. "ref/netcore50/System.Linq.Expressions.dll",
  6360. "ref/netcore50/System.Linq.Expressions.xml",
  6361. "ref/netcore50/de/System.Linq.Expressions.xml",
  6362. "ref/netcore50/es/System.Linq.Expressions.xml",
  6363. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6364. "ref/netcore50/it/System.Linq.Expressions.xml",
  6365. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6366. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6367. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6368. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6369. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6370. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6371. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6372. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6373. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6374. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6375. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6376. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6377. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6378. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6379. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6380. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6381. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6382. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6383. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6384. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6385. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6386. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6387. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6388. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6389. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6390. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6391. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6392. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6393. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6394. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6395. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6396. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6397. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6398. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6399. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6400. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6401. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6402. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6403. "ref/portable-net45+win8+wp8+wpa81/_._",
  6404. "ref/win8/_._",
  6405. "ref/wp80/_._",
  6406. "ref/wpa81/_._",
  6407. "ref/xamarinios10/_._",
  6408. "ref/xamarinmac20/_._",
  6409. "ref/xamarintvos10/_._",
  6410. "ref/xamarinwatchos10/_._",
  6411. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6412. "system.linq.expressions.4.3.0.nupkg.sha512",
  6413. "system.linq.expressions.nuspec"
  6414. ]
  6415. },
  6416. "System.Memory/4.5.5": {
  6417. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  6418. "type": "package",
  6419. "path": "system.memory/4.5.5",
  6420. "files": [
  6421. ".nupkg.metadata",
  6422. ".signature.p7s",
  6423. "LICENSE.TXT",
  6424. "THIRD-PARTY-NOTICES.TXT",
  6425. "lib/net461/System.Memory.dll",
  6426. "lib/net461/System.Memory.xml",
  6427. "lib/netcoreapp2.1/_._",
  6428. "lib/netstandard1.1/System.Memory.dll",
  6429. "lib/netstandard1.1/System.Memory.xml",
  6430. "lib/netstandard2.0/System.Memory.dll",
  6431. "lib/netstandard2.0/System.Memory.xml",
  6432. "ref/netcoreapp2.1/_._",
  6433. "system.memory.4.5.5.nupkg.sha512",
  6434. "system.memory.nuspec",
  6435. "useSharedDesignerContext.txt",
  6436. "version.txt"
  6437. ]
  6438. },
  6439. "System.Net.Http/4.3.2": {
  6440. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  6441. "type": "package",
  6442. "path": "system.net.http/4.3.2",
  6443. "files": [
  6444. ".nupkg.metadata",
  6445. ".signature.p7s",
  6446. "ThirdPartyNotices.txt",
  6447. "dotnet_library_license.txt",
  6448. "lib/Xamarinmac20/_._",
  6449. "lib/monoandroid10/_._",
  6450. "lib/monotouch10/_._",
  6451. "lib/net45/_._",
  6452. "lib/net46/System.Net.Http.dll",
  6453. "lib/portable-net45+win8+wpa81/_._",
  6454. "lib/win8/_._",
  6455. "lib/wpa81/_._",
  6456. "lib/xamarinios10/_._",
  6457. "lib/xamarintvos10/_._",
  6458. "lib/xamarinwatchos10/_._",
  6459. "ref/Xamarinmac20/_._",
  6460. "ref/monoandroid10/_._",
  6461. "ref/monotouch10/_._",
  6462. "ref/net45/_._",
  6463. "ref/net46/System.Net.Http.dll",
  6464. "ref/netcore50/System.Net.Http.dll",
  6465. "ref/netstandard1.1/System.Net.Http.dll",
  6466. "ref/netstandard1.3/System.Net.Http.dll",
  6467. "ref/portable-net45+win8+wpa81/_._",
  6468. "ref/win8/_._",
  6469. "ref/wpa81/_._",
  6470. "ref/xamarinios10/_._",
  6471. "ref/xamarintvos10/_._",
  6472. "ref/xamarinwatchos10/_._",
  6473. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6474. "runtimes/win/lib/net46/System.Net.Http.dll",
  6475. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6476. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6477. "system.net.http.4.3.2.nupkg.sha512",
  6478. "system.net.http.nuspec"
  6479. ]
  6480. },
  6481. "System.Net.NameResolution/4.3.0": {
  6482. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6483. "type": "package",
  6484. "path": "system.net.nameresolution/4.3.0",
  6485. "files": [
  6486. ".nupkg.metadata",
  6487. ".signature.p7s",
  6488. "ThirdPartyNotices.txt",
  6489. "dotnet_library_license.txt",
  6490. "lib/MonoAndroid10/_._",
  6491. "lib/MonoTouch10/_._",
  6492. "lib/net46/System.Net.NameResolution.dll",
  6493. "lib/xamarinios10/_._",
  6494. "lib/xamarinmac20/_._",
  6495. "lib/xamarintvos10/_._",
  6496. "lib/xamarinwatchos10/_._",
  6497. "ref/MonoAndroid10/_._",
  6498. "ref/MonoTouch10/_._",
  6499. "ref/net46/System.Net.NameResolution.dll",
  6500. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6501. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6502. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6503. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6504. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6505. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6506. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6507. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6508. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6509. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6510. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6511. "ref/xamarinios10/_._",
  6512. "ref/xamarinmac20/_._",
  6513. "ref/xamarintvos10/_._",
  6514. "ref/xamarinwatchos10/_._",
  6515. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6516. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6517. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6518. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6519. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6520. "system.net.nameresolution.nuspec"
  6521. ]
  6522. },
  6523. "System.Net.Primitives/4.3.0": {
  6524. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6525. "type": "package",
  6526. "path": "system.net.primitives/4.3.0",
  6527. "files": [
  6528. ".nupkg.metadata",
  6529. ".signature.p7s",
  6530. "ThirdPartyNotices.txt",
  6531. "dotnet_library_license.txt",
  6532. "lib/MonoAndroid10/_._",
  6533. "lib/MonoTouch10/_._",
  6534. "lib/net45/_._",
  6535. "lib/portable-net45+win8+wp8+wpa81/_._",
  6536. "lib/win8/_._",
  6537. "lib/wp80/_._",
  6538. "lib/wpa81/_._",
  6539. "lib/xamarinios10/_._",
  6540. "lib/xamarinmac20/_._",
  6541. "lib/xamarintvos10/_._",
  6542. "lib/xamarinwatchos10/_._",
  6543. "ref/MonoAndroid10/_._",
  6544. "ref/MonoTouch10/_._",
  6545. "ref/net45/_._",
  6546. "ref/netcore50/System.Net.Primitives.dll",
  6547. "ref/netcore50/System.Net.Primitives.xml",
  6548. "ref/netcore50/de/System.Net.Primitives.xml",
  6549. "ref/netcore50/es/System.Net.Primitives.xml",
  6550. "ref/netcore50/fr/System.Net.Primitives.xml",
  6551. "ref/netcore50/it/System.Net.Primitives.xml",
  6552. "ref/netcore50/ja/System.Net.Primitives.xml",
  6553. "ref/netcore50/ko/System.Net.Primitives.xml",
  6554. "ref/netcore50/ru/System.Net.Primitives.xml",
  6555. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6556. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6557. "ref/netstandard1.0/System.Net.Primitives.dll",
  6558. "ref/netstandard1.0/System.Net.Primitives.xml",
  6559. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6560. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6561. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6562. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6563. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6564. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6565. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6566. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6567. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6568. "ref/netstandard1.1/System.Net.Primitives.dll",
  6569. "ref/netstandard1.1/System.Net.Primitives.xml",
  6570. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6571. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6572. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6573. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6574. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6575. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6576. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6577. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6578. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6579. "ref/netstandard1.3/System.Net.Primitives.dll",
  6580. "ref/netstandard1.3/System.Net.Primitives.xml",
  6581. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6582. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6583. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6584. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6585. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6586. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6587. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6588. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6589. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6590. "ref/portable-net45+win8+wp8+wpa81/_._",
  6591. "ref/win8/_._",
  6592. "ref/wp80/_._",
  6593. "ref/wpa81/_._",
  6594. "ref/xamarinios10/_._",
  6595. "ref/xamarinmac20/_._",
  6596. "ref/xamarintvos10/_._",
  6597. "ref/xamarinwatchos10/_._",
  6598. "system.net.primitives.4.3.0.nupkg.sha512",
  6599. "system.net.primitives.nuspec"
  6600. ]
  6601. },
  6602. "System.Net.Security/4.3.0": {
  6603. "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  6604. "type": "package",
  6605. "path": "system.net.security/4.3.0",
  6606. "files": [
  6607. ".nupkg.metadata",
  6608. ".signature.p7s",
  6609. "ThirdPartyNotices.txt",
  6610. "dotnet_library_license.txt",
  6611. "lib/MonoAndroid10/_._",
  6612. "lib/MonoTouch10/_._",
  6613. "lib/net46/System.Net.Security.dll",
  6614. "lib/xamarinios10/_._",
  6615. "lib/xamarinmac20/_._",
  6616. "lib/xamarintvos10/_._",
  6617. "lib/xamarinwatchos10/_._",
  6618. "ref/MonoAndroid10/_._",
  6619. "ref/MonoTouch10/_._",
  6620. "ref/net46/System.Net.Security.dll",
  6621. "ref/netstandard1.3/System.Net.Security.dll",
  6622. "ref/netstandard1.3/System.Net.Security.xml",
  6623. "ref/netstandard1.3/de/System.Net.Security.xml",
  6624. "ref/netstandard1.3/es/System.Net.Security.xml",
  6625. "ref/netstandard1.3/fr/System.Net.Security.xml",
  6626. "ref/netstandard1.3/it/System.Net.Security.xml",
  6627. "ref/netstandard1.3/ja/System.Net.Security.xml",
  6628. "ref/netstandard1.3/ko/System.Net.Security.xml",
  6629. "ref/netstandard1.3/ru/System.Net.Security.xml",
  6630. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  6631. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  6632. "ref/xamarinios10/_._",
  6633. "ref/xamarinmac20/_._",
  6634. "ref/xamarintvos10/_._",
  6635. "ref/xamarinwatchos10/_._",
  6636. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  6637. "runtimes/win/lib/net46/System.Net.Security.dll",
  6638. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  6639. "runtimes/win7/lib/netcore50/_._",
  6640. "system.net.security.4.3.0.nupkg.sha512",
  6641. "system.net.security.nuspec"
  6642. ]
  6643. },
  6644. "System.Net.Sockets/4.3.0": {
  6645. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6646. "type": "package",
  6647. "path": "system.net.sockets/4.3.0",
  6648. "files": [
  6649. ".nupkg.metadata",
  6650. ".signature.p7s",
  6651. "ThirdPartyNotices.txt",
  6652. "dotnet_library_license.txt",
  6653. "lib/MonoAndroid10/_._",
  6654. "lib/MonoTouch10/_._",
  6655. "lib/net46/System.Net.Sockets.dll",
  6656. "lib/xamarinios10/_._",
  6657. "lib/xamarinmac20/_._",
  6658. "lib/xamarintvos10/_._",
  6659. "lib/xamarinwatchos10/_._",
  6660. "ref/MonoAndroid10/_._",
  6661. "ref/MonoTouch10/_._",
  6662. "ref/net46/System.Net.Sockets.dll",
  6663. "ref/netstandard1.3/System.Net.Sockets.dll",
  6664. "ref/netstandard1.3/System.Net.Sockets.xml",
  6665. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6666. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6667. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6668. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6669. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6670. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6671. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6672. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6673. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6674. "ref/xamarinios10/_._",
  6675. "ref/xamarinmac20/_._",
  6676. "ref/xamarintvos10/_._",
  6677. "ref/xamarinwatchos10/_._",
  6678. "system.net.sockets.4.3.0.nupkg.sha512",
  6679. "system.net.sockets.nuspec"
  6680. ]
  6681. },
  6682. "System.ObjectModel/4.3.0": {
  6683. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6684. "type": "package",
  6685. "path": "system.objectmodel/4.3.0",
  6686. "files": [
  6687. ".nupkg.metadata",
  6688. ".signature.p7s",
  6689. "ThirdPartyNotices.txt",
  6690. "dotnet_library_license.txt",
  6691. "lib/MonoAndroid10/_._",
  6692. "lib/MonoTouch10/_._",
  6693. "lib/net45/_._",
  6694. "lib/netcore50/System.ObjectModel.dll",
  6695. "lib/netstandard1.3/System.ObjectModel.dll",
  6696. "lib/portable-net45+win8+wp8+wpa81/_._",
  6697. "lib/win8/_._",
  6698. "lib/wp80/_._",
  6699. "lib/wpa81/_._",
  6700. "lib/xamarinios10/_._",
  6701. "lib/xamarinmac20/_._",
  6702. "lib/xamarintvos10/_._",
  6703. "lib/xamarinwatchos10/_._",
  6704. "ref/MonoAndroid10/_._",
  6705. "ref/MonoTouch10/_._",
  6706. "ref/net45/_._",
  6707. "ref/netcore50/System.ObjectModel.dll",
  6708. "ref/netcore50/System.ObjectModel.xml",
  6709. "ref/netcore50/de/System.ObjectModel.xml",
  6710. "ref/netcore50/es/System.ObjectModel.xml",
  6711. "ref/netcore50/fr/System.ObjectModel.xml",
  6712. "ref/netcore50/it/System.ObjectModel.xml",
  6713. "ref/netcore50/ja/System.ObjectModel.xml",
  6714. "ref/netcore50/ko/System.ObjectModel.xml",
  6715. "ref/netcore50/ru/System.ObjectModel.xml",
  6716. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6717. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6718. "ref/netstandard1.0/System.ObjectModel.dll",
  6719. "ref/netstandard1.0/System.ObjectModel.xml",
  6720. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6721. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6722. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6723. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6724. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6725. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6726. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6727. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6728. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6729. "ref/netstandard1.3/System.ObjectModel.dll",
  6730. "ref/netstandard1.3/System.ObjectModel.xml",
  6731. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6732. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6733. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6734. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6735. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6736. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6737. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6738. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6739. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6740. "ref/portable-net45+win8+wp8+wpa81/_._",
  6741. "ref/win8/_._",
  6742. "ref/wp80/_._",
  6743. "ref/wpa81/_._",
  6744. "ref/xamarinios10/_._",
  6745. "ref/xamarinmac20/_._",
  6746. "ref/xamarintvos10/_._",
  6747. "ref/xamarinwatchos10/_._",
  6748. "system.objectmodel.4.3.0.nupkg.sha512",
  6749. "system.objectmodel.nuspec"
  6750. ]
  6751. },
  6752. "System.Reactive/4.4.1": {
  6753. "sha512": "iSTPeWR9HJhGoNV4WhVlvofuiTjpok1i4E3LPgMdbMqf3jKhFlT9HAlO32lb52NLppWC/4dZQFfUzTytvyXBmw==",
  6754. "type": "package",
  6755. "path": "system.reactive/4.4.1",
  6756. "files": [
  6757. ".nupkg.metadata",
  6758. ".signature.p7s",
  6759. "build/netcoreapp3.0/System.Reactive.dll",
  6760. "build/netcoreapp3.0/System.Reactive.targets",
  6761. "build/netcoreapp3.0/System.Reactive.xml",
  6762. "buildTransitive/netcoreapp3.0/System.Reactive.targets",
  6763. "lib/net46/System.Reactive.dll",
  6764. "lib/net46/System.Reactive.xml",
  6765. "lib/netcoreapp3.0/_._",
  6766. "lib/netstandard2.0/System.Reactive.dll",
  6767. "lib/netstandard2.0/System.Reactive.xml",
  6768. "lib/uap10.0.16299/System.Reactive.dll",
  6769. "lib/uap10.0.16299/System.Reactive.pri",
  6770. "lib/uap10.0.16299/System.Reactive.xml",
  6771. "lib/uap10.0/System.Reactive.dll",
  6772. "lib/uap10.0/System.Reactive.pri",
  6773. "lib/uap10.0/System.Reactive.xml",
  6774. "system.reactive.4.4.1.nupkg.sha512",
  6775. "system.reactive.nuspec"
  6776. ]
  6777. },
  6778. "System.Reflection/4.3.0": {
  6779. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6780. "type": "package",
  6781. "path": "system.reflection/4.3.0",
  6782. "files": [
  6783. ".nupkg.metadata",
  6784. ".signature.p7s",
  6785. "ThirdPartyNotices.txt",
  6786. "dotnet_library_license.txt",
  6787. "lib/MonoAndroid10/_._",
  6788. "lib/MonoTouch10/_._",
  6789. "lib/net45/_._",
  6790. "lib/net462/System.Reflection.dll",
  6791. "lib/portable-net45+win8+wp8+wpa81/_._",
  6792. "lib/win8/_._",
  6793. "lib/wp80/_._",
  6794. "lib/wpa81/_._",
  6795. "lib/xamarinios10/_._",
  6796. "lib/xamarinmac20/_._",
  6797. "lib/xamarintvos10/_._",
  6798. "lib/xamarinwatchos10/_._",
  6799. "ref/MonoAndroid10/_._",
  6800. "ref/MonoTouch10/_._",
  6801. "ref/net45/_._",
  6802. "ref/net462/System.Reflection.dll",
  6803. "ref/netcore50/System.Reflection.dll",
  6804. "ref/netcore50/System.Reflection.xml",
  6805. "ref/netcore50/de/System.Reflection.xml",
  6806. "ref/netcore50/es/System.Reflection.xml",
  6807. "ref/netcore50/fr/System.Reflection.xml",
  6808. "ref/netcore50/it/System.Reflection.xml",
  6809. "ref/netcore50/ja/System.Reflection.xml",
  6810. "ref/netcore50/ko/System.Reflection.xml",
  6811. "ref/netcore50/ru/System.Reflection.xml",
  6812. "ref/netcore50/zh-hans/System.Reflection.xml",
  6813. "ref/netcore50/zh-hant/System.Reflection.xml",
  6814. "ref/netstandard1.0/System.Reflection.dll",
  6815. "ref/netstandard1.0/System.Reflection.xml",
  6816. "ref/netstandard1.0/de/System.Reflection.xml",
  6817. "ref/netstandard1.0/es/System.Reflection.xml",
  6818. "ref/netstandard1.0/fr/System.Reflection.xml",
  6819. "ref/netstandard1.0/it/System.Reflection.xml",
  6820. "ref/netstandard1.0/ja/System.Reflection.xml",
  6821. "ref/netstandard1.0/ko/System.Reflection.xml",
  6822. "ref/netstandard1.0/ru/System.Reflection.xml",
  6823. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6824. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6825. "ref/netstandard1.3/System.Reflection.dll",
  6826. "ref/netstandard1.3/System.Reflection.xml",
  6827. "ref/netstandard1.3/de/System.Reflection.xml",
  6828. "ref/netstandard1.3/es/System.Reflection.xml",
  6829. "ref/netstandard1.3/fr/System.Reflection.xml",
  6830. "ref/netstandard1.3/it/System.Reflection.xml",
  6831. "ref/netstandard1.3/ja/System.Reflection.xml",
  6832. "ref/netstandard1.3/ko/System.Reflection.xml",
  6833. "ref/netstandard1.3/ru/System.Reflection.xml",
  6834. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6835. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6836. "ref/netstandard1.5/System.Reflection.dll",
  6837. "ref/netstandard1.5/System.Reflection.xml",
  6838. "ref/netstandard1.5/de/System.Reflection.xml",
  6839. "ref/netstandard1.5/es/System.Reflection.xml",
  6840. "ref/netstandard1.5/fr/System.Reflection.xml",
  6841. "ref/netstandard1.5/it/System.Reflection.xml",
  6842. "ref/netstandard1.5/ja/System.Reflection.xml",
  6843. "ref/netstandard1.5/ko/System.Reflection.xml",
  6844. "ref/netstandard1.5/ru/System.Reflection.xml",
  6845. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6846. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6847. "ref/portable-net45+win8+wp8+wpa81/_._",
  6848. "ref/win8/_._",
  6849. "ref/wp80/_._",
  6850. "ref/wpa81/_._",
  6851. "ref/xamarinios10/_._",
  6852. "ref/xamarinmac20/_._",
  6853. "ref/xamarintvos10/_._",
  6854. "ref/xamarinwatchos10/_._",
  6855. "system.reflection.4.3.0.nupkg.sha512",
  6856. "system.reflection.nuspec"
  6857. ]
  6858. },
  6859. "System.Reflection.Emit/4.3.0": {
  6860. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6861. "type": "package",
  6862. "path": "system.reflection.emit/4.3.0",
  6863. "files": [
  6864. ".nupkg.metadata",
  6865. ".signature.p7s",
  6866. "ThirdPartyNotices.txt",
  6867. "dotnet_library_license.txt",
  6868. "lib/MonoAndroid10/_._",
  6869. "lib/monotouch10/_._",
  6870. "lib/net45/_._",
  6871. "lib/netcore50/System.Reflection.Emit.dll",
  6872. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6873. "lib/xamarinios10/_._",
  6874. "lib/xamarinmac20/_._",
  6875. "lib/xamarintvos10/_._",
  6876. "lib/xamarinwatchos10/_._",
  6877. "ref/MonoAndroid10/_._",
  6878. "ref/net45/_._",
  6879. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6880. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6881. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6882. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6883. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6884. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6885. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6886. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6887. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6888. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6889. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6890. "ref/xamarinmac20/_._",
  6891. "system.reflection.emit.4.3.0.nupkg.sha512",
  6892. "system.reflection.emit.nuspec"
  6893. ]
  6894. },
  6895. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6896. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6897. "type": "package",
  6898. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6899. "files": [
  6900. ".nupkg.metadata",
  6901. ".signature.p7s",
  6902. "ThirdPartyNotices.txt",
  6903. "dotnet_library_license.txt",
  6904. "lib/MonoAndroid10/_._",
  6905. "lib/MonoTouch10/_._",
  6906. "lib/net45/_._",
  6907. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6908. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6909. "lib/portable-net45+wp8/_._",
  6910. "lib/wp80/_._",
  6911. "lib/xamarinios10/_._",
  6912. "lib/xamarinmac20/_._",
  6913. "lib/xamarintvos10/_._",
  6914. "lib/xamarinwatchos10/_._",
  6915. "ref/MonoAndroid10/_._",
  6916. "ref/MonoTouch10/_._",
  6917. "ref/net45/_._",
  6918. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6919. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6920. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6921. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6922. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6923. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6924. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6925. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6926. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6927. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6928. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6929. "ref/portable-net45+wp8/_._",
  6930. "ref/wp80/_._",
  6931. "ref/xamarinios10/_._",
  6932. "ref/xamarinmac20/_._",
  6933. "ref/xamarintvos10/_._",
  6934. "ref/xamarinwatchos10/_._",
  6935. "runtimes/aot/lib/netcore50/_._",
  6936. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6937. "system.reflection.emit.ilgeneration.nuspec"
  6938. ]
  6939. },
  6940. "System.Reflection.Emit.Lightweight/4.3.0": {
  6941. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6942. "type": "package",
  6943. "path": "system.reflection.emit.lightweight/4.3.0",
  6944. "files": [
  6945. ".nupkg.metadata",
  6946. ".signature.p7s",
  6947. "ThirdPartyNotices.txt",
  6948. "dotnet_library_license.txt",
  6949. "lib/MonoAndroid10/_._",
  6950. "lib/MonoTouch10/_._",
  6951. "lib/net45/_._",
  6952. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6953. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6954. "lib/portable-net45+wp8/_._",
  6955. "lib/wp80/_._",
  6956. "lib/xamarinios10/_._",
  6957. "lib/xamarinmac20/_._",
  6958. "lib/xamarintvos10/_._",
  6959. "lib/xamarinwatchos10/_._",
  6960. "ref/MonoAndroid10/_._",
  6961. "ref/MonoTouch10/_._",
  6962. "ref/net45/_._",
  6963. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6964. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6965. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6966. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6967. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6968. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6969. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6970. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6971. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6972. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6973. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6974. "ref/portable-net45+wp8/_._",
  6975. "ref/wp80/_._",
  6976. "ref/xamarinios10/_._",
  6977. "ref/xamarinmac20/_._",
  6978. "ref/xamarintvos10/_._",
  6979. "ref/xamarinwatchos10/_._",
  6980. "runtimes/aot/lib/netcore50/_._",
  6981. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6982. "system.reflection.emit.lightweight.nuspec"
  6983. ]
  6984. },
  6985. "System.Reflection.Extensions/4.3.0": {
  6986. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6987. "type": "package",
  6988. "path": "system.reflection.extensions/4.3.0",
  6989. "files": [
  6990. ".nupkg.metadata",
  6991. ".signature.p7s",
  6992. "ThirdPartyNotices.txt",
  6993. "dotnet_library_license.txt",
  6994. "lib/MonoAndroid10/_._",
  6995. "lib/MonoTouch10/_._",
  6996. "lib/net45/_._",
  6997. "lib/portable-net45+win8+wp8+wpa81/_._",
  6998. "lib/win8/_._",
  6999. "lib/wp80/_._",
  7000. "lib/wpa81/_._",
  7001. "lib/xamarinios10/_._",
  7002. "lib/xamarinmac20/_._",
  7003. "lib/xamarintvos10/_._",
  7004. "lib/xamarinwatchos10/_._",
  7005. "ref/MonoAndroid10/_._",
  7006. "ref/MonoTouch10/_._",
  7007. "ref/net45/_._",
  7008. "ref/netcore50/System.Reflection.Extensions.dll",
  7009. "ref/netcore50/System.Reflection.Extensions.xml",
  7010. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7011. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7012. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7013. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7014. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7015. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7016. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7017. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7018. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7019. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7020. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7021. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7022. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7023. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7024. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7025. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7026. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7027. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7028. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7029. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7030. "ref/portable-net45+win8+wp8+wpa81/_._",
  7031. "ref/win8/_._",
  7032. "ref/wp80/_._",
  7033. "ref/wpa81/_._",
  7034. "ref/xamarinios10/_._",
  7035. "ref/xamarinmac20/_._",
  7036. "ref/xamarintvos10/_._",
  7037. "ref/xamarinwatchos10/_._",
  7038. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7039. "system.reflection.extensions.nuspec"
  7040. ]
  7041. },
  7042. "System.Reflection.Primitives/4.3.0": {
  7043. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7044. "type": "package",
  7045. "path": "system.reflection.primitives/4.3.0",
  7046. "files": [
  7047. ".nupkg.metadata",
  7048. ".signature.p7s",
  7049. "ThirdPartyNotices.txt",
  7050. "dotnet_library_license.txt",
  7051. "lib/MonoAndroid10/_._",
  7052. "lib/MonoTouch10/_._",
  7053. "lib/net45/_._",
  7054. "lib/portable-net45+win8+wp8+wpa81/_._",
  7055. "lib/win8/_._",
  7056. "lib/wp80/_._",
  7057. "lib/wpa81/_._",
  7058. "lib/xamarinios10/_._",
  7059. "lib/xamarinmac20/_._",
  7060. "lib/xamarintvos10/_._",
  7061. "lib/xamarinwatchos10/_._",
  7062. "ref/MonoAndroid10/_._",
  7063. "ref/MonoTouch10/_._",
  7064. "ref/net45/_._",
  7065. "ref/netcore50/System.Reflection.Primitives.dll",
  7066. "ref/netcore50/System.Reflection.Primitives.xml",
  7067. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7068. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7069. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7070. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7071. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7072. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7073. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7074. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7075. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7076. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7077. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7078. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7079. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7080. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7081. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7082. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7083. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7084. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7085. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7086. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7087. "ref/portable-net45+win8+wp8+wpa81/_._",
  7088. "ref/win8/_._",
  7089. "ref/wp80/_._",
  7090. "ref/wpa81/_._",
  7091. "ref/xamarinios10/_._",
  7092. "ref/xamarinmac20/_._",
  7093. "ref/xamarintvos10/_._",
  7094. "ref/xamarinwatchos10/_._",
  7095. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7096. "system.reflection.primitives.nuspec"
  7097. ]
  7098. },
  7099. "System.Reflection.TypeExtensions/4.3.0": {
  7100. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7101. "type": "package",
  7102. "path": "system.reflection.typeextensions/4.3.0",
  7103. "files": [
  7104. ".nupkg.metadata",
  7105. ".signature.p7s",
  7106. "ThirdPartyNotices.txt",
  7107. "dotnet_library_license.txt",
  7108. "lib/MonoAndroid10/_._",
  7109. "lib/MonoTouch10/_._",
  7110. "lib/net46/System.Reflection.TypeExtensions.dll",
  7111. "lib/net462/System.Reflection.TypeExtensions.dll",
  7112. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7113. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7114. "lib/xamarinios10/_._",
  7115. "lib/xamarinmac20/_._",
  7116. "lib/xamarintvos10/_._",
  7117. "lib/xamarinwatchos10/_._",
  7118. "ref/MonoAndroid10/_._",
  7119. "ref/MonoTouch10/_._",
  7120. "ref/net46/System.Reflection.TypeExtensions.dll",
  7121. "ref/net462/System.Reflection.TypeExtensions.dll",
  7122. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7123. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7124. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7125. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7126. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7127. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7128. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7129. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7130. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7131. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7132. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7133. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7134. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7135. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7136. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7137. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7138. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7139. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7140. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7141. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7142. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7143. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7144. "ref/xamarinios10/_._",
  7145. "ref/xamarinmac20/_._",
  7146. "ref/xamarintvos10/_._",
  7147. "ref/xamarinwatchos10/_._",
  7148. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7149. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7150. "system.reflection.typeextensions.nuspec"
  7151. ]
  7152. },
  7153. "System.Resources.ResourceManager/4.3.0": {
  7154. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7155. "type": "package",
  7156. "path": "system.resources.resourcemanager/4.3.0",
  7157. "files": [
  7158. ".nupkg.metadata",
  7159. ".signature.p7s",
  7160. "ThirdPartyNotices.txt",
  7161. "dotnet_library_license.txt",
  7162. "lib/MonoAndroid10/_._",
  7163. "lib/MonoTouch10/_._",
  7164. "lib/net45/_._",
  7165. "lib/portable-net45+win8+wp8+wpa81/_._",
  7166. "lib/win8/_._",
  7167. "lib/wp80/_._",
  7168. "lib/wpa81/_._",
  7169. "lib/xamarinios10/_._",
  7170. "lib/xamarinmac20/_._",
  7171. "lib/xamarintvos10/_._",
  7172. "lib/xamarinwatchos10/_._",
  7173. "ref/MonoAndroid10/_._",
  7174. "ref/MonoTouch10/_._",
  7175. "ref/net45/_._",
  7176. "ref/netcore50/System.Resources.ResourceManager.dll",
  7177. "ref/netcore50/System.Resources.ResourceManager.xml",
  7178. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7179. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7180. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7181. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7182. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7183. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7184. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7185. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7186. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7187. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7188. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7189. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7190. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7191. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7192. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7193. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7194. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7195. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7196. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7197. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7198. "ref/portable-net45+win8+wp8+wpa81/_._",
  7199. "ref/win8/_._",
  7200. "ref/wp80/_._",
  7201. "ref/wpa81/_._",
  7202. "ref/xamarinios10/_._",
  7203. "ref/xamarinmac20/_._",
  7204. "ref/xamarintvos10/_._",
  7205. "ref/xamarinwatchos10/_._",
  7206. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7207. "system.resources.resourcemanager.nuspec"
  7208. ]
  7209. },
  7210. "System.Runtime/4.3.0": {
  7211. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7212. "type": "package",
  7213. "path": "system.runtime/4.3.0",
  7214. "files": [
  7215. ".nupkg.metadata",
  7216. ".signature.p7s",
  7217. "ThirdPartyNotices.txt",
  7218. "dotnet_library_license.txt",
  7219. "lib/MonoAndroid10/_._",
  7220. "lib/MonoTouch10/_._",
  7221. "lib/net45/_._",
  7222. "lib/net462/System.Runtime.dll",
  7223. "lib/portable-net45+win8+wp80+wpa81/_._",
  7224. "lib/win8/_._",
  7225. "lib/wp80/_._",
  7226. "lib/wpa81/_._",
  7227. "lib/xamarinios10/_._",
  7228. "lib/xamarinmac20/_._",
  7229. "lib/xamarintvos10/_._",
  7230. "lib/xamarinwatchos10/_._",
  7231. "ref/MonoAndroid10/_._",
  7232. "ref/MonoTouch10/_._",
  7233. "ref/net45/_._",
  7234. "ref/net462/System.Runtime.dll",
  7235. "ref/netcore50/System.Runtime.dll",
  7236. "ref/netcore50/System.Runtime.xml",
  7237. "ref/netcore50/de/System.Runtime.xml",
  7238. "ref/netcore50/es/System.Runtime.xml",
  7239. "ref/netcore50/fr/System.Runtime.xml",
  7240. "ref/netcore50/it/System.Runtime.xml",
  7241. "ref/netcore50/ja/System.Runtime.xml",
  7242. "ref/netcore50/ko/System.Runtime.xml",
  7243. "ref/netcore50/ru/System.Runtime.xml",
  7244. "ref/netcore50/zh-hans/System.Runtime.xml",
  7245. "ref/netcore50/zh-hant/System.Runtime.xml",
  7246. "ref/netstandard1.0/System.Runtime.dll",
  7247. "ref/netstandard1.0/System.Runtime.xml",
  7248. "ref/netstandard1.0/de/System.Runtime.xml",
  7249. "ref/netstandard1.0/es/System.Runtime.xml",
  7250. "ref/netstandard1.0/fr/System.Runtime.xml",
  7251. "ref/netstandard1.0/it/System.Runtime.xml",
  7252. "ref/netstandard1.0/ja/System.Runtime.xml",
  7253. "ref/netstandard1.0/ko/System.Runtime.xml",
  7254. "ref/netstandard1.0/ru/System.Runtime.xml",
  7255. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7256. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7257. "ref/netstandard1.2/System.Runtime.dll",
  7258. "ref/netstandard1.2/System.Runtime.xml",
  7259. "ref/netstandard1.2/de/System.Runtime.xml",
  7260. "ref/netstandard1.2/es/System.Runtime.xml",
  7261. "ref/netstandard1.2/fr/System.Runtime.xml",
  7262. "ref/netstandard1.2/it/System.Runtime.xml",
  7263. "ref/netstandard1.2/ja/System.Runtime.xml",
  7264. "ref/netstandard1.2/ko/System.Runtime.xml",
  7265. "ref/netstandard1.2/ru/System.Runtime.xml",
  7266. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7267. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7268. "ref/netstandard1.3/System.Runtime.dll",
  7269. "ref/netstandard1.3/System.Runtime.xml",
  7270. "ref/netstandard1.3/de/System.Runtime.xml",
  7271. "ref/netstandard1.3/es/System.Runtime.xml",
  7272. "ref/netstandard1.3/fr/System.Runtime.xml",
  7273. "ref/netstandard1.3/it/System.Runtime.xml",
  7274. "ref/netstandard1.3/ja/System.Runtime.xml",
  7275. "ref/netstandard1.3/ko/System.Runtime.xml",
  7276. "ref/netstandard1.3/ru/System.Runtime.xml",
  7277. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7278. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7279. "ref/netstandard1.5/System.Runtime.dll",
  7280. "ref/netstandard1.5/System.Runtime.xml",
  7281. "ref/netstandard1.5/de/System.Runtime.xml",
  7282. "ref/netstandard1.5/es/System.Runtime.xml",
  7283. "ref/netstandard1.5/fr/System.Runtime.xml",
  7284. "ref/netstandard1.5/it/System.Runtime.xml",
  7285. "ref/netstandard1.5/ja/System.Runtime.xml",
  7286. "ref/netstandard1.5/ko/System.Runtime.xml",
  7287. "ref/netstandard1.5/ru/System.Runtime.xml",
  7288. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7289. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7290. "ref/portable-net45+win8+wp80+wpa81/_._",
  7291. "ref/win8/_._",
  7292. "ref/wp80/_._",
  7293. "ref/wpa81/_._",
  7294. "ref/xamarinios10/_._",
  7295. "ref/xamarinmac20/_._",
  7296. "ref/xamarintvos10/_._",
  7297. "ref/xamarinwatchos10/_._",
  7298. "system.runtime.4.3.0.nupkg.sha512",
  7299. "system.runtime.nuspec"
  7300. ]
  7301. },
  7302. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7303. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7304. "type": "package",
  7305. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7306. "files": [
  7307. ".nupkg.metadata",
  7308. ".signature.p7s",
  7309. "Icon.png",
  7310. "LICENSE.TXT",
  7311. "THIRD-PARTY-NOTICES.TXT",
  7312. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7313. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7314. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7315. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7316. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7317. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7318. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7319. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7320. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7321. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7322. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7323. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7324. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7325. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7326. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7327. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7328. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7329. "system.runtime.compilerservices.unsafe.nuspec",
  7330. "useSharedDesignerContext.txt",
  7331. "version.txt"
  7332. ]
  7333. },
  7334. "System.Runtime.Extensions/4.3.0": {
  7335. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7336. "type": "package",
  7337. "path": "system.runtime.extensions/4.3.0",
  7338. "files": [
  7339. ".nupkg.metadata",
  7340. ".signature.p7s",
  7341. "ThirdPartyNotices.txt",
  7342. "dotnet_library_license.txt",
  7343. "lib/MonoAndroid10/_._",
  7344. "lib/MonoTouch10/_._",
  7345. "lib/net45/_._",
  7346. "lib/net462/System.Runtime.Extensions.dll",
  7347. "lib/portable-net45+win8+wp8+wpa81/_._",
  7348. "lib/win8/_._",
  7349. "lib/wp80/_._",
  7350. "lib/wpa81/_._",
  7351. "lib/xamarinios10/_._",
  7352. "lib/xamarinmac20/_._",
  7353. "lib/xamarintvos10/_._",
  7354. "lib/xamarinwatchos10/_._",
  7355. "ref/MonoAndroid10/_._",
  7356. "ref/MonoTouch10/_._",
  7357. "ref/net45/_._",
  7358. "ref/net462/System.Runtime.Extensions.dll",
  7359. "ref/netcore50/System.Runtime.Extensions.dll",
  7360. "ref/netcore50/System.Runtime.Extensions.xml",
  7361. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7362. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7363. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7364. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7365. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7366. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7367. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7368. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7369. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7370. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7371. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7372. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7373. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7374. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7375. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7376. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7377. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7378. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7379. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7380. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7381. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7382. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7383. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7384. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7385. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7386. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7387. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7388. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7389. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7390. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7391. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7392. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7393. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7394. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7395. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7396. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7397. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7398. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7399. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7400. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7401. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7402. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7403. "ref/portable-net45+win8+wp8+wpa81/_._",
  7404. "ref/win8/_._",
  7405. "ref/wp80/_._",
  7406. "ref/wpa81/_._",
  7407. "ref/xamarinios10/_._",
  7408. "ref/xamarinmac20/_._",
  7409. "ref/xamarintvos10/_._",
  7410. "ref/xamarinwatchos10/_._",
  7411. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7412. "system.runtime.extensions.nuspec"
  7413. ]
  7414. },
  7415. "System.Runtime.Handles/4.3.0": {
  7416. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7417. "type": "package",
  7418. "path": "system.runtime.handles/4.3.0",
  7419. "files": [
  7420. ".nupkg.metadata",
  7421. ".signature.p7s",
  7422. "ThirdPartyNotices.txt",
  7423. "dotnet_library_license.txt",
  7424. "lib/MonoAndroid10/_._",
  7425. "lib/MonoTouch10/_._",
  7426. "lib/net46/_._",
  7427. "lib/xamarinios10/_._",
  7428. "lib/xamarinmac20/_._",
  7429. "lib/xamarintvos10/_._",
  7430. "lib/xamarinwatchos10/_._",
  7431. "ref/MonoAndroid10/_._",
  7432. "ref/MonoTouch10/_._",
  7433. "ref/net46/_._",
  7434. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7435. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7436. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7437. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7438. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7439. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7440. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7441. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7442. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7443. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7444. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7445. "ref/xamarinios10/_._",
  7446. "ref/xamarinmac20/_._",
  7447. "ref/xamarintvos10/_._",
  7448. "ref/xamarinwatchos10/_._",
  7449. "system.runtime.handles.4.3.0.nupkg.sha512",
  7450. "system.runtime.handles.nuspec"
  7451. ]
  7452. },
  7453. "System.Runtime.InteropServices/4.3.0": {
  7454. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7455. "type": "package",
  7456. "path": "system.runtime.interopservices/4.3.0",
  7457. "files": [
  7458. ".nupkg.metadata",
  7459. ".signature.p7s",
  7460. "ThirdPartyNotices.txt",
  7461. "dotnet_library_license.txt",
  7462. "lib/MonoAndroid10/_._",
  7463. "lib/MonoTouch10/_._",
  7464. "lib/net45/_._",
  7465. "lib/net462/System.Runtime.InteropServices.dll",
  7466. "lib/net463/System.Runtime.InteropServices.dll",
  7467. "lib/portable-net45+win8+wpa81/_._",
  7468. "lib/win8/_._",
  7469. "lib/wpa81/_._",
  7470. "lib/xamarinios10/_._",
  7471. "lib/xamarinmac20/_._",
  7472. "lib/xamarintvos10/_._",
  7473. "lib/xamarinwatchos10/_._",
  7474. "ref/MonoAndroid10/_._",
  7475. "ref/MonoTouch10/_._",
  7476. "ref/net45/_._",
  7477. "ref/net462/System.Runtime.InteropServices.dll",
  7478. "ref/net463/System.Runtime.InteropServices.dll",
  7479. "ref/netcore50/System.Runtime.InteropServices.dll",
  7480. "ref/netcore50/System.Runtime.InteropServices.xml",
  7481. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7482. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7483. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7484. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7485. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7486. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7487. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7488. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7489. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7490. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7491. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7492. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7493. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7494. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7495. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7496. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7497. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7498. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7499. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7500. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7501. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7502. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7503. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7504. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7505. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7506. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7507. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7508. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7509. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7510. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7511. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7512. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7513. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7514. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7515. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7516. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7517. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7518. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7519. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7520. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7521. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7522. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7523. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7524. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7525. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7526. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7527. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7528. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7529. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7530. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7531. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7532. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7533. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7534. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7535. "ref/portable-net45+win8+wpa81/_._",
  7536. "ref/win8/_._",
  7537. "ref/wpa81/_._",
  7538. "ref/xamarinios10/_._",
  7539. "ref/xamarinmac20/_._",
  7540. "ref/xamarintvos10/_._",
  7541. "ref/xamarinwatchos10/_._",
  7542. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7543. "system.runtime.interopservices.nuspec"
  7544. ]
  7545. },
  7546. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7547. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7548. "type": "package",
  7549. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7550. "files": [
  7551. ".nupkg.metadata",
  7552. ".signature.p7s",
  7553. "ThirdPartyNotices.txt",
  7554. "dotnet_library_license.txt",
  7555. "lib/MonoAndroid10/_._",
  7556. "lib/MonoTouch10/_._",
  7557. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7558. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7559. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7560. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7561. "lib/xamarinios10/_._",
  7562. "lib/xamarinmac20/_._",
  7563. "lib/xamarintvos10/_._",
  7564. "lib/xamarinwatchos10/_._",
  7565. "ref/MonoAndroid10/_._",
  7566. "ref/MonoTouch10/_._",
  7567. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7568. "ref/xamarinios10/_._",
  7569. "ref/xamarinmac20/_._",
  7570. "ref/xamarintvos10/_._",
  7571. "ref/xamarinwatchos10/_._",
  7572. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7573. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7574. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7575. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7576. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7577. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7578. "system.runtime.interopservices.runtimeinformation.nuspec"
  7579. ]
  7580. },
  7581. "System.Runtime.Numerics/4.3.0": {
  7582. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7583. "type": "package",
  7584. "path": "system.runtime.numerics/4.3.0",
  7585. "files": [
  7586. ".nupkg.metadata",
  7587. ".signature.p7s",
  7588. "ThirdPartyNotices.txt",
  7589. "dotnet_library_license.txt",
  7590. "lib/MonoAndroid10/_._",
  7591. "lib/MonoTouch10/_._",
  7592. "lib/net45/_._",
  7593. "lib/netcore50/System.Runtime.Numerics.dll",
  7594. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7595. "lib/portable-net45+win8+wpa81/_._",
  7596. "lib/win8/_._",
  7597. "lib/wpa81/_._",
  7598. "lib/xamarinios10/_._",
  7599. "lib/xamarinmac20/_._",
  7600. "lib/xamarintvos10/_._",
  7601. "lib/xamarinwatchos10/_._",
  7602. "ref/MonoAndroid10/_._",
  7603. "ref/MonoTouch10/_._",
  7604. "ref/net45/_._",
  7605. "ref/netcore50/System.Runtime.Numerics.dll",
  7606. "ref/netcore50/System.Runtime.Numerics.xml",
  7607. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7608. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7609. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7610. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7611. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7612. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7613. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7614. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7615. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7616. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7617. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7618. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7619. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7620. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7621. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7622. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7623. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7624. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7625. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7626. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7627. "ref/portable-net45+win8+wpa81/_._",
  7628. "ref/win8/_._",
  7629. "ref/wpa81/_._",
  7630. "ref/xamarinios10/_._",
  7631. "ref/xamarinmac20/_._",
  7632. "ref/xamarintvos10/_._",
  7633. "ref/xamarinwatchos10/_._",
  7634. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7635. "system.runtime.numerics.nuspec"
  7636. ]
  7637. },
  7638. "System.Runtime.Serialization.Primitives/4.3.0": {
  7639. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7640. "type": "package",
  7641. "path": "system.runtime.serialization.primitives/4.3.0",
  7642. "files": [
  7643. ".nupkg.metadata",
  7644. ".signature.p7s",
  7645. "ThirdPartyNotices.txt",
  7646. "dotnet_library_license.txt",
  7647. "lib/MonoAndroid10/_._",
  7648. "lib/MonoTouch10/_._",
  7649. "lib/net45/_._",
  7650. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7651. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7652. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7653. "lib/portable-net45+win8+wp8+wpa81/_._",
  7654. "lib/win8/_._",
  7655. "lib/wp80/_._",
  7656. "lib/wpa81/_._",
  7657. "lib/xamarinios10/_._",
  7658. "lib/xamarinmac20/_._",
  7659. "lib/xamarintvos10/_._",
  7660. "lib/xamarinwatchos10/_._",
  7661. "ref/MonoAndroid10/_._",
  7662. "ref/MonoTouch10/_._",
  7663. "ref/net45/_._",
  7664. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7665. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7666. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7667. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7668. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7669. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7670. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7671. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7672. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7673. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7674. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7675. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7676. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7677. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7678. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7679. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7680. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7681. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7682. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7683. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7684. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7685. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7686. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7687. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7688. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7689. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7690. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7691. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7692. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7693. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7694. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7695. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7696. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7697. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7698. "ref/portable-net45+win8+wp8+wpa81/_._",
  7699. "ref/win8/_._",
  7700. "ref/wp80/_._",
  7701. "ref/wpa81/_._",
  7702. "ref/xamarinios10/_._",
  7703. "ref/xamarinmac20/_._",
  7704. "ref/xamarintvos10/_._",
  7705. "ref/xamarinwatchos10/_._",
  7706. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7707. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7708. "system.runtime.serialization.primitives.nuspec"
  7709. ]
  7710. },
  7711. "System.Security.AccessControl/4.7.0": {
  7712. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7713. "type": "package",
  7714. "path": "system.security.accesscontrol/4.7.0",
  7715. "files": [
  7716. ".nupkg.metadata",
  7717. ".signature.p7s",
  7718. "LICENSE.TXT",
  7719. "THIRD-PARTY-NOTICES.TXT",
  7720. "lib/net46/System.Security.AccessControl.dll",
  7721. "lib/net461/System.Security.AccessControl.dll",
  7722. "lib/net461/System.Security.AccessControl.xml",
  7723. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7724. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7725. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7726. "lib/uap10.0.16299/_._",
  7727. "ref/net46/System.Security.AccessControl.dll",
  7728. "ref/net461/System.Security.AccessControl.dll",
  7729. "ref/net461/System.Security.AccessControl.xml",
  7730. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7731. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7732. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7733. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7734. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7735. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7736. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7737. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7738. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7739. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7740. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7741. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7742. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7743. "ref/uap10.0.16299/_._",
  7744. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7745. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7746. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7747. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7748. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7749. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7750. "runtimes/win/lib/uap10.0.16299/_._",
  7751. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7752. "system.security.accesscontrol.nuspec",
  7753. "useSharedDesignerContext.txt",
  7754. "version.txt"
  7755. ]
  7756. },
  7757. "System.Security.Claims/4.3.0": {
  7758. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  7759. "type": "package",
  7760. "path": "system.security.claims/4.3.0",
  7761. "files": [
  7762. ".nupkg.metadata",
  7763. ".signature.p7s",
  7764. "ThirdPartyNotices.txt",
  7765. "dotnet_library_license.txt",
  7766. "lib/MonoAndroid10/_._",
  7767. "lib/MonoTouch10/_._",
  7768. "lib/net46/System.Security.Claims.dll",
  7769. "lib/netstandard1.3/System.Security.Claims.dll",
  7770. "lib/xamarinios10/_._",
  7771. "lib/xamarinmac20/_._",
  7772. "lib/xamarintvos10/_._",
  7773. "lib/xamarinwatchos10/_._",
  7774. "ref/MonoAndroid10/_._",
  7775. "ref/MonoTouch10/_._",
  7776. "ref/net46/System.Security.Claims.dll",
  7777. "ref/netstandard1.3/System.Security.Claims.dll",
  7778. "ref/netstandard1.3/System.Security.Claims.xml",
  7779. "ref/netstandard1.3/de/System.Security.Claims.xml",
  7780. "ref/netstandard1.3/es/System.Security.Claims.xml",
  7781. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  7782. "ref/netstandard1.3/it/System.Security.Claims.xml",
  7783. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  7784. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  7785. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  7786. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  7787. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  7788. "ref/xamarinios10/_._",
  7789. "ref/xamarinmac20/_._",
  7790. "ref/xamarintvos10/_._",
  7791. "ref/xamarinwatchos10/_._",
  7792. "system.security.claims.4.3.0.nupkg.sha512",
  7793. "system.security.claims.nuspec"
  7794. ]
  7795. },
  7796. "System.Security.Cryptography.Algorithms/4.3.0": {
  7797. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7798. "type": "package",
  7799. "path": "system.security.cryptography.algorithms/4.3.0",
  7800. "files": [
  7801. ".nupkg.metadata",
  7802. ".signature.p7s",
  7803. "ThirdPartyNotices.txt",
  7804. "dotnet_library_license.txt",
  7805. "lib/MonoAndroid10/_._",
  7806. "lib/MonoTouch10/_._",
  7807. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7808. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7809. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7810. "lib/xamarinios10/_._",
  7811. "lib/xamarinmac20/_._",
  7812. "lib/xamarintvos10/_._",
  7813. "lib/xamarinwatchos10/_._",
  7814. "ref/MonoAndroid10/_._",
  7815. "ref/MonoTouch10/_._",
  7816. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7817. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7818. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7819. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7820. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7821. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7822. "ref/xamarinios10/_._",
  7823. "ref/xamarinmac20/_._",
  7824. "ref/xamarintvos10/_._",
  7825. "ref/xamarinwatchos10/_._",
  7826. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7827. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7828. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7829. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7830. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7831. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7832. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7833. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7834. "system.security.cryptography.algorithms.nuspec"
  7835. ]
  7836. },
  7837. "System.Security.Cryptography.Cng/4.3.0": {
  7838. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  7839. "type": "package",
  7840. "path": "system.security.cryptography.cng/4.3.0",
  7841. "files": [
  7842. ".nupkg.metadata",
  7843. ".signature.p7s",
  7844. "ThirdPartyNotices.txt",
  7845. "dotnet_library_license.txt",
  7846. "lib/net46/System.Security.Cryptography.Cng.dll",
  7847. "lib/net461/System.Security.Cryptography.Cng.dll",
  7848. "lib/net463/System.Security.Cryptography.Cng.dll",
  7849. "ref/net46/System.Security.Cryptography.Cng.dll",
  7850. "ref/net461/System.Security.Cryptography.Cng.dll",
  7851. "ref/net463/System.Security.Cryptography.Cng.dll",
  7852. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7853. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7854. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7855. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7856. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7857. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7858. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  7859. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7860. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7861. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  7862. "system.security.cryptography.cng.nuspec"
  7863. ]
  7864. },
  7865. "System.Security.Cryptography.Csp/4.3.0": {
  7866. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7867. "type": "package",
  7868. "path": "system.security.cryptography.csp/4.3.0",
  7869. "files": [
  7870. ".nupkg.metadata",
  7871. ".signature.p7s",
  7872. "ThirdPartyNotices.txt",
  7873. "dotnet_library_license.txt",
  7874. "lib/MonoAndroid10/_._",
  7875. "lib/MonoTouch10/_._",
  7876. "lib/net46/System.Security.Cryptography.Csp.dll",
  7877. "lib/xamarinios10/_._",
  7878. "lib/xamarinmac20/_._",
  7879. "lib/xamarintvos10/_._",
  7880. "lib/xamarinwatchos10/_._",
  7881. "ref/MonoAndroid10/_._",
  7882. "ref/MonoTouch10/_._",
  7883. "ref/net46/System.Security.Cryptography.Csp.dll",
  7884. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7885. "ref/xamarinios10/_._",
  7886. "ref/xamarinmac20/_._",
  7887. "ref/xamarintvos10/_._",
  7888. "ref/xamarinwatchos10/_._",
  7889. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7890. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7891. "runtimes/win/lib/netcore50/_._",
  7892. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7893. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7894. "system.security.cryptography.csp.nuspec"
  7895. ]
  7896. },
  7897. "System.Security.Cryptography.Encoding/4.3.0": {
  7898. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7899. "type": "package",
  7900. "path": "system.security.cryptography.encoding/4.3.0",
  7901. "files": [
  7902. ".nupkg.metadata",
  7903. ".signature.p7s",
  7904. "ThirdPartyNotices.txt",
  7905. "dotnet_library_license.txt",
  7906. "lib/MonoAndroid10/_._",
  7907. "lib/MonoTouch10/_._",
  7908. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7909. "lib/xamarinios10/_._",
  7910. "lib/xamarinmac20/_._",
  7911. "lib/xamarintvos10/_._",
  7912. "lib/xamarinwatchos10/_._",
  7913. "ref/MonoAndroid10/_._",
  7914. "ref/MonoTouch10/_._",
  7915. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7916. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7917. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7918. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7919. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7920. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7921. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7922. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7923. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7924. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7925. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7926. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7927. "ref/xamarinios10/_._",
  7928. "ref/xamarinmac20/_._",
  7929. "ref/xamarintvos10/_._",
  7930. "ref/xamarinwatchos10/_._",
  7931. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7932. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7933. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7934. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7935. "system.security.cryptography.encoding.nuspec"
  7936. ]
  7937. },
  7938. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7939. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7940. "type": "package",
  7941. "path": "system.security.cryptography.openssl/4.3.0",
  7942. "files": [
  7943. ".nupkg.metadata",
  7944. ".signature.p7s",
  7945. "ThirdPartyNotices.txt",
  7946. "dotnet_library_license.txt",
  7947. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7948. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7949. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7950. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7951. "system.security.cryptography.openssl.nuspec"
  7952. ]
  7953. },
  7954. "System.Security.Cryptography.Primitives/4.3.0": {
  7955. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7956. "type": "package",
  7957. "path": "system.security.cryptography.primitives/4.3.0",
  7958. "files": [
  7959. ".nupkg.metadata",
  7960. ".signature.p7s",
  7961. "ThirdPartyNotices.txt",
  7962. "dotnet_library_license.txt",
  7963. "lib/MonoAndroid10/_._",
  7964. "lib/MonoTouch10/_._",
  7965. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7966. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7967. "lib/xamarinios10/_._",
  7968. "lib/xamarinmac20/_._",
  7969. "lib/xamarintvos10/_._",
  7970. "lib/xamarinwatchos10/_._",
  7971. "ref/MonoAndroid10/_._",
  7972. "ref/MonoTouch10/_._",
  7973. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7974. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7975. "ref/xamarinios10/_._",
  7976. "ref/xamarinmac20/_._",
  7977. "ref/xamarintvos10/_._",
  7978. "ref/xamarinwatchos10/_._",
  7979. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7980. "system.security.cryptography.primitives.nuspec"
  7981. ]
  7982. },
  7983. "System.Security.Cryptography.ProtectedData/4.5.0": {
  7984. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  7985. "type": "package",
  7986. "path": "system.security.cryptography.protecteddata/4.5.0",
  7987. "files": [
  7988. ".nupkg.metadata",
  7989. ".signature.p7s",
  7990. "LICENSE.TXT",
  7991. "THIRD-PARTY-NOTICES.TXT",
  7992. "lib/MonoAndroid10/_._",
  7993. "lib/MonoTouch10/_._",
  7994. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7995. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7996. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7997. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7998. "lib/xamarinios10/_._",
  7999. "lib/xamarinmac20/_._",
  8000. "lib/xamarintvos10/_._",
  8001. "lib/xamarinwatchos10/_._",
  8002. "ref/MonoAndroid10/_._",
  8003. "ref/MonoTouch10/_._",
  8004. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8005. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8006. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8007. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8008. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8009. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8010. "ref/xamarinios10/_._",
  8011. "ref/xamarinmac20/_._",
  8012. "ref/xamarintvos10/_._",
  8013. "ref/xamarinwatchos10/_._",
  8014. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8015. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8016. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8017. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8018. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  8019. "system.security.cryptography.protecteddata.nuspec",
  8020. "useSharedDesignerContext.txt",
  8021. "version.txt"
  8022. ]
  8023. },
  8024. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8025. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8026. "type": "package",
  8027. "path": "system.security.cryptography.x509certificates/4.3.0",
  8028. "files": [
  8029. ".nupkg.metadata",
  8030. ".signature.p7s",
  8031. "ThirdPartyNotices.txt",
  8032. "dotnet_library_license.txt",
  8033. "lib/MonoAndroid10/_._",
  8034. "lib/MonoTouch10/_._",
  8035. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8036. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8037. "lib/xamarinios10/_._",
  8038. "lib/xamarinmac20/_._",
  8039. "lib/xamarintvos10/_._",
  8040. "lib/xamarinwatchos10/_._",
  8041. "ref/MonoAndroid10/_._",
  8042. "ref/MonoTouch10/_._",
  8043. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8044. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8045. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8046. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8047. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8048. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8049. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8050. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8051. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8052. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8053. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8054. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8055. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8056. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8057. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8058. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8059. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8060. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8061. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8062. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8063. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8064. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8065. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8066. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8067. "ref/xamarinios10/_._",
  8068. "ref/xamarinmac20/_._",
  8069. "ref/xamarintvos10/_._",
  8070. "ref/xamarinwatchos10/_._",
  8071. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8072. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8073. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8074. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8075. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8076. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8077. "system.security.cryptography.x509certificates.nuspec"
  8078. ]
  8079. },
  8080. "System.Security.Permissions/4.7.0": {
  8081. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8082. "type": "package",
  8083. "path": "system.security.permissions/4.7.0",
  8084. "files": [
  8085. ".nupkg.metadata",
  8086. ".signature.p7s",
  8087. "LICENSE.TXT",
  8088. "THIRD-PARTY-NOTICES.TXT",
  8089. "lib/net461/System.Security.Permissions.dll",
  8090. "lib/net461/System.Security.Permissions.xml",
  8091. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8092. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8093. "lib/netstandard2.0/System.Security.Permissions.dll",
  8094. "lib/netstandard2.0/System.Security.Permissions.xml",
  8095. "ref/net461/System.Security.Permissions.dll",
  8096. "ref/net461/System.Security.Permissions.xml",
  8097. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8098. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8099. "ref/netstandard2.0/System.Security.Permissions.dll",
  8100. "ref/netstandard2.0/System.Security.Permissions.xml",
  8101. "system.security.permissions.4.7.0.nupkg.sha512",
  8102. "system.security.permissions.nuspec",
  8103. "useSharedDesignerContext.txt",
  8104. "version.txt"
  8105. ]
  8106. },
  8107. "System.Security.Principal/4.3.0": {
  8108. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  8109. "type": "package",
  8110. "path": "system.security.principal/4.3.0",
  8111. "files": [
  8112. ".nupkg.metadata",
  8113. ".signature.p7s",
  8114. "ThirdPartyNotices.txt",
  8115. "dotnet_library_license.txt",
  8116. "lib/MonoAndroid10/_._",
  8117. "lib/MonoTouch10/_._",
  8118. "lib/net45/_._",
  8119. "lib/netcore50/System.Security.Principal.dll",
  8120. "lib/netstandard1.0/System.Security.Principal.dll",
  8121. "lib/portable-net45+win8+wp8+wpa81/_._",
  8122. "lib/win8/_._",
  8123. "lib/wp80/_._",
  8124. "lib/wpa81/_._",
  8125. "lib/xamarinios10/_._",
  8126. "lib/xamarinmac20/_._",
  8127. "lib/xamarintvos10/_._",
  8128. "lib/xamarinwatchos10/_._",
  8129. "ref/MonoAndroid10/_._",
  8130. "ref/MonoTouch10/_._",
  8131. "ref/net45/_._",
  8132. "ref/netcore50/System.Security.Principal.dll",
  8133. "ref/netcore50/System.Security.Principal.xml",
  8134. "ref/netcore50/de/System.Security.Principal.xml",
  8135. "ref/netcore50/es/System.Security.Principal.xml",
  8136. "ref/netcore50/fr/System.Security.Principal.xml",
  8137. "ref/netcore50/it/System.Security.Principal.xml",
  8138. "ref/netcore50/ja/System.Security.Principal.xml",
  8139. "ref/netcore50/ko/System.Security.Principal.xml",
  8140. "ref/netcore50/ru/System.Security.Principal.xml",
  8141. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8142. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8143. "ref/netstandard1.0/System.Security.Principal.dll",
  8144. "ref/netstandard1.0/System.Security.Principal.xml",
  8145. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8146. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8147. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8148. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8149. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8150. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8151. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8152. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8153. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8154. "ref/portable-net45+win8+wp8+wpa81/_._",
  8155. "ref/win8/_._",
  8156. "ref/wp80/_._",
  8157. "ref/wpa81/_._",
  8158. "ref/xamarinios10/_._",
  8159. "ref/xamarinmac20/_._",
  8160. "ref/xamarintvos10/_._",
  8161. "ref/xamarinwatchos10/_._",
  8162. "system.security.principal.4.3.0.nupkg.sha512",
  8163. "system.security.principal.nuspec"
  8164. ]
  8165. },
  8166. "System.Security.Principal.Windows/4.7.0": {
  8167. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8168. "type": "package",
  8169. "path": "system.security.principal.windows/4.7.0",
  8170. "files": [
  8171. ".nupkg.metadata",
  8172. ".signature.p7s",
  8173. "LICENSE.TXT",
  8174. "THIRD-PARTY-NOTICES.TXT",
  8175. "lib/net46/System.Security.Principal.Windows.dll",
  8176. "lib/net461/System.Security.Principal.Windows.dll",
  8177. "lib/net461/System.Security.Principal.Windows.xml",
  8178. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8179. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8180. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8181. "lib/uap10.0.16299/_._",
  8182. "ref/net46/System.Security.Principal.Windows.dll",
  8183. "ref/net461/System.Security.Principal.Windows.dll",
  8184. "ref/net461/System.Security.Principal.Windows.xml",
  8185. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8186. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8187. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8188. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8189. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8190. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8191. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8192. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8193. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8194. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8195. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8196. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8197. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8198. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8199. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8200. "ref/uap10.0.16299/_._",
  8201. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8202. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8203. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8204. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8205. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8206. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8207. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8208. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8209. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8210. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8211. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8212. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8213. "runtimes/win/lib/uap10.0.16299/_._",
  8214. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8215. "system.security.principal.windows.nuspec",
  8216. "useSharedDesignerContext.txt",
  8217. "version.txt"
  8218. ]
  8219. },
  8220. "System.Text.Encoding/4.3.0": {
  8221. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8222. "type": "package",
  8223. "path": "system.text.encoding/4.3.0",
  8224. "files": [
  8225. ".nupkg.metadata",
  8226. ".signature.p7s",
  8227. "ThirdPartyNotices.txt",
  8228. "dotnet_library_license.txt",
  8229. "lib/MonoAndroid10/_._",
  8230. "lib/MonoTouch10/_._",
  8231. "lib/net45/_._",
  8232. "lib/portable-net45+win8+wp8+wpa81/_._",
  8233. "lib/win8/_._",
  8234. "lib/wp80/_._",
  8235. "lib/wpa81/_._",
  8236. "lib/xamarinios10/_._",
  8237. "lib/xamarinmac20/_._",
  8238. "lib/xamarintvos10/_._",
  8239. "lib/xamarinwatchos10/_._",
  8240. "ref/MonoAndroid10/_._",
  8241. "ref/MonoTouch10/_._",
  8242. "ref/net45/_._",
  8243. "ref/netcore50/System.Text.Encoding.dll",
  8244. "ref/netcore50/System.Text.Encoding.xml",
  8245. "ref/netcore50/de/System.Text.Encoding.xml",
  8246. "ref/netcore50/es/System.Text.Encoding.xml",
  8247. "ref/netcore50/fr/System.Text.Encoding.xml",
  8248. "ref/netcore50/it/System.Text.Encoding.xml",
  8249. "ref/netcore50/ja/System.Text.Encoding.xml",
  8250. "ref/netcore50/ko/System.Text.Encoding.xml",
  8251. "ref/netcore50/ru/System.Text.Encoding.xml",
  8252. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8253. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8254. "ref/netstandard1.0/System.Text.Encoding.dll",
  8255. "ref/netstandard1.0/System.Text.Encoding.xml",
  8256. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8257. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8258. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8259. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8260. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8261. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8262. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8263. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8264. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8265. "ref/netstandard1.3/System.Text.Encoding.dll",
  8266. "ref/netstandard1.3/System.Text.Encoding.xml",
  8267. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8268. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8269. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8270. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8271. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8272. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8273. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8274. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8275. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8276. "ref/portable-net45+win8+wp8+wpa81/_._",
  8277. "ref/win8/_._",
  8278. "ref/wp80/_._",
  8279. "ref/wpa81/_._",
  8280. "ref/xamarinios10/_._",
  8281. "ref/xamarinmac20/_._",
  8282. "ref/xamarintvos10/_._",
  8283. "ref/xamarinwatchos10/_._",
  8284. "system.text.encoding.4.3.0.nupkg.sha512",
  8285. "system.text.encoding.nuspec"
  8286. ]
  8287. },
  8288. "System.Text.Encoding.CodePages/5.0.0": {
  8289. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8290. "type": "package",
  8291. "path": "system.text.encoding.codepages/5.0.0",
  8292. "files": [
  8293. ".nupkg.metadata",
  8294. ".signature.p7s",
  8295. "Icon.png",
  8296. "LICENSE.TXT",
  8297. "THIRD-PARTY-NOTICES.TXT",
  8298. "lib/MonoAndroid10/_._",
  8299. "lib/MonoTouch10/_._",
  8300. "lib/net46/System.Text.Encoding.CodePages.dll",
  8301. "lib/net461/System.Text.Encoding.CodePages.dll",
  8302. "lib/net461/System.Text.Encoding.CodePages.xml",
  8303. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8304. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8305. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8306. "lib/xamarinios10/_._",
  8307. "lib/xamarinmac20/_._",
  8308. "lib/xamarintvos10/_._",
  8309. "lib/xamarinwatchos10/_._",
  8310. "ref/MonoAndroid10/_._",
  8311. "ref/MonoTouch10/_._",
  8312. "ref/xamarinios10/_._",
  8313. "ref/xamarinmac20/_._",
  8314. "ref/xamarintvos10/_._",
  8315. "ref/xamarinwatchos10/_._",
  8316. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8317. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8318. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8319. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8320. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8321. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8322. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8323. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8324. "system.text.encoding.codepages.nuspec",
  8325. "useSharedDesignerContext.txt",
  8326. "version.txt"
  8327. ]
  8328. },
  8329. "System.Text.Encoding.Extensions/4.3.0": {
  8330. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8331. "type": "package",
  8332. "path": "system.text.encoding.extensions/4.3.0",
  8333. "files": [
  8334. ".nupkg.metadata",
  8335. ".signature.p7s",
  8336. "ThirdPartyNotices.txt",
  8337. "dotnet_library_license.txt",
  8338. "lib/MonoAndroid10/_._",
  8339. "lib/MonoTouch10/_._",
  8340. "lib/net45/_._",
  8341. "lib/portable-net45+win8+wp8+wpa81/_._",
  8342. "lib/win8/_._",
  8343. "lib/wp80/_._",
  8344. "lib/wpa81/_._",
  8345. "lib/xamarinios10/_._",
  8346. "lib/xamarinmac20/_._",
  8347. "lib/xamarintvos10/_._",
  8348. "lib/xamarinwatchos10/_._",
  8349. "ref/MonoAndroid10/_._",
  8350. "ref/MonoTouch10/_._",
  8351. "ref/net45/_._",
  8352. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8353. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8354. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8355. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8356. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8357. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8358. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8359. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8360. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8361. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8362. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8363. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8364. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8365. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8366. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8367. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8368. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8369. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8370. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8371. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8372. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8373. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8374. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8375. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8376. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8377. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8378. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8379. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8380. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8381. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8382. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8383. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8384. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8385. "ref/portable-net45+win8+wp8+wpa81/_._",
  8386. "ref/win8/_._",
  8387. "ref/wp80/_._",
  8388. "ref/wpa81/_._",
  8389. "ref/xamarinios10/_._",
  8390. "ref/xamarinmac20/_._",
  8391. "ref/xamarintvos10/_._",
  8392. "ref/xamarinwatchos10/_._",
  8393. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8394. "system.text.encoding.extensions.nuspec"
  8395. ]
  8396. },
  8397. "System.Text.Encodings.Web/4.7.0": {
  8398. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  8399. "type": "package",
  8400. "path": "system.text.encodings.web/4.7.0",
  8401. "files": [
  8402. ".nupkg.metadata",
  8403. ".signature.p7s",
  8404. "LICENSE.TXT",
  8405. "THIRD-PARTY-NOTICES.TXT",
  8406. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8407. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8408. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8409. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8410. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  8411. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  8412. "system.text.encodings.web.4.7.0.nupkg.sha512",
  8413. "system.text.encodings.web.nuspec",
  8414. "useSharedDesignerContext.txt",
  8415. "version.txt"
  8416. ]
  8417. },
  8418. "System.Text.RegularExpressions/4.3.0": {
  8419. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8420. "type": "package",
  8421. "path": "system.text.regularexpressions/4.3.0",
  8422. "files": [
  8423. ".nupkg.metadata",
  8424. ".signature.p7s",
  8425. "ThirdPartyNotices.txt",
  8426. "dotnet_library_license.txt",
  8427. "lib/MonoAndroid10/_._",
  8428. "lib/MonoTouch10/_._",
  8429. "lib/net45/_._",
  8430. "lib/net463/System.Text.RegularExpressions.dll",
  8431. "lib/netcore50/System.Text.RegularExpressions.dll",
  8432. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8433. "lib/portable-net45+win8+wp8+wpa81/_._",
  8434. "lib/win8/_._",
  8435. "lib/wp80/_._",
  8436. "lib/wpa81/_._",
  8437. "lib/xamarinios10/_._",
  8438. "lib/xamarinmac20/_._",
  8439. "lib/xamarintvos10/_._",
  8440. "lib/xamarinwatchos10/_._",
  8441. "ref/MonoAndroid10/_._",
  8442. "ref/MonoTouch10/_._",
  8443. "ref/net45/_._",
  8444. "ref/net463/System.Text.RegularExpressions.dll",
  8445. "ref/netcore50/System.Text.RegularExpressions.dll",
  8446. "ref/netcore50/System.Text.RegularExpressions.xml",
  8447. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8448. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8449. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8450. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8451. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8452. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8453. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8454. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8455. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8456. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8457. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8458. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8459. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8460. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8461. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8462. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8463. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8464. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8465. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8466. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8467. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8468. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8469. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8470. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8471. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8472. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8473. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8474. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8475. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8476. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8477. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8478. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8479. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8480. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8481. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8482. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8483. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8484. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8485. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8486. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8487. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8488. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8489. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8490. "ref/portable-net45+win8+wp8+wpa81/_._",
  8491. "ref/win8/_._",
  8492. "ref/wp80/_._",
  8493. "ref/wpa81/_._",
  8494. "ref/xamarinios10/_._",
  8495. "ref/xamarinmac20/_._",
  8496. "ref/xamarintvos10/_._",
  8497. "ref/xamarinwatchos10/_._",
  8498. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8499. "system.text.regularexpressions.nuspec"
  8500. ]
  8501. },
  8502. "System.Threading/4.3.0": {
  8503. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8504. "type": "package",
  8505. "path": "system.threading/4.3.0",
  8506. "files": [
  8507. ".nupkg.metadata",
  8508. ".signature.p7s",
  8509. "ThirdPartyNotices.txt",
  8510. "dotnet_library_license.txt",
  8511. "lib/MonoAndroid10/_._",
  8512. "lib/MonoTouch10/_._",
  8513. "lib/net45/_._",
  8514. "lib/netcore50/System.Threading.dll",
  8515. "lib/netstandard1.3/System.Threading.dll",
  8516. "lib/portable-net45+win8+wp8+wpa81/_._",
  8517. "lib/win8/_._",
  8518. "lib/wp80/_._",
  8519. "lib/wpa81/_._",
  8520. "lib/xamarinios10/_._",
  8521. "lib/xamarinmac20/_._",
  8522. "lib/xamarintvos10/_._",
  8523. "lib/xamarinwatchos10/_._",
  8524. "ref/MonoAndroid10/_._",
  8525. "ref/MonoTouch10/_._",
  8526. "ref/net45/_._",
  8527. "ref/netcore50/System.Threading.dll",
  8528. "ref/netcore50/System.Threading.xml",
  8529. "ref/netcore50/de/System.Threading.xml",
  8530. "ref/netcore50/es/System.Threading.xml",
  8531. "ref/netcore50/fr/System.Threading.xml",
  8532. "ref/netcore50/it/System.Threading.xml",
  8533. "ref/netcore50/ja/System.Threading.xml",
  8534. "ref/netcore50/ko/System.Threading.xml",
  8535. "ref/netcore50/ru/System.Threading.xml",
  8536. "ref/netcore50/zh-hans/System.Threading.xml",
  8537. "ref/netcore50/zh-hant/System.Threading.xml",
  8538. "ref/netstandard1.0/System.Threading.dll",
  8539. "ref/netstandard1.0/System.Threading.xml",
  8540. "ref/netstandard1.0/de/System.Threading.xml",
  8541. "ref/netstandard1.0/es/System.Threading.xml",
  8542. "ref/netstandard1.0/fr/System.Threading.xml",
  8543. "ref/netstandard1.0/it/System.Threading.xml",
  8544. "ref/netstandard1.0/ja/System.Threading.xml",
  8545. "ref/netstandard1.0/ko/System.Threading.xml",
  8546. "ref/netstandard1.0/ru/System.Threading.xml",
  8547. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8548. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8549. "ref/netstandard1.3/System.Threading.dll",
  8550. "ref/netstandard1.3/System.Threading.xml",
  8551. "ref/netstandard1.3/de/System.Threading.xml",
  8552. "ref/netstandard1.3/es/System.Threading.xml",
  8553. "ref/netstandard1.3/fr/System.Threading.xml",
  8554. "ref/netstandard1.3/it/System.Threading.xml",
  8555. "ref/netstandard1.3/ja/System.Threading.xml",
  8556. "ref/netstandard1.3/ko/System.Threading.xml",
  8557. "ref/netstandard1.3/ru/System.Threading.xml",
  8558. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8559. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8560. "ref/portable-net45+win8+wp8+wpa81/_._",
  8561. "ref/win8/_._",
  8562. "ref/wp80/_._",
  8563. "ref/wpa81/_._",
  8564. "ref/xamarinios10/_._",
  8565. "ref/xamarinmac20/_._",
  8566. "ref/xamarintvos10/_._",
  8567. "ref/xamarinwatchos10/_._",
  8568. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8569. "system.threading.4.3.0.nupkg.sha512",
  8570. "system.threading.nuspec"
  8571. ]
  8572. },
  8573. "System.Threading.Channels/7.0.0": {
  8574. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  8575. "type": "package",
  8576. "path": "system.threading.channels/7.0.0",
  8577. "files": [
  8578. ".nupkg.metadata",
  8579. ".signature.p7s",
  8580. "Icon.png",
  8581. "LICENSE.TXT",
  8582. "THIRD-PARTY-NOTICES.TXT",
  8583. "buildTransitive/net461/System.Threading.Channels.targets",
  8584. "buildTransitive/net462/_._",
  8585. "buildTransitive/net6.0/_._",
  8586. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  8587. "lib/net462/System.Threading.Channels.dll",
  8588. "lib/net462/System.Threading.Channels.xml",
  8589. "lib/net6.0/System.Threading.Channels.dll",
  8590. "lib/net6.0/System.Threading.Channels.xml",
  8591. "lib/net7.0/System.Threading.Channels.dll",
  8592. "lib/net7.0/System.Threading.Channels.xml",
  8593. "lib/netstandard2.0/System.Threading.Channels.dll",
  8594. "lib/netstandard2.0/System.Threading.Channels.xml",
  8595. "lib/netstandard2.1/System.Threading.Channels.dll",
  8596. "lib/netstandard2.1/System.Threading.Channels.xml",
  8597. "system.threading.channels.7.0.0.nupkg.sha512",
  8598. "system.threading.channels.nuspec",
  8599. "useSharedDesignerContext.txt"
  8600. ]
  8601. },
  8602. "System.Threading.Tasks/4.3.0": {
  8603. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8604. "type": "package",
  8605. "path": "system.threading.tasks/4.3.0",
  8606. "files": [
  8607. ".nupkg.metadata",
  8608. ".signature.p7s",
  8609. "ThirdPartyNotices.txt",
  8610. "dotnet_library_license.txt",
  8611. "lib/MonoAndroid10/_._",
  8612. "lib/MonoTouch10/_._",
  8613. "lib/net45/_._",
  8614. "lib/portable-net45+win8+wp8+wpa81/_._",
  8615. "lib/win8/_._",
  8616. "lib/wp80/_._",
  8617. "lib/wpa81/_._",
  8618. "lib/xamarinios10/_._",
  8619. "lib/xamarinmac20/_._",
  8620. "lib/xamarintvos10/_._",
  8621. "lib/xamarinwatchos10/_._",
  8622. "ref/MonoAndroid10/_._",
  8623. "ref/MonoTouch10/_._",
  8624. "ref/net45/_._",
  8625. "ref/netcore50/System.Threading.Tasks.dll",
  8626. "ref/netcore50/System.Threading.Tasks.xml",
  8627. "ref/netcore50/de/System.Threading.Tasks.xml",
  8628. "ref/netcore50/es/System.Threading.Tasks.xml",
  8629. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8630. "ref/netcore50/it/System.Threading.Tasks.xml",
  8631. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8632. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8633. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8634. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8635. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8636. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8637. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8638. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8639. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8640. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8641. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8642. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8643. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8644. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8645. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8646. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8647. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8648. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8649. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8650. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8651. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8652. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8653. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8654. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8655. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8656. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8657. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8658. "ref/portable-net45+win8+wp8+wpa81/_._",
  8659. "ref/win8/_._",
  8660. "ref/wp80/_._",
  8661. "ref/wpa81/_._",
  8662. "ref/xamarinios10/_._",
  8663. "ref/xamarinmac20/_._",
  8664. "ref/xamarintvos10/_._",
  8665. "ref/xamarinwatchos10/_._",
  8666. "system.threading.tasks.4.3.0.nupkg.sha512",
  8667. "system.threading.tasks.nuspec"
  8668. ]
  8669. },
  8670. "System.Threading.Tasks.Extensions/4.3.0": {
  8671. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8672. "type": "package",
  8673. "path": "system.threading.tasks.extensions/4.3.0",
  8674. "files": [
  8675. ".nupkg.metadata",
  8676. ".signature.p7s",
  8677. "ThirdPartyNotices.txt",
  8678. "dotnet_library_license.txt",
  8679. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8680. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8681. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8682. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8683. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8684. "system.threading.tasks.extensions.nuspec"
  8685. ]
  8686. },
  8687. "System.Threading.Thread/4.3.0": {
  8688. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8689. "type": "package",
  8690. "path": "system.threading.thread/4.3.0",
  8691. "files": [
  8692. ".nupkg.metadata",
  8693. ".signature.p7s",
  8694. "ThirdPartyNotices.txt",
  8695. "dotnet_library_license.txt",
  8696. "lib/MonoAndroid10/_._",
  8697. "lib/MonoTouch10/_._",
  8698. "lib/net46/System.Threading.Thread.dll",
  8699. "lib/netcore50/_._",
  8700. "lib/netstandard1.3/System.Threading.Thread.dll",
  8701. "lib/xamarinios10/_._",
  8702. "lib/xamarinmac20/_._",
  8703. "lib/xamarintvos10/_._",
  8704. "lib/xamarinwatchos10/_._",
  8705. "ref/MonoAndroid10/_._",
  8706. "ref/MonoTouch10/_._",
  8707. "ref/net46/System.Threading.Thread.dll",
  8708. "ref/netstandard1.3/System.Threading.Thread.dll",
  8709. "ref/netstandard1.3/System.Threading.Thread.xml",
  8710. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8711. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8712. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8713. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8714. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8715. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8716. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8717. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8718. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8719. "ref/xamarinios10/_._",
  8720. "ref/xamarinmac20/_._",
  8721. "ref/xamarintvos10/_._",
  8722. "ref/xamarinwatchos10/_._",
  8723. "system.threading.thread.4.3.0.nupkg.sha512",
  8724. "system.threading.thread.nuspec"
  8725. ]
  8726. },
  8727. "System.Threading.ThreadPool/4.3.0": {
  8728. "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  8729. "type": "package",
  8730. "path": "system.threading.threadpool/4.3.0",
  8731. "files": [
  8732. ".nupkg.metadata",
  8733. ".signature.p7s",
  8734. "ThirdPartyNotices.txt",
  8735. "dotnet_library_license.txt",
  8736. "lib/MonoAndroid10/_._",
  8737. "lib/MonoTouch10/_._",
  8738. "lib/net46/System.Threading.ThreadPool.dll",
  8739. "lib/netcore50/_._",
  8740. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  8741. "lib/xamarinios10/_._",
  8742. "lib/xamarinmac20/_._",
  8743. "lib/xamarintvos10/_._",
  8744. "lib/xamarinwatchos10/_._",
  8745. "ref/MonoAndroid10/_._",
  8746. "ref/MonoTouch10/_._",
  8747. "ref/net46/System.Threading.ThreadPool.dll",
  8748. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  8749. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  8750. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  8751. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  8752. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  8753. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  8754. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  8755. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  8756. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  8757. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  8758. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  8759. "ref/xamarinios10/_._",
  8760. "ref/xamarinmac20/_._",
  8761. "ref/xamarintvos10/_._",
  8762. "ref/xamarinwatchos10/_._",
  8763. "system.threading.threadpool.4.3.0.nupkg.sha512",
  8764. "system.threading.threadpool.nuspec"
  8765. ]
  8766. },
  8767. "System.Threading.Timer/4.3.0": {
  8768. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8769. "type": "package",
  8770. "path": "system.threading.timer/4.3.0",
  8771. "files": [
  8772. ".nupkg.metadata",
  8773. ".signature.p7s",
  8774. "ThirdPartyNotices.txt",
  8775. "dotnet_library_license.txt",
  8776. "lib/MonoAndroid10/_._",
  8777. "lib/MonoTouch10/_._",
  8778. "lib/net451/_._",
  8779. "lib/portable-net451+win81+wpa81/_._",
  8780. "lib/win81/_._",
  8781. "lib/wpa81/_._",
  8782. "lib/xamarinios10/_._",
  8783. "lib/xamarinmac20/_._",
  8784. "lib/xamarintvos10/_._",
  8785. "lib/xamarinwatchos10/_._",
  8786. "ref/MonoAndroid10/_._",
  8787. "ref/MonoTouch10/_._",
  8788. "ref/net451/_._",
  8789. "ref/netcore50/System.Threading.Timer.dll",
  8790. "ref/netcore50/System.Threading.Timer.xml",
  8791. "ref/netcore50/de/System.Threading.Timer.xml",
  8792. "ref/netcore50/es/System.Threading.Timer.xml",
  8793. "ref/netcore50/fr/System.Threading.Timer.xml",
  8794. "ref/netcore50/it/System.Threading.Timer.xml",
  8795. "ref/netcore50/ja/System.Threading.Timer.xml",
  8796. "ref/netcore50/ko/System.Threading.Timer.xml",
  8797. "ref/netcore50/ru/System.Threading.Timer.xml",
  8798. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8799. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8800. "ref/netstandard1.2/System.Threading.Timer.dll",
  8801. "ref/netstandard1.2/System.Threading.Timer.xml",
  8802. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8803. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8804. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8805. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8806. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8807. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8808. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8809. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8810. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8811. "ref/portable-net451+win81+wpa81/_._",
  8812. "ref/win81/_._",
  8813. "ref/wpa81/_._",
  8814. "ref/xamarinios10/_._",
  8815. "ref/xamarinmac20/_._",
  8816. "ref/xamarintvos10/_._",
  8817. "ref/xamarinwatchos10/_._",
  8818. "system.threading.timer.4.3.0.nupkg.sha512",
  8819. "system.threading.timer.nuspec"
  8820. ]
  8821. },
  8822. "System.Windows.Extensions/4.7.0": {
  8823. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8824. "type": "package",
  8825. "path": "system.windows.extensions/4.7.0",
  8826. "files": [
  8827. ".nupkg.metadata",
  8828. ".signature.p7s",
  8829. "LICENSE.TXT",
  8830. "THIRD-PARTY-NOTICES.TXT",
  8831. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8832. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8833. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8834. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8835. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8836. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8837. "system.windows.extensions.4.7.0.nupkg.sha512",
  8838. "system.windows.extensions.nuspec",
  8839. "useSharedDesignerContext.txt",
  8840. "version.txt"
  8841. ]
  8842. },
  8843. "System.Xml.ReaderWriter/4.3.0": {
  8844. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8845. "type": "package",
  8846. "path": "system.xml.readerwriter/4.3.0",
  8847. "files": [
  8848. ".nupkg.metadata",
  8849. ".signature.p7s",
  8850. "ThirdPartyNotices.txt",
  8851. "dotnet_library_license.txt",
  8852. "lib/MonoAndroid10/_._",
  8853. "lib/MonoTouch10/_._",
  8854. "lib/net45/_._",
  8855. "lib/net46/System.Xml.ReaderWriter.dll",
  8856. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8857. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8858. "lib/portable-net45+win8+wp8+wpa81/_._",
  8859. "lib/win8/_._",
  8860. "lib/wp80/_._",
  8861. "lib/wpa81/_._",
  8862. "lib/xamarinios10/_._",
  8863. "lib/xamarinmac20/_._",
  8864. "lib/xamarintvos10/_._",
  8865. "lib/xamarinwatchos10/_._",
  8866. "ref/MonoAndroid10/_._",
  8867. "ref/MonoTouch10/_._",
  8868. "ref/net45/_._",
  8869. "ref/net46/System.Xml.ReaderWriter.dll",
  8870. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8871. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8872. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8873. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8874. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8875. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8876. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8877. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8878. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8879. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8880. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8881. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8882. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8883. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8884. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8885. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8886. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8887. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8888. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8889. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8890. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8891. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8892. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8893. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8894. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8895. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8896. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8897. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8898. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8899. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8900. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8901. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8902. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8903. "ref/portable-net45+win8+wp8+wpa81/_._",
  8904. "ref/win8/_._",
  8905. "ref/wp80/_._",
  8906. "ref/wpa81/_._",
  8907. "ref/xamarinios10/_._",
  8908. "ref/xamarinmac20/_._",
  8909. "ref/xamarintvos10/_._",
  8910. "ref/xamarinwatchos10/_._",
  8911. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8912. "system.xml.readerwriter.nuspec"
  8913. ]
  8914. },
  8915. "System.Xml.XDocument/4.3.0": {
  8916. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8917. "type": "package",
  8918. "path": "system.xml.xdocument/4.3.0",
  8919. "files": [
  8920. ".nupkg.metadata",
  8921. ".signature.p7s",
  8922. "ThirdPartyNotices.txt",
  8923. "dotnet_library_license.txt",
  8924. "lib/MonoAndroid10/_._",
  8925. "lib/MonoTouch10/_._",
  8926. "lib/net45/_._",
  8927. "lib/netcore50/System.Xml.XDocument.dll",
  8928. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8929. "lib/portable-net45+win8+wp8+wpa81/_._",
  8930. "lib/win8/_._",
  8931. "lib/wp80/_._",
  8932. "lib/wpa81/_._",
  8933. "lib/xamarinios10/_._",
  8934. "lib/xamarinmac20/_._",
  8935. "lib/xamarintvos10/_._",
  8936. "lib/xamarinwatchos10/_._",
  8937. "ref/MonoAndroid10/_._",
  8938. "ref/MonoTouch10/_._",
  8939. "ref/net45/_._",
  8940. "ref/netcore50/System.Xml.XDocument.dll",
  8941. "ref/netcore50/System.Xml.XDocument.xml",
  8942. "ref/netcore50/de/System.Xml.XDocument.xml",
  8943. "ref/netcore50/es/System.Xml.XDocument.xml",
  8944. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8945. "ref/netcore50/it/System.Xml.XDocument.xml",
  8946. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8947. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8948. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8949. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8950. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8951. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8952. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8953. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8954. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8955. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8956. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8957. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8958. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8959. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8960. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8961. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8962. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8963. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8964. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8965. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8966. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8967. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8968. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8969. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8970. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8971. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8972. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8973. "ref/portable-net45+win8+wp8+wpa81/_._",
  8974. "ref/win8/_._",
  8975. "ref/wp80/_._",
  8976. "ref/wpa81/_._",
  8977. "ref/xamarinios10/_._",
  8978. "ref/xamarinmac20/_._",
  8979. "ref/xamarintvos10/_._",
  8980. "ref/xamarinwatchos10/_._",
  8981. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8982. "system.xml.xdocument.nuspec"
  8983. ]
  8984. },
  8985. "ZXing.Net/0.16.9": {
  8986. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  8987. "type": "package",
  8988. "path": "zxing.net/0.16.9",
  8989. "files": [
  8990. ".nupkg.metadata",
  8991. ".signature.p7s",
  8992. "lib/native/zxing.XML",
  8993. "lib/native/zxing.pri",
  8994. "lib/native/zxing.winmd",
  8995. "lib/net20-cf/zxing.ce2.0.dll",
  8996. "lib/net20-cf/zxing.ce2.0.xml",
  8997. "lib/net20/zxing.XML",
  8998. "lib/net20/zxing.dll",
  8999. "lib/net35-cf/zxing.ce3.5.dll",
  9000. "lib/net35-cf/zxing.ce3.5.xml",
  9001. "lib/net35/zxing.XML",
  9002. "lib/net35/zxing.dll",
  9003. "lib/net40/zxing.XML",
  9004. "lib/net40/zxing.dll",
  9005. "lib/net40/zxing.presentation.XML",
  9006. "lib/net40/zxing.presentation.dll",
  9007. "lib/net45/zxing.XML",
  9008. "lib/net45/zxing.dll",
  9009. "lib/net45/zxing.presentation.XML",
  9010. "lib/net45/zxing.presentation.dll",
  9011. "lib/net461/zxing.XML",
  9012. "lib/net461/zxing.dll",
  9013. "lib/net461/zxing.presentation.XML",
  9014. "lib/net461/zxing.presentation.dll",
  9015. "lib/net47/zxing.XML",
  9016. "lib/net47/zxing.dll",
  9017. "lib/net47/zxing.presentation.XML",
  9018. "lib/net47/zxing.presentation.dll",
  9019. "lib/net48/zxing.XML",
  9020. "lib/net48/zxing.dll",
  9021. "lib/net48/zxing.presentation.XML",
  9022. "lib/net48/zxing.presentation.dll",
  9023. "lib/net5.0/zxing.XML",
  9024. "lib/net5.0/zxing.dll",
  9025. "lib/net6.0/zxing.XML",
  9026. "lib/net6.0/zxing.dll",
  9027. "lib/net7.0/zxing.XML",
  9028. "lib/net7.0/zxing.dll",
  9029. "lib/netcoreapp3.0/zxing.dll",
  9030. "lib/netcoreapp3.0/zxing.xml",
  9031. "lib/netcoreapp3.1/zxing.dll",
  9032. "lib/netcoreapp3.1/zxing.xml",
  9033. "lib/netstandard1.0/zxing.dll",
  9034. "lib/netstandard1.0/zxing.xml",
  9035. "lib/netstandard1.1/zxing.dll",
  9036. "lib/netstandard1.1/zxing.xml",
  9037. "lib/netstandard1.3/zxing.dll",
  9038. "lib/netstandard1.3/zxing.xml",
  9039. "lib/netstandard2.0/zxing.dll",
  9040. "lib/netstandard2.0/zxing.xml",
  9041. "lib/netstandard2.1/zxing.dll",
  9042. "lib/netstandard2.1/zxing.xml",
  9043. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  9044. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  9045. "lib/sl3-wp/zxing.wp7.0.XML",
  9046. "lib/sl3-wp/zxing.wp7.0.dll",
  9047. "lib/sl4-wp71/zxing.wp7.1.XML",
  9048. "lib/sl4-wp71/zxing.wp7.1.dll",
  9049. "lib/sl4/zxing.sl4.XML",
  9050. "lib/sl4/zxing.sl4.dll",
  9051. "lib/sl5/zxing.sl5.XML",
  9052. "lib/sl5/zxing.sl5.dll",
  9053. "lib/uap10/zxing.dll",
  9054. "lib/uap10/zxing.pri",
  9055. "lib/uap10/zxing.xml",
  9056. "lib/windows8-managed/zxing.winrt.XML",
  9057. "lib/windows8-managed/zxing.winrt.dll",
  9058. "lib/windows8/zxing.XML",
  9059. "lib/windows8/zxing.pri",
  9060. "lib/windows8/zxing.winmd",
  9061. "lib/wp8/zxing.wp8.0.XML",
  9062. "lib/wp8/zxing.wp8.0.dll",
  9063. "logo.jpg",
  9064. "zxing.net.0.16.9.nupkg.sha512",
  9065. "zxing.net.nuspec"
  9066. ]
  9067. },
  9068. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  9069. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  9070. "type": "package",
  9071. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  9072. "files": [
  9073. ".nupkg.metadata",
  9074. ".signature.p7s",
  9075. "lib/net472/ZXing.ImageSharp.V2.dll",
  9076. "lib/net472/ZXing.ImageSharp.V2.pdb",
  9077. "lib/net472/ZXing.ImageSharp.V2.xml",
  9078. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  9079. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  9080. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  9081. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  9082. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  9083. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  9084. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  9085. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  9086. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  9087. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  9088. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  9089. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  9090. "logo.jpg",
  9091. "readme.md",
  9092. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  9093. "zxing.net.bindings.imagesharp.v2.nuspec"
  9094. ]
  9095. },
  9096. "Ropin.Core.Common/1.0.0": {
  9097. "type": "project",
  9098. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  9099. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  9100. },
  9101. "Ropin.Inspection.Common/1.0.0": {
  9102. "type": "project",
  9103. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  9104. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  9105. },
  9106. "Ropin.Inspection.Model/1.0.0": {
  9107. "type": "project",
  9108. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  9109. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  9110. },
  9111. "Ropin.Inspection.Repository/1.0.0": {
  9112. "type": "project",
  9113. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  9114. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  9115. }
  9116. },
  9117. "projectFileDependencyGroups": {
  9118. "net5.0": [
  9119. "FBoxClientDriver >= 1.2.0",
  9120. "InitQ >= 1.0.0.14",
  9121. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  9122. "RabbitMQ.Client >= 6.8.1",
  9123. "Ropin.Core.Common >= 1.0.0",
  9124. "Ropin.Inspection.Common >= 1.0.0",
  9125. "Ropin.Inspection.Model >= 1.0.0",
  9126. "Ropin.Inspection.Repository >= 1.0.0",
  9127. "Swashbuckle.AspNetCore >= 5.6.3",
  9128. "log4net >= 2.0.17"
  9129. ]
  9130. },
  9131. "packageFolders": {
  9132. "D:\\.nuget\\packages": {},
  9133. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9134. },
  9135. "project": {
  9136. "version": "1.0.0",
  9137. "restore": {
  9138. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\Ropin.Environmentally.VideoService.csproj",
  9139. "projectName": "Ropin.Environmentally.VideoService",
  9140. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\Ropin.Environmentally.VideoService.csproj",
  9141. "packagesPath": "D:\\.nuget\\packages",
  9142. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Environmentally.VideoService\\obj\\",
  9143. "projectStyle": "PackageReference",
  9144. "fallbackFolders": [
  9145. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9146. ],
  9147. "configFilePaths": [
  9148. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9149. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9150. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9151. ],
  9152. "originalTargetFrameworks": [
  9153. "net5.0"
  9154. ],
  9155. "sources": {
  9156. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9157. "C:\\Program Files\\dotnet\\library-packs": {},
  9158. "https://api.nuget.org/v3/index.json": {}
  9159. },
  9160. "frameworks": {
  9161. "net5.0": {
  9162. "targetAlias": "net5.0",
  9163. "projectReferences": {
  9164. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj": {
  9165. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Core.Common\\Ropin.Core.Common.csproj"
  9166. },
  9167. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  9168. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  9169. },
  9170. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  9171. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  9172. },
  9173. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj": {
  9174. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Repository\\Ropin.Inspection.Repository.csproj"
  9175. }
  9176. }
  9177. }
  9178. },
  9179. "warningProperties": {
  9180. "warnAsError": [
  9181. "NU1605"
  9182. ]
  9183. }
  9184. },
  9185. "frameworks": {
  9186. "net5.0": {
  9187. "targetAlias": "net5.0",
  9188. "dependencies": {
  9189. "FBoxClientDriver": {
  9190. "target": "Package",
  9191. "version": "[1.2.0, )"
  9192. },
  9193. "InitQ": {
  9194. "target": "Package",
  9195. "version": "[1.0.0.14, )"
  9196. },
  9197. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  9198. "target": "Package",
  9199. "version": "[1.17.2, )"
  9200. },
  9201. "RabbitMQ.Client": {
  9202. "target": "Package",
  9203. "version": "[6.8.1, )"
  9204. },
  9205. "Swashbuckle.AspNetCore": {
  9206. "target": "Package",
  9207. "version": "[5.6.3, )"
  9208. },
  9209. "log4net": {
  9210. "target": "Package",
  9211. "version": "[2.0.17, )"
  9212. }
  9213. },
  9214. "imports": [
  9215. "net461",
  9216. "net462",
  9217. "net47",
  9218. "net471",
  9219. "net472",
  9220. "net48",
  9221. "net481"
  9222. ],
  9223. "assetTargetFallback": true,
  9224. "warn": true,
  9225. "frameworkReferences": {
  9226. "Microsoft.AspNetCore.App": {
  9227. "privateAssets": "none"
  9228. },
  9229. "Microsoft.NETCore.App": {
  9230. "privateAssets": "all"
  9231. }
  9232. },
  9233. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9234. }
  9235. }
  9236. }
  9237. }