Geen omschrijving

project.assets.json 306KB

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

Powered by TurnKey Linux.