選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

project.assets.json 357KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  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/1.8.6.1": {
  33. "type": "package",
  34. "compile": {
  35. "lib/BouncyCastle.Crypto.dll": {}
  36. },
  37. "runtime": {
  38. "lib/BouncyCastle.Crypto.dll": {}
  39. }
  40. },
  41. "Humanizer.Core/2.8.26": {
  42. "type": "package",
  43. "compile": {
  44. "lib/netstandard2.0/_._": {}
  45. },
  46. "runtime": {
  47. "lib/netstandard2.0/Humanizer.dll": {}
  48. }
  49. },
  50. "iTextSharp/5.5.13.2": {
  51. "type": "package",
  52. "dependencies": {
  53. "BouncyCastle": "1.8.6.1"
  54. },
  55. "compile": {
  56. "lib/itextsharp.dll": {}
  57. },
  58. "runtime": {
  59. "lib/itextsharp.dll": {}
  60. }
  61. },
  62. "MediatR/9.0.0": {
  63. "type": "package",
  64. "compile": {
  65. "lib/netstandard2.1/MediatR.dll": {}
  66. },
  67. "runtime": {
  68. "lib/netstandard2.1/MediatR.dll": {}
  69. }
  70. },
  71. "MediatR.Extensions.Microsoft.DependencyInjection/9.0.0": {
  72. "type": "package",
  73. "dependencies": {
  74. "MediatR": "9.0.0",
  75. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
  76. },
  77. "compile": {
  78. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll": {}
  79. },
  80. "runtime": {
  81. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll": {}
  82. }
  83. },
  84. "Microsoft.AspNet.WebApi.Client/5.2.7": {
  85. "type": "package",
  86. "dependencies": {
  87. "Newtonsoft.Json": "10.0.1",
  88. "Newtonsoft.Json.Bson": "1.0.1"
  89. },
  90. "compile": {
  91. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
  95. }
  96. },
  97. "Microsoft.AspNet.WebApi.Core/5.2.7": {
  98. "type": "package",
  99. "dependencies": {
  100. "Microsoft.AspNet.WebApi.Client": "5.2.7"
  101. },
  102. "compile": {
  103. "lib/net45/System.Web.Http.dll": {}
  104. },
  105. "runtime": {
  106. "lib/net45/System.Web.Http.dll": {}
  107. }
  108. },
  109. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.0": {
  110. "type": "package",
  111. "dependencies": {
  112. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
  113. },
  114. "compile": {
  115. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  116. },
  117. "runtime": {
  118. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  119. },
  120. "frameworkReferences": [
  121. "Microsoft.AspNetCore.App"
  122. ]
  123. },
  124. "Microsoft.AspNetCore.Cryptography.Internal/6.0.0": {
  125. "type": "package",
  126. "compile": {
  127. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  128. },
  129. "runtime": {
  130. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  131. }
  132. },
  133. "Microsoft.AspNetCore.Cryptography.KeyDerivation/6.0.0": {
  134. "type": "package",
  135. "dependencies": {
  136. "Microsoft.AspNetCore.Cryptography.Internal": "6.0.0"
  137. },
  138. "compile": {
  139. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  140. },
  141. "runtime": {
  142. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  143. }
  144. },
  145. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/6.0.0": {
  146. "type": "package",
  147. "dependencies": {
  148. "Microsoft.EntityFrameworkCore.Relational": "6.0.0",
  149. "Microsoft.Extensions.Identity.Stores": "6.0.0"
  150. },
  151. "compile": {
  152. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  153. },
  154. "runtime": {
  155. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  156. }
  157. },
  158. "Microsoft.AspNetCore.WebUtilities/2.0.2": {
  159. "type": "package",
  160. "dependencies": {
  161. "Microsoft.Net.Http.Headers": "2.0.2",
  162. "System.Text.Encodings.Web": "4.4.0"
  163. },
  164. "compile": {
  165. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  166. },
  167. "runtime": {
  168. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  169. }
  170. },
  171. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  172. "type": "package",
  173. "compile": {
  174. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  175. },
  176. "runtime": {
  177. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  178. }
  179. },
  180. "Microsoft.Build.Framework/17.0.0": {
  181. "type": "package",
  182. "dependencies": {
  183. "System.Security.Permissions": "4.7.0"
  184. },
  185. "compile": {
  186. "lib/netstandard2.0/Microsoft.Build.Framework.dll": {}
  187. },
  188. "runtime": {
  189. "lib/netstandard2.0/Microsoft.Build.Framework.dll": {}
  190. }
  191. },
  192. "Microsoft.Build.Tasks.Core/17.0.0": {
  193. "type": "package",
  194. "dependencies": {
  195. "Microsoft.Build.Framework": "17.0.0",
  196. "Microsoft.Build.Utilities.Core": "17.0.0",
  197. "Microsoft.NET.StringTools": "1.0.0",
  198. "Microsoft.Win32.Registry": "4.3.0",
  199. "System.CodeDom": "4.4.0",
  200. "System.Collections.Immutable": "5.0.0",
  201. "System.Reflection.Metadata": "1.6.0",
  202. "System.Resources.Extensions": "4.6.0",
  203. "System.Security.Cryptography.Pkcs": "4.7.0",
  204. "System.Security.Cryptography.Xml": "4.7.0",
  205. "System.Security.Permissions": "4.7.0",
  206. "System.Threading.Tasks.Dataflow": "4.9.0"
  207. },
  208. "compile": {
  209. "lib/netstandard2.0/Microsoft.Build.Tasks.Core.dll": {}
  210. },
  211. "runtime": {
  212. "lib/netstandard2.0/Microsoft.Build.Tasks.Core.dll": {}
  213. }
  214. },
  215. "Microsoft.Build.Utilities.Core/17.0.0": {
  216. "type": "package",
  217. "dependencies": {
  218. "Microsoft.Build.Framework": "17.0.0",
  219. "Microsoft.NET.StringTools": "1.0.0",
  220. "Microsoft.Win32.Registry": "4.3.0",
  221. "System.Collections.Immutable": "5.0.0",
  222. "System.Configuration.ConfigurationManager": "4.7.0",
  223. "System.Security.Permissions": "4.7.0",
  224. "System.Text.Encoding.CodePages": "4.0.1"
  225. },
  226. "compile": {
  227. "lib/netstandard2.0/Microsoft.Build.Utilities.Core.dll": {}
  228. },
  229. "runtime": {
  230. "lib/netstandard2.0/Microsoft.Build.Utilities.Core.dll": {}
  231. }
  232. },
  233. "Microsoft.CSharp/4.7.0": {
  234. "type": "package",
  235. "compile": {
  236. "ref/netcoreapp2.0/_._": {}
  237. },
  238. "runtime": {
  239. "lib/netcoreapp2.0/_._": {}
  240. }
  241. },
  242. "Microsoft.Data.SqlClient/2.1.4": {
  243. "type": "package",
  244. "dependencies": {
  245. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  246. "Microsoft.Identity.Client": "4.21.1",
  247. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  248. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  249. "Microsoft.Win32.Registry": "4.7.0",
  250. "System.Configuration.ConfigurationManager": "4.7.0",
  251. "System.Diagnostics.DiagnosticSource": "4.7.0",
  252. "System.Runtime.Caching": "4.7.0",
  253. "System.Security.Principal.Windows": "4.7.0",
  254. "System.Text.Encoding.CodePages": "4.7.0"
  255. },
  256. "compile": {
  257. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {}
  258. },
  259. "runtime": {
  260. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {}
  261. },
  262. "runtimeTargets": {
  263. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  264. "assetType": "runtime",
  265. "rid": "unix"
  266. },
  267. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  268. "assetType": "runtime",
  269. "rid": "win"
  270. }
  271. }
  272. },
  273. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  274. "type": "package",
  275. "runtimeTargets": {
  276. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  277. "assetType": "native",
  278. "rid": "win-arm"
  279. },
  280. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  281. "assetType": "native",
  282. "rid": "win-arm64"
  283. },
  284. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  285. "assetType": "native",
  286. "rid": "win-x64"
  287. },
  288. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  289. "assetType": "native",
  290. "rid": "win-x86"
  291. }
  292. }
  293. },
  294. "Microsoft.Data.Sqlite.Core/6.0.0": {
  295. "type": "package",
  296. "dependencies": {
  297. "SQLitePCLRaw.core": "2.0.6"
  298. },
  299. "compile": {
  300. "lib/net6.0/Microsoft.Data.Sqlite.dll": {}
  301. },
  302. "runtime": {
  303. "lib/net6.0/Microsoft.Data.Sqlite.dll": {}
  304. }
  305. },
  306. "Microsoft.EntityFrameworkCore/6.0.0": {
  307. "type": "package",
  308. "dependencies": {
  309. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.0",
  310. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.0",
  311. "Microsoft.Extensions.Caching.Memory": "6.0.0",
  312. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  313. "Microsoft.Extensions.Logging": "6.0.0",
  314. "System.Collections.Immutable": "6.0.0",
  315. "System.Diagnostics.DiagnosticSource": "6.0.0"
  316. },
  317. "compile": {
  318. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
  319. },
  320. "runtime": {
  321. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
  322. }
  323. },
  324. "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": {
  325. "type": "package",
  326. "compile": {
  327. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  328. },
  329. "runtime": {
  330. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  331. }
  332. },
  333. "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": {
  334. "type": "package",
  335. "compile": {
  336. "lib/netstandard2.0/_._": {}
  337. },
  338. "runtime": {
  339. "lib/netstandard2.0/_._": {}
  340. }
  341. },
  342. "Microsoft.EntityFrameworkCore.Design/6.0.0": {
  343. "type": "package",
  344. "dependencies": {
  345. "Humanizer.Core": "2.8.26",
  346. "Microsoft.EntityFrameworkCore.Relational": "6.0.0"
  347. },
  348. "compile": {
  349. "lib/net6.0/_._": {}
  350. },
  351. "runtime": {
  352. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  353. },
  354. "build": {
  355. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  356. }
  357. },
  358. "Microsoft.EntityFrameworkCore.Relational/6.0.0": {
  359. "type": "package",
  360. "dependencies": {
  361. "Microsoft.EntityFrameworkCore": "6.0.0",
  362. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  363. },
  364. "compile": {
  365. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  366. },
  367. "runtime": {
  368. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  369. }
  370. },
  371. "Microsoft.EntityFrameworkCore.Sqlite/6.0.0": {
  372. "type": "package",
  373. "dependencies": {
  374. "Microsoft.EntityFrameworkCore.Sqlite.Core": "6.0.0",
  375. "SQLitePCLRaw.bundle_e_sqlite3": "2.0.6"
  376. },
  377. "compile": {
  378. "lib/net6.0/_._": {}
  379. },
  380. "runtime": {
  381. "lib/net6.0/_._": {}
  382. }
  383. },
  384. "Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.0": {
  385. "type": "package",
  386. "dependencies": {
  387. "Microsoft.Data.Sqlite.Core": "6.0.0",
  388. "Microsoft.EntityFrameworkCore.Relational": "6.0.0",
  389. "Microsoft.Extensions.DependencyModel": "6.0.0"
  390. },
  391. "compile": {
  392. "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {}
  393. },
  394. "runtime": {
  395. "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {}
  396. }
  397. },
  398. "Microsoft.EntityFrameworkCore.SqlServer/6.0.0": {
  399. "type": "package",
  400. "dependencies": {
  401. "Microsoft.Data.SqlClient": "2.1.4",
  402. "Microsoft.EntityFrameworkCore.Relational": "6.0.0"
  403. },
  404. "compile": {
  405. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  406. },
  407. "runtime": {
  408. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  409. }
  410. },
  411. "Microsoft.EntityFrameworkCore.Tools/6.0.0": {
  412. "type": "package",
  413. "dependencies": {
  414. "Microsoft.EntityFrameworkCore.Design": "6.0.0"
  415. },
  416. "compile": {
  417. "lib/net6.0/_._": {}
  418. },
  419. "runtime": {
  420. "lib/net6.0/_._": {}
  421. }
  422. },
  423. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  424. "type": "package",
  425. "build": {
  426. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  427. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  428. },
  429. "buildMultiTargeting": {
  430. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  431. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  432. }
  433. },
  434. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  435. "type": "package",
  436. "dependencies": {
  437. "Microsoft.Extensions.Primitives": "6.0.0"
  438. },
  439. "compile": {
  440. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  441. },
  442. "runtime": {
  443. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  444. }
  445. },
  446. "Microsoft.Extensions.Caching.Memory/6.0.0": {
  447. "type": "package",
  448. "dependencies": {
  449. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  450. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  451. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  452. "Microsoft.Extensions.Options": "6.0.0",
  453. "Microsoft.Extensions.Primitives": "6.0.0"
  454. },
  455. "compile": {
  456. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  457. },
  458. "runtime": {
  459. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  460. }
  461. },
  462. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  463. "type": "package",
  464. "dependencies": {
  465. "Microsoft.Extensions.Primitives": "6.0.0"
  466. },
  467. "compile": {
  468. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  469. },
  470. "runtime": {
  471. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  472. }
  473. },
  474. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  475. "type": "package",
  476. "dependencies": {
  477. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  478. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  479. },
  480. "compile": {
  481. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
  482. },
  483. "runtime": {
  484. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
  485. },
  486. "build": {
  487. "buildTransitive/netcoreapp3.1/_._": {}
  488. }
  489. },
  490. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  491. "type": "package",
  492. "compile": {
  493. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  494. },
  495. "runtime": {
  496. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  497. },
  498. "build": {
  499. "buildTransitive/netcoreapp3.1/_._": {}
  500. }
  501. },
  502. "Microsoft.Extensions.DependencyModel/6.0.0": {
  503. "type": "package",
  504. "dependencies": {
  505. "System.Buffers": "4.5.1",
  506. "System.Memory": "4.5.4",
  507. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  508. "System.Text.Encodings.Web": "6.0.0",
  509. "System.Text.Json": "6.0.0"
  510. },
  511. "compile": {
  512. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  513. },
  514. "runtime": {
  515. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  516. }
  517. },
  518. "Microsoft.Extensions.Identity.Core/6.0.0": {
  519. "type": "package",
  520. "dependencies": {
  521. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "6.0.0",
  522. "Microsoft.Extensions.Logging": "6.0.0",
  523. "Microsoft.Extensions.Options": "6.0.0"
  524. },
  525. "compile": {
  526. "lib/net6.0/Microsoft.Extensions.Identity.Core.dll": {}
  527. },
  528. "runtime": {
  529. "lib/net6.0/Microsoft.Extensions.Identity.Core.dll": {}
  530. }
  531. },
  532. "Microsoft.Extensions.Identity.Stores/6.0.0": {
  533. "type": "package",
  534. "dependencies": {
  535. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  536. "Microsoft.Extensions.Identity.Core": "6.0.0",
  537. "Microsoft.Extensions.Logging": "6.0.0"
  538. },
  539. "compile": {
  540. "lib/net6.0/Microsoft.Extensions.Identity.Stores.dll": {}
  541. },
  542. "runtime": {
  543. "lib/net6.0/Microsoft.Extensions.Identity.Stores.dll": {}
  544. }
  545. },
  546. "Microsoft.Extensions.Logging/6.0.0": {
  547. "type": "package",
  548. "dependencies": {
  549. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  550. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  551. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  552. "Microsoft.Extensions.Options": "6.0.0",
  553. "System.Diagnostics.DiagnosticSource": "6.0.0"
  554. },
  555. "compile": {
  556. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  557. },
  558. "runtime": {
  559. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  560. }
  561. },
  562. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  563. "type": "package",
  564. "compile": {
  565. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  566. },
  567. "runtime": {
  568. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  569. },
  570. "build": {
  571. "buildTransitive/netcoreapp3.1/_._": {}
  572. }
  573. },
  574. "Microsoft.Extensions.Options/6.0.0": {
  575. "type": "package",
  576. "dependencies": {
  577. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  578. "Microsoft.Extensions.Primitives": "6.0.0"
  579. },
  580. "compile": {
  581. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
  582. },
  583. "runtime": {
  584. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
  585. }
  586. },
  587. "Microsoft.Extensions.Primitives/6.0.0": {
  588. "type": "package",
  589. "dependencies": {
  590. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  591. },
  592. "compile": {
  593. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
  594. },
  595. "runtime": {
  596. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
  597. },
  598. "build": {
  599. "buildTransitive/netcoreapp3.1/_._": {}
  600. }
  601. },
  602. "Microsoft.Identity.Client/4.21.1": {
  603. "type": "package",
  604. "compile": {
  605. "ref/netcoreapp2.1/_._": {}
  606. },
  607. "runtime": {
  608. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {}
  609. }
  610. },
  611. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  612. "type": "package",
  613. "dependencies": {
  614. "Microsoft.IdentityModel.Tokens": "6.10.0"
  615. },
  616. "compile": {
  617. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  618. },
  619. "runtime": {
  620. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  621. }
  622. },
  623. "Microsoft.IdentityModel.Logging/6.10.0": {
  624. "type": "package",
  625. "compile": {
  626. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  627. },
  628. "runtime": {
  629. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  630. }
  631. },
  632. "Microsoft.IdentityModel.Protocols/6.10.0": {
  633. "type": "package",
  634. "dependencies": {
  635. "Microsoft.IdentityModel.Logging": "6.10.0",
  636. "Microsoft.IdentityModel.Tokens": "6.10.0"
  637. },
  638. "compile": {
  639. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  640. },
  641. "runtime": {
  642. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  643. }
  644. },
  645. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  646. "type": "package",
  647. "dependencies": {
  648. "Microsoft.IdentityModel.Protocols": "6.10.0",
  649. "System.IdentityModel.Tokens.Jwt": "6.10.0"
  650. },
  651. "compile": {
  652. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  653. },
  654. "runtime": {
  655. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  656. }
  657. },
  658. "Microsoft.IdentityModel.Tokens/6.10.0": {
  659. "type": "package",
  660. "dependencies": {
  661. "Microsoft.CSharp": "4.5.0",
  662. "Microsoft.IdentityModel.Logging": "6.10.0",
  663. "System.Security.Cryptography.Cng": "4.5.0"
  664. },
  665. "compile": {
  666. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  667. },
  668. "runtime": {
  669. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  670. }
  671. },
  672. "Microsoft.Net.Http.Headers/2.0.2": {
  673. "type": "package",
  674. "dependencies": {
  675. "Microsoft.Extensions.Primitives": "2.0.0",
  676. "System.Buffers": "4.4.0"
  677. },
  678. "compile": {
  679. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  680. },
  681. "runtime": {
  682. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  683. }
  684. },
  685. "Microsoft.NET.StringTools/1.0.0": {
  686. "type": "package",
  687. "dependencies": {
  688. "System.Memory": "4.5.4",
  689. "System.Runtime.CompilerServices.Unsafe": "5.0.0"
  690. },
  691. "compile": {
  692. "lib/netstandard2.0/Microsoft.NET.StringTools.dll": {}
  693. },
  694. "runtime": {
  695. "lib/netstandard2.0/Microsoft.NET.StringTools.dll": {}
  696. }
  697. },
  698. "Microsoft.NETCore.Platforms/3.1.0": {
  699. "type": "package",
  700. "compile": {
  701. "lib/netstandard1.0/_._": {}
  702. },
  703. "runtime": {
  704. "lib/netstandard1.0/_._": {}
  705. }
  706. },
  707. "Microsoft.NETCore.Targets/1.1.0": {
  708. "type": "package",
  709. "compile": {
  710. "lib/netstandard1.0/_._": {}
  711. },
  712. "runtime": {
  713. "lib/netstandard1.0/_._": {}
  714. }
  715. },
  716. "Microsoft.OpenApi/1.2.3": {
  717. "type": "package",
  718. "compile": {
  719. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  720. },
  721. "runtime": {
  722. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  723. }
  724. },
  725. "Microsoft.Win32.Primitives/4.3.0": {
  726. "type": "package",
  727. "dependencies": {
  728. "Microsoft.NETCore.Platforms": "1.1.0",
  729. "Microsoft.NETCore.Targets": "1.1.0",
  730. "System.Runtime": "4.3.0"
  731. },
  732. "compile": {
  733. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  734. }
  735. },
  736. "Microsoft.Win32.Registry/4.7.0": {
  737. "type": "package",
  738. "dependencies": {
  739. "System.Security.AccessControl": "4.7.0",
  740. "System.Security.Principal.Windows": "4.7.0"
  741. },
  742. "compile": {
  743. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  744. },
  745. "runtime": {
  746. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  747. },
  748. "runtimeTargets": {
  749. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  750. "assetType": "runtime",
  751. "rid": "unix"
  752. },
  753. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  754. "assetType": "runtime",
  755. "rid": "win"
  756. }
  757. }
  758. },
  759. "Microsoft.Win32.SystemEvents/4.7.0": {
  760. "type": "package",
  761. "dependencies": {
  762. "Microsoft.NETCore.Platforms": "3.1.0"
  763. },
  764. "compile": {
  765. "ref/netstandard2.0/_._": {}
  766. },
  767. "runtime": {
  768. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  769. },
  770. "runtimeTargets": {
  771. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  772. "assetType": "runtime",
  773. "rid": "win"
  774. }
  775. }
  776. },
  777. "NETStandard.Library/1.6.1": {
  778. "type": "package",
  779. "dependencies": {
  780. "Microsoft.NETCore.Platforms": "1.1.0",
  781. "Microsoft.Win32.Primitives": "4.3.0",
  782. "System.AppContext": "4.3.0",
  783. "System.Collections": "4.3.0",
  784. "System.Collections.Concurrent": "4.3.0",
  785. "System.Console": "4.3.0",
  786. "System.Diagnostics.Debug": "4.3.0",
  787. "System.Diagnostics.Tools": "4.3.0",
  788. "System.Diagnostics.Tracing": "4.3.0",
  789. "System.Globalization": "4.3.0",
  790. "System.Globalization.Calendars": "4.3.0",
  791. "System.IO": "4.3.0",
  792. "System.IO.Compression": "4.3.0",
  793. "System.IO.Compression.ZipFile": "4.3.0",
  794. "System.IO.FileSystem": "4.3.0",
  795. "System.IO.FileSystem.Primitives": "4.3.0",
  796. "System.Linq": "4.3.0",
  797. "System.Linq.Expressions": "4.3.0",
  798. "System.Net.Http": "4.3.0",
  799. "System.Net.Primitives": "4.3.0",
  800. "System.Net.Sockets": "4.3.0",
  801. "System.ObjectModel": "4.3.0",
  802. "System.Reflection": "4.3.0",
  803. "System.Reflection.Extensions": "4.3.0",
  804. "System.Reflection.Primitives": "4.3.0",
  805. "System.Resources.ResourceManager": "4.3.0",
  806. "System.Runtime": "4.3.0",
  807. "System.Runtime.Extensions": "4.3.0",
  808. "System.Runtime.Handles": "4.3.0",
  809. "System.Runtime.InteropServices": "4.3.0",
  810. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  811. "System.Runtime.Numerics": "4.3.0",
  812. "System.Security.Cryptography.Algorithms": "4.3.0",
  813. "System.Security.Cryptography.Encoding": "4.3.0",
  814. "System.Security.Cryptography.Primitives": "4.3.0",
  815. "System.Security.Cryptography.X509Certificates": "4.3.0",
  816. "System.Text.Encoding": "4.3.0",
  817. "System.Text.Encoding.Extensions": "4.3.0",
  818. "System.Text.RegularExpressions": "4.3.0",
  819. "System.Threading": "4.3.0",
  820. "System.Threading.Tasks": "4.3.0",
  821. "System.Threading.Timer": "4.3.0",
  822. "System.Xml.ReaderWriter": "4.3.0",
  823. "System.Xml.XDocument": "4.3.0"
  824. }
  825. },
  826. "Newtonsoft.Json/10.0.3": {
  827. "type": "package",
  828. "dependencies": {
  829. "Microsoft.CSharp": "4.3.0",
  830. "NETStandard.Library": "1.6.1",
  831. "System.ComponentModel.TypeConverter": "4.3.0",
  832. "System.Runtime.Serialization.Formatters": "4.3.0",
  833. "System.Runtime.Serialization.Primitives": "4.3.0",
  834. "System.Xml.XmlDocument": "4.3.0"
  835. },
  836. "compile": {
  837. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  838. },
  839. "runtime": {
  840. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  841. }
  842. },
  843. "Newtonsoft.Json.Bson/1.0.1": {
  844. "type": "package",
  845. "dependencies": {
  846. "NETStandard.Library": "1.6.1",
  847. "Newtonsoft.Json": "10.0.1"
  848. },
  849. "compile": {
  850. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
  851. },
  852. "runtime": {
  853. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
  854. }
  855. },
  856. "PuppeteerSharp/5.1.0": {
  857. "type": "package",
  858. "dependencies": {
  859. "Microsoft.AspNetCore.WebUtilities": "2.0.2",
  860. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  861. "Microsoft.Extensions.Logging": "2.0.2",
  862. "Newtonsoft.Json": "10.0.3",
  863. "SharpZipLib": "1.3.1",
  864. "System.Net.Http": "4.3.4",
  865. "System.Threading.Tasks.Extensions": "4.5.2"
  866. },
  867. "compile": {
  868. "lib/netstandard2.0/PuppeteerSharp.dll": {}
  869. },
  870. "runtime": {
  871. "lib/netstandard2.0/PuppeteerSharp.dll": {}
  872. }
  873. },
  874. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  875. "type": "package",
  876. "runtimeTargets": {
  877. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  878. "assetType": "native",
  879. "rid": "debian.8-x64"
  880. }
  881. }
  882. },
  883. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  884. "type": "package",
  885. "runtimeTargets": {
  886. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  887. "assetType": "native",
  888. "rid": "fedora.23-x64"
  889. }
  890. }
  891. },
  892. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  893. "type": "package",
  894. "runtimeTargets": {
  895. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  896. "assetType": "native",
  897. "rid": "fedora.24-x64"
  898. }
  899. }
  900. },
  901. "runtime.native.System/4.3.0": {
  902. "type": "package",
  903. "dependencies": {
  904. "Microsoft.NETCore.Platforms": "1.1.0",
  905. "Microsoft.NETCore.Targets": "1.1.0"
  906. },
  907. "compile": {
  908. "lib/netstandard1.0/_._": {}
  909. },
  910. "runtime": {
  911. "lib/netstandard1.0/_._": {}
  912. }
  913. },
  914. "runtime.native.System.IO.Compression/4.3.0": {
  915. "type": "package",
  916. "dependencies": {
  917. "Microsoft.NETCore.Platforms": "1.1.0",
  918. "Microsoft.NETCore.Targets": "1.1.0"
  919. },
  920. "compile": {
  921. "lib/netstandard1.0/_._": {}
  922. },
  923. "runtime": {
  924. "lib/netstandard1.0/_._": {}
  925. }
  926. },
  927. "runtime.native.System.Net.Http/4.3.0": {
  928. "type": "package",
  929. "dependencies": {
  930. "Microsoft.NETCore.Platforms": "1.1.0",
  931. "Microsoft.NETCore.Targets": "1.1.0"
  932. },
  933. "compile": {
  934. "lib/netstandard1.0/_._": {}
  935. },
  936. "runtime": {
  937. "lib/netstandard1.0/_._": {}
  938. }
  939. },
  940. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  941. "type": "package",
  942. "dependencies": {
  943. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  944. },
  945. "compile": {
  946. "lib/netstandard1.0/_._": {}
  947. },
  948. "runtime": {
  949. "lib/netstandard1.0/_._": {}
  950. }
  951. },
  952. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  953. "type": "package",
  954. "dependencies": {
  955. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  956. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  957. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  958. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  959. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  960. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  961. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  962. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  963. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  964. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  965. },
  966. "compile": {
  967. "lib/netstandard1.0/_._": {}
  968. },
  969. "runtime": {
  970. "lib/netstandard1.0/_._": {}
  971. }
  972. },
  973. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  974. "type": "package",
  975. "runtimeTargets": {
  976. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  977. "assetType": "native",
  978. "rid": "opensuse.13.2-x64"
  979. }
  980. }
  981. },
  982. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  983. "type": "package",
  984. "runtimeTargets": {
  985. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  986. "assetType": "native",
  987. "rid": "opensuse.42.1-x64"
  988. }
  989. }
  990. },
  991. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  992. "type": "package",
  993. "runtimeTargets": {
  994. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  995. "assetType": "native",
  996. "rid": "osx.10.10-x64"
  997. }
  998. }
  999. },
  1000. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1001. "type": "package",
  1002. "runtimeTargets": {
  1003. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1004. "assetType": "native",
  1005. "rid": "osx.10.10-x64"
  1006. }
  1007. }
  1008. },
  1009. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1010. "type": "package",
  1011. "runtimeTargets": {
  1012. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1013. "assetType": "native",
  1014. "rid": "rhel.7-x64"
  1015. }
  1016. }
  1017. },
  1018. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1019. "type": "package",
  1020. "runtimeTargets": {
  1021. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1022. "assetType": "native",
  1023. "rid": "ubuntu.14.04-x64"
  1024. }
  1025. }
  1026. },
  1027. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1028. "type": "package",
  1029. "runtimeTargets": {
  1030. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1031. "assetType": "native",
  1032. "rid": "ubuntu.16.04-x64"
  1033. }
  1034. }
  1035. },
  1036. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1037. "type": "package",
  1038. "runtimeTargets": {
  1039. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1040. "assetType": "native",
  1041. "rid": "ubuntu.16.10-x64"
  1042. }
  1043. }
  1044. },
  1045. "SharpZipLib/1.3.1": {
  1046. "type": "package",
  1047. "compile": {
  1048. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
  1049. },
  1050. "runtime": {
  1051. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
  1052. }
  1053. },
  1054. "SQLitePCLRaw.bundle_e_sqlite3/2.0.6": {
  1055. "type": "package",
  1056. "dependencies": {
  1057. "SQLitePCLRaw.core": "2.0.6",
  1058. "SQLitePCLRaw.lib.e_sqlite3": "2.0.6",
  1059. "SQLitePCLRaw.provider.e_sqlite3": "2.0.6"
  1060. },
  1061. "compile": {
  1062. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
  1063. },
  1064. "runtime": {
  1065. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
  1066. }
  1067. },
  1068. "SQLitePCLRaw.core/2.0.6": {
  1069. "type": "package",
  1070. "dependencies": {
  1071. "System.Memory": "4.5.3"
  1072. },
  1073. "compile": {
  1074. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1075. },
  1076. "runtime": {
  1077. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1078. }
  1079. },
  1080. "SQLitePCLRaw.lib.e_sqlite3/2.0.6": {
  1081. "type": "package",
  1082. "compile": {
  1083. "lib/netstandard2.0/_._": {}
  1084. },
  1085. "runtime": {
  1086. "lib/netstandard2.0/_._": {}
  1087. },
  1088. "runtimeTargets": {
  1089. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1090. "assetType": "native",
  1091. "rid": "alpine-x64"
  1092. },
  1093. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1094. "assetType": "native",
  1095. "rid": "linux-arm"
  1096. },
  1097. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1098. "assetType": "native",
  1099. "rid": "linux-arm64"
  1100. },
  1101. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1102. "assetType": "native",
  1103. "rid": "linux-armel"
  1104. },
  1105. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  1106. "assetType": "native",
  1107. "rid": "linux-mips64"
  1108. },
  1109. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1110. "assetType": "native",
  1111. "rid": "linux-musl-x64"
  1112. },
  1113. "runtimes/linux-s390x/native/libe_sqlite3.so": {
  1114. "assetType": "native",
  1115. "rid": "linux-s390x"
  1116. },
  1117. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1118. "assetType": "native",
  1119. "rid": "linux-x64"
  1120. },
  1121. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1122. "assetType": "native",
  1123. "rid": "linux-x86"
  1124. },
  1125. "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
  1126. "assetType": "native",
  1127. "rid": "osx-arm64"
  1128. },
  1129. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1130. "assetType": "native",
  1131. "rid": "osx-x64"
  1132. },
  1133. "runtimes/win-arm/native/e_sqlite3.dll": {
  1134. "assetType": "native",
  1135. "rid": "win-arm"
  1136. },
  1137. "runtimes/win-arm64/native/e_sqlite3.dll": {
  1138. "assetType": "native",
  1139. "rid": "win-arm64"
  1140. },
  1141. "runtimes/win-x64/native/e_sqlite3.dll": {
  1142. "assetType": "native",
  1143. "rid": "win-x64"
  1144. },
  1145. "runtimes/win-x86/native/e_sqlite3.dll": {
  1146. "assetType": "native",
  1147. "rid": "win-x86"
  1148. }
  1149. }
  1150. },
  1151. "SQLitePCLRaw.provider.e_sqlite3/2.0.6": {
  1152. "type": "package",
  1153. "dependencies": {
  1154. "SQLitePCLRaw.core": "2.0.6"
  1155. },
  1156. "compile": {
  1157. "lib/net5.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1158. },
  1159. "runtime": {
  1160. "lib/net5.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1161. }
  1162. },
  1163. "Swashbuckle.AspNetCore/6.2.3": {
  1164. "type": "package",
  1165. "dependencies": {
  1166. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1167. "Swashbuckle.AspNetCore.Swagger": "6.2.3",
  1168. "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3",
  1169. "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3"
  1170. },
  1171. "build": {
  1172. "build/Swashbuckle.AspNetCore.props": {}
  1173. }
  1174. },
  1175. "Swashbuckle.AspNetCore.Swagger/6.2.3": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.OpenApi": "1.2.3"
  1179. },
  1180. "compile": {
  1181. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1182. },
  1183. "runtime": {
  1184. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1185. },
  1186. "frameworkReferences": [
  1187. "Microsoft.AspNetCore.App"
  1188. ]
  1189. },
  1190. "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {
  1191. "type": "package",
  1192. "dependencies": {
  1193. "Swashbuckle.AspNetCore.Swagger": "6.2.3"
  1194. },
  1195. "compile": {
  1196. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1197. },
  1198. "runtime": {
  1199. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1200. }
  1201. },
  1202. "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {
  1203. "type": "package",
  1204. "compile": {
  1205. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1206. },
  1207. "runtime": {
  1208. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1209. },
  1210. "frameworkReferences": [
  1211. "Microsoft.AspNetCore.App"
  1212. ]
  1213. },
  1214. "System.AppContext/4.3.0": {
  1215. "type": "package",
  1216. "dependencies": {
  1217. "System.Runtime": "4.3.0"
  1218. },
  1219. "compile": {
  1220. "ref/netstandard1.6/System.AppContext.dll": {}
  1221. },
  1222. "runtime": {
  1223. "lib/netstandard1.6/System.AppContext.dll": {}
  1224. }
  1225. },
  1226. "System.Buffers/4.5.1": {
  1227. "type": "package",
  1228. "compile": {
  1229. "ref/netcoreapp2.0/_._": {}
  1230. },
  1231. "runtime": {
  1232. "lib/netcoreapp2.0/_._": {}
  1233. }
  1234. },
  1235. "System.CodeDom/4.4.0": {
  1236. "type": "package",
  1237. "compile": {
  1238. "ref/netstandard2.0/System.CodeDom.dll": {}
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/System.CodeDom.dll": {}
  1242. }
  1243. },
  1244. "System.Collections/4.3.0": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Microsoft.NETCore.Platforms": "1.1.0",
  1248. "Microsoft.NETCore.Targets": "1.1.0",
  1249. "System.Runtime": "4.3.0"
  1250. },
  1251. "compile": {
  1252. "ref/netstandard1.3/System.Collections.dll": {}
  1253. }
  1254. },
  1255. "System.Collections.Concurrent/4.3.0": {
  1256. "type": "package",
  1257. "dependencies": {
  1258. "System.Collections": "4.3.0",
  1259. "System.Diagnostics.Debug": "4.3.0",
  1260. "System.Diagnostics.Tracing": "4.3.0",
  1261. "System.Globalization": "4.3.0",
  1262. "System.Reflection": "4.3.0",
  1263. "System.Resources.ResourceManager": "4.3.0",
  1264. "System.Runtime": "4.3.0",
  1265. "System.Runtime.Extensions": "4.3.0",
  1266. "System.Threading": "4.3.0",
  1267. "System.Threading.Tasks": "4.3.0"
  1268. },
  1269. "compile": {
  1270. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1271. },
  1272. "runtime": {
  1273. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1274. }
  1275. },
  1276. "System.Collections.Immutable/6.0.0": {
  1277. "type": "package",
  1278. "dependencies": {
  1279. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1280. },
  1281. "compile": {
  1282. "lib/net6.0/System.Collections.Immutable.dll": {}
  1283. },
  1284. "runtime": {
  1285. "lib/net6.0/System.Collections.Immutable.dll": {}
  1286. },
  1287. "build": {
  1288. "buildTransitive/netcoreapp3.1/_._": {}
  1289. }
  1290. },
  1291. "System.Collections.NonGeneric/4.3.0": {
  1292. "type": "package",
  1293. "dependencies": {
  1294. "System.Diagnostics.Debug": "4.3.0",
  1295. "System.Globalization": "4.3.0",
  1296. "System.Resources.ResourceManager": "4.3.0",
  1297. "System.Runtime": "4.3.0",
  1298. "System.Runtime.Extensions": "4.3.0",
  1299. "System.Threading": "4.3.0"
  1300. },
  1301. "compile": {
  1302. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1303. },
  1304. "runtime": {
  1305. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1306. }
  1307. },
  1308. "System.Collections.Specialized/4.3.0": {
  1309. "type": "package",
  1310. "dependencies": {
  1311. "System.Collections.NonGeneric": "4.3.0",
  1312. "System.Globalization": "4.3.0",
  1313. "System.Globalization.Extensions": "4.3.0",
  1314. "System.Resources.ResourceManager": "4.3.0",
  1315. "System.Runtime": "4.3.0",
  1316. "System.Runtime.Extensions": "4.3.0",
  1317. "System.Threading": "4.3.0"
  1318. },
  1319. "compile": {
  1320. "ref/netstandard1.3/_._": {}
  1321. },
  1322. "runtime": {
  1323. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1324. }
  1325. },
  1326. "System.ComponentModel/4.3.0": {
  1327. "type": "package",
  1328. "dependencies": {
  1329. "System.Runtime": "4.3.0"
  1330. },
  1331. "compile": {
  1332. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1333. },
  1334. "runtime": {
  1335. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1336. }
  1337. },
  1338. "System.ComponentModel.Primitives/4.3.0": {
  1339. "type": "package",
  1340. "dependencies": {
  1341. "System.ComponentModel": "4.3.0",
  1342. "System.Resources.ResourceManager": "4.3.0",
  1343. "System.Runtime": "4.3.0"
  1344. },
  1345. "compile": {
  1346. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1347. },
  1348. "runtime": {
  1349. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1350. }
  1351. },
  1352. "System.ComponentModel.TypeConverter/4.3.0": {
  1353. "type": "package",
  1354. "dependencies": {
  1355. "System.Collections": "4.3.0",
  1356. "System.Collections.NonGeneric": "4.3.0",
  1357. "System.Collections.Specialized": "4.3.0",
  1358. "System.ComponentModel": "4.3.0",
  1359. "System.ComponentModel.Primitives": "4.3.0",
  1360. "System.Globalization": "4.3.0",
  1361. "System.Linq": "4.3.0",
  1362. "System.Reflection": "4.3.0",
  1363. "System.Reflection.Extensions": "4.3.0",
  1364. "System.Reflection.Primitives": "4.3.0",
  1365. "System.Reflection.TypeExtensions": "4.3.0",
  1366. "System.Resources.ResourceManager": "4.3.0",
  1367. "System.Runtime": "4.3.0",
  1368. "System.Runtime.Extensions": "4.3.0",
  1369. "System.Threading": "4.3.0"
  1370. },
  1371. "compile": {
  1372. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1373. },
  1374. "runtime": {
  1375. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1376. }
  1377. },
  1378. "System.Configuration.ConfigurationManager/4.7.0": {
  1379. "type": "package",
  1380. "dependencies": {
  1381. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1382. "System.Security.Permissions": "4.7.0"
  1383. },
  1384. "compile": {
  1385. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1386. },
  1387. "runtime": {
  1388. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1389. }
  1390. },
  1391. "System.Console/4.3.0": {
  1392. "type": "package",
  1393. "dependencies": {
  1394. "Microsoft.NETCore.Platforms": "1.1.0",
  1395. "Microsoft.NETCore.Targets": "1.1.0",
  1396. "System.IO": "4.3.0",
  1397. "System.Runtime": "4.3.0",
  1398. "System.Text.Encoding": "4.3.0"
  1399. },
  1400. "compile": {
  1401. "ref/netstandard1.3/System.Console.dll": {}
  1402. }
  1403. },
  1404. "System.Diagnostics.Debug/4.3.0": {
  1405. "type": "package",
  1406. "dependencies": {
  1407. "Microsoft.NETCore.Platforms": "1.1.0",
  1408. "Microsoft.NETCore.Targets": "1.1.0",
  1409. "System.Runtime": "4.3.0"
  1410. },
  1411. "compile": {
  1412. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1413. }
  1414. },
  1415. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1416. "type": "package",
  1417. "dependencies": {
  1418. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1419. },
  1420. "compile": {
  1421. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
  1422. },
  1423. "runtime": {
  1424. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
  1425. },
  1426. "build": {
  1427. "buildTransitive/netcoreapp3.1/_._": {}
  1428. }
  1429. },
  1430. "System.Diagnostics.Tools/4.3.0": {
  1431. "type": "package",
  1432. "dependencies": {
  1433. "Microsoft.NETCore.Platforms": "1.1.0",
  1434. "Microsoft.NETCore.Targets": "1.1.0",
  1435. "System.Runtime": "4.3.0"
  1436. },
  1437. "compile": {
  1438. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1439. }
  1440. },
  1441. "System.Diagnostics.Tracing/4.3.0": {
  1442. "type": "package",
  1443. "dependencies": {
  1444. "Microsoft.NETCore.Platforms": "1.1.0",
  1445. "Microsoft.NETCore.Targets": "1.1.0",
  1446. "System.Runtime": "4.3.0"
  1447. },
  1448. "compile": {
  1449. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1450. }
  1451. },
  1452. "System.Drawing.Common/4.7.0": {
  1453. "type": "package",
  1454. "dependencies": {
  1455. "Microsoft.NETCore.Platforms": "3.1.0",
  1456. "Microsoft.Win32.SystemEvents": "4.7.0"
  1457. },
  1458. "compile": {
  1459. "ref/netcoreapp3.0/_._": {}
  1460. },
  1461. "runtime": {
  1462. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1463. },
  1464. "runtimeTargets": {
  1465. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1466. "assetType": "runtime",
  1467. "rid": "unix"
  1468. },
  1469. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1470. "assetType": "runtime",
  1471. "rid": "win"
  1472. }
  1473. }
  1474. },
  1475. "System.Globalization/4.3.0": {
  1476. "type": "package",
  1477. "dependencies": {
  1478. "Microsoft.NETCore.Platforms": "1.1.0",
  1479. "Microsoft.NETCore.Targets": "1.1.0",
  1480. "System.Runtime": "4.3.0"
  1481. },
  1482. "compile": {
  1483. "ref/netstandard1.3/System.Globalization.dll": {}
  1484. }
  1485. },
  1486. "System.Globalization.Calendars/4.3.0": {
  1487. "type": "package",
  1488. "dependencies": {
  1489. "Microsoft.NETCore.Platforms": "1.1.0",
  1490. "Microsoft.NETCore.Targets": "1.1.0",
  1491. "System.Globalization": "4.3.0",
  1492. "System.Runtime": "4.3.0"
  1493. },
  1494. "compile": {
  1495. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1496. }
  1497. },
  1498. "System.Globalization.Extensions/4.3.0": {
  1499. "type": "package",
  1500. "dependencies": {
  1501. "Microsoft.NETCore.Platforms": "1.1.0",
  1502. "System.Globalization": "4.3.0",
  1503. "System.Resources.ResourceManager": "4.3.0",
  1504. "System.Runtime": "4.3.0",
  1505. "System.Runtime.Extensions": "4.3.0",
  1506. "System.Runtime.InteropServices": "4.3.0"
  1507. },
  1508. "compile": {
  1509. "ref/netstandard1.3/_._": {}
  1510. },
  1511. "runtimeTargets": {
  1512. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1513. "assetType": "runtime",
  1514. "rid": "unix"
  1515. },
  1516. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1517. "assetType": "runtime",
  1518. "rid": "win"
  1519. }
  1520. }
  1521. },
  1522. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  1523. "type": "package",
  1524. "dependencies": {
  1525. "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
  1526. "Microsoft.IdentityModel.Tokens": "6.10.0"
  1527. },
  1528. "compile": {
  1529. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1530. },
  1531. "runtime": {
  1532. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1533. }
  1534. },
  1535. "System.IO/4.3.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "Microsoft.NETCore.Platforms": "1.1.0",
  1539. "Microsoft.NETCore.Targets": "1.1.0",
  1540. "System.Runtime": "4.3.0",
  1541. "System.Text.Encoding": "4.3.0",
  1542. "System.Threading.Tasks": "4.3.0"
  1543. },
  1544. "compile": {
  1545. "ref/netstandard1.5/System.IO.dll": {}
  1546. }
  1547. },
  1548. "System.IO.Compression/4.3.0": {
  1549. "type": "package",
  1550. "dependencies": {
  1551. "Microsoft.NETCore.Platforms": "1.1.0",
  1552. "System.Buffers": "4.3.0",
  1553. "System.Collections": "4.3.0",
  1554. "System.Diagnostics.Debug": "4.3.0",
  1555. "System.IO": "4.3.0",
  1556. "System.Resources.ResourceManager": "4.3.0",
  1557. "System.Runtime": "4.3.0",
  1558. "System.Runtime.Extensions": "4.3.0",
  1559. "System.Runtime.Handles": "4.3.0",
  1560. "System.Runtime.InteropServices": "4.3.0",
  1561. "System.Text.Encoding": "4.3.0",
  1562. "System.Threading": "4.3.0",
  1563. "System.Threading.Tasks": "4.3.0",
  1564. "runtime.native.System": "4.3.0",
  1565. "runtime.native.System.IO.Compression": "4.3.0"
  1566. },
  1567. "compile": {
  1568. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1569. },
  1570. "runtimeTargets": {
  1571. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1572. "assetType": "runtime",
  1573. "rid": "unix"
  1574. },
  1575. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1576. "assetType": "runtime",
  1577. "rid": "win"
  1578. }
  1579. }
  1580. },
  1581. "System.IO.Compression.ZipFile/4.3.0": {
  1582. "type": "package",
  1583. "dependencies": {
  1584. "System.Buffers": "4.3.0",
  1585. "System.IO": "4.3.0",
  1586. "System.IO.Compression": "4.3.0",
  1587. "System.IO.FileSystem": "4.3.0",
  1588. "System.IO.FileSystem.Primitives": "4.3.0",
  1589. "System.Resources.ResourceManager": "4.3.0",
  1590. "System.Runtime": "4.3.0",
  1591. "System.Runtime.Extensions": "4.3.0",
  1592. "System.Text.Encoding": "4.3.0"
  1593. },
  1594. "compile": {
  1595. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1596. },
  1597. "runtime": {
  1598. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1599. }
  1600. },
  1601. "System.IO.FileSystem/4.3.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "Microsoft.NETCore.Platforms": "1.1.0",
  1605. "Microsoft.NETCore.Targets": "1.1.0",
  1606. "System.IO": "4.3.0",
  1607. "System.IO.FileSystem.Primitives": "4.3.0",
  1608. "System.Runtime": "4.3.0",
  1609. "System.Runtime.Handles": "4.3.0",
  1610. "System.Text.Encoding": "4.3.0",
  1611. "System.Threading.Tasks": "4.3.0"
  1612. },
  1613. "compile": {
  1614. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1615. }
  1616. },
  1617. "System.IO.FileSystem.Primitives/4.3.0": {
  1618. "type": "package",
  1619. "dependencies": {
  1620. "System.Runtime": "4.3.0"
  1621. },
  1622. "compile": {
  1623. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1624. },
  1625. "runtime": {
  1626. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1627. }
  1628. },
  1629. "System.Linq/4.3.0": {
  1630. "type": "package",
  1631. "dependencies": {
  1632. "System.Collections": "4.3.0",
  1633. "System.Diagnostics.Debug": "4.3.0",
  1634. "System.Resources.ResourceManager": "4.3.0",
  1635. "System.Runtime": "4.3.0",
  1636. "System.Runtime.Extensions": "4.3.0"
  1637. },
  1638. "compile": {
  1639. "ref/netstandard1.6/System.Linq.dll": {}
  1640. },
  1641. "runtime": {
  1642. "lib/netstandard1.6/System.Linq.dll": {}
  1643. }
  1644. },
  1645. "System.Linq.Expressions/4.3.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "System.Collections": "4.3.0",
  1649. "System.Diagnostics.Debug": "4.3.0",
  1650. "System.Globalization": "4.3.0",
  1651. "System.IO": "4.3.0",
  1652. "System.Linq": "4.3.0",
  1653. "System.ObjectModel": "4.3.0",
  1654. "System.Reflection": "4.3.0",
  1655. "System.Reflection.Emit": "4.3.0",
  1656. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1657. "System.Reflection.Emit.Lightweight": "4.3.0",
  1658. "System.Reflection.Extensions": "4.3.0",
  1659. "System.Reflection.Primitives": "4.3.0",
  1660. "System.Reflection.TypeExtensions": "4.3.0",
  1661. "System.Resources.ResourceManager": "4.3.0",
  1662. "System.Runtime": "4.3.0",
  1663. "System.Runtime.Extensions": "4.3.0",
  1664. "System.Threading": "4.3.0"
  1665. },
  1666. "compile": {
  1667. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1668. },
  1669. "runtime": {
  1670. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1671. }
  1672. },
  1673. "System.Memory/4.5.4": {
  1674. "type": "package",
  1675. "compile": {
  1676. "ref/netcoreapp2.1/_._": {}
  1677. },
  1678. "runtime": {
  1679. "lib/netcoreapp2.1/_._": {}
  1680. }
  1681. },
  1682. "System.Net.Http/4.3.4": {
  1683. "type": "package",
  1684. "dependencies": {
  1685. "Microsoft.NETCore.Platforms": "1.1.1",
  1686. "System.Collections": "4.3.0",
  1687. "System.Diagnostics.Debug": "4.3.0",
  1688. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1689. "System.Diagnostics.Tracing": "4.3.0",
  1690. "System.Globalization": "4.3.0",
  1691. "System.Globalization.Extensions": "4.3.0",
  1692. "System.IO": "4.3.0",
  1693. "System.IO.FileSystem": "4.3.0",
  1694. "System.Net.Primitives": "4.3.0",
  1695. "System.Resources.ResourceManager": "4.3.0",
  1696. "System.Runtime": "4.3.0",
  1697. "System.Runtime.Extensions": "4.3.0",
  1698. "System.Runtime.Handles": "4.3.0",
  1699. "System.Runtime.InteropServices": "4.3.0",
  1700. "System.Security.Cryptography.Algorithms": "4.3.0",
  1701. "System.Security.Cryptography.Encoding": "4.3.0",
  1702. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1703. "System.Security.Cryptography.Primitives": "4.3.0",
  1704. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1705. "System.Text.Encoding": "4.3.0",
  1706. "System.Threading": "4.3.0",
  1707. "System.Threading.Tasks": "4.3.0",
  1708. "runtime.native.System": "4.3.0",
  1709. "runtime.native.System.Net.Http": "4.3.0",
  1710. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1711. },
  1712. "compile": {
  1713. "ref/netstandard1.3/System.Net.Http.dll": {}
  1714. },
  1715. "runtimeTargets": {
  1716. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1717. "assetType": "runtime",
  1718. "rid": "unix"
  1719. },
  1720. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1721. "assetType": "runtime",
  1722. "rid": "win"
  1723. }
  1724. }
  1725. },
  1726. "System.Net.Primitives/4.3.0": {
  1727. "type": "package",
  1728. "dependencies": {
  1729. "Microsoft.NETCore.Platforms": "1.1.0",
  1730. "Microsoft.NETCore.Targets": "1.1.0",
  1731. "System.Runtime": "4.3.0",
  1732. "System.Runtime.Handles": "4.3.0"
  1733. },
  1734. "compile": {
  1735. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1736. }
  1737. },
  1738. "System.Net.Sockets/4.3.0": {
  1739. "type": "package",
  1740. "dependencies": {
  1741. "Microsoft.NETCore.Platforms": "1.1.0",
  1742. "Microsoft.NETCore.Targets": "1.1.0",
  1743. "System.IO": "4.3.0",
  1744. "System.Net.Primitives": "4.3.0",
  1745. "System.Runtime": "4.3.0",
  1746. "System.Threading.Tasks": "4.3.0"
  1747. },
  1748. "compile": {
  1749. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1750. }
  1751. },
  1752. "System.ObjectModel/4.3.0": {
  1753. "type": "package",
  1754. "dependencies": {
  1755. "System.Collections": "4.3.0",
  1756. "System.Diagnostics.Debug": "4.3.0",
  1757. "System.Resources.ResourceManager": "4.3.0",
  1758. "System.Runtime": "4.3.0",
  1759. "System.Threading": "4.3.0"
  1760. },
  1761. "compile": {
  1762. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1763. },
  1764. "runtime": {
  1765. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1766. }
  1767. },
  1768. "System.Reflection/4.3.0": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "Microsoft.NETCore.Platforms": "1.1.0",
  1772. "Microsoft.NETCore.Targets": "1.1.0",
  1773. "System.IO": "4.3.0",
  1774. "System.Reflection.Primitives": "4.3.0",
  1775. "System.Runtime": "4.3.0"
  1776. },
  1777. "compile": {
  1778. "ref/netstandard1.5/System.Reflection.dll": {}
  1779. }
  1780. },
  1781. "System.Reflection.Emit/4.7.0": {
  1782. "type": "package",
  1783. "compile": {
  1784. "ref/netcoreapp2.0/_._": {}
  1785. },
  1786. "runtime": {
  1787. "lib/netcoreapp2.0/_._": {}
  1788. }
  1789. },
  1790. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1791. "type": "package",
  1792. "dependencies": {
  1793. "System.Reflection": "4.3.0",
  1794. "System.Reflection.Primitives": "4.3.0",
  1795. "System.Runtime": "4.3.0"
  1796. },
  1797. "compile": {
  1798. "ref/netstandard1.0/_._": {}
  1799. },
  1800. "runtime": {
  1801. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1802. }
  1803. },
  1804. "System.Reflection.Emit.Lightweight/4.3.0": {
  1805. "type": "package",
  1806. "dependencies": {
  1807. "System.Reflection": "4.3.0",
  1808. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1809. "System.Reflection.Primitives": "4.3.0",
  1810. "System.Runtime": "4.3.0"
  1811. },
  1812. "compile": {
  1813. "ref/netstandard1.0/_._": {}
  1814. },
  1815. "runtime": {
  1816. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1817. }
  1818. },
  1819. "System.Reflection.Extensions/4.3.0": {
  1820. "type": "package",
  1821. "dependencies": {
  1822. "Microsoft.NETCore.Platforms": "1.1.0",
  1823. "Microsoft.NETCore.Targets": "1.1.0",
  1824. "System.Reflection": "4.3.0",
  1825. "System.Runtime": "4.3.0"
  1826. },
  1827. "compile": {
  1828. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1829. }
  1830. },
  1831. "System.Reflection.Metadata/1.6.0": {
  1832. "type": "package",
  1833. "compile": {
  1834. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1835. },
  1836. "runtime": {
  1837. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1838. }
  1839. },
  1840. "System.Reflection.Primitives/4.3.0": {
  1841. "type": "package",
  1842. "dependencies": {
  1843. "Microsoft.NETCore.Platforms": "1.1.0",
  1844. "Microsoft.NETCore.Targets": "1.1.0",
  1845. "System.Runtime": "4.3.0"
  1846. },
  1847. "compile": {
  1848. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1849. }
  1850. },
  1851. "System.Reflection.TypeExtensions/4.3.0": {
  1852. "type": "package",
  1853. "dependencies": {
  1854. "System.Reflection": "4.3.0",
  1855. "System.Runtime": "4.3.0"
  1856. },
  1857. "compile": {
  1858. "ref/netstandard1.5/_._": {}
  1859. },
  1860. "runtime": {
  1861. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1862. }
  1863. },
  1864. "System.Resources.Extensions/4.6.0": {
  1865. "type": "package",
  1866. "compile": {
  1867. "ref/netstandard2.0/System.Resources.Extensions.dll": {}
  1868. },
  1869. "runtime": {
  1870. "lib/netstandard2.0/System.Resources.Extensions.dll": {}
  1871. }
  1872. },
  1873. "System.Resources.ResourceManager/4.3.0": {
  1874. "type": "package",
  1875. "dependencies": {
  1876. "Microsoft.NETCore.Platforms": "1.1.0",
  1877. "Microsoft.NETCore.Targets": "1.1.0",
  1878. "System.Globalization": "4.3.0",
  1879. "System.Reflection": "4.3.0",
  1880. "System.Runtime": "4.3.0"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1884. }
  1885. },
  1886. "System.Runtime/4.3.0": {
  1887. "type": "package",
  1888. "dependencies": {
  1889. "Microsoft.NETCore.Platforms": "1.1.0",
  1890. "Microsoft.NETCore.Targets": "1.1.0"
  1891. },
  1892. "compile": {
  1893. "ref/netstandard1.5/System.Runtime.dll": {}
  1894. }
  1895. },
  1896. "System.Runtime.Caching/4.7.0": {
  1897. "type": "package",
  1898. "dependencies": {
  1899. "System.Configuration.ConfigurationManager": "4.7.0"
  1900. },
  1901. "compile": {
  1902. "ref/netstandard2.0/_._": {}
  1903. },
  1904. "runtime": {
  1905. "lib/netstandard2.0/System.Runtime.Caching.dll": {}
  1906. },
  1907. "runtimeTargets": {
  1908. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1909. "assetType": "runtime",
  1910. "rid": "win"
  1911. }
  1912. }
  1913. },
  1914. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1915. "type": "package",
  1916. "compile": {
  1917. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1918. },
  1919. "runtime": {
  1920. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1921. },
  1922. "build": {
  1923. "buildTransitive/netcoreapp3.1/_._": {}
  1924. }
  1925. },
  1926. "System.Runtime.Extensions/4.3.0": {
  1927. "type": "package",
  1928. "dependencies": {
  1929. "Microsoft.NETCore.Platforms": "1.1.0",
  1930. "Microsoft.NETCore.Targets": "1.1.0",
  1931. "System.Runtime": "4.3.0"
  1932. },
  1933. "compile": {
  1934. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1935. }
  1936. },
  1937. "System.Runtime.Handles/4.3.0": {
  1938. "type": "package",
  1939. "dependencies": {
  1940. "Microsoft.NETCore.Platforms": "1.1.0",
  1941. "Microsoft.NETCore.Targets": "1.1.0",
  1942. "System.Runtime": "4.3.0"
  1943. },
  1944. "compile": {
  1945. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1946. }
  1947. },
  1948. "System.Runtime.InteropServices/4.3.0": {
  1949. "type": "package",
  1950. "dependencies": {
  1951. "Microsoft.NETCore.Platforms": "1.1.0",
  1952. "Microsoft.NETCore.Targets": "1.1.0",
  1953. "System.Reflection": "4.3.0",
  1954. "System.Reflection.Primitives": "4.3.0",
  1955. "System.Runtime": "4.3.0",
  1956. "System.Runtime.Handles": "4.3.0"
  1957. },
  1958. "compile": {
  1959. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  1960. }
  1961. },
  1962. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1963. "type": "package",
  1964. "dependencies": {
  1965. "System.Reflection": "4.3.0",
  1966. "System.Reflection.Extensions": "4.3.0",
  1967. "System.Resources.ResourceManager": "4.3.0",
  1968. "System.Runtime": "4.3.0",
  1969. "System.Runtime.InteropServices": "4.3.0",
  1970. "System.Threading": "4.3.0",
  1971. "runtime.native.System": "4.3.0"
  1972. },
  1973. "compile": {
  1974. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1975. },
  1976. "runtime": {
  1977. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1978. },
  1979. "runtimeTargets": {
  1980. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1981. "assetType": "runtime",
  1982. "rid": "unix"
  1983. },
  1984. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1985. "assetType": "runtime",
  1986. "rid": "win"
  1987. }
  1988. }
  1989. },
  1990. "System.Runtime.Numerics/4.3.0": {
  1991. "type": "package",
  1992. "dependencies": {
  1993. "System.Globalization": "4.3.0",
  1994. "System.Resources.ResourceManager": "4.3.0",
  1995. "System.Runtime": "4.3.0",
  1996. "System.Runtime.Extensions": "4.3.0"
  1997. },
  1998. "compile": {
  1999. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2000. },
  2001. "runtime": {
  2002. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2003. }
  2004. },
  2005. "System.Runtime.Serialization.Formatters/4.3.0": {
  2006. "type": "package",
  2007. "dependencies": {
  2008. "System.Collections": "4.3.0",
  2009. "System.Reflection": "4.3.0",
  2010. "System.Resources.ResourceManager": "4.3.0",
  2011. "System.Runtime": "4.3.0",
  2012. "System.Runtime.Serialization.Primitives": "4.3.0"
  2013. },
  2014. "compile": {
  2015. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  2016. },
  2017. "runtime": {
  2018. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2019. }
  2020. },
  2021. "System.Runtime.Serialization.Primitives/4.3.0": {
  2022. "type": "package",
  2023. "dependencies": {
  2024. "System.Resources.ResourceManager": "4.3.0",
  2025. "System.Runtime": "4.3.0"
  2026. },
  2027. "compile": {
  2028. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2029. },
  2030. "runtime": {
  2031. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2032. }
  2033. },
  2034. "System.Security.AccessControl/4.7.0": {
  2035. "type": "package",
  2036. "dependencies": {
  2037. "Microsoft.NETCore.Platforms": "3.1.0",
  2038. "System.Security.Principal.Windows": "4.7.0"
  2039. },
  2040. "compile": {
  2041. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2042. },
  2043. "runtime": {
  2044. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2045. },
  2046. "runtimeTargets": {
  2047. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2048. "assetType": "runtime",
  2049. "rid": "win"
  2050. }
  2051. }
  2052. },
  2053. "System.Security.Cryptography.Algorithms/4.3.0": {
  2054. "type": "package",
  2055. "dependencies": {
  2056. "Microsoft.NETCore.Platforms": "1.1.0",
  2057. "System.Collections": "4.3.0",
  2058. "System.IO": "4.3.0",
  2059. "System.Resources.ResourceManager": "4.3.0",
  2060. "System.Runtime": "4.3.0",
  2061. "System.Runtime.Extensions": "4.3.0",
  2062. "System.Runtime.Handles": "4.3.0",
  2063. "System.Runtime.InteropServices": "4.3.0",
  2064. "System.Runtime.Numerics": "4.3.0",
  2065. "System.Security.Cryptography.Encoding": "4.3.0",
  2066. "System.Security.Cryptography.Primitives": "4.3.0",
  2067. "System.Text.Encoding": "4.3.0",
  2068. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2069. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2070. },
  2071. "compile": {
  2072. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2073. },
  2074. "runtimeTargets": {
  2075. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2076. "assetType": "runtime",
  2077. "rid": "osx"
  2078. },
  2079. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2080. "assetType": "runtime",
  2081. "rid": "unix"
  2082. },
  2083. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2084. "assetType": "runtime",
  2085. "rid": "win"
  2086. }
  2087. }
  2088. },
  2089. "System.Security.Cryptography.Cng/4.7.0": {
  2090. "type": "package",
  2091. "compile": {
  2092. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {}
  2093. },
  2094. "runtime": {
  2095. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {}
  2096. },
  2097. "runtimeTargets": {
  2098. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2099. "assetType": "runtime",
  2100. "rid": "win"
  2101. }
  2102. }
  2103. },
  2104. "System.Security.Cryptography.Csp/4.3.0": {
  2105. "type": "package",
  2106. "dependencies": {
  2107. "Microsoft.NETCore.Platforms": "1.1.0",
  2108. "System.IO": "4.3.0",
  2109. "System.Reflection": "4.3.0",
  2110. "System.Resources.ResourceManager": "4.3.0",
  2111. "System.Runtime": "4.3.0",
  2112. "System.Runtime.Extensions": "4.3.0",
  2113. "System.Runtime.Handles": "4.3.0",
  2114. "System.Runtime.InteropServices": "4.3.0",
  2115. "System.Security.Cryptography.Algorithms": "4.3.0",
  2116. "System.Security.Cryptography.Encoding": "4.3.0",
  2117. "System.Security.Cryptography.Primitives": "4.3.0",
  2118. "System.Text.Encoding": "4.3.0",
  2119. "System.Threading": "4.3.0"
  2120. },
  2121. "compile": {
  2122. "ref/netstandard1.3/_._": {}
  2123. },
  2124. "runtimeTargets": {
  2125. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2126. "assetType": "runtime",
  2127. "rid": "unix"
  2128. },
  2129. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2130. "assetType": "runtime",
  2131. "rid": "win"
  2132. }
  2133. }
  2134. },
  2135. "System.Security.Cryptography.Encoding/4.3.0": {
  2136. "type": "package",
  2137. "dependencies": {
  2138. "Microsoft.NETCore.Platforms": "1.1.0",
  2139. "System.Collections": "4.3.0",
  2140. "System.Collections.Concurrent": "4.3.0",
  2141. "System.Linq": "4.3.0",
  2142. "System.Resources.ResourceManager": "4.3.0",
  2143. "System.Runtime": "4.3.0",
  2144. "System.Runtime.Extensions": "4.3.0",
  2145. "System.Runtime.Handles": "4.3.0",
  2146. "System.Runtime.InteropServices": "4.3.0",
  2147. "System.Security.Cryptography.Primitives": "4.3.0",
  2148. "System.Text.Encoding": "4.3.0",
  2149. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2150. },
  2151. "compile": {
  2152. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2153. },
  2154. "runtimeTargets": {
  2155. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2156. "assetType": "runtime",
  2157. "rid": "unix"
  2158. },
  2159. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2160. "assetType": "runtime",
  2161. "rid": "win"
  2162. }
  2163. }
  2164. },
  2165. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2166. "type": "package",
  2167. "dependencies": {
  2168. "System.Collections": "4.3.0",
  2169. "System.IO": "4.3.0",
  2170. "System.Resources.ResourceManager": "4.3.0",
  2171. "System.Runtime": "4.3.0",
  2172. "System.Runtime.Extensions": "4.3.0",
  2173. "System.Runtime.Handles": "4.3.0",
  2174. "System.Runtime.InteropServices": "4.3.0",
  2175. "System.Runtime.Numerics": "4.3.0",
  2176. "System.Security.Cryptography.Algorithms": "4.3.0",
  2177. "System.Security.Cryptography.Encoding": "4.3.0",
  2178. "System.Security.Cryptography.Primitives": "4.3.0",
  2179. "System.Text.Encoding": "4.3.0",
  2180. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2181. },
  2182. "compile": {
  2183. "ref/netstandard1.6/_._": {}
  2184. },
  2185. "runtime": {
  2186. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2187. },
  2188. "runtimeTargets": {
  2189. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2190. "assetType": "runtime",
  2191. "rid": "unix"
  2192. }
  2193. }
  2194. },
  2195. "System.Security.Cryptography.Pkcs/4.7.0": {
  2196. "type": "package",
  2197. "dependencies": {
  2198. "System.Security.Cryptography.Cng": "4.7.0"
  2199. },
  2200. "compile": {
  2201. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {}
  2202. },
  2203. "runtime": {
  2204. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {}
  2205. },
  2206. "runtimeTargets": {
  2207. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2208. "assetType": "runtime",
  2209. "rid": "win"
  2210. }
  2211. }
  2212. },
  2213. "System.Security.Cryptography.Primitives/4.3.0": {
  2214. "type": "package",
  2215. "dependencies": {
  2216. "System.Diagnostics.Debug": "4.3.0",
  2217. "System.Globalization": "4.3.0",
  2218. "System.IO": "4.3.0",
  2219. "System.Resources.ResourceManager": "4.3.0",
  2220. "System.Runtime": "4.3.0",
  2221. "System.Threading": "4.3.0",
  2222. "System.Threading.Tasks": "4.3.0"
  2223. },
  2224. "compile": {
  2225. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2226. },
  2227. "runtime": {
  2228. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2229. }
  2230. },
  2231. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2232. "type": "package",
  2233. "compile": {
  2234. "ref/netstandard2.0/_._": {}
  2235. },
  2236. "runtime": {
  2237. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2238. },
  2239. "runtimeTargets": {
  2240. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2241. "assetType": "runtime",
  2242. "rid": "win"
  2243. }
  2244. }
  2245. },
  2246. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2247. "type": "package",
  2248. "dependencies": {
  2249. "Microsoft.NETCore.Platforms": "1.1.0",
  2250. "System.Collections": "4.3.0",
  2251. "System.Diagnostics.Debug": "4.3.0",
  2252. "System.Globalization": "4.3.0",
  2253. "System.Globalization.Calendars": "4.3.0",
  2254. "System.IO": "4.3.0",
  2255. "System.IO.FileSystem": "4.3.0",
  2256. "System.IO.FileSystem.Primitives": "4.3.0",
  2257. "System.Resources.ResourceManager": "4.3.0",
  2258. "System.Runtime": "4.3.0",
  2259. "System.Runtime.Extensions": "4.3.0",
  2260. "System.Runtime.Handles": "4.3.0",
  2261. "System.Runtime.InteropServices": "4.3.0",
  2262. "System.Runtime.Numerics": "4.3.0",
  2263. "System.Security.Cryptography.Algorithms": "4.3.0",
  2264. "System.Security.Cryptography.Cng": "4.3.0",
  2265. "System.Security.Cryptography.Csp": "4.3.0",
  2266. "System.Security.Cryptography.Encoding": "4.3.0",
  2267. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2268. "System.Security.Cryptography.Primitives": "4.3.0",
  2269. "System.Text.Encoding": "4.3.0",
  2270. "System.Threading": "4.3.0",
  2271. "runtime.native.System": "4.3.0",
  2272. "runtime.native.System.Net.Http": "4.3.0",
  2273. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2274. },
  2275. "compile": {
  2276. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2277. },
  2278. "runtimeTargets": {
  2279. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2280. "assetType": "runtime",
  2281. "rid": "unix"
  2282. },
  2283. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2284. "assetType": "runtime",
  2285. "rid": "win"
  2286. }
  2287. }
  2288. },
  2289. "System.Security.Cryptography.Xml/4.7.0": {
  2290. "type": "package",
  2291. "dependencies": {
  2292. "System.Security.Cryptography.Pkcs": "4.7.0",
  2293. "System.Security.Permissions": "4.7.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  2297. },
  2298. "runtime": {
  2299. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  2300. }
  2301. },
  2302. "System.Security.Permissions/4.7.0": {
  2303. "type": "package",
  2304. "dependencies": {
  2305. "System.Security.AccessControl": "4.7.0",
  2306. "System.Windows.Extensions": "4.7.0"
  2307. },
  2308. "compile": {
  2309. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2310. },
  2311. "runtime": {
  2312. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2313. }
  2314. },
  2315. "System.Security.Principal.Windows/4.7.0": {
  2316. "type": "package",
  2317. "compile": {
  2318. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2319. },
  2320. "runtime": {
  2321. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2322. },
  2323. "runtimeTargets": {
  2324. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2325. "assetType": "runtime",
  2326. "rid": "unix"
  2327. },
  2328. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2329. "assetType": "runtime",
  2330. "rid": "win"
  2331. }
  2332. }
  2333. },
  2334. "System.Text.Encoding/4.3.0": {
  2335. "type": "package",
  2336. "dependencies": {
  2337. "Microsoft.NETCore.Platforms": "1.1.0",
  2338. "Microsoft.NETCore.Targets": "1.1.0",
  2339. "System.Runtime": "4.3.0"
  2340. },
  2341. "compile": {
  2342. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2343. }
  2344. },
  2345. "System.Text.Encoding.CodePages/4.7.0": {
  2346. "type": "package",
  2347. "dependencies": {
  2348. "Microsoft.NETCore.Platforms": "3.1.0"
  2349. },
  2350. "compile": {
  2351. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2352. },
  2353. "runtime": {
  2354. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2355. },
  2356. "runtimeTargets": {
  2357. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2358. "assetType": "runtime",
  2359. "rid": "win"
  2360. }
  2361. }
  2362. },
  2363. "System.Text.Encoding.Extensions/4.3.0": {
  2364. "type": "package",
  2365. "dependencies": {
  2366. "Microsoft.NETCore.Platforms": "1.1.0",
  2367. "Microsoft.NETCore.Targets": "1.1.0",
  2368. "System.Runtime": "4.3.0",
  2369. "System.Text.Encoding": "4.3.0"
  2370. },
  2371. "compile": {
  2372. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2373. }
  2374. },
  2375. "System.Text.Encodings.Web/6.0.0": {
  2376. "type": "package",
  2377. "dependencies": {
  2378. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2379. },
  2380. "compile": {
  2381. "lib/net6.0/System.Text.Encodings.Web.dll": {}
  2382. },
  2383. "runtime": {
  2384. "lib/net6.0/System.Text.Encodings.Web.dll": {}
  2385. },
  2386. "build": {
  2387. "buildTransitive/netcoreapp3.1/_._": {}
  2388. },
  2389. "runtimeTargets": {
  2390. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  2391. "assetType": "runtime",
  2392. "rid": "browser"
  2393. }
  2394. }
  2395. },
  2396. "System.Text.Json/6.0.0": {
  2397. "type": "package",
  2398. "dependencies": {
  2399. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2400. "System.Text.Encodings.Web": "6.0.0"
  2401. },
  2402. "compile": {
  2403. "lib/net6.0/System.Text.Json.dll": {}
  2404. },
  2405. "runtime": {
  2406. "lib/net6.0/System.Text.Json.dll": {}
  2407. },
  2408. "build": {
  2409. "buildTransitive/netcoreapp3.1/_._": {}
  2410. }
  2411. },
  2412. "System.Text.RegularExpressions/4.3.0": {
  2413. "type": "package",
  2414. "dependencies": {
  2415. "System.Runtime": "4.3.0"
  2416. },
  2417. "compile": {
  2418. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2419. },
  2420. "runtime": {
  2421. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2422. }
  2423. },
  2424. "System.Threading/4.3.0": {
  2425. "type": "package",
  2426. "dependencies": {
  2427. "System.Runtime": "4.3.0",
  2428. "System.Threading.Tasks": "4.3.0"
  2429. },
  2430. "compile": {
  2431. "ref/netstandard1.3/System.Threading.dll": {}
  2432. },
  2433. "runtime": {
  2434. "lib/netstandard1.3/System.Threading.dll": {}
  2435. }
  2436. },
  2437. "System.Threading.Tasks/4.3.0": {
  2438. "type": "package",
  2439. "dependencies": {
  2440. "Microsoft.NETCore.Platforms": "1.1.0",
  2441. "Microsoft.NETCore.Targets": "1.1.0",
  2442. "System.Runtime": "4.3.0"
  2443. },
  2444. "compile": {
  2445. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2446. }
  2447. },
  2448. "System.Threading.Tasks.Dataflow/4.9.0": {
  2449. "type": "package",
  2450. "compile": {
  2451. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": {}
  2452. },
  2453. "runtime": {
  2454. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": {}
  2455. }
  2456. },
  2457. "System.Threading.Tasks.Extensions/4.5.2": {
  2458. "type": "package",
  2459. "compile": {
  2460. "ref/netcoreapp2.1/_._": {}
  2461. },
  2462. "runtime": {
  2463. "lib/netcoreapp2.1/_._": {}
  2464. }
  2465. },
  2466. "System.Threading.Timer/4.3.0": {
  2467. "type": "package",
  2468. "dependencies": {
  2469. "Microsoft.NETCore.Platforms": "1.1.0",
  2470. "Microsoft.NETCore.Targets": "1.1.0",
  2471. "System.Runtime": "4.3.0"
  2472. },
  2473. "compile": {
  2474. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2475. }
  2476. },
  2477. "System.Windows.Extensions/4.7.0": {
  2478. "type": "package",
  2479. "dependencies": {
  2480. "System.Drawing.Common": "4.7.0"
  2481. },
  2482. "compile": {
  2483. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2484. },
  2485. "runtime": {
  2486. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2487. },
  2488. "runtimeTargets": {
  2489. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2490. "assetType": "runtime",
  2491. "rid": "win"
  2492. }
  2493. }
  2494. },
  2495. "System.Xml.ReaderWriter/4.3.0": {
  2496. "type": "package",
  2497. "dependencies": {
  2498. "System.Collections": "4.3.0",
  2499. "System.Diagnostics.Debug": "4.3.0",
  2500. "System.Globalization": "4.3.0",
  2501. "System.IO": "4.3.0",
  2502. "System.IO.FileSystem": "4.3.0",
  2503. "System.IO.FileSystem.Primitives": "4.3.0",
  2504. "System.Resources.ResourceManager": "4.3.0",
  2505. "System.Runtime": "4.3.0",
  2506. "System.Runtime.Extensions": "4.3.0",
  2507. "System.Runtime.InteropServices": "4.3.0",
  2508. "System.Text.Encoding": "4.3.0",
  2509. "System.Text.Encoding.Extensions": "4.3.0",
  2510. "System.Text.RegularExpressions": "4.3.0",
  2511. "System.Threading.Tasks": "4.3.0",
  2512. "System.Threading.Tasks.Extensions": "4.3.0"
  2513. },
  2514. "compile": {
  2515. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2516. },
  2517. "runtime": {
  2518. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2519. }
  2520. },
  2521. "System.Xml.XDocument/4.3.0": {
  2522. "type": "package",
  2523. "dependencies": {
  2524. "System.Collections": "4.3.0",
  2525. "System.Diagnostics.Debug": "4.3.0",
  2526. "System.Diagnostics.Tools": "4.3.0",
  2527. "System.Globalization": "4.3.0",
  2528. "System.IO": "4.3.0",
  2529. "System.Reflection": "4.3.0",
  2530. "System.Resources.ResourceManager": "4.3.0",
  2531. "System.Runtime": "4.3.0",
  2532. "System.Runtime.Extensions": "4.3.0",
  2533. "System.Text.Encoding": "4.3.0",
  2534. "System.Threading": "4.3.0",
  2535. "System.Xml.ReaderWriter": "4.3.0"
  2536. },
  2537. "compile": {
  2538. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2539. },
  2540. "runtime": {
  2541. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2542. }
  2543. },
  2544. "System.Xml.XmlDocument/4.3.0": {
  2545. "type": "package",
  2546. "dependencies": {
  2547. "System.Collections": "4.3.0",
  2548. "System.Diagnostics.Debug": "4.3.0",
  2549. "System.Globalization": "4.3.0",
  2550. "System.IO": "4.3.0",
  2551. "System.Resources.ResourceManager": "4.3.0",
  2552. "System.Runtime": "4.3.0",
  2553. "System.Runtime.Extensions": "4.3.0",
  2554. "System.Text.Encoding": "4.3.0",
  2555. "System.Threading": "4.3.0",
  2556. "System.Xml.ReaderWriter": "4.3.0"
  2557. },
  2558. "compile": {
  2559. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2560. },
  2561. "runtime": {
  2562. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2563. }
  2564. }
  2565. }
  2566. },
  2567. "libraries": {
  2568. "AutoMapper/10.1.1": {
  2569. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  2570. "type": "package",
  2571. "path": "automapper/10.1.1",
  2572. "files": [
  2573. ".nupkg.metadata",
  2574. ".signature.p7s",
  2575. "automapper.10.1.1.nupkg.sha512",
  2576. "automapper.nuspec",
  2577. "icon.png",
  2578. "lib/net461/AutoMapper.dll",
  2579. "lib/net461/AutoMapper.xml",
  2580. "lib/netstandard2.0/AutoMapper.dll",
  2581. "lib/netstandard2.0/AutoMapper.xml"
  2582. ]
  2583. },
  2584. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  2585. "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  2586. "type": "package",
  2587. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  2588. "files": [
  2589. ".nupkg.metadata",
  2590. ".signature.p7s",
  2591. "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512",
  2592. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2593. "icon.png",
  2594. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2595. ]
  2596. },
  2597. "BouncyCastle/1.8.6.1": {
  2598. "sha512": "rkqpuKmJkdcfTMBkIj1b5nMdBAWKwAyh+I/BQYeqqSD2jkIlhwc9qBNKmSbnpmmm5c29qHZGLpvBSTNWvDLtQA==",
  2599. "type": "package",
  2600. "path": "bouncycastle/1.8.6.1",
  2601. "files": [
  2602. ".nupkg.metadata",
  2603. ".signature.p7s",
  2604. "README.md",
  2605. "bouncycastle.1.8.6.1.nupkg.sha512",
  2606. "bouncycastle.nuspec",
  2607. "lib/BouncyCastle.Crypto.dll"
  2608. ]
  2609. },
  2610. "Humanizer.Core/2.8.26": {
  2611. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  2612. "type": "package",
  2613. "path": "humanizer.core/2.8.26",
  2614. "files": [
  2615. ".nupkg.metadata",
  2616. ".signature.p7s",
  2617. "humanizer.core.2.8.26.nupkg.sha512",
  2618. "humanizer.core.nuspec",
  2619. "lib/netstandard1.0/Humanizer.dll",
  2620. "lib/netstandard1.0/Humanizer.xml",
  2621. "lib/netstandard2.0/Humanizer.dll",
  2622. "lib/netstandard2.0/Humanizer.xml",
  2623. "logo.png"
  2624. ]
  2625. },
  2626. "iTextSharp/5.5.13.2": {
  2627. "sha512": "8m9oT1nh9F4Z1tzWUey/8lEzZtMGFCDXQY5+8/SSmPgUWAAAWniRo8pimKUZyteNqJr5vtFBxjAhRwLxG7Q0zQ==",
  2628. "type": "package",
  2629. "path": "itextsharp/5.5.13.2",
  2630. "files": [
  2631. ".nupkg.metadata",
  2632. ".signature.p7s",
  2633. "LICENSE.md",
  2634. "gnu-agpl-v3.0.md",
  2635. "itextsharp.5.5.13.2.nupkg.sha512",
  2636. "itextsharp.nuspec",
  2637. "lib/iTextSharp.xml",
  2638. "lib/itextsharp.dll",
  2639. "notice.txt"
  2640. ]
  2641. },
  2642. "MediatR/9.0.0": {
  2643. "sha512": "8b3UYNxegHVYcJMG2zH8wn+YqxLvXG+eMfj0cMCq/jTW72p6O3PCKMkrIv0mqyxdW7bA4gblsocw7n+/9Akg5g==",
  2644. "type": "package",
  2645. "path": "mediatr/9.0.0",
  2646. "files": [
  2647. ".nupkg.metadata",
  2648. ".signature.p7s",
  2649. "gradient_128x128.png",
  2650. "lib/net461/MediatR.dll",
  2651. "lib/net461/MediatR.xml",
  2652. "lib/netstandard2.0/MediatR.dll",
  2653. "lib/netstandard2.0/MediatR.xml",
  2654. "lib/netstandard2.1/MediatR.dll",
  2655. "lib/netstandard2.1/MediatR.xml",
  2656. "mediatr.9.0.0.nupkg.sha512",
  2657. "mediatr.nuspec"
  2658. ]
  2659. },
  2660. "MediatR.Extensions.Microsoft.DependencyInjection/9.0.0": {
  2661. "sha512": "msreY4ogiPdIRWiCQVHQDytIQpsZCLWsixWPZ+Xs86KZrvtuiV8BDHbIT0kBmogynVYWNpspb3caw+86YU8L6w==",
  2662. "type": "package",
  2663. "path": "mediatr.extensions.microsoft.dependencyinjection/9.0.0",
  2664. "files": [
  2665. ".nupkg.metadata",
  2666. ".signature.p7s",
  2667. "gradient_128x128.png",
  2668. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll",
  2669. "mediatr.extensions.microsoft.dependencyinjection.9.0.0.nupkg.sha512",
  2670. "mediatr.extensions.microsoft.dependencyinjection.nuspec"
  2671. ]
  2672. },
  2673. "Microsoft.AspNet.WebApi.Client/5.2.7": {
  2674. "sha512": "/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==",
  2675. "type": "package",
  2676. "path": "microsoft.aspnet.webapi.client/5.2.7",
  2677. "files": [
  2678. ".nupkg.metadata",
  2679. ".signature.p7s",
  2680. "lib/net45/System.Net.Http.Formatting.dll",
  2681. "lib/net45/System.Net.Http.Formatting.xml",
  2682. "lib/netstandard2.0/System.Net.Http.Formatting.dll",
  2683. "lib/netstandard2.0/System.Net.Http.Formatting.xml",
  2684. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll",
  2685. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml",
  2686. "microsoft.aspnet.webapi.client.5.2.7.nupkg.sha512",
  2687. "microsoft.aspnet.webapi.client.nuspec"
  2688. ]
  2689. },
  2690. "Microsoft.AspNet.WebApi.Core/5.2.7": {
  2691. "sha512": "gM2QzApnHdy1FbKUJ/ROGJSm69P2G+HMoVd/t5Vq1O/zZ5TI4IKC9PX6nUfRt/NHgebZOIWHpB4/4K4inuy4yQ==",
  2692. "type": "package",
  2693. "path": "microsoft.aspnet.webapi.core/5.2.7",
  2694. "files": [
  2695. ".nupkg.metadata",
  2696. ".signature.p7s",
  2697. "Content/web.config.transform",
  2698. "lib/net45/System.Web.Http.dll",
  2699. "lib/net45/System.Web.Http.xml",
  2700. "microsoft.aspnet.webapi.core.5.2.7.nupkg.sha512",
  2701. "microsoft.aspnet.webapi.core.nuspec"
  2702. ]
  2703. },
  2704. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.0": {
  2705. "sha512": "eIhpX25uUn33Ornnh718V2G/nESvk3TNX2FjTarv634GLfE50Fhz2geJ/QYpSmFaUIQ1hkZPfd9i0LcpZ9bfLQ==",
  2706. "type": "package",
  2707. "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.0",
  2708. "files": [
  2709. ".nupkg.metadata",
  2710. ".signature.p7s",
  2711. "Icon.png",
  2712. "THIRD-PARTY-NOTICES.TXT",
  2713. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  2714. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  2715. "microsoft.aspnetcore.authentication.jwtbearer.6.0.0.nupkg.sha512",
  2716. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  2717. ]
  2718. },
  2719. "Microsoft.AspNetCore.Cryptography.Internal/6.0.0": {
  2720. "sha512": "ZWFBiHwkmipr+7t3MEPa7oB/iE8Kf5wvUptn9AXj7P7l/tGHEmRb1606Mlh/e2zkYwfjNGDH4Z5dUUlcnyccIw==",
  2721. "type": "package",
  2722. "path": "microsoft.aspnetcore.cryptography.internal/6.0.0",
  2723. "files": [
  2724. ".nupkg.metadata",
  2725. ".signature.p7s",
  2726. "Icon.png",
  2727. "THIRD-PARTY-NOTICES.TXT",
  2728. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2729. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2730. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2731. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2732. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2733. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2734. "microsoft.aspnetcore.cryptography.internal.6.0.0.nupkg.sha512",
  2735. "microsoft.aspnetcore.cryptography.internal.nuspec"
  2736. ]
  2737. },
  2738. "Microsoft.AspNetCore.Cryptography.KeyDerivation/6.0.0": {
  2739. "sha512": "CcYIcGn/zJFY0zq84V4r9Xd4aQn2/+8tsiRBYnhS/LVgWNDq7EsWxmLJ+bXWBBdpTHA+IKvXTag9YElFKFHWYQ==",
  2740. "type": "package",
  2741. "path": "microsoft.aspnetcore.cryptography.keyderivation/6.0.0",
  2742. "files": [
  2743. ".nupkg.metadata",
  2744. ".signature.p7s",
  2745. "Icon.png",
  2746. "THIRD-PARTY-NOTICES.TXT",
  2747. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2748. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2749. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2750. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2751. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2752. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2753. "microsoft.aspnetcore.cryptography.keyderivation.6.0.0.nupkg.sha512",
  2754. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  2755. ]
  2756. },
  2757. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/6.0.0": {
  2758. "sha512": "e4aPE+DfCOiGGYJzsKA9up5hmiCYzwxz+ktkFvuMUnLD2FfNPkjAXjdElfaH9wr7chEwOerOcQhNKS/THPew8A==",
  2759. "type": "package",
  2760. "path": "microsoft.aspnetcore.identity.entityframeworkcore/6.0.0",
  2761. "files": [
  2762. ".nupkg.metadata",
  2763. ".signature.p7s",
  2764. "Icon.png",
  2765. "THIRD-PARTY-NOTICES.TXT",
  2766. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2767. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2768. "microsoft.aspnetcore.identity.entityframeworkcore.6.0.0.nupkg.sha512",
  2769. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  2770. ]
  2771. },
  2772. "Microsoft.AspNetCore.WebUtilities/2.0.2": {
  2773. "sha512": "dvn80+p1AIQKOfJ+VrOhVMUktWRvJs7Zb+UapZGBNSyrCzTsYiXbb9C7Mzw+nGj5UevnLNFcWWc7BUlLMD2qpw==",
  2774. "type": "package",
  2775. "path": "microsoft.aspnetcore.webutilities/2.0.2",
  2776. "files": [
  2777. ".nupkg.metadata",
  2778. ".signature.p7s",
  2779. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  2780. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  2781. "microsoft.aspnetcore.webutilities.2.0.2.nupkg.sha512",
  2782. "microsoft.aspnetcore.webutilities.nuspec"
  2783. ]
  2784. },
  2785. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2786. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  2787. "type": "package",
  2788. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  2789. "files": [
  2790. ".nupkg.metadata",
  2791. ".signature.p7s",
  2792. "LICENSE.TXT",
  2793. "THIRD-PARTY-NOTICES.TXT",
  2794. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2795. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2796. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2797. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2798. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2799. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2800. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  2801. "microsoft.bcl.asyncinterfaces.nuspec",
  2802. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2803. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2804. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2805. "useSharedDesignerContext.txt",
  2806. "version.txt"
  2807. ]
  2808. },
  2809. "Microsoft.Build.Framework/17.0.0": {
  2810. "sha512": "XbFA0z+6Ws2pNeRXYcDF3lKlNgRoSGMm2Q5HKzZD+EbwYMKPKrl/BJnnkMuDJHU0KravYHfhzBnLLJpPeZ3E7A==",
  2811. "type": "package",
  2812. "path": "microsoft.build.framework/17.0.0",
  2813. "files": [
  2814. ".nupkg.metadata",
  2815. ".signature.p7s",
  2816. "MSBuild-NuGet-Icon.png",
  2817. "lib/net472/Microsoft.Build.Framework.dll",
  2818. "lib/net472/Microsoft.Build.Framework.pdb",
  2819. "lib/net472/Microsoft.Build.Framework.xml",
  2820. "lib/netstandard2.0/Microsoft.Build.Framework.dll",
  2821. "lib/netstandard2.0/Microsoft.Build.Framework.pdb",
  2822. "lib/netstandard2.0/Microsoft.Build.Framework.xml",
  2823. "microsoft.build.framework.17.0.0.nupkg.sha512",
  2824. "microsoft.build.framework.nuspec",
  2825. "notices/THIRDPARTYNOTICES.txt"
  2826. ]
  2827. },
  2828. "Microsoft.Build.Tasks.Core/17.0.0": {
  2829. "sha512": "6772b15xCfwBRkz8MzGZb1YpyvvZmAtCbSx9frZJ0bpXKrhyN/+BP9mOjp2xVaJPyNBOfh9CwUOo+mnJheO/pw==",
  2830. "type": "package",
  2831. "path": "microsoft.build.tasks.core/17.0.0",
  2832. "files": [
  2833. ".nupkg.metadata",
  2834. ".signature.p7s",
  2835. "MSBuild-NuGet-Icon.png",
  2836. "lib/net472/Microsoft.Build.Tasks.Core.dll",
  2837. "lib/net472/Microsoft.Build.Tasks.Core.pdb",
  2838. "lib/net472/Microsoft.Build.Tasks.Core.xml",
  2839. "lib/netstandard2.0/Microsoft.Build.Tasks.Core.dll",
  2840. "lib/netstandard2.0/Microsoft.Build.Tasks.Core.pdb",
  2841. "lib/netstandard2.0/Microsoft.Build.Tasks.Core.xml",
  2842. "microsoft.build.tasks.core.17.0.0.nupkg.sha512",
  2843. "microsoft.build.tasks.core.nuspec",
  2844. "notices/THIRDPARTYNOTICES.txt"
  2845. ]
  2846. },
  2847. "Microsoft.Build.Utilities.Core/17.0.0": {
  2848. "sha512": "+eqDvecetKfsZR9WqLQ96F9xhxFb3m9VOjkyzuaA/2D1cub1aW9XyegZb8+gEpBa+o7dHnIN9FskC+tRXtqLSQ==",
  2849. "type": "package",
  2850. "path": "microsoft.build.utilities.core/17.0.0",
  2851. "files": [
  2852. ".nupkg.metadata",
  2853. ".signature.p7s",
  2854. "MSBuild-NuGet-Icon.png",
  2855. "lib/net472/Microsoft.Build.Utilities.Core.dll",
  2856. "lib/net472/Microsoft.Build.Utilities.Core.pdb",
  2857. "lib/net472/Microsoft.Build.Utilities.Core.xml",
  2858. "lib/netstandard2.0/Microsoft.Build.Utilities.Core.dll",
  2859. "lib/netstandard2.0/Microsoft.Build.Utilities.Core.pdb",
  2860. "lib/netstandard2.0/Microsoft.Build.Utilities.Core.xml",
  2861. "microsoft.build.utilities.core.17.0.0.nupkg.sha512",
  2862. "microsoft.build.utilities.core.nuspec",
  2863. "notices/THIRDPARTYNOTICES.txt"
  2864. ]
  2865. },
  2866. "Microsoft.CSharp/4.7.0": {
  2867. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2868. "type": "package",
  2869. "path": "microsoft.csharp/4.7.0",
  2870. "files": [
  2871. ".nupkg.metadata",
  2872. ".signature.p7s",
  2873. "LICENSE.TXT",
  2874. "THIRD-PARTY-NOTICES.TXT",
  2875. "lib/MonoAndroid10/_._",
  2876. "lib/MonoTouch10/_._",
  2877. "lib/net45/_._",
  2878. "lib/netcore50/Microsoft.CSharp.dll",
  2879. "lib/netcoreapp2.0/_._",
  2880. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2881. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2882. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2883. "lib/portable-net45+win8+wp8+wpa81/_._",
  2884. "lib/uap10.0.16299/_._",
  2885. "lib/win8/_._",
  2886. "lib/wp80/_._",
  2887. "lib/wpa81/_._",
  2888. "lib/xamarinios10/_._",
  2889. "lib/xamarinmac20/_._",
  2890. "lib/xamarintvos10/_._",
  2891. "lib/xamarinwatchos10/_._",
  2892. "microsoft.csharp.4.7.0.nupkg.sha512",
  2893. "microsoft.csharp.nuspec",
  2894. "ref/MonoAndroid10/_._",
  2895. "ref/MonoTouch10/_._",
  2896. "ref/net45/_._",
  2897. "ref/netcore50/Microsoft.CSharp.dll",
  2898. "ref/netcore50/Microsoft.CSharp.xml",
  2899. "ref/netcore50/de/Microsoft.CSharp.xml",
  2900. "ref/netcore50/es/Microsoft.CSharp.xml",
  2901. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2902. "ref/netcore50/it/Microsoft.CSharp.xml",
  2903. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2904. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2905. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2906. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2907. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2908. "ref/netcoreapp2.0/_._",
  2909. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2910. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2911. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2912. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2913. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2914. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2915. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2916. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2917. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2918. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2919. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2920. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2921. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2922. "ref/portable-net45+win8+wp8+wpa81/_._",
  2923. "ref/uap10.0.16299/_._",
  2924. "ref/win8/_._",
  2925. "ref/wp80/_._",
  2926. "ref/wpa81/_._",
  2927. "ref/xamarinios10/_._",
  2928. "ref/xamarinmac20/_._",
  2929. "ref/xamarintvos10/_._",
  2930. "ref/xamarinwatchos10/_._",
  2931. "useSharedDesignerContext.txt",
  2932. "version.txt"
  2933. ]
  2934. },
  2935. "Microsoft.Data.SqlClient/2.1.4": {
  2936. "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  2937. "type": "package",
  2938. "path": "microsoft.data.sqlclient/2.1.4",
  2939. "files": [
  2940. ".nupkg.metadata",
  2941. ".signature.p7s",
  2942. "dotnet.png",
  2943. "lib/net46/Microsoft.Data.SqlClient.dll",
  2944. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2945. "lib/net46/Microsoft.Data.SqlClient.xml",
  2946. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2947. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2948. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2949. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2950. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2951. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2952. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2953. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2954. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2955. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2956. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2957. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2958. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2959. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2960. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2961. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2962. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2963. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2964. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2965. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2966. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2967. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2968. "microsoft.data.sqlclient.2.1.4.nupkg.sha512",
  2969. "microsoft.data.sqlclient.nuspec",
  2970. "ref/net46/Microsoft.Data.SqlClient.dll",
  2971. "ref/net46/Microsoft.Data.SqlClient.pdb",
  2972. "ref/net46/Microsoft.Data.SqlClient.xml",
  2973. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2974. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2975. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2976. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2977. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2978. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2979. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2980. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2981. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2982. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2983. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2984. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2985. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2986. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2987. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2988. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2989. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2990. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2991. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2992. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2993. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  2994. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  2995. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2996. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2997. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2998. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2999. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3000. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3001. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3002. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  3003. ]
  3004. },
  3005. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  3006. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  3007. "type": "package",
  3008. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  3009. "files": [
  3010. ".nupkg.metadata",
  3011. ".signature.p7s",
  3012. "LICENSE.txt",
  3013. "dotnet.png",
  3014. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  3015. "microsoft.data.sqlclient.sni.runtime.nuspec",
  3016. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  3017. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  3018. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  3019. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  3020. ]
  3021. },
  3022. "Microsoft.Data.Sqlite.Core/6.0.0": {
  3023. "sha512": "X6MCFkzJOBkcgzT00Bh7SAqbLM2rPuHgCWMivSRiZ0VGVfgf/l8nwGDe9wYSSjXVdw95JUggvWOQLcNfbBFuLA==",
  3024. "type": "package",
  3025. "path": "microsoft.data.sqlite.core/6.0.0",
  3026. "files": [
  3027. ".nupkg.metadata",
  3028. ".signature.p7s",
  3029. "Icon.png",
  3030. "lib/net6.0/Microsoft.Data.Sqlite.dll",
  3031. "lib/net6.0/Microsoft.Data.Sqlite.xml",
  3032. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3033. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3034. "microsoft.data.sqlite.core.6.0.0.nupkg.sha512",
  3035. "microsoft.data.sqlite.core.nuspec"
  3036. ]
  3037. },
  3038. "Microsoft.EntityFrameworkCore/6.0.0": {
  3039. "sha512": "BdHAtHzfQt3rltgSoYamSlHg2qawPtEDT677/bcSJlO8lQ/lj6XWlusM0TOt59O8Sbqm3hAC1a+4cEBxmv56pw==",
  3040. "type": "package",
  3041. "path": "microsoft.entityframeworkcore/6.0.0",
  3042. "files": [
  3043. ".nupkg.metadata",
  3044. ".signature.p7s",
  3045. "Icon.png",
  3046. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  3047. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  3048. "microsoft.entityframeworkcore.6.0.0.nupkg.sha512",
  3049. "microsoft.entityframeworkcore.nuspec"
  3050. ]
  3051. },
  3052. "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": {
  3053. "sha512": "MrMLWEw4JsZdkVci0MkkGj+fSjZrXnm3m6UNuIEwytiAAIZPvJs3iPpnzfK4qM7np82W374voYm96q7QCdL0ow==",
  3054. "type": "package",
  3055. "path": "microsoft.entityframeworkcore.abstractions/6.0.0",
  3056. "files": [
  3057. ".nupkg.metadata",
  3058. ".signature.p7s",
  3059. "Icon.png",
  3060. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3061. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3062. "microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512",
  3063. "microsoft.entityframeworkcore.abstractions.nuspec"
  3064. ]
  3065. },
  3066. "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": {
  3067. "sha512": "BqWBL05PUDKwPwLeQCJdc2R4cIUycXV9UmuSjYfux2fcgyet8I2eYnOWlA7NgsDwRVcxW26vxvNQ0wuc8UAcLA==",
  3068. "type": "package",
  3069. "path": "microsoft.entityframeworkcore.analyzers/6.0.0",
  3070. "files": [
  3071. ".nupkg.metadata",
  3072. ".signature.p7s",
  3073. "Icon.png",
  3074. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3075. "lib/netstandard2.0/_._",
  3076. "microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512",
  3077. "microsoft.entityframeworkcore.analyzers.nuspec"
  3078. ]
  3079. },
  3080. "Microsoft.EntityFrameworkCore.Design/6.0.0": {
  3081. "sha512": "RFdomymyuPNffl+VPk7osdxCJQ0xlGuxr28ifdfFFNUaMK0OYiJOjr6w9z3kscOM2p2gdPWNI1IFUXllEyphow==",
  3082. "type": "package",
  3083. "path": "microsoft.entityframeworkcore.design/6.0.0",
  3084. "files": [
  3085. ".nupkg.metadata",
  3086. ".signature.p7s",
  3087. "Icon.png",
  3088. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  3089. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  3090. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  3091. "microsoft.entityframeworkcore.design.6.0.0.nupkg.sha512",
  3092. "microsoft.entityframeworkcore.design.nuspec"
  3093. ]
  3094. },
  3095. "Microsoft.EntityFrameworkCore.Relational/6.0.0": {
  3096. "sha512": "rTRzrSbkUXoCGijlT9O7oq7JfuaU1/+VFyfSBjADQuOsfa0FCrWeB8ybue5CDvO/D6uW0kvPvlKfY2kwxXOOdg==",
  3097. "type": "package",
  3098. "path": "microsoft.entityframeworkcore.relational/6.0.0",
  3099. "files": [
  3100. ".nupkg.metadata",
  3101. ".signature.p7s",
  3102. "Icon.png",
  3103. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3104. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3105. "microsoft.entityframeworkcore.relational.6.0.0.nupkg.sha512",
  3106. "microsoft.entityframeworkcore.relational.nuspec"
  3107. ]
  3108. },
  3109. "Microsoft.EntityFrameworkCore.Sqlite/6.0.0": {
  3110. "sha512": "VwNbLaMpDD9s/tVmK/sivJsYoXdM3ARBjWMtFUXVExZ6AgZxPwSgILF2J4Y9CRvf/r6A0xitvFXQO6HPrZnwrg==",
  3111. "type": "package",
  3112. "path": "microsoft.entityframeworkcore.sqlite/6.0.0",
  3113. "files": [
  3114. ".nupkg.metadata",
  3115. ".signature.p7s",
  3116. "Icon.png",
  3117. "lib/net6.0/_._",
  3118. "microsoft.entityframeworkcore.sqlite.6.0.0.nupkg.sha512",
  3119. "microsoft.entityframeworkcore.sqlite.nuspec"
  3120. ]
  3121. },
  3122. "Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.0": {
  3123. "sha512": "cx55qNWk5JmUMZgMfGvfwodW2z/t3Kix7Fbso9BxCPnPVaiVm8k9C4QLjegqJVvuRAA7RZigMYAqeRZ9Q4fWWQ==",
  3124. "type": "package",
  3125. "path": "microsoft.entityframeworkcore.sqlite.core/6.0.0",
  3126. "files": [
  3127. ".nupkg.metadata",
  3128. ".signature.p7s",
  3129. "Icon.png",
  3130. "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll",
  3131. "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.xml",
  3132. "microsoft.entityframeworkcore.sqlite.core.6.0.0.nupkg.sha512",
  3133. "microsoft.entityframeworkcore.sqlite.core.nuspec"
  3134. ]
  3135. },
  3136. "Microsoft.EntityFrameworkCore.SqlServer/6.0.0": {
  3137. "sha512": "1rYYHrvOIN1bXyN9qAVd0WhmTjbZNosyrMoAL4wRiw5pu65QazwjuVV6K1IWKD4AXPxQD7+k4CxAMVTPY//UrA==",
  3138. "type": "package",
  3139. "path": "microsoft.entityframeworkcore.sqlserver/6.0.0",
  3140. "files": [
  3141. ".nupkg.metadata",
  3142. ".signature.p7s",
  3143. "Icon.png",
  3144. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  3145. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  3146. "microsoft.entityframeworkcore.sqlserver.6.0.0.nupkg.sha512",
  3147. "microsoft.entityframeworkcore.sqlserver.nuspec"
  3148. ]
  3149. },
  3150. "Microsoft.EntityFrameworkCore.Tools/6.0.0": {
  3151. "sha512": "m9e6nFnkyRdKcrTFO8rl3ZihCIKrYdECw+fHZVbKz6TBMwKhih/N0sjPnNt0k7sZPvI8izKPkh1d+z4OR2qgXQ==",
  3152. "type": "package",
  3153. "path": "microsoft.entityframeworkcore.tools/6.0.0",
  3154. "hasTools": true,
  3155. "files": [
  3156. ".nupkg.metadata",
  3157. ".signature.p7s",
  3158. "Icon.png",
  3159. "lib/net6.0/_._",
  3160. "microsoft.entityframeworkcore.tools.6.0.0.nupkg.sha512",
  3161. "microsoft.entityframeworkcore.tools.nuspec",
  3162. "tools/EntityFrameworkCore.PS2.psd1",
  3163. "tools/EntityFrameworkCore.PS2.psm1",
  3164. "tools/EntityFrameworkCore.psd1",
  3165. "tools/EntityFrameworkCore.psm1",
  3166. "tools/about_EntityFrameworkCore.help.txt",
  3167. "tools/init.ps1",
  3168. "tools/net461/any/ef.exe",
  3169. "tools/net461/win-x86/ef.exe",
  3170. "tools/netcoreapp2.0/any/ef.dll",
  3171. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  3172. ]
  3173. },
  3174. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  3175. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  3176. "type": "package",
  3177. "path": "microsoft.extensions.apidescription.server/3.0.0",
  3178. "hasTools": true,
  3179. "files": [
  3180. ".nupkg.metadata",
  3181. ".signature.p7s",
  3182. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3183. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3184. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3185. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3186. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  3187. "microsoft.extensions.apidescription.server.nuspec",
  3188. "tools/Newtonsoft.Json.dll",
  3189. "tools/dotnet-getdocument.deps.json",
  3190. "tools/dotnet-getdocument.dll",
  3191. "tools/dotnet-getdocument.runtimeconfig.json",
  3192. "tools/net461-x86/GetDocument.Insider.exe",
  3193. "tools/net461-x86/GetDocument.Insider.exe.config",
  3194. "tools/net461/GetDocument.Insider.exe",
  3195. "tools/net461/GetDocument.Insider.exe.config",
  3196. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3197. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3198. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  3199. ]
  3200. },
  3201. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  3202. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  3203. "type": "package",
  3204. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  3205. "files": [
  3206. ".nupkg.metadata",
  3207. ".signature.p7s",
  3208. "Icon.png",
  3209. "LICENSE.TXT",
  3210. "THIRD-PARTY-NOTICES.TXT",
  3211. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  3212. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  3213. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3214. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3215. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  3216. "microsoft.extensions.caching.abstractions.nuspec",
  3217. "useSharedDesignerContext.txt"
  3218. ]
  3219. },
  3220. "Microsoft.Extensions.Caching.Memory/6.0.0": {
  3221. "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==",
  3222. "type": "package",
  3223. "path": "microsoft.extensions.caching.memory/6.0.0",
  3224. "files": [
  3225. ".nupkg.metadata",
  3226. ".signature.p7s",
  3227. "Icon.png",
  3228. "LICENSE.TXT",
  3229. "THIRD-PARTY-NOTICES.TXT",
  3230. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  3231. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  3232. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3233. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3234. "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512",
  3235. "microsoft.extensions.caching.memory.nuspec",
  3236. "useSharedDesignerContext.txt"
  3237. ]
  3238. },
  3239. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  3240. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  3241. "type": "package",
  3242. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  3243. "files": [
  3244. ".nupkg.metadata",
  3245. ".signature.p7s",
  3246. "Icon.png",
  3247. "LICENSE.TXT",
  3248. "THIRD-PARTY-NOTICES.TXT",
  3249. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3250. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3251. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3252. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3253. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  3254. "microsoft.extensions.configuration.abstractions.nuspec",
  3255. "useSharedDesignerContext.txt"
  3256. ]
  3257. },
  3258. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  3259. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  3260. "type": "package",
  3261. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  3262. "files": [
  3263. ".nupkg.metadata",
  3264. ".signature.p7s",
  3265. "Icon.png",
  3266. "LICENSE.TXT",
  3267. "THIRD-PARTY-NOTICES.TXT",
  3268. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3269. "buildTransitive/netcoreapp3.1/_._",
  3270. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3271. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3272. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3273. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3274. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3275. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3276. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3277. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3278. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  3279. "microsoft.extensions.dependencyinjection.nuspec",
  3280. "useSharedDesignerContext.txt"
  3281. ]
  3282. },
  3283. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  3284. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  3285. "type": "package",
  3286. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  3287. "files": [
  3288. ".nupkg.metadata",
  3289. ".signature.p7s",
  3290. "Icon.png",
  3291. "LICENSE.TXT",
  3292. "THIRD-PARTY-NOTICES.TXT",
  3293. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3294. "buildTransitive/netcoreapp3.1/_._",
  3295. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3296. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3297. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3298. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3299. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3300. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3301. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3302. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3303. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  3304. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3305. "useSharedDesignerContext.txt"
  3306. ]
  3307. },
  3308. "Microsoft.Extensions.DependencyModel/6.0.0": {
  3309. "sha512": "TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
  3310. "type": "package",
  3311. "path": "microsoft.extensions.dependencymodel/6.0.0",
  3312. "files": [
  3313. ".nupkg.metadata",
  3314. ".signature.p7s",
  3315. "Icon.png",
  3316. "LICENSE.TXT",
  3317. "THIRD-PARTY-NOTICES.TXT",
  3318. "lib/net461/Microsoft.Extensions.DependencyModel.dll",
  3319. "lib/net461/Microsoft.Extensions.DependencyModel.xml",
  3320. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  3321. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  3322. "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
  3323. "microsoft.extensions.dependencymodel.nuspec",
  3324. "useSharedDesignerContext.txt"
  3325. ]
  3326. },
  3327. "Microsoft.Extensions.Identity.Core/6.0.0": {
  3328. "sha512": "coWZViIBVb1szN3zMMa6KYP9KmJzOniwQ5tySbiFmVW6Nbdy1KuNDNzIKQcigmfqS4aLWVvNLGCFyDJWYskS8g==",
  3329. "type": "package",
  3330. "path": "microsoft.extensions.identity.core/6.0.0",
  3331. "files": [
  3332. ".nupkg.metadata",
  3333. ".signature.p7s",
  3334. "Icon.png",
  3335. "THIRD-PARTY-NOTICES.TXT",
  3336. "lib/net461/Microsoft.Extensions.Identity.Core.dll",
  3337. "lib/net461/Microsoft.Extensions.Identity.Core.xml",
  3338. "lib/net6.0/Microsoft.Extensions.Identity.Core.dll",
  3339. "lib/net6.0/Microsoft.Extensions.Identity.Core.xml",
  3340. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  3341. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  3342. "microsoft.extensions.identity.core.6.0.0.nupkg.sha512",
  3343. "microsoft.extensions.identity.core.nuspec"
  3344. ]
  3345. },
  3346. "Microsoft.Extensions.Identity.Stores/6.0.0": {
  3347. "sha512": "3TniGyXEuFLQhJoiEReGD4HAdSKRxuQX5FDDg4GwFeeB36en4xQC5MVuWx1riiNwmh2eMtXq/wLdaJLd6JXIig==",
  3348. "type": "package",
  3349. "path": "microsoft.extensions.identity.stores/6.0.0",
  3350. "files": [
  3351. ".nupkg.metadata",
  3352. ".signature.p7s",
  3353. "Icon.png",
  3354. "THIRD-PARTY-NOTICES.TXT",
  3355. "lib/net461/Microsoft.Extensions.Identity.Stores.dll",
  3356. "lib/net461/Microsoft.Extensions.Identity.Stores.xml",
  3357. "lib/net6.0/Microsoft.Extensions.Identity.Stores.dll",
  3358. "lib/net6.0/Microsoft.Extensions.Identity.Stores.xml",
  3359. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  3360. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  3361. "microsoft.extensions.identity.stores.6.0.0.nupkg.sha512",
  3362. "microsoft.extensions.identity.stores.nuspec"
  3363. ]
  3364. },
  3365. "Microsoft.Extensions.Logging/6.0.0": {
  3366. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  3367. "type": "package",
  3368. "path": "microsoft.extensions.logging/6.0.0",
  3369. "files": [
  3370. ".nupkg.metadata",
  3371. ".signature.p7s",
  3372. "Icon.png",
  3373. "LICENSE.TXT",
  3374. "THIRD-PARTY-NOTICES.TXT",
  3375. "lib/net461/Microsoft.Extensions.Logging.dll",
  3376. "lib/net461/Microsoft.Extensions.Logging.xml",
  3377. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3378. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3379. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3380. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3381. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  3382. "microsoft.extensions.logging.nuspec",
  3383. "useSharedDesignerContext.txt"
  3384. ]
  3385. },
  3386. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  3387. "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
  3388. "type": "package",
  3389. "path": "microsoft.extensions.logging.abstractions/6.0.0",
  3390. "files": [
  3391. ".nupkg.metadata",
  3392. ".signature.p7s",
  3393. "Icon.png",
  3394. "LICENSE.TXT",
  3395. "THIRD-PARTY-NOTICES.TXT",
  3396. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3397. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3398. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3399. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3400. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3401. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3402. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3403. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3404. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3405. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3406. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3407. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3408. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3409. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3410. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3411. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3412. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3413. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3414. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3415. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3416. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3417. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3418. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3419. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3420. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3421. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3422. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3423. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3424. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  3425. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3426. "buildTransitive/netcoreapp3.1/_._",
  3427. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3428. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3429. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3430. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3431. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3432. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3433. "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
  3434. "microsoft.extensions.logging.abstractions.nuspec",
  3435. "useSharedDesignerContext.txt"
  3436. ]
  3437. },
  3438. "Microsoft.Extensions.Options/6.0.0": {
  3439. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  3440. "type": "package",
  3441. "path": "microsoft.extensions.options/6.0.0",
  3442. "files": [
  3443. ".nupkg.metadata",
  3444. ".signature.p7s",
  3445. "Icon.png",
  3446. "LICENSE.TXT",
  3447. "THIRD-PARTY-NOTICES.TXT",
  3448. "lib/net461/Microsoft.Extensions.Options.dll",
  3449. "lib/net461/Microsoft.Extensions.Options.xml",
  3450. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3451. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3452. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3453. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3454. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  3455. "microsoft.extensions.options.nuspec",
  3456. "useSharedDesignerContext.txt"
  3457. ]
  3458. },
  3459. "Microsoft.Extensions.Primitives/6.0.0": {
  3460. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  3461. "type": "package",
  3462. "path": "microsoft.extensions.primitives/6.0.0",
  3463. "files": [
  3464. ".nupkg.metadata",
  3465. ".signature.p7s",
  3466. "Icon.png",
  3467. "LICENSE.TXT",
  3468. "THIRD-PARTY-NOTICES.TXT",
  3469. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3470. "buildTransitive/netcoreapp3.1/_._",
  3471. "lib/net461/Microsoft.Extensions.Primitives.dll",
  3472. "lib/net461/Microsoft.Extensions.Primitives.xml",
  3473. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3474. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3475. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3476. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3477. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3478. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3479. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  3480. "microsoft.extensions.primitives.nuspec",
  3481. "useSharedDesignerContext.txt"
  3482. ]
  3483. },
  3484. "Microsoft.Identity.Client/4.21.1": {
  3485. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  3486. "type": "package",
  3487. "path": "microsoft.identity.client/4.21.1",
  3488. "files": [
  3489. ".nupkg.metadata",
  3490. ".signature.p7s",
  3491. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3492. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3493. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3494. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3495. "lib/net45/Microsoft.Identity.Client.dll",
  3496. "lib/net45/Microsoft.Identity.Client.xml",
  3497. "lib/net461/Microsoft.Identity.Client.dll",
  3498. "lib/net461/Microsoft.Identity.Client.xml",
  3499. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3500. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3501. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3502. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3503. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3504. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3505. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3506. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3507. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3508. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3509. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3510. "microsoft.identity.client.4.21.1.nupkg.sha512",
  3511. "microsoft.identity.client.nuspec",
  3512. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  3513. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  3514. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3515. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3516. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3517. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3518. "ref/net45/Microsoft.Identity.Client.dll",
  3519. "ref/net45/Microsoft.Identity.Client.xml",
  3520. "ref/net461/Microsoft.Identity.Client.dll",
  3521. "ref/net461/Microsoft.Identity.Client.xml",
  3522. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3523. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3524. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3525. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3526. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3527. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3528. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3529. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3530. ]
  3531. },
  3532. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  3533. "sha512": "0qjS31rN1MQTc46tAYbzmMTSRfdV5ndZxSjYxIGqKSidd4wpNJfNII/pdhU5Fx8olarQoKL9lqqYw4yNOIwT0Q==",
  3534. "type": "package",
  3535. "path": "microsoft.identitymodel.jsonwebtokens/6.10.0",
  3536. "files": [
  3537. ".nupkg.metadata",
  3538. ".signature.p7s",
  3539. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3540. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3541. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3542. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3543. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3544. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3545. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3546. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3547. "microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512",
  3548. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3549. ]
  3550. },
  3551. "Microsoft.IdentityModel.Logging/6.10.0": {
  3552. "sha512": "zbcwV6esnNzhZZ/VP87dji6VrUBLB5rxnZBkDMqNYpyG+nrBnBsbm4PUYLCBMUflHCM9EMLDG0rLnqqT+l0ldA==",
  3553. "type": "package",
  3554. "path": "microsoft.identitymodel.logging/6.10.0",
  3555. "files": [
  3556. ".nupkg.metadata",
  3557. ".signature.p7s",
  3558. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3559. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3560. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3561. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3562. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3563. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3564. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3565. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3566. "microsoft.identitymodel.logging.6.10.0.nupkg.sha512",
  3567. "microsoft.identitymodel.logging.nuspec"
  3568. ]
  3569. },
  3570. "Microsoft.IdentityModel.Protocols/6.10.0": {
  3571. "sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
  3572. "type": "package",
  3573. "path": "microsoft.identitymodel.protocols/6.10.0",
  3574. "files": [
  3575. ".nupkg.metadata",
  3576. ".signature.p7s",
  3577. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3578. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3579. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3580. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3581. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  3582. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  3583. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3584. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3585. "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
  3586. "microsoft.identitymodel.protocols.nuspec"
  3587. ]
  3588. },
  3589. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  3590. "sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
  3591. "type": "package",
  3592. "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
  3593. "files": [
  3594. ".nupkg.metadata",
  3595. ".signature.p7s",
  3596. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3597. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3598. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3599. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3600. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3601. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3602. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3603. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3604. "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
  3605. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3606. ]
  3607. },
  3608. "Microsoft.IdentityModel.Tokens/6.10.0": {
  3609. "sha512": "qbf1NslutDB4oLrriYTJpy7oB1pbh2ej2lEHd2IPDQH9C74ysOdhU5wAC7KoXblldbo7YsNR2QYFOqQM/b0Rsg==",
  3610. "type": "package",
  3611. "path": "microsoft.identitymodel.tokens/6.10.0",
  3612. "files": [
  3613. ".nupkg.metadata",
  3614. ".signature.p7s",
  3615. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3616. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3617. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3618. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3619. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3620. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3621. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3622. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3623. "microsoft.identitymodel.tokens.6.10.0.nupkg.sha512",
  3624. "microsoft.identitymodel.tokens.nuspec"
  3625. ]
  3626. },
  3627. "Microsoft.Net.Http.Headers/2.0.2": {
  3628. "sha512": "hNhJU+Sd7Ws/yrBnakUWKWMyGiDUJE5lTkJfWe5xPL8YGTiL6Es07H9CcTyaYYwVlgW06uDVN0YhhH+t4EjdCw==",
  3629. "type": "package",
  3630. "path": "microsoft.net.http.headers/2.0.2",
  3631. "files": [
  3632. ".nupkg.metadata",
  3633. ".signature.p7s",
  3634. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  3635. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  3636. "microsoft.net.http.headers.2.0.2.nupkg.sha512",
  3637. "microsoft.net.http.headers.nuspec"
  3638. ]
  3639. },
  3640. "Microsoft.NET.StringTools/1.0.0": {
  3641. "sha512": "ZYVcoDM0LnSyT5nWoRGfShYdOecCw2sOXWwP6j1Z0u48Xq3+BVvZ+EiPCX9/8Gz439giW+O1H1kWF9Eb/w6rVg==",
  3642. "type": "package",
  3643. "path": "microsoft.net.stringtools/1.0.0",
  3644. "files": [
  3645. ".nupkg.metadata",
  3646. ".signature.p7s",
  3647. "MSBuild-NuGet-Icon.png",
  3648. "lib/net35/Microsoft.NET.StringTools.net35.dll",
  3649. "lib/net35/Microsoft.NET.StringTools.net35.pdb",
  3650. "lib/net472/Microsoft.NET.StringTools.dll",
  3651. "lib/net472/Microsoft.NET.StringTools.pdb",
  3652. "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
  3653. "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
  3654. "microsoft.net.stringtools.1.0.0.nupkg.sha512",
  3655. "microsoft.net.stringtools.nuspec",
  3656. "notices/THIRDPARTYNOTICES.txt"
  3657. ]
  3658. },
  3659. "Microsoft.NETCore.Platforms/3.1.0": {
  3660. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3661. "type": "package",
  3662. "path": "microsoft.netcore.platforms/3.1.0",
  3663. "files": [
  3664. ".nupkg.metadata",
  3665. ".signature.p7s",
  3666. "LICENSE.TXT",
  3667. "THIRD-PARTY-NOTICES.TXT",
  3668. "lib/netstandard1.0/_._",
  3669. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3670. "microsoft.netcore.platforms.nuspec",
  3671. "runtime.json",
  3672. "useSharedDesignerContext.txt",
  3673. "version.txt"
  3674. ]
  3675. },
  3676. "Microsoft.NETCore.Targets/1.1.0": {
  3677. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3678. "type": "package",
  3679. "path": "microsoft.netcore.targets/1.1.0",
  3680. "files": [
  3681. ".nupkg.metadata",
  3682. ".signature.p7s",
  3683. "ThirdPartyNotices.txt",
  3684. "dotnet_library_license.txt",
  3685. "lib/netstandard1.0/_._",
  3686. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3687. "microsoft.netcore.targets.nuspec",
  3688. "runtime.json"
  3689. ]
  3690. },
  3691. "Microsoft.OpenApi/1.2.3": {
  3692. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  3693. "type": "package",
  3694. "path": "microsoft.openapi/1.2.3",
  3695. "files": [
  3696. ".nupkg.metadata",
  3697. ".signature.p7s",
  3698. "lib/net46/Microsoft.OpenApi.dll",
  3699. "lib/net46/Microsoft.OpenApi.pdb",
  3700. "lib/net46/Microsoft.OpenApi.xml",
  3701. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3702. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3703. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3704. "microsoft.openapi.1.2.3.nupkg.sha512",
  3705. "microsoft.openapi.nuspec"
  3706. ]
  3707. },
  3708. "Microsoft.Win32.Primitives/4.3.0": {
  3709. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3710. "type": "package",
  3711. "path": "microsoft.win32.primitives/4.3.0",
  3712. "files": [
  3713. ".nupkg.metadata",
  3714. ".signature.p7s",
  3715. "ThirdPartyNotices.txt",
  3716. "dotnet_library_license.txt",
  3717. "lib/MonoAndroid10/_._",
  3718. "lib/MonoTouch10/_._",
  3719. "lib/net46/Microsoft.Win32.Primitives.dll",
  3720. "lib/xamarinios10/_._",
  3721. "lib/xamarinmac20/_._",
  3722. "lib/xamarintvos10/_._",
  3723. "lib/xamarinwatchos10/_._",
  3724. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3725. "microsoft.win32.primitives.nuspec",
  3726. "ref/MonoAndroid10/_._",
  3727. "ref/MonoTouch10/_._",
  3728. "ref/net46/Microsoft.Win32.Primitives.dll",
  3729. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3730. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3731. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3732. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3733. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3734. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3735. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3736. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3737. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3738. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3739. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3740. "ref/xamarinios10/_._",
  3741. "ref/xamarinmac20/_._",
  3742. "ref/xamarintvos10/_._",
  3743. "ref/xamarinwatchos10/_._"
  3744. ]
  3745. },
  3746. "Microsoft.Win32.Registry/4.7.0": {
  3747. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3748. "type": "package",
  3749. "path": "microsoft.win32.registry/4.7.0",
  3750. "files": [
  3751. ".nupkg.metadata",
  3752. ".signature.p7s",
  3753. "LICENSE.TXT",
  3754. "THIRD-PARTY-NOTICES.TXT",
  3755. "lib/net46/Microsoft.Win32.Registry.dll",
  3756. "lib/net461/Microsoft.Win32.Registry.dll",
  3757. "lib/net461/Microsoft.Win32.Registry.xml",
  3758. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3759. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3760. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3761. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3762. "microsoft.win32.registry.nuspec",
  3763. "ref/net46/Microsoft.Win32.Registry.dll",
  3764. "ref/net461/Microsoft.Win32.Registry.dll",
  3765. "ref/net461/Microsoft.Win32.Registry.xml",
  3766. "ref/net472/Microsoft.Win32.Registry.dll",
  3767. "ref/net472/Microsoft.Win32.Registry.xml",
  3768. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3769. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3770. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3771. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3772. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3773. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3774. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3775. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3776. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3777. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3778. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3779. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3780. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3781. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3782. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3783. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3784. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3785. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3786. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3787. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3788. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3789. "useSharedDesignerContext.txt",
  3790. "version.txt"
  3791. ]
  3792. },
  3793. "Microsoft.Win32.SystemEvents/4.7.0": {
  3794. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3795. "type": "package",
  3796. "path": "microsoft.win32.systemevents/4.7.0",
  3797. "files": [
  3798. ".nupkg.metadata",
  3799. ".signature.p7s",
  3800. "LICENSE.TXT",
  3801. "THIRD-PARTY-NOTICES.TXT",
  3802. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3803. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3804. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3805. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3806. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3807. "microsoft.win32.systemevents.nuspec",
  3808. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3809. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3810. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3811. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3812. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3813. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3814. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3815. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3816. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3817. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3818. "useSharedDesignerContext.txt",
  3819. "version.txt"
  3820. ]
  3821. },
  3822. "NETStandard.Library/1.6.1": {
  3823. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  3824. "type": "package",
  3825. "path": "netstandard.library/1.6.1",
  3826. "files": [
  3827. ".nupkg.metadata",
  3828. ".signature.p7s",
  3829. "ThirdPartyNotices.txt",
  3830. "dotnet_library_license.txt",
  3831. "netstandard.library.1.6.1.nupkg.sha512",
  3832. "netstandard.library.nuspec"
  3833. ]
  3834. },
  3835. "Newtonsoft.Json/10.0.3": {
  3836. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  3837. "type": "package",
  3838. "path": "newtonsoft.json/10.0.3",
  3839. "hasTools": true,
  3840. "files": [
  3841. ".nupkg.metadata",
  3842. ".signature.p7s",
  3843. "LICENSE.md",
  3844. "lib/net20/Newtonsoft.Json.dll",
  3845. "lib/net20/Newtonsoft.Json.xml",
  3846. "lib/net35/Newtonsoft.Json.dll",
  3847. "lib/net35/Newtonsoft.Json.xml",
  3848. "lib/net40/Newtonsoft.Json.dll",
  3849. "lib/net40/Newtonsoft.Json.xml",
  3850. "lib/net45/Newtonsoft.Json.dll",
  3851. "lib/net45/Newtonsoft.Json.xml",
  3852. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3853. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3854. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3855. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3856. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3857. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3858. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3859. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3860. "newtonsoft.json.10.0.3.nupkg.sha512",
  3861. "newtonsoft.json.nuspec",
  3862. "tools/install.ps1"
  3863. ]
  3864. },
  3865. "Newtonsoft.Json.Bson/1.0.1": {
  3866. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  3867. "type": "package",
  3868. "path": "newtonsoft.json.bson/1.0.1",
  3869. "files": [
  3870. ".nupkg.metadata",
  3871. ".signature.p7s",
  3872. "lib/net45/Newtonsoft.Json.Bson.dll",
  3873. "lib/net45/Newtonsoft.Json.Bson.xml",
  3874. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  3875. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  3876. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  3877. "newtonsoft.json.bson.nuspec"
  3878. ]
  3879. },
  3880. "PuppeteerSharp/5.1.0": {
  3881. "sha512": "6xGcgwjmcZg+tLB/Z+4EqTnKMnqMQgLxbw3vzUls/QRhUeqcd9Qk9quOLi82m0y7U6uV+7Zm4T6V/vP7CoWiXg==",
  3882. "type": "package",
  3883. "path": "puppeteersharp/5.1.0",
  3884. "files": [
  3885. ".nupkg.metadata",
  3886. ".signature.p7s",
  3887. "lib/netstandard2.0/PuppeteerSharp.dll",
  3888. "lib/netstandard2.0/PuppeteerSharp.xml",
  3889. "puppeteersharp.5.1.0.nupkg.sha512",
  3890. "puppeteersharp.nuspec"
  3891. ]
  3892. },
  3893. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3894. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  3895. "type": "package",
  3896. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3897. "files": [
  3898. ".nupkg.metadata",
  3899. ".signature.p7s",
  3900. "ThirdPartyNotices.txt",
  3901. "dotnet_library_license.txt",
  3902. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  3903. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3904. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3905. ]
  3906. },
  3907. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3908. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  3909. "type": "package",
  3910. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3911. "files": [
  3912. ".nupkg.metadata",
  3913. ".signature.p7s",
  3914. "ThirdPartyNotices.txt",
  3915. "dotnet_library_license.txt",
  3916. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  3917. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3918. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3919. ]
  3920. },
  3921. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3922. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  3923. "type": "package",
  3924. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3925. "files": [
  3926. ".nupkg.metadata",
  3927. ".signature.p7s",
  3928. "ThirdPartyNotices.txt",
  3929. "dotnet_library_license.txt",
  3930. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  3931. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3932. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3933. ]
  3934. },
  3935. "runtime.native.System/4.3.0": {
  3936. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3937. "type": "package",
  3938. "path": "runtime.native.system/4.3.0",
  3939. "files": [
  3940. ".nupkg.metadata",
  3941. ".signature.p7s",
  3942. "ThirdPartyNotices.txt",
  3943. "dotnet_library_license.txt",
  3944. "lib/netstandard1.0/_._",
  3945. "runtime.native.system.4.3.0.nupkg.sha512",
  3946. "runtime.native.system.nuspec"
  3947. ]
  3948. },
  3949. "runtime.native.System.IO.Compression/4.3.0": {
  3950. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  3951. "type": "package",
  3952. "path": "runtime.native.system.io.compression/4.3.0",
  3953. "files": [
  3954. ".nupkg.metadata",
  3955. ".signature.p7s",
  3956. "ThirdPartyNotices.txt",
  3957. "dotnet_library_license.txt",
  3958. "lib/netstandard1.0/_._",
  3959. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  3960. "runtime.native.system.io.compression.nuspec"
  3961. ]
  3962. },
  3963. "runtime.native.System.Net.Http/4.3.0": {
  3964. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3965. "type": "package",
  3966. "path": "runtime.native.system.net.http/4.3.0",
  3967. "files": [
  3968. ".nupkg.metadata",
  3969. ".signature.p7s",
  3970. "ThirdPartyNotices.txt",
  3971. "dotnet_library_license.txt",
  3972. "lib/netstandard1.0/_._",
  3973. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3974. "runtime.native.system.net.http.nuspec"
  3975. ]
  3976. },
  3977. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3978. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3979. "type": "package",
  3980. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3981. "files": [
  3982. ".nupkg.metadata",
  3983. ".signature.p7s",
  3984. "ThirdPartyNotices.txt",
  3985. "dotnet_library_license.txt",
  3986. "lib/netstandard1.0/_._",
  3987. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3988. "runtime.native.system.security.cryptography.apple.nuspec"
  3989. ]
  3990. },
  3991. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3992. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  3993. "type": "package",
  3994. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  3995. "files": [
  3996. ".nupkg.metadata",
  3997. ".signature.p7s",
  3998. "ThirdPartyNotices.txt",
  3999. "dotnet_library_license.txt",
  4000. "lib/netstandard1.0/_._",
  4001. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4002. "runtime.native.system.security.cryptography.openssl.nuspec"
  4003. ]
  4004. },
  4005. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4006. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4007. "type": "package",
  4008. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4009. "files": [
  4010. ".nupkg.metadata",
  4011. ".signature.p7s",
  4012. "ThirdPartyNotices.txt",
  4013. "dotnet_library_license.txt",
  4014. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4015. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4016. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4017. ]
  4018. },
  4019. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4020. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4021. "type": "package",
  4022. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4023. "files": [
  4024. ".nupkg.metadata",
  4025. ".signature.p7s",
  4026. "ThirdPartyNotices.txt",
  4027. "dotnet_library_license.txt",
  4028. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4029. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4030. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4031. ]
  4032. },
  4033. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4034. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4035. "type": "package",
  4036. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4037. "files": [
  4038. ".nupkg.metadata",
  4039. ".signature.p7s",
  4040. "ThirdPartyNotices.txt",
  4041. "dotnet_library_license.txt",
  4042. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4043. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4044. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4045. ]
  4046. },
  4047. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4048. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4049. "type": "package",
  4050. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4051. "files": [
  4052. ".nupkg.metadata",
  4053. ".signature.p7s",
  4054. "ThirdPartyNotices.txt",
  4055. "dotnet_library_license.txt",
  4056. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4057. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4058. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4059. ]
  4060. },
  4061. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4062. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4063. "type": "package",
  4064. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4065. "files": [
  4066. ".nupkg.metadata",
  4067. ".signature.p7s",
  4068. "ThirdPartyNotices.txt",
  4069. "dotnet_library_license.txt",
  4070. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4071. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4072. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4073. ]
  4074. },
  4075. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4076. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4077. "type": "package",
  4078. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4079. "files": [
  4080. ".nupkg.metadata",
  4081. ".signature.p7s",
  4082. "ThirdPartyNotices.txt",
  4083. "dotnet_library_license.txt",
  4084. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4085. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4086. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4087. ]
  4088. },
  4089. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4090. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4091. "type": "package",
  4092. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4093. "files": [
  4094. ".nupkg.metadata",
  4095. ".signature.p7s",
  4096. "ThirdPartyNotices.txt",
  4097. "dotnet_library_license.txt",
  4098. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4099. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4100. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4101. ]
  4102. },
  4103. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4104. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4105. "type": "package",
  4106. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4107. "files": [
  4108. ".nupkg.metadata",
  4109. ".signature.p7s",
  4110. "ThirdPartyNotices.txt",
  4111. "dotnet_library_license.txt",
  4112. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4113. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4114. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4115. ]
  4116. },
  4117. "SharpZipLib/1.3.1": {
  4118. "sha512": "/iMph6bLdKzDhwM/vkAo4BU8z5QQnyodlkZon3XRMtRmVuWv5Rph1kaDmd9XjrQxjPJPuLquTSrkEoSPq/flVw==",
  4119. "type": "package",
  4120. "path": "sharpziplib/1.3.1",
  4121. "files": [
  4122. ".nupkg.metadata",
  4123. ".signature.p7s",
  4124. "images/sharpziplib-nuget-256x256.png",
  4125. "lib/net45/ICSharpCode.SharpZipLib.dll",
  4126. "lib/net45/ICSharpCode.SharpZipLib.pdb",
  4127. "lib/net45/ICSharpCode.SharpZipLib.xml",
  4128. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
  4129. "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
  4130. "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
  4131. "sharpziplib.1.3.1.nupkg.sha512",
  4132. "sharpziplib.nuspec"
  4133. ]
  4134. },
  4135. "SQLitePCLRaw.bundle_e_sqlite3/2.0.6": {
  4136. "sha512": "zssYqiaucyGArZfg74rJuzK0ewgZiidsRVrZTmP7JLNvK806gXg6PGA46XzoJGpNPPA5uRcumwvVp6YTYxtQ5w==",
  4137. "type": "package",
  4138. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.6",
  4139. "files": [
  4140. ".nupkg.metadata",
  4141. ".signature.p7s",
  4142. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4143. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  4144. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  4145. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  4146. "sqlitepclraw.bundle_e_sqlite3.2.0.6.nupkg.sha512",
  4147. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  4148. ]
  4149. },
  4150. "SQLitePCLRaw.core/2.0.6": {
  4151. "sha512": "Vh8n0dTvwXkCGur2WqQTITvk4BUO8i8h9ucSx3wwuaej3s2S6ZC0R7vqCTf9TfS/I4QkXO6g3W2YQIRFkOcijA==",
  4152. "type": "package",
  4153. "path": "sqlitepclraw.core/2.0.6",
  4154. "files": [
  4155. ".nupkg.metadata",
  4156. ".signature.p7s",
  4157. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  4158. "sqlitepclraw.core.2.0.6.nupkg.sha512",
  4159. "sqlitepclraw.core.nuspec"
  4160. ]
  4161. },
  4162. "SQLitePCLRaw.lib.e_sqlite3/2.0.6": {
  4163. "sha512": "xlstskMKalKQl0H2uLNe0viBM6fvAGLWqKZUQ3twX5y1tSOZKe0+EbXopQKYdbjJytNGI6y5WSKjpI+kVr2Ckg==",
  4164. "type": "package",
  4165. "path": "sqlitepclraw.lib.e_sqlite3/2.0.6",
  4166. "files": [
  4167. ".nupkg.metadata",
  4168. ".signature.p7s",
  4169. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  4170. "lib/net461/_._",
  4171. "lib/netstandard2.0/_._",
  4172. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4173. "runtimes/linux-arm/native/libe_sqlite3.so",
  4174. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4175. "runtimes/linux-armel/native/libe_sqlite3.so",
  4176. "runtimes/linux-mips64/native/libe_sqlite3.so",
  4177. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4178. "runtimes/linux-s390x/native/libe_sqlite3.so",
  4179. "runtimes/linux-x64/native/libe_sqlite3.so",
  4180. "runtimes/linux-x86/native/libe_sqlite3.so",
  4181. "runtimes/osx-arm64/native/libe_sqlite3.dylib",
  4182. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4183. "runtimes/win-arm/native/e_sqlite3.dll",
  4184. "runtimes/win-arm64/native/e_sqlite3.dll",
  4185. "runtimes/win-x64/native/e_sqlite3.dll",
  4186. "runtimes/win-x86/native/e_sqlite3.dll",
  4187. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  4188. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  4189. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  4190. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  4191. "sqlitepclraw.lib.e_sqlite3.2.0.6.nupkg.sha512",
  4192. "sqlitepclraw.lib.e_sqlite3.nuspec"
  4193. ]
  4194. },
  4195. "SQLitePCLRaw.provider.e_sqlite3/2.0.6": {
  4196. "sha512": "peXLJbhU+0clVBIPirihM1NoTBqw8ouBpcUsVMlcZ4k6fcL2hwgkctVB2Nt5VsbnOJcPspQL5xQK7QvLpxkMgg==",
  4197. "type": "package",
  4198. "path": "sqlitepclraw.provider.e_sqlite3/2.0.6",
  4199. "files": [
  4200. ".nupkg.metadata",
  4201. ".signature.p7s",
  4202. "lib/net5.0/SQLitePCLRaw.provider.e_sqlite3.dll",
  4203. "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll",
  4204. "lib/uap10.0/SQLitePCLRaw.provider.e_sqlite3.dll",
  4205. "sqlitepclraw.provider.e_sqlite3.2.0.6.nupkg.sha512",
  4206. "sqlitepclraw.provider.e_sqlite3.nuspec"
  4207. ]
  4208. },
  4209. "Swashbuckle.AspNetCore/6.2.3": {
  4210. "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==",
  4211. "type": "package",
  4212. "path": "swashbuckle.aspnetcore/6.2.3",
  4213. "files": [
  4214. ".nupkg.metadata",
  4215. ".signature.p7s",
  4216. "build/Swashbuckle.AspNetCore.props",
  4217. "swashbuckle.aspnetcore.6.2.3.nupkg.sha512",
  4218. "swashbuckle.aspnetcore.nuspec"
  4219. ]
  4220. },
  4221. "Swashbuckle.AspNetCore.Swagger/6.2.3": {
  4222. "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==",
  4223. "type": "package",
  4224. "path": "swashbuckle.aspnetcore.swagger/6.2.3",
  4225. "files": [
  4226. ".nupkg.metadata",
  4227. ".signature.p7s",
  4228. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  4229. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4230. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  4231. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  4232. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4233. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  4234. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4235. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4236. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4237. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4238. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4239. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4240. "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512",
  4241. "swashbuckle.aspnetcore.swagger.nuspec"
  4242. ]
  4243. },
  4244. "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {
  4245. "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==",
  4246. "type": "package",
  4247. "path": "swashbuckle.aspnetcore.swaggergen/6.2.3",
  4248. "files": [
  4249. ".nupkg.metadata",
  4250. ".signature.p7s",
  4251. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4252. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4253. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4254. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4255. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4256. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4257. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4258. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4259. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4260. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4261. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4262. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4263. "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512",
  4264. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4265. ]
  4266. },
  4267. "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {
  4268. "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==",
  4269. "type": "package",
  4270. "path": "swashbuckle.aspnetcore.swaggerui/6.2.3",
  4271. "files": [
  4272. ".nupkg.metadata",
  4273. ".signature.p7s",
  4274. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4275. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4276. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4277. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4278. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4279. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4280. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4281. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4282. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4283. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4284. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4285. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4286. "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512",
  4287. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4288. ]
  4289. },
  4290. "System.AppContext/4.3.0": {
  4291. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4292. "type": "package",
  4293. "path": "system.appcontext/4.3.0",
  4294. "files": [
  4295. ".nupkg.metadata",
  4296. ".signature.p7s",
  4297. "ThirdPartyNotices.txt",
  4298. "dotnet_library_license.txt",
  4299. "lib/MonoAndroid10/_._",
  4300. "lib/MonoTouch10/_._",
  4301. "lib/net46/System.AppContext.dll",
  4302. "lib/net463/System.AppContext.dll",
  4303. "lib/netcore50/System.AppContext.dll",
  4304. "lib/netstandard1.6/System.AppContext.dll",
  4305. "lib/xamarinios10/_._",
  4306. "lib/xamarinmac20/_._",
  4307. "lib/xamarintvos10/_._",
  4308. "lib/xamarinwatchos10/_._",
  4309. "ref/MonoAndroid10/_._",
  4310. "ref/MonoTouch10/_._",
  4311. "ref/net46/System.AppContext.dll",
  4312. "ref/net463/System.AppContext.dll",
  4313. "ref/netstandard/_._",
  4314. "ref/netstandard1.3/System.AppContext.dll",
  4315. "ref/netstandard1.3/System.AppContext.xml",
  4316. "ref/netstandard1.3/de/System.AppContext.xml",
  4317. "ref/netstandard1.3/es/System.AppContext.xml",
  4318. "ref/netstandard1.3/fr/System.AppContext.xml",
  4319. "ref/netstandard1.3/it/System.AppContext.xml",
  4320. "ref/netstandard1.3/ja/System.AppContext.xml",
  4321. "ref/netstandard1.3/ko/System.AppContext.xml",
  4322. "ref/netstandard1.3/ru/System.AppContext.xml",
  4323. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4324. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4325. "ref/netstandard1.6/System.AppContext.dll",
  4326. "ref/netstandard1.6/System.AppContext.xml",
  4327. "ref/netstandard1.6/de/System.AppContext.xml",
  4328. "ref/netstandard1.6/es/System.AppContext.xml",
  4329. "ref/netstandard1.6/fr/System.AppContext.xml",
  4330. "ref/netstandard1.6/it/System.AppContext.xml",
  4331. "ref/netstandard1.6/ja/System.AppContext.xml",
  4332. "ref/netstandard1.6/ko/System.AppContext.xml",
  4333. "ref/netstandard1.6/ru/System.AppContext.xml",
  4334. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4335. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4336. "ref/xamarinios10/_._",
  4337. "ref/xamarinmac20/_._",
  4338. "ref/xamarintvos10/_._",
  4339. "ref/xamarinwatchos10/_._",
  4340. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4341. "system.appcontext.4.3.0.nupkg.sha512",
  4342. "system.appcontext.nuspec"
  4343. ]
  4344. },
  4345. "System.Buffers/4.5.1": {
  4346. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4347. "type": "package",
  4348. "path": "system.buffers/4.5.1",
  4349. "files": [
  4350. ".nupkg.metadata",
  4351. ".signature.p7s",
  4352. "LICENSE.TXT",
  4353. "THIRD-PARTY-NOTICES.TXT",
  4354. "lib/net461/System.Buffers.dll",
  4355. "lib/net461/System.Buffers.xml",
  4356. "lib/netcoreapp2.0/_._",
  4357. "lib/netstandard1.1/System.Buffers.dll",
  4358. "lib/netstandard1.1/System.Buffers.xml",
  4359. "lib/netstandard2.0/System.Buffers.dll",
  4360. "lib/netstandard2.0/System.Buffers.xml",
  4361. "lib/uap10.0.16299/_._",
  4362. "ref/net45/System.Buffers.dll",
  4363. "ref/net45/System.Buffers.xml",
  4364. "ref/netcoreapp2.0/_._",
  4365. "ref/netstandard1.1/System.Buffers.dll",
  4366. "ref/netstandard1.1/System.Buffers.xml",
  4367. "ref/netstandard2.0/System.Buffers.dll",
  4368. "ref/netstandard2.0/System.Buffers.xml",
  4369. "ref/uap10.0.16299/_._",
  4370. "system.buffers.4.5.1.nupkg.sha512",
  4371. "system.buffers.nuspec",
  4372. "useSharedDesignerContext.txt",
  4373. "version.txt"
  4374. ]
  4375. },
  4376. "System.CodeDom/4.4.0": {
  4377. "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
  4378. "type": "package",
  4379. "path": "system.codedom/4.4.0",
  4380. "files": [
  4381. ".nupkg.metadata",
  4382. ".signature.p7s",
  4383. "LICENSE.TXT",
  4384. "THIRD-PARTY-NOTICES.TXT",
  4385. "lib/net461/System.CodeDom.dll",
  4386. "lib/netstandard2.0/System.CodeDom.dll",
  4387. "ref/net461/System.CodeDom.dll",
  4388. "ref/net461/System.CodeDom.xml",
  4389. "ref/netstandard2.0/System.CodeDom.dll",
  4390. "ref/netstandard2.0/System.CodeDom.xml",
  4391. "system.codedom.4.4.0.nupkg.sha512",
  4392. "system.codedom.nuspec",
  4393. "useSharedDesignerContext.txt",
  4394. "version.txt"
  4395. ]
  4396. },
  4397. "System.Collections/4.3.0": {
  4398. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4399. "type": "package",
  4400. "path": "system.collections/4.3.0",
  4401. "files": [
  4402. ".nupkg.metadata",
  4403. ".signature.p7s",
  4404. "ThirdPartyNotices.txt",
  4405. "dotnet_library_license.txt",
  4406. "lib/MonoAndroid10/_._",
  4407. "lib/MonoTouch10/_._",
  4408. "lib/net45/_._",
  4409. "lib/portable-net45+win8+wp8+wpa81/_._",
  4410. "lib/win8/_._",
  4411. "lib/wp80/_._",
  4412. "lib/wpa81/_._",
  4413. "lib/xamarinios10/_._",
  4414. "lib/xamarinmac20/_._",
  4415. "lib/xamarintvos10/_._",
  4416. "lib/xamarinwatchos10/_._",
  4417. "ref/MonoAndroid10/_._",
  4418. "ref/MonoTouch10/_._",
  4419. "ref/net45/_._",
  4420. "ref/netcore50/System.Collections.dll",
  4421. "ref/netcore50/System.Collections.xml",
  4422. "ref/netcore50/de/System.Collections.xml",
  4423. "ref/netcore50/es/System.Collections.xml",
  4424. "ref/netcore50/fr/System.Collections.xml",
  4425. "ref/netcore50/it/System.Collections.xml",
  4426. "ref/netcore50/ja/System.Collections.xml",
  4427. "ref/netcore50/ko/System.Collections.xml",
  4428. "ref/netcore50/ru/System.Collections.xml",
  4429. "ref/netcore50/zh-hans/System.Collections.xml",
  4430. "ref/netcore50/zh-hant/System.Collections.xml",
  4431. "ref/netstandard1.0/System.Collections.dll",
  4432. "ref/netstandard1.0/System.Collections.xml",
  4433. "ref/netstandard1.0/de/System.Collections.xml",
  4434. "ref/netstandard1.0/es/System.Collections.xml",
  4435. "ref/netstandard1.0/fr/System.Collections.xml",
  4436. "ref/netstandard1.0/it/System.Collections.xml",
  4437. "ref/netstandard1.0/ja/System.Collections.xml",
  4438. "ref/netstandard1.0/ko/System.Collections.xml",
  4439. "ref/netstandard1.0/ru/System.Collections.xml",
  4440. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4441. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4442. "ref/netstandard1.3/System.Collections.dll",
  4443. "ref/netstandard1.3/System.Collections.xml",
  4444. "ref/netstandard1.3/de/System.Collections.xml",
  4445. "ref/netstandard1.3/es/System.Collections.xml",
  4446. "ref/netstandard1.3/fr/System.Collections.xml",
  4447. "ref/netstandard1.3/it/System.Collections.xml",
  4448. "ref/netstandard1.3/ja/System.Collections.xml",
  4449. "ref/netstandard1.3/ko/System.Collections.xml",
  4450. "ref/netstandard1.3/ru/System.Collections.xml",
  4451. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4452. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4453. "ref/portable-net45+win8+wp8+wpa81/_._",
  4454. "ref/win8/_._",
  4455. "ref/wp80/_._",
  4456. "ref/wpa81/_._",
  4457. "ref/xamarinios10/_._",
  4458. "ref/xamarinmac20/_._",
  4459. "ref/xamarintvos10/_._",
  4460. "ref/xamarinwatchos10/_._",
  4461. "system.collections.4.3.0.nupkg.sha512",
  4462. "system.collections.nuspec"
  4463. ]
  4464. },
  4465. "System.Collections.Concurrent/4.3.0": {
  4466. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4467. "type": "package",
  4468. "path": "system.collections.concurrent/4.3.0",
  4469. "files": [
  4470. ".nupkg.metadata",
  4471. ".signature.p7s",
  4472. "ThirdPartyNotices.txt",
  4473. "dotnet_library_license.txt",
  4474. "lib/MonoAndroid10/_._",
  4475. "lib/MonoTouch10/_._",
  4476. "lib/net45/_._",
  4477. "lib/netcore50/System.Collections.Concurrent.dll",
  4478. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4479. "lib/portable-net45+win8+wpa81/_._",
  4480. "lib/win8/_._",
  4481. "lib/wpa81/_._",
  4482. "lib/xamarinios10/_._",
  4483. "lib/xamarinmac20/_._",
  4484. "lib/xamarintvos10/_._",
  4485. "lib/xamarinwatchos10/_._",
  4486. "ref/MonoAndroid10/_._",
  4487. "ref/MonoTouch10/_._",
  4488. "ref/net45/_._",
  4489. "ref/netcore50/System.Collections.Concurrent.dll",
  4490. "ref/netcore50/System.Collections.Concurrent.xml",
  4491. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4492. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4493. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4494. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4495. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4496. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4497. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4498. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4499. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4500. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4501. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4502. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4503. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4504. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4505. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4506. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4507. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4508. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4509. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4510. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4511. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4512. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4513. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4514. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4515. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4516. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4517. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4518. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4519. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4520. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4521. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4522. "ref/portable-net45+win8+wpa81/_._",
  4523. "ref/win8/_._",
  4524. "ref/wpa81/_._",
  4525. "ref/xamarinios10/_._",
  4526. "ref/xamarinmac20/_._",
  4527. "ref/xamarintvos10/_._",
  4528. "ref/xamarinwatchos10/_._",
  4529. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4530. "system.collections.concurrent.nuspec"
  4531. ]
  4532. },
  4533. "System.Collections.Immutable/6.0.0": {
  4534. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  4535. "type": "package",
  4536. "path": "system.collections.immutable/6.0.0",
  4537. "files": [
  4538. ".nupkg.metadata",
  4539. ".signature.p7s",
  4540. "Icon.png",
  4541. "LICENSE.TXT",
  4542. "THIRD-PARTY-NOTICES.TXT",
  4543. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  4544. "buildTransitive/netcoreapp3.1/_._",
  4545. "lib/net461/System.Collections.Immutable.dll",
  4546. "lib/net461/System.Collections.Immutable.xml",
  4547. "lib/net6.0/System.Collections.Immutable.dll",
  4548. "lib/net6.0/System.Collections.Immutable.xml",
  4549. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4550. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4551. "system.collections.immutable.6.0.0.nupkg.sha512",
  4552. "system.collections.immutable.nuspec",
  4553. "useSharedDesignerContext.txt"
  4554. ]
  4555. },
  4556. "System.Collections.NonGeneric/4.3.0": {
  4557. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4558. "type": "package",
  4559. "path": "system.collections.nongeneric/4.3.0",
  4560. "files": [
  4561. ".nupkg.metadata",
  4562. ".signature.p7s",
  4563. "ThirdPartyNotices.txt",
  4564. "dotnet_library_license.txt",
  4565. "lib/MonoAndroid10/_._",
  4566. "lib/MonoTouch10/_._",
  4567. "lib/net46/System.Collections.NonGeneric.dll",
  4568. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4569. "lib/xamarinios10/_._",
  4570. "lib/xamarinmac20/_._",
  4571. "lib/xamarintvos10/_._",
  4572. "lib/xamarinwatchos10/_._",
  4573. "ref/MonoAndroid10/_._",
  4574. "ref/MonoTouch10/_._",
  4575. "ref/net46/System.Collections.NonGeneric.dll",
  4576. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4577. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4578. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4579. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4580. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4581. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4582. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4583. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4584. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4585. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4586. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4587. "ref/xamarinios10/_._",
  4588. "ref/xamarinmac20/_._",
  4589. "ref/xamarintvos10/_._",
  4590. "ref/xamarinwatchos10/_._",
  4591. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4592. "system.collections.nongeneric.nuspec"
  4593. ]
  4594. },
  4595. "System.Collections.Specialized/4.3.0": {
  4596. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4597. "type": "package",
  4598. "path": "system.collections.specialized/4.3.0",
  4599. "files": [
  4600. ".nupkg.metadata",
  4601. ".signature.p7s",
  4602. "ThirdPartyNotices.txt",
  4603. "dotnet_library_license.txt",
  4604. "lib/MonoAndroid10/_._",
  4605. "lib/MonoTouch10/_._",
  4606. "lib/net46/System.Collections.Specialized.dll",
  4607. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4608. "lib/xamarinios10/_._",
  4609. "lib/xamarinmac20/_._",
  4610. "lib/xamarintvos10/_._",
  4611. "lib/xamarinwatchos10/_._",
  4612. "ref/MonoAndroid10/_._",
  4613. "ref/MonoTouch10/_._",
  4614. "ref/net46/System.Collections.Specialized.dll",
  4615. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4616. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4617. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4618. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4619. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4620. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4621. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4622. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4623. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4624. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4625. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4626. "ref/xamarinios10/_._",
  4627. "ref/xamarinmac20/_._",
  4628. "ref/xamarintvos10/_._",
  4629. "ref/xamarinwatchos10/_._",
  4630. "system.collections.specialized.4.3.0.nupkg.sha512",
  4631. "system.collections.specialized.nuspec"
  4632. ]
  4633. },
  4634. "System.ComponentModel/4.3.0": {
  4635. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4636. "type": "package",
  4637. "path": "system.componentmodel/4.3.0",
  4638. "files": [
  4639. ".nupkg.metadata",
  4640. ".signature.p7s",
  4641. "ThirdPartyNotices.txt",
  4642. "dotnet_library_license.txt",
  4643. "lib/MonoAndroid10/_._",
  4644. "lib/MonoTouch10/_._",
  4645. "lib/net45/_._",
  4646. "lib/netcore50/System.ComponentModel.dll",
  4647. "lib/netstandard1.3/System.ComponentModel.dll",
  4648. "lib/portable-net45+win8+wp8+wpa81/_._",
  4649. "lib/win8/_._",
  4650. "lib/wp80/_._",
  4651. "lib/wpa81/_._",
  4652. "lib/xamarinios10/_._",
  4653. "lib/xamarinmac20/_._",
  4654. "lib/xamarintvos10/_._",
  4655. "lib/xamarinwatchos10/_._",
  4656. "ref/MonoAndroid10/_._",
  4657. "ref/MonoTouch10/_._",
  4658. "ref/net45/_._",
  4659. "ref/netcore50/System.ComponentModel.dll",
  4660. "ref/netcore50/System.ComponentModel.xml",
  4661. "ref/netcore50/de/System.ComponentModel.xml",
  4662. "ref/netcore50/es/System.ComponentModel.xml",
  4663. "ref/netcore50/fr/System.ComponentModel.xml",
  4664. "ref/netcore50/it/System.ComponentModel.xml",
  4665. "ref/netcore50/ja/System.ComponentModel.xml",
  4666. "ref/netcore50/ko/System.ComponentModel.xml",
  4667. "ref/netcore50/ru/System.ComponentModel.xml",
  4668. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4669. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4670. "ref/netstandard1.0/System.ComponentModel.dll",
  4671. "ref/netstandard1.0/System.ComponentModel.xml",
  4672. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4673. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4674. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4675. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4676. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4677. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4678. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4679. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4680. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4681. "ref/portable-net45+win8+wp8+wpa81/_._",
  4682. "ref/win8/_._",
  4683. "ref/wp80/_._",
  4684. "ref/wpa81/_._",
  4685. "ref/xamarinios10/_._",
  4686. "ref/xamarinmac20/_._",
  4687. "ref/xamarintvos10/_._",
  4688. "ref/xamarinwatchos10/_._",
  4689. "system.componentmodel.4.3.0.nupkg.sha512",
  4690. "system.componentmodel.nuspec"
  4691. ]
  4692. },
  4693. "System.ComponentModel.Primitives/4.3.0": {
  4694. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4695. "type": "package",
  4696. "path": "system.componentmodel.primitives/4.3.0",
  4697. "files": [
  4698. ".nupkg.metadata",
  4699. ".signature.p7s",
  4700. "ThirdPartyNotices.txt",
  4701. "dotnet_library_license.txt",
  4702. "lib/MonoAndroid10/_._",
  4703. "lib/MonoTouch10/_._",
  4704. "lib/net45/System.ComponentModel.Primitives.dll",
  4705. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4706. "lib/xamarinios10/_._",
  4707. "lib/xamarinmac20/_._",
  4708. "lib/xamarintvos10/_._",
  4709. "lib/xamarinwatchos10/_._",
  4710. "ref/MonoAndroid10/_._",
  4711. "ref/MonoTouch10/_._",
  4712. "ref/net45/System.ComponentModel.Primitives.dll",
  4713. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4714. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4715. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4716. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4717. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4718. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4719. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4720. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4721. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4722. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4723. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4724. "ref/xamarinios10/_._",
  4725. "ref/xamarinmac20/_._",
  4726. "ref/xamarintvos10/_._",
  4727. "ref/xamarinwatchos10/_._",
  4728. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4729. "system.componentmodel.primitives.nuspec"
  4730. ]
  4731. },
  4732. "System.ComponentModel.TypeConverter/4.3.0": {
  4733. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4734. "type": "package",
  4735. "path": "system.componentmodel.typeconverter/4.3.0",
  4736. "files": [
  4737. ".nupkg.metadata",
  4738. ".signature.p7s",
  4739. "ThirdPartyNotices.txt",
  4740. "dotnet_library_license.txt",
  4741. "lib/MonoAndroid10/_._",
  4742. "lib/MonoTouch10/_._",
  4743. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4744. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4745. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4746. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4747. "lib/xamarinios10/_._",
  4748. "lib/xamarinmac20/_._",
  4749. "lib/xamarintvos10/_._",
  4750. "lib/xamarinwatchos10/_._",
  4751. "ref/MonoAndroid10/_._",
  4752. "ref/MonoTouch10/_._",
  4753. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4754. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4755. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4756. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4757. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4758. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4759. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4760. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4761. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4762. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4763. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4764. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4765. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4766. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4767. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4768. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4769. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4770. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4771. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4772. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4773. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4774. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4775. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4776. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4777. "ref/xamarinios10/_._",
  4778. "ref/xamarinmac20/_._",
  4779. "ref/xamarintvos10/_._",
  4780. "ref/xamarinwatchos10/_._",
  4781. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4782. "system.componentmodel.typeconverter.nuspec"
  4783. ]
  4784. },
  4785. "System.Configuration.ConfigurationManager/4.7.0": {
  4786. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4787. "type": "package",
  4788. "path": "system.configuration.configurationmanager/4.7.0",
  4789. "files": [
  4790. ".nupkg.metadata",
  4791. ".signature.p7s",
  4792. "LICENSE.TXT",
  4793. "THIRD-PARTY-NOTICES.TXT",
  4794. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4795. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4796. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4797. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4798. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4799. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4800. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4801. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4802. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4803. "system.configuration.configurationmanager.nuspec",
  4804. "useSharedDesignerContext.txt",
  4805. "version.txt"
  4806. ]
  4807. },
  4808. "System.Console/4.3.0": {
  4809. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4810. "type": "package",
  4811. "path": "system.console/4.3.0",
  4812. "files": [
  4813. ".nupkg.metadata",
  4814. ".signature.p7s",
  4815. "ThirdPartyNotices.txt",
  4816. "dotnet_library_license.txt",
  4817. "lib/MonoAndroid10/_._",
  4818. "lib/MonoTouch10/_._",
  4819. "lib/net46/System.Console.dll",
  4820. "lib/xamarinios10/_._",
  4821. "lib/xamarinmac20/_._",
  4822. "lib/xamarintvos10/_._",
  4823. "lib/xamarinwatchos10/_._",
  4824. "ref/MonoAndroid10/_._",
  4825. "ref/MonoTouch10/_._",
  4826. "ref/net46/System.Console.dll",
  4827. "ref/netstandard1.3/System.Console.dll",
  4828. "ref/netstandard1.3/System.Console.xml",
  4829. "ref/netstandard1.3/de/System.Console.xml",
  4830. "ref/netstandard1.3/es/System.Console.xml",
  4831. "ref/netstandard1.3/fr/System.Console.xml",
  4832. "ref/netstandard1.3/it/System.Console.xml",
  4833. "ref/netstandard1.3/ja/System.Console.xml",
  4834. "ref/netstandard1.3/ko/System.Console.xml",
  4835. "ref/netstandard1.3/ru/System.Console.xml",
  4836. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4837. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4838. "ref/xamarinios10/_._",
  4839. "ref/xamarinmac20/_._",
  4840. "ref/xamarintvos10/_._",
  4841. "ref/xamarinwatchos10/_._",
  4842. "system.console.4.3.0.nupkg.sha512",
  4843. "system.console.nuspec"
  4844. ]
  4845. },
  4846. "System.Diagnostics.Debug/4.3.0": {
  4847. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4848. "type": "package",
  4849. "path": "system.diagnostics.debug/4.3.0",
  4850. "files": [
  4851. ".nupkg.metadata",
  4852. ".signature.p7s",
  4853. "ThirdPartyNotices.txt",
  4854. "dotnet_library_license.txt",
  4855. "lib/MonoAndroid10/_._",
  4856. "lib/MonoTouch10/_._",
  4857. "lib/net45/_._",
  4858. "lib/portable-net45+win8+wp8+wpa81/_._",
  4859. "lib/win8/_._",
  4860. "lib/wp80/_._",
  4861. "lib/wpa81/_._",
  4862. "lib/xamarinios10/_._",
  4863. "lib/xamarinmac20/_._",
  4864. "lib/xamarintvos10/_._",
  4865. "lib/xamarinwatchos10/_._",
  4866. "ref/MonoAndroid10/_._",
  4867. "ref/MonoTouch10/_._",
  4868. "ref/net45/_._",
  4869. "ref/netcore50/System.Diagnostics.Debug.dll",
  4870. "ref/netcore50/System.Diagnostics.Debug.xml",
  4871. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4872. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4873. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4874. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4875. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4876. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4877. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4878. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4879. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4880. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4881. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4882. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4883. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4884. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4885. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4886. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4887. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4888. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4889. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4890. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4891. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4892. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4893. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4894. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4895. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4896. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4897. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4898. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4899. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4900. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4901. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4902. "ref/portable-net45+win8+wp8+wpa81/_._",
  4903. "ref/win8/_._",
  4904. "ref/wp80/_._",
  4905. "ref/wpa81/_._",
  4906. "ref/xamarinios10/_._",
  4907. "ref/xamarinmac20/_._",
  4908. "ref/xamarintvos10/_._",
  4909. "ref/xamarinwatchos10/_._",
  4910. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4911. "system.diagnostics.debug.nuspec"
  4912. ]
  4913. },
  4914. "System.Diagnostics.DiagnosticSource/6.0.0": {
  4915. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  4916. "type": "package",
  4917. "path": "system.diagnostics.diagnosticsource/6.0.0",
  4918. "files": [
  4919. ".nupkg.metadata",
  4920. ".signature.p7s",
  4921. "Icon.png",
  4922. "LICENSE.TXT",
  4923. "THIRD-PARTY-NOTICES.TXT",
  4924. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  4925. "buildTransitive/netcoreapp3.1/_._",
  4926. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  4927. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  4928. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  4929. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  4930. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  4931. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  4932. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  4933. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  4934. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  4935. "system.diagnostics.diagnosticsource.nuspec",
  4936. "useSharedDesignerContext.txt"
  4937. ]
  4938. },
  4939. "System.Diagnostics.Tools/4.3.0": {
  4940. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4941. "type": "package",
  4942. "path": "system.diagnostics.tools/4.3.0",
  4943. "files": [
  4944. ".nupkg.metadata",
  4945. ".signature.p7s",
  4946. "ThirdPartyNotices.txt",
  4947. "dotnet_library_license.txt",
  4948. "lib/MonoAndroid10/_._",
  4949. "lib/MonoTouch10/_._",
  4950. "lib/net45/_._",
  4951. "lib/portable-net45+win8+wp8+wpa81/_._",
  4952. "lib/win8/_._",
  4953. "lib/wp80/_._",
  4954. "lib/wpa81/_._",
  4955. "lib/xamarinios10/_._",
  4956. "lib/xamarinmac20/_._",
  4957. "lib/xamarintvos10/_._",
  4958. "lib/xamarinwatchos10/_._",
  4959. "ref/MonoAndroid10/_._",
  4960. "ref/MonoTouch10/_._",
  4961. "ref/net45/_._",
  4962. "ref/netcore50/System.Diagnostics.Tools.dll",
  4963. "ref/netcore50/System.Diagnostics.Tools.xml",
  4964. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4965. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4966. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4967. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4968. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4969. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4970. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4971. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4972. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4973. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4974. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4975. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4976. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4977. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4978. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4979. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4980. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4981. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4982. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4983. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4984. "ref/portable-net45+win8+wp8+wpa81/_._",
  4985. "ref/win8/_._",
  4986. "ref/wp80/_._",
  4987. "ref/wpa81/_._",
  4988. "ref/xamarinios10/_._",
  4989. "ref/xamarinmac20/_._",
  4990. "ref/xamarintvos10/_._",
  4991. "ref/xamarinwatchos10/_._",
  4992. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  4993. "system.diagnostics.tools.nuspec"
  4994. ]
  4995. },
  4996. "System.Diagnostics.Tracing/4.3.0": {
  4997. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4998. "type": "package",
  4999. "path": "system.diagnostics.tracing/4.3.0",
  5000. "files": [
  5001. ".nupkg.metadata",
  5002. ".signature.p7s",
  5003. "ThirdPartyNotices.txt",
  5004. "dotnet_library_license.txt",
  5005. "lib/MonoAndroid10/_._",
  5006. "lib/MonoTouch10/_._",
  5007. "lib/net45/_._",
  5008. "lib/net462/System.Diagnostics.Tracing.dll",
  5009. "lib/portable-net45+win8+wpa81/_._",
  5010. "lib/win8/_._",
  5011. "lib/wpa81/_._",
  5012. "lib/xamarinios10/_._",
  5013. "lib/xamarinmac20/_._",
  5014. "lib/xamarintvos10/_._",
  5015. "lib/xamarinwatchos10/_._",
  5016. "ref/MonoAndroid10/_._",
  5017. "ref/MonoTouch10/_._",
  5018. "ref/net45/_._",
  5019. "ref/net462/System.Diagnostics.Tracing.dll",
  5020. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5021. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5022. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5023. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5024. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5025. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5026. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5027. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5028. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5029. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5030. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5031. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5032. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5033. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5034. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5035. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5036. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5037. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5038. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5039. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5040. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5041. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5042. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5043. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5044. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5045. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5046. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5047. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5048. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5049. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5050. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5051. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5052. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5053. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5054. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5055. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5056. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5057. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5058. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5059. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5060. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5061. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5062. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5063. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5064. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5065. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5066. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5067. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5068. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5069. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5070. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5071. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5072. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5073. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5074. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5075. "ref/portable-net45+win8+wpa81/_._",
  5076. "ref/win8/_._",
  5077. "ref/wpa81/_._",
  5078. "ref/xamarinios10/_._",
  5079. "ref/xamarinmac20/_._",
  5080. "ref/xamarintvos10/_._",
  5081. "ref/xamarinwatchos10/_._",
  5082. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5083. "system.diagnostics.tracing.nuspec"
  5084. ]
  5085. },
  5086. "System.Drawing.Common/4.7.0": {
  5087. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  5088. "type": "package",
  5089. "path": "system.drawing.common/4.7.0",
  5090. "files": [
  5091. ".nupkg.metadata",
  5092. ".signature.p7s",
  5093. "LICENSE.TXT",
  5094. "THIRD-PARTY-NOTICES.TXT",
  5095. "lib/MonoAndroid10/_._",
  5096. "lib/MonoTouch10/_._",
  5097. "lib/net461/System.Drawing.Common.dll",
  5098. "lib/netstandard2.0/System.Drawing.Common.dll",
  5099. "lib/xamarinios10/_._",
  5100. "lib/xamarinmac20/_._",
  5101. "lib/xamarintvos10/_._",
  5102. "lib/xamarinwatchos10/_._",
  5103. "ref/MonoAndroid10/_._",
  5104. "ref/MonoTouch10/_._",
  5105. "ref/net461/System.Drawing.Common.dll",
  5106. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5107. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5108. "ref/netstandard2.0/System.Drawing.Common.dll",
  5109. "ref/xamarinios10/_._",
  5110. "ref/xamarinmac20/_._",
  5111. "ref/xamarintvos10/_._",
  5112. "ref/xamarinwatchos10/_._",
  5113. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5114. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5115. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5116. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5117. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5118. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5119. "system.drawing.common.4.7.0.nupkg.sha512",
  5120. "system.drawing.common.nuspec",
  5121. "useSharedDesignerContext.txt",
  5122. "version.txt"
  5123. ]
  5124. },
  5125. "System.Globalization/4.3.0": {
  5126. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5127. "type": "package",
  5128. "path": "system.globalization/4.3.0",
  5129. "files": [
  5130. ".nupkg.metadata",
  5131. ".signature.p7s",
  5132. "ThirdPartyNotices.txt",
  5133. "dotnet_library_license.txt",
  5134. "lib/MonoAndroid10/_._",
  5135. "lib/MonoTouch10/_._",
  5136. "lib/net45/_._",
  5137. "lib/portable-net45+win8+wp8+wpa81/_._",
  5138. "lib/win8/_._",
  5139. "lib/wp80/_._",
  5140. "lib/wpa81/_._",
  5141. "lib/xamarinios10/_._",
  5142. "lib/xamarinmac20/_._",
  5143. "lib/xamarintvos10/_._",
  5144. "lib/xamarinwatchos10/_._",
  5145. "ref/MonoAndroid10/_._",
  5146. "ref/MonoTouch10/_._",
  5147. "ref/net45/_._",
  5148. "ref/netcore50/System.Globalization.dll",
  5149. "ref/netcore50/System.Globalization.xml",
  5150. "ref/netcore50/de/System.Globalization.xml",
  5151. "ref/netcore50/es/System.Globalization.xml",
  5152. "ref/netcore50/fr/System.Globalization.xml",
  5153. "ref/netcore50/it/System.Globalization.xml",
  5154. "ref/netcore50/ja/System.Globalization.xml",
  5155. "ref/netcore50/ko/System.Globalization.xml",
  5156. "ref/netcore50/ru/System.Globalization.xml",
  5157. "ref/netcore50/zh-hans/System.Globalization.xml",
  5158. "ref/netcore50/zh-hant/System.Globalization.xml",
  5159. "ref/netstandard1.0/System.Globalization.dll",
  5160. "ref/netstandard1.0/System.Globalization.xml",
  5161. "ref/netstandard1.0/de/System.Globalization.xml",
  5162. "ref/netstandard1.0/es/System.Globalization.xml",
  5163. "ref/netstandard1.0/fr/System.Globalization.xml",
  5164. "ref/netstandard1.0/it/System.Globalization.xml",
  5165. "ref/netstandard1.0/ja/System.Globalization.xml",
  5166. "ref/netstandard1.0/ko/System.Globalization.xml",
  5167. "ref/netstandard1.0/ru/System.Globalization.xml",
  5168. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5169. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5170. "ref/netstandard1.3/System.Globalization.dll",
  5171. "ref/netstandard1.3/System.Globalization.xml",
  5172. "ref/netstandard1.3/de/System.Globalization.xml",
  5173. "ref/netstandard1.3/es/System.Globalization.xml",
  5174. "ref/netstandard1.3/fr/System.Globalization.xml",
  5175. "ref/netstandard1.3/it/System.Globalization.xml",
  5176. "ref/netstandard1.3/ja/System.Globalization.xml",
  5177. "ref/netstandard1.3/ko/System.Globalization.xml",
  5178. "ref/netstandard1.3/ru/System.Globalization.xml",
  5179. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5180. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5181. "ref/portable-net45+win8+wp8+wpa81/_._",
  5182. "ref/win8/_._",
  5183. "ref/wp80/_._",
  5184. "ref/wpa81/_._",
  5185. "ref/xamarinios10/_._",
  5186. "ref/xamarinmac20/_._",
  5187. "ref/xamarintvos10/_._",
  5188. "ref/xamarinwatchos10/_._",
  5189. "system.globalization.4.3.0.nupkg.sha512",
  5190. "system.globalization.nuspec"
  5191. ]
  5192. },
  5193. "System.Globalization.Calendars/4.3.0": {
  5194. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5195. "type": "package",
  5196. "path": "system.globalization.calendars/4.3.0",
  5197. "files": [
  5198. ".nupkg.metadata",
  5199. ".signature.p7s",
  5200. "ThirdPartyNotices.txt",
  5201. "dotnet_library_license.txt",
  5202. "lib/MonoAndroid10/_._",
  5203. "lib/MonoTouch10/_._",
  5204. "lib/net46/System.Globalization.Calendars.dll",
  5205. "lib/xamarinios10/_._",
  5206. "lib/xamarinmac20/_._",
  5207. "lib/xamarintvos10/_._",
  5208. "lib/xamarinwatchos10/_._",
  5209. "ref/MonoAndroid10/_._",
  5210. "ref/MonoTouch10/_._",
  5211. "ref/net46/System.Globalization.Calendars.dll",
  5212. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5213. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5214. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5215. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5216. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5217. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5218. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5219. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5220. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5221. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5222. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5223. "ref/xamarinios10/_._",
  5224. "ref/xamarinmac20/_._",
  5225. "ref/xamarintvos10/_._",
  5226. "ref/xamarinwatchos10/_._",
  5227. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5228. "system.globalization.calendars.nuspec"
  5229. ]
  5230. },
  5231. "System.Globalization.Extensions/4.3.0": {
  5232. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5233. "type": "package",
  5234. "path": "system.globalization.extensions/4.3.0",
  5235. "files": [
  5236. ".nupkg.metadata",
  5237. ".signature.p7s",
  5238. "ThirdPartyNotices.txt",
  5239. "dotnet_library_license.txt",
  5240. "lib/MonoAndroid10/_._",
  5241. "lib/MonoTouch10/_._",
  5242. "lib/net46/System.Globalization.Extensions.dll",
  5243. "lib/xamarinios10/_._",
  5244. "lib/xamarinmac20/_._",
  5245. "lib/xamarintvos10/_._",
  5246. "lib/xamarinwatchos10/_._",
  5247. "ref/MonoAndroid10/_._",
  5248. "ref/MonoTouch10/_._",
  5249. "ref/net46/System.Globalization.Extensions.dll",
  5250. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5251. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5252. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5253. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5254. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5255. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5256. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5257. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5258. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5259. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5260. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5261. "ref/xamarinios10/_._",
  5262. "ref/xamarinmac20/_._",
  5263. "ref/xamarintvos10/_._",
  5264. "ref/xamarinwatchos10/_._",
  5265. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5266. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5267. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5268. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5269. "system.globalization.extensions.nuspec"
  5270. ]
  5271. },
  5272. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  5273. "sha512": "C+Q5ORsFycRkRuvy/Xd0Pv5xVpmWSAvQYZAGs7VQogmkqlLhvfZXTgBIlHqC3cxkstSoLJAYx6xZB7foQ2y5eg==",
  5274. "type": "package",
  5275. "path": "system.identitymodel.tokens.jwt/6.10.0",
  5276. "files": [
  5277. ".nupkg.metadata",
  5278. ".signature.p7s",
  5279. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  5280. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  5281. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5282. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5283. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  5284. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  5285. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5286. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5287. "system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512",
  5288. "system.identitymodel.tokens.jwt.nuspec"
  5289. ]
  5290. },
  5291. "System.IO/4.3.0": {
  5292. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5293. "type": "package",
  5294. "path": "system.io/4.3.0",
  5295. "files": [
  5296. ".nupkg.metadata",
  5297. ".signature.p7s",
  5298. "ThirdPartyNotices.txt",
  5299. "dotnet_library_license.txt",
  5300. "lib/MonoAndroid10/_._",
  5301. "lib/MonoTouch10/_._",
  5302. "lib/net45/_._",
  5303. "lib/net462/System.IO.dll",
  5304. "lib/portable-net45+win8+wp8+wpa81/_._",
  5305. "lib/win8/_._",
  5306. "lib/wp80/_._",
  5307. "lib/wpa81/_._",
  5308. "lib/xamarinios10/_._",
  5309. "lib/xamarinmac20/_._",
  5310. "lib/xamarintvos10/_._",
  5311. "lib/xamarinwatchos10/_._",
  5312. "ref/MonoAndroid10/_._",
  5313. "ref/MonoTouch10/_._",
  5314. "ref/net45/_._",
  5315. "ref/net462/System.IO.dll",
  5316. "ref/netcore50/System.IO.dll",
  5317. "ref/netcore50/System.IO.xml",
  5318. "ref/netcore50/de/System.IO.xml",
  5319. "ref/netcore50/es/System.IO.xml",
  5320. "ref/netcore50/fr/System.IO.xml",
  5321. "ref/netcore50/it/System.IO.xml",
  5322. "ref/netcore50/ja/System.IO.xml",
  5323. "ref/netcore50/ko/System.IO.xml",
  5324. "ref/netcore50/ru/System.IO.xml",
  5325. "ref/netcore50/zh-hans/System.IO.xml",
  5326. "ref/netcore50/zh-hant/System.IO.xml",
  5327. "ref/netstandard1.0/System.IO.dll",
  5328. "ref/netstandard1.0/System.IO.xml",
  5329. "ref/netstandard1.0/de/System.IO.xml",
  5330. "ref/netstandard1.0/es/System.IO.xml",
  5331. "ref/netstandard1.0/fr/System.IO.xml",
  5332. "ref/netstandard1.0/it/System.IO.xml",
  5333. "ref/netstandard1.0/ja/System.IO.xml",
  5334. "ref/netstandard1.0/ko/System.IO.xml",
  5335. "ref/netstandard1.0/ru/System.IO.xml",
  5336. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5337. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5338. "ref/netstandard1.3/System.IO.dll",
  5339. "ref/netstandard1.3/System.IO.xml",
  5340. "ref/netstandard1.3/de/System.IO.xml",
  5341. "ref/netstandard1.3/es/System.IO.xml",
  5342. "ref/netstandard1.3/fr/System.IO.xml",
  5343. "ref/netstandard1.3/it/System.IO.xml",
  5344. "ref/netstandard1.3/ja/System.IO.xml",
  5345. "ref/netstandard1.3/ko/System.IO.xml",
  5346. "ref/netstandard1.3/ru/System.IO.xml",
  5347. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5348. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5349. "ref/netstandard1.5/System.IO.dll",
  5350. "ref/netstandard1.5/System.IO.xml",
  5351. "ref/netstandard1.5/de/System.IO.xml",
  5352. "ref/netstandard1.5/es/System.IO.xml",
  5353. "ref/netstandard1.5/fr/System.IO.xml",
  5354. "ref/netstandard1.5/it/System.IO.xml",
  5355. "ref/netstandard1.5/ja/System.IO.xml",
  5356. "ref/netstandard1.5/ko/System.IO.xml",
  5357. "ref/netstandard1.5/ru/System.IO.xml",
  5358. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5359. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5360. "ref/portable-net45+win8+wp8+wpa81/_._",
  5361. "ref/win8/_._",
  5362. "ref/wp80/_._",
  5363. "ref/wpa81/_._",
  5364. "ref/xamarinios10/_._",
  5365. "ref/xamarinmac20/_._",
  5366. "ref/xamarintvos10/_._",
  5367. "ref/xamarinwatchos10/_._",
  5368. "system.io.4.3.0.nupkg.sha512",
  5369. "system.io.nuspec"
  5370. ]
  5371. },
  5372. "System.IO.Compression/4.3.0": {
  5373. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5374. "type": "package",
  5375. "path": "system.io.compression/4.3.0",
  5376. "files": [
  5377. ".nupkg.metadata",
  5378. ".signature.p7s",
  5379. "ThirdPartyNotices.txt",
  5380. "dotnet_library_license.txt",
  5381. "lib/MonoAndroid10/_._",
  5382. "lib/MonoTouch10/_._",
  5383. "lib/net45/_._",
  5384. "lib/net46/System.IO.Compression.dll",
  5385. "lib/portable-net45+win8+wpa81/_._",
  5386. "lib/win8/_._",
  5387. "lib/wpa81/_._",
  5388. "lib/xamarinios10/_._",
  5389. "lib/xamarinmac20/_._",
  5390. "lib/xamarintvos10/_._",
  5391. "lib/xamarinwatchos10/_._",
  5392. "ref/MonoAndroid10/_._",
  5393. "ref/MonoTouch10/_._",
  5394. "ref/net45/_._",
  5395. "ref/net46/System.IO.Compression.dll",
  5396. "ref/netcore50/System.IO.Compression.dll",
  5397. "ref/netcore50/System.IO.Compression.xml",
  5398. "ref/netcore50/de/System.IO.Compression.xml",
  5399. "ref/netcore50/es/System.IO.Compression.xml",
  5400. "ref/netcore50/fr/System.IO.Compression.xml",
  5401. "ref/netcore50/it/System.IO.Compression.xml",
  5402. "ref/netcore50/ja/System.IO.Compression.xml",
  5403. "ref/netcore50/ko/System.IO.Compression.xml",
  5404. "ref/netcore50/ru/System.IO.Compression.xml",
  5405. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5406. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5407. "ref/netstandard1.1/System.IO.Compression.dll",
  5408. "ref/netstandard1.1/System.IO.Compression.xml",
  5409. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5410. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5411. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5412. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5413. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5414. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5415. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5416. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5417. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5418. "ref/netstandard1.3/System.IO.Compression.dll",
  5419. "ref/netstandard1.3/System.IO.Compression.xml",
  5420. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5421. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5422. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5423. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5424. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5425. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5426. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5427. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5428. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5429. "ref/portable-net45+win8+wpa81/_._",
  5430. "ref/win8/_._",
  5431. "ref/wpa81/_._",
  5432. "ref/xamarinios10/_._",
  5433. "ref/xamarinmac20/_._",
  5434. "ref/xamarintvos10/_._",
  5435. "ref/xamarinwatchos10/_._",
  5436. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5437. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5438. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5439. "system.io.compression.4.3.0.nupkg.sha512",
  5440. "system.io.compression.nuspec"
  5441. ]
  5442. },
  5443. "System.IO.Compression.ZipFile/4.3.0": {
  5444. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5445. "type": "package",
  5446. "path": "system.io.compression.zipfile/4.3.0",
  5447. "files": [
  5448. ".nupkg.metadata",
  5449. ".signature.p7s",
  5450. "ThirdPartyNotices.txt",
  5451. "dotnet_library_license.txt",
  5452. "lib/MonoAndroid10/_._",
  5453. "lib/MonoTouch10/_._",
  5454. "lib/net46/System.IO.Compression.ZipFile.dll",
  5455. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5456. "lib/xamarinios10/_._",
  5457. "lib/xamarinmac20/_._",
  5458. "lib/xamarintvos10/_._",
  5459. "lib/xamarinwatchos10/_._",
  5460. "ref/MonoAndroid10/_._",
  5461. "ref/MonoTouch10/_._",
  5462. "ref/net46/System.IO.Compression.ZipFile.dll",
  5463. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5464. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5465. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5466. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5467. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5468. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5469. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5470. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5471. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5472. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5473. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5474. "ref/xamarinios10/_._",
  5475. "ref/xamarinmac20/_._",
  5476. "ref/xamarintvos10/_._",
  5477. "ref/xamarinwatchos10/_._",
  5478. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5479. "system.io.compression.zipfile.nuspec"
  5480. ]
  5481. },
  5482. "System.IO.FileSystem/4.3.0": {
  5483. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5484. "type": "package",
  5485. "path": "system.io.filesystem/4.3.0",
  5486. "files": [
  5487. ".nupkg.metadata",
  5488. ".signature.p7s",
  5489. "ThirdPartyNotices.txt",
  5490. "dotnet_library_license.txt",
  5491. "lib/MonoAndroid10/_._",
  5492. "lib/MonoTouch10/_._",
  5493. "lib/net46/System.IO.FileSystem.dll",
  5494. "lib/xamarinios10/_._",
  5495. "lib/xamarinmac20/_._",
  5496. "lib/xamarintvos10/_._",
  5497. "lib/xamarinwatchos10/_._",
  5498. "ref/MonoAndroid10/_._",
  5499. "ref/MonoTouch10/_._",
  5500. "ref/net46/System.IO.FileSystem.dll",
  5501. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5502. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5503. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5504. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5505. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5506. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5507. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5508. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5509. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5510. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5511. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5512. "ref/xamarinios10/_._",
  5513. "ref/xamarinmac20/_._",
  5514. "ref/xamarintvos10/_._",
  5515. "ref/xamarinwatchos10/_._",
  5516. "system.io.filesystem.4.3.0.nupkg.sha512",
  5517. "system.io.filesystem.nuspec"
  5518. ]
  5519. },
  5520. "System.IO.FileSystem.Primitives/4.3.0": {
  5521. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5522. "type": "package",
  5523. "path": "system.io.filesystem.primitives/4.3.0",
  5524. "files": [
  5525. ".nupkg.metadata",
  5526. ".signature.p7s",
  5527. "ThirdPartyNotices.txt",
  5528. "dotnet_library_license.txt",
  5529. "lib/MonoAndroid10/_._",
  5530. "lib/MonoTouch10/_._",
  5531. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5532. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5533. "lib/xamarinios10/_._",
  5534. "lib/xamarinmac20/_._",
  5535. "lib/xamarintvos10/_._",
  5536. "lib/xamarinwatchos10/_._",
  5537. "ref/MonoAndroid10/_._",
  5538. "ref/MonoTouch10/_._",
  5539. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5540. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5541. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5542. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5543. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5544. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5545. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5546. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5547. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5548. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5549. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5550. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5551. "ref/xamarinios10/_._",
  5552. "ref/xamarinmac20/_._",
  5553. "ref/xamarintvos10/_._",
  5554. "ref/xamarinwatchos10/_._",
  5555. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5556. "system.io.filesystem.primitives.nuspec"
  5557. ]
  5558. },
  5559. "System.Linq/4.3.0": {
  5560. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5561. "type": "package",
  5562. "path": "system.linq/4.3.0",
  5563. "files": [
  5564. ".nupkg.metadata",
  5565. ".signature.p7s",
  5566. "ThirdPartyNotices.txt",
  5567. "dotnet_library_license.txt",
  5568. "lib/MonoAndroid10/_._",
  5569. "lib/MonoTouch10/_._",
  5570. "lib/net45/_._",
  5571. "lib/net463/System.Linq.dll",
  5572. "lib/netcore50/System.Linq.dll",
  5573. "lib/netstandard1.6/System.Linq.dll",
  5574. "lib/portable-net45+win8+wp8+wpa81/_._",
  5575. "lib/win8/_._",
  5576. "lib/wp80/_._",
  5577. "lib/wpa81/_._",
  5578. "lib/xamarinios10/_._",
  5579. "lib/xamarinmac20/_._",
  5580. "lib/xamarintvos10/_._",
  5581. "lib/xamarinwatchos10/_._",
  5582. "ref/MonoAndroid10/_._",
  5583. "ref/MonoTouch10/_._",
  5584. "ref/net45/_._",
  5585. "ref/net463/System.Linq.dll",
  5586. "ref/netcore50/System.Linq.dll",
  5587. "ref/netcore50/System.Linq.xml",
  5588. "ref/netcore50/de/System.Linq.xml",
  5589. "ref/netcore50/es/System.Linq.xml",
  5590. "ref/netcore50/fr/System.Linq.xml",
  5591. "ref/netcore50/it/System.Linq.xml",
  5592. "ref/netcore50/ja/System.Linq.xml",
  5593. "ref/netcore50/ko/System.Linq.xml",
  5594. "ref/netcore50/ru/System.Linq.xml",
  5595. "ref/netcore50/zh-hans/System.Linq.xml",
  5596. "ref/netcore50/zh-hant/System.Linq.xml",
  5597. "ref/netstandard1.0/System.Linq.dll",
  5598. "ref/netstandard1.0/System.Linq.xml",
  5599. "ref/netstandard1.0/de/System.Linq.xml",
  5600. "ref/netstandard1.0/es/System.Linq.xml",
  5601. "ref/netstandard1.0/fr/System.Linq.xml",
  5602. "ref/netstandard1.0/it/System.Linq.xml",
  5603. "ref/netstandard1.0/ja/System.Linq.xml",
  5604. "ref/netstandard1.0/ko/System.Linq.xml",
  5605. "ref/netstandard1.0/ru/System.Linq.xml",
  5606. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5607. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5608. "ref/netstandard1.6/System.Linq.dll",
  5609. "ref/netstandard1.6/System.Linq.xml",
  5610. "ref/netstandard1.6/de/System.Linq.xml",
  5611. "ref/netstandard1.6/es/System.Linq.xml",
  5612. "ref/netstandard1.6/fr/System.Linq.xml",
  5613. "ref/netstandard1.6/it/System.Linq.xml",
  5614. "ref/netstandard1.6/ja/System.Linq.xml",
  5615. "ref/netstandard1.6/ko/System.Linq.xml",
  5616. "ref/netstandard1.6/ru/System.Linq.xml",
  5617. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5618. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5619. "ref/portable-net45+win8+wp8+wpa81/_._",
  5620. "ref/win8/_._",
  5621. "ref/wp80/_._",
  5622. "ref/wpa81/_._",
  5623. "ref/xamarinios10/_._",
  5624. "ref/xamarinmac20/_._",
  5625. "ref/xamarintvos10/_._",
  5626. "ref/xamarinwatchos10/_._",
  5627. "system.linq.4.3.0.nupkg.sha512",
  5628. "system.linq.nuspec"
  5629. ]
  5630. },
  5631. "System.Linq.Expressions/4.3.0": {
  5632. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5633. "type": "package",
  5634. "path": "system.linq.expressions/4.3.0",
  5635. "files": [
  5636. ".nupkg.metadata",
  5637. ".signature.p7s",
  5638. "ThirdPartyNotices.txt",
  5639. "dotnet_library_license.txt",
  5640. "lib/MonoAndroid10/_._",
  5641. "lib/MonoTouch10/_._",
  5642. "lib/net45/_._",
  5643. "lib/net463/System.Linq.Expressions.dll",
  5644. "lib/netcore50/System.Linq.Expressions.dll",
  5645. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5646. "lib/portable-net45+win8+wp8+wpa81/_._",
  5647. "lib/win8/_._",
  5648. "lib/wp80/_._",
  5649. "lib/wpa81/_._",
  5650. "lib/xamarinios10/_._",
  5651. "lib/xamarinmac20/_._",
  5652. "lib/xamarintvos10/_._",
  5653. "lib/xamarinwatchos10/_._",
  5654. "ref/MonoAndroid10/_._",
  5655. "ref/MonoTouch10/_._",
  5656. "ref/net45/_._",
  5657. "ref/net463/System.Linq.Expressions.dll",
  5658. "ref/netcore50/System.Linq.Expressions.dll",
  5659. "ref/netcore50/System.Linq.Expressions.xml",
  5660. "ref/netcore50/de/System.Linq.Expressions.xml",
  5661. "ref/netcore50/es/System.Linq.Expressions.xml",
  5662. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5663. "ref/netcore50/it/System.Linq.Expressions.xml",
  5664. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5665. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5666. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5667. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5668. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5669. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5670. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5671. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5672. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5673. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5674. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5675. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5676. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5677. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5678. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5679. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5680. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5681. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5682. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5683. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5684. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5685. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5686. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5687. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5688. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5689. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5690. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5691. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5692. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5693. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5694. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5695. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5696. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5697. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5698. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5699. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5700. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5701. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5702. "ref/portable-net45+win8+wp8+wpa81/_._",
  5703. "ref/win8/_._",
  5704. "ref/wp80/_._",
  5705. "ref/wpa81/_._",
  5706. "ref/xamarinios10/_._",
  5707. "ref/xamarinmac20/_._",
  5708. "ref/xamarintvos10/_._",
  5709. "ref/xamarinwatchos10/_._",
  5710. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5711. "system.linq.expressions.4.3.0.nupkg.sha512",
  5712. "system.linq.expressions.nuspec"
  5713. ]
  5714. },
  5715. "System.Memory/4.5.4": {
  5716. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  5717. "type": "package",
  5718. "path": "system.memory/4.5.4",
  5719. "files": [
  5720. ".nupkg.metadata",
  5721. ".signature.p7s",
  5722. "LICENSE.TXT",
  5723. "THIRD-PARTY-NOTICES.TXT",
  5724. "lib/net461/System.Memory.dll",
  5725. "lib/net461/System.Memory.xml",
  5726. "lib/netcoreapp2.1/_._",
  5727. "lib/netstandard1.1/System.Memory.dll",
  5728. "lib/netstandard1.1/System.Memory.xml",
  5729. "lib/netstandard2.0/System.Memory.dll",
  5730. "lib/netstandard2.0/System.Memory.xml",
  5731. "ref/netcoreapp2.1/_._",
  5732. "system.memory.4.5.4.nupkg.sha512",
  5733. "system.memory.nuspec",
  5734. "useSharedDesignerContext.txt",
  5735. "version.txt"
  5736. ]
  5737. },
  5738. "System.Net.Http/4.3.4": {
  5739. "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
  5740. "type": "package",
  5741. "path": "system.net.http/4.3.4",
  5742. "files": [
  5743. ".nupkg.metadata",
  5744. ".signature.p7s",
  5745. "ThirdPartyNotices.txt",
  5746. "dotnet_library_license.txt",
  5747. "lib/Xamarinmac20/_._",
  5748. "lib/monoandroid10/_._",
  5749. "lib/monotouch10/_._",
  5750. "lib/net45/_._",
  5751. "lib/net46/System.Net.Http.dll",
  5752. "lib/portable-net45+win8+wpa81/_._",
  5753. "lib/win8/_._",
  5754. "lib/wpa81/_._",
  5755. "lib/xamarinios10/_._",
  5756. "lib/xamarintvos10/_._",
  5757. "lib/xamarinwatchos10/_._",
  5758. "ref/Xamarinmac20/_._",
  5759. "ref/monoandroid10/_._",
  5760. "ref/monotouch10/_._",
  5761. "ref/net45/_._",
  5762. "ref/net46/System.Net.Http.dll",
  5763. "ref/netcore50/System.Net.Http.dll",
  5764. "ref/netstandard1.1/System.Net.Http.dll",
  5765. "ref/netstandard1.3/System.Net.Http.dll",
  5766. "ref/portable-net45+win8+wpa81/_._",
  5767. "ref/win8/_._",
  5768. "ref/wpa81/_._",
  5769. "ref/xamarinios10/_._",
  5770. "ref/xamarintvos10/_._",
  5771. "ref/xamarinwatchos10/_._",
  5772. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5773. "runtimes/win/lib/net46/System.Net.Http.dll",
  5774. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5775. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5776. "system.net.http.4.3.4.nupkg.sha512",
  5777. "system.net.http.nuspec"
  5778. ]
  5779. },
  5780. "System.Net.Primitives/4.3.0": {
  5781. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5782. "type": "package",
  5783. "path": "system.net.primitives/4.3.0",
  5784. "files": [
  5785. ".nupkg.metadata",
  5786. ".signature.p7s",
  5787. "ThirdPartyNotices.txt",
  5788. "dotnet_library_license.txt",
  5789. "lib/MonoAndroid10/_._",
  5790. "lib/MonoTouch10/_._",
  5791. "lib/net45/_._",
  5792. "lib/portable-net45+win8+wp8+wpa81/_._",
  5793. "lib/win8/_._",
  5794. "lib/wp80/_._",
  5795. "lib/wpa81/_._",
  5796. "lib/xamarinios10/_._",
  5797. "lib/xamarinmac20/_._",
  5798. "lib/xamarintvos10/_._",
  5799. "lib/xamarinwatchos10/_._",
  5800. "ref/MonoAndroid10/_._",
  5801. "ref/MonoTouch10/_._",
  5802. "ref/net45/_._",
  5803. "ref/netcore50/System.Net.Primitives.dll",
  5804. "ref/netcore50/System.Net.Primitives.xml",
  5805. "ref/netcore50/de/System.Net.Primitives.xml",
  5806. "ref/netcore50/es/System.Net.Primitives.xml",
  5807. "ref/netcore50/fr/System.Net.Primitives.xml",
  5808. "ref/netcore50/it/System.Net.Primitives.xml",
  5809. "ref/netcore50/ja/System.Net.Primitives.xml",
  5810. "ref/netcore50/ko/System.Net.Primitives.xml",
  5811. "ref/netcore50/ru/System.Net.Primitives.xml",
  5812. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5813. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5814. "ref/netstandard1.0/System.Net.Primitives.dll",
  5815. "ref/netstandard1.0/System.Net.Primitives.xml",
  5816. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5817. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5818. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5819. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5820. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5821. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5822. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5823. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5824. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5825. "ref/netstandard1.1/System.Net.Primitives.dll",
  5826. "ref/netstandard1.1/System.Net.Primitives.xml",
  5827. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5828. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5829. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5830. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5831. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5832. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5833. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5834. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5835. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5836. "ref/netstandard1.3/System.Net.Primitives.dll",
  5837. "ref/netstandard1.3/System.Net.Primitives.xml",
  5838. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5839. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5840. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5841. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5842. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5843. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5844. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5845. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5846. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5847. "ref/portable-net45+win8+wp8+wpa81/_._",
  5848. "ref/win8/_._",
  5849. "ref/wp80/_._",
  5850. "ref/wpa81/_._",
  5851. "ref/xamarinios10/_._",
  5852. "ref/xamarinmac20/_._",
  5853. "ref/xamarintvos10/_._",
  5854. "ref/xamarinwatchos10/_._",
  5855. "system.net.primitives.4.3.0.nupkg.sha512",
  5856. "system.net.primitives.nuspec"
  5857. ]
  5858. },
  5859. "System.Net.Sockets/4.3.0": {
  5860. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  5861. "type": "package",
  5862. "path": "system.net.sockets/4.3.0",
  5863. "files": [
  5864. ".nupkg.metadata",
  5865. ".signature.p7s",
  5866. "ThirdPartyNotices.txt",
  5867. "dotnet_library_license.txt",
  5868. "lib/MonoAndroid10/_._",
  5869. "lib/MonoTouch10/_._",
  5870. "lib/net46/System.Net.Sockets.dll",
  5871. "lib/xamarinios10/_._",
  5872. "lib/xamarinmac20/_._",
  5873. "lib/xamarintvos10/_._",
  5874. "lib/xamarinwatchos10/_._",
  5875. "ref/MonoAndroid10/_._",
  5876. "ref/MonoTouch10/_._",
  5877. "ref/net46/System.Net.Sockets.dll",
  5878. "ref/netstandard1.3/System.Net.Sockets.dll",
  5879. "ref/netstandard1.3/System.Net.Sockets.xml",
  5880. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5881. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5882. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5883. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5884. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5885. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5886. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5887. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5888. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5889. "ref/xamarinios10/_._",
  5890. "ref/xamarinmac20/_._",
  5891. "ref/xamarintvos10/_._",
  5892. "ref/xamarinwatchos10/_._",
  5893. "system.net.sockets.4.3.0.nupkg.sha512",
  5894. "system.net.sockets.nuspec"
  5895. ]
  5896. },
  5897. "System.ObjectModel/4.3.0": {
  5898. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  5899. "type": "package",
  5900. "path": "system.objectmodel/4.3.0",
  5901. "files": [
  5902. ".nupkg.metadata",
  5903. ".signature.p7s",
  5904. "ThirdPartyNotices.txt",
  5905. "dotnet_library_license.txt",
  5906. "lib/MonoAndroid10/_._",
  5907. "lib/MonoTouch10/_._",
  5908. "lib/net45/_._",
  5909. "lib/netcore50/System.ObjectModel.dll",
  5910. "lib/netstandard1.3/System.ObjectModel.dll",
  5911. "lib/portable-net45+win8+wp8+wpa81/_._",
  5912. "lib/win8/_._",
  5913. "lib/wp80/_._",
  5914. "lib/wpa81/_._",
  5915. "lib/xamarinios10/_._",
  5916. "lib/xamarinmac20/_._",
  5917. "lib/xamarintvos10/_._",
  5918. "lib/xamarinwatchos10/_._",
  5919. "ref/MonoAndroid10/_._",
  5920. "ref/MonoTouch10/_._",
  5921. "ref/net45/_._",
  5922. "ref/netcore50/System.ObjectModel.dll",
  5923. "ref/netcore50/System.ObjectModel.xml",
  5924. "ref/netcore50/de/System.ObjectModel.xml",
  5925. "ref/netcore50/es/System.ObjectModel.xml",
  5926. "ref/netcore50/fr/System.ObjectModel.xml",
  5927. "ref/netcore50/it/System.ObjectModel.xml",
  5928. "ref/netcore50/ja/System.ObjectModel.xml",
  5929. "ref/netcore50/ko/System.ObjectModel.xml",
  5930. "ref/netcore50/ru/System.ObjectModel.xml",
  5931. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5932. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5933. "ref/netstandard1.0/System.ObjectModel.dll",
  5934. "ref/netstandard1.0/System.ObjectModel.xml",
  5935. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5936. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5937. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5938. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5939. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5940. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5941. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5942. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5943. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5944. "ref/netstandard1.3/System.ObjectModel.dll",
  5945. "ref/netstandard1.3/System.ObjectModel.xml",
  5946. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5947. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5948. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5949. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5950. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5951. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5952. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5953. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5954. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5955. "ref/portable-net45+win8+wp8+wpa81/_._",
  5956. "ref/win8/_._",
  5957. "ref/wp80/_._",
  5958. "ref/wpa81/_._",
  5959. "ref/xamarinios10/_._",
  5960. "ref/xamarinmac20/_._",
  5961. "ref/xamarintvos10/_._",
  5962. "ref/xamarinwatchos10/_._",
  5963. "system.objectmodel.4.3.0.nupkg.sha512",
  5964. "system.objectmodel.nuspec"
  5965. ]
  5966. },
  5967. "System.Reflection/4.3.0": {
  5968. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5969. "type": "package",
  5970. "path": "system.reflection/4.3.0",
  5971. "files": [
  5972. ".nupkg.metadata",
  5973. ".signature.p7s",
  5974. "ThirdPartyNotices.txt",
  5975. "dotnet_library_license.txt",
  5976. "lib/MonoAndroid10/_._",
  5977. "lib/MonoTouch10/_._",
  5978. "lib/net45/_._",
  5979. "lib/net462/System.Reflection.dll",
  5980. "lib/portable-net45+win8+wp8+wpa81/_._",
  5981. "lib/win8/_._",
  5982. "lib/wp80/_._",
  5983. "lib/wpa81/_._",
  5984. "lib/xamarinios10/_._",
  5985. "lib/xamarinmac20/_._",
  5986. "lib/xamarintvos10/_._",
  5987. "lib/xamarinwatchos10/_._",
  5988. "ref/MonoAndroid10/_._",
  5989. "ref/MonoTouch10/_._",
  5990. "ref/net45/_._",
  5991. "ref/net462/System.Reflection.dll",
  5992. "ref/netcore50/System.Reflection.dll",
  5993. "ref/netcore50/System.Reflection.xml",
  5994. "ref/netcore50/de/System.Reflection.xml",
  5995. "ref/netcore50/es/System.Reflection.xml",
  5996. "ref/netcore50/fr/System.Reflection.xml",
  5997. "ref/netcore50/it/System.Reflection.xml",
  5998. "ref/netcore50/ja/System.Reflection.xml",
  5999. "ref/netcore50/ko/System.Reflection.xml",
  6000. "ref/netcore50/ru/System.Reflection.xml",
  6001. "ref/netcore50/zh-hans/System.Reflection.xml",
  6002. "ref/netcore50/zh-hant/System.Reflection.xml",
  6003. "ref/netstandard1.0/System.Reflection.dll",
  6004. "ref/netstandard1.0/System.Reflection.xml",
  6005. "ref/netstandard1.0/de/System.Reflection.xml",
  6006. "ref/netstandard1.0/es/System.Reflection.xml",
  6007. "ref/netstandard1.0/fr/System.Reflection.xml",
  6008. "ref/netstandard1.0/it/System.Reflection.xml",
  6009. "ref/netstandard1.0/ja/System.Reflection.xml",
  6010. "ref/netstandard1.0/ko/System.Reflection.xml",
  6011. "ref/netstandard1.0/ru/System.Reflection.xml",
  6012. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6013. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6014. "ref/netstandard1.3/System.Reflection.dll",
  6015. "ref/netstandard1.3/System.Reflection.xml",
  6016. "ref/netstandard1.3/de/System.Reflection.xml",
  6017. "ref/netstandard1.3/es/System.Reflection.xml",
  6018. "ref/netstandard1.3/fr/System.Reflection.xml",
  6019. "ref/netstandard1.3/it/System.Reflection.xml",
  6020. "ref/netstandard1.3/ja/System.Reflection.xml",
  6021. "ref/netstandard1.3/ko/System.Reflection.xml",
  6022. "ref/netstandard1.3/ru/System.Reflection.xml",
  6023. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6024. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6025. "ref/netstandard1.5/System.Reflection.dll",
  6026. "ref/netstandard1.5/System.Reflection.xml",
  6027. "ref/netstandard1.5/de/System.Reflection.xml",
  6028. "ref/netstandard1.5/es/System.Reflection.xml",
  6029. "ref/netstandard1.5/fr/System.Reflection.xml",
  6030. "ref/netstandard1.5/it/System.Reflection.xml",
  6031. "ref/netstandard1.5/ja/System.Reflection.xml",
  6032. "ref/netstandard1.5/ko/System.Reflection.xml",
  6033. "ref/netstandard1.5/ru/System.Reflection.xml",
  6034. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6035. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6036. "ref/portable-net45+win8+wp8+wpa81/_._",
  6037. "ref/win8/_._",
  6038. "ref/wp80/_._",
  6039. "ref/wpa81/_._",
  6040. "ref/xamarinios10/_._",
  6041. "ref/xamarinmac20/_._",
  6042. "ref/xamarintvos10/_._",
  6043. "ref/xamarinwatchos10/_._",
  6044. "system.reflection.4.3.0.nupkg.sha512",
  6045. "system.reflection.nuspec"
  6046. ]
  6047. },
  6048. "System.Reflection.Emit/4.7.0": {
  6049. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  6050. "type": "package",
  6051. "path": "system.reflection.emit/4.7.0",
  6052. "files": [
  6053. ".nupkg.metadata",
  6054. ".signature.p7s",
  6055. "LICENSE.TXT",
  6056. "THIRD-PARTY-NOTICES.TXT",
  6057. "lib/MonoAndroid10/_._",
  6058. "lib/MonoTouch10/_._",
  6059. "lib/net45/_._",
  6060. "lib/netcore50/System.Reflection.Emit.dll",
  6061. "lib/netcoreapp2.0/_._",
  6062. "lib/netstandard1.1/System.Reflection.Emit.dll",
  6063. "lib/netstandard1.1/System.Reflection.Emit.xml",
  6064. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6065. "lib/netstandard2.0/System.Reflection.Emit.dll",
  6066. "lib/netstandard2.0/System.Reflection.Emit.xml",
  6067. "lib/netstandard2.1/_._",
  6068. "lib/xamarinios10/_._",
  6069. "lib/xamarinmac20/_._",
  6070. "lib/xamarintvos10/_._",
  6071. "lib/xamarinwatchos10/_._",
  6072. "ref/MonoAndroid10/_._",
  6073. "ref/MonoTouch10/_._",
  6074. "ref/net45/_._",
  6075. "ref/netcoreapp2.0/_._",
  6076. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6077. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6078. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6079. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6080. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6081. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6082. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6083. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6084. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6085. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6086. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6087. "ref/netstandard2.0/System.Reflection.Emit.dll",
  6088. "ref/netstandard2.0/System.Reflection.Emit.xml",
  6089. "ref/netstandard2.1/_._",
  6090. "ref/xamarinios10/_._",
  6091. "ref/xamarinmac20/_._",
  6092. "ref/xamarintvos10/_._",
  6093. "ref/xamarinwatchos10/_._",
  6094. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  6095. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  6096. "system.reflection.emit.4.7.0.nupkg.sha512",
  6097. "system.reflection.emit.nuspec",
  6098. "useSharedDesignerContext.txt",
  6099. "version.txt"
  6100. ]
  6101. },
  6102. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6103. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6104. "type": "package",
  6105. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6106. "files": [
  6107. ".nupkg.metadata",
  6108. ".signature.p7s",
  6109. "ThirdPartyNotices.txt",
  6110. "dotnet_library_license.txt",
  6111. "lib/MonoAndroid10/_._",
  6112. "lib/MonoTouch10/_._",
  6113. "lib/net45/_._",
  6114. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6115. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6116. "lib/portable-net45+wp8/_._",
  6117. "lib/wp80/_._",
  6118. "lib/xamarinios10/_._",
  6119. "lib/xamarinmac20/_._",
  6120. "lib/xamarintvos10/_._",
  6121. "lib/xamarinwatchos10/_._",
  6122. "ref/MonoAndroid10/_._",
  6123. "ref/MonoTouch10/_._",
  6124. "ref/net45/_._",
  6125. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6126. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6127. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6128. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6129. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6130. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6131. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6132. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6133. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6134. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6135. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6136. "ref/portable-net45+wp8/_._",
  6137. "ref/wp80/_._",
  6138. "ref/xamarinios10/_._",
  6139. "ref/xamarinmac20/_._",
  6140. "ref/xamarintvos10/_._",
  6141. "ref/xamarinwatchos10/_._",
  6142. "runtimes/aot/lib/netcore50/_._",
  6143. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6144. "system.reflection.emit.ilgeneration.nuspec"
  6145. ]
  6146. },
  6147. "System.Reflection.Emit.Lightweight/4.3.0": {
  6148. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6149. "type": "package",
  6150. "path": "system.reflection.emit.lightweight/4.3.0",
  6151. "files": [
  6152. ".nupkg.metadata",
  6153. ".signature.p7s",
  6154. "ThirdPartyNotices.txt",
  6155. "dotnet_library_license.txt",
  6156. "lib/MonoAndroid10/_._",
  6157. "lib/MonoTouch10/_._",
  6158. "lib/net45/_._",
  6159. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6160. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6161. "lib/portable-net45+wp8/_._",
  6162. "lib/wp80/_._",
  6163. "lib/xamarinios10/_._",
  6164. "lib/xamarinmac20/_._",
  6165. "lib/xamarintvos10/_._",
  6166. "lib/xamarinwatchos10/_._",
  6167. "ref/MonoAndroid10/_._",
  6168. "ref/MonoTouch10/_._",
  6169. "ref/net45/_._",
  6170. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6171. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6172. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6173. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6174. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6175. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6176. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6177. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6178. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6179. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6180. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6181. "ref/portable-net45+wp8/_._",
  6182. "ref/wp80/_._",
  6183. "ref/xamarinios10/_._",
  6184. "ref/xamarinmac20/_._",
  6185. "ref/xamarintvos10/_._",
  6186. "ref/xamarinwatchos10/_._",
  6187. "runtimes/aot/lib/netcore50/_._",
  6188. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6189. "system.reflection.emit.lightweight.nuspec"
  6190. ]
  6191. },
  6192. "System.Reflection.Extensions/4.3.0": {
  6193. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6194. "type": "package",
  6195. "path": "system.reflection.extensions/4.3.0",
  6196. "files": [
  6197. ".nupkg.metadata",
  6198. ".signature.p7s",
  6199. "ThirdPartyNotices.txt",
  6200. "dotnet_library_license.txt",
  6201. "lib/MonoAndroid10/_._",
  6202. "lib/MonoTouch10/_._",
  6203. "lib/net45/_._",
  6204. "lib/portable-net45+win8+wp8+wpa81/_._",
  6205. "lib/win8/_._",
  6206. "lib/wp80/_._",
  6207. "lib/wpa81/_._",
  6208. "lib/xamarinios10/_._",
  6209. "lib/xamarinmac20/_._",
  6210. "lib/xamarintvos10/_._",
  6211. "lib/xamarinwatchos10/_._",
  6212. "ref/MonoAndroid10/_._",
  6213. "ref/MonoTouch10/_._",
  6214. "ref/net45/_._",
  6215. "ref/netcore50/System.Reflection.Extensions.dll",
  6216. "ref/netcore50/System.Reflection.Extensions.xml",
  6217. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6218. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6219. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6220. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6221. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6222. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6223. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6224. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6225. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6226. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6227. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6228. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6229. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6230. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6231. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6232. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6233. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6234. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6235. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6236. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6237. "ref/portable-net45+win8+wp8+wpa81/_._",
  6238. "ref/win8/_._",
  6239. "ref/wp80/_._",
  6240. "ref/wpa81/_._",
  6241. "ref/xamarinios10/_._",
  6242. "ref/xamarinmac20/_._",
  6243. "ref/xamarintvos10/_._",
  6244. "ref/xamarinwatchos10/_._",
  6245. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6246. "system.reflection.extensions.nuspec"
  6247. ]
  6248. },
  6249. "System.Reflection.Metadata/1.6.0": {
  6250. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  6251. "type": "package",
  6252. "path": "system.reflection.metadata/1.6.0",
  6253. "files": [
  6254. ".nupkg.metadata",
  6255. ".signature.p7s",
  6256. "LICENSE.TXT",
  6257. "THIRD-PARTY-NOTICES.TXT",
  6258. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  6259. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  6260. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  6261. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  6262. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  6263. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  6264. "system.reflection.metadata.1.6.0.nupkg.sha512",
  6265. "system.reflection.metadata.nuspec",
  6266. "useSharedDesignerContext.txt",
  6267. "version.txt"
  6268. ]
  6269. },
  6270. "System.Reflection.Primitives/4.3.0": {
  6271. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6272. "type": "package",
  6273. "path": "system.reflection.primitives/4.3.0",
  6274. "files": [
  6275. ".nupkg.metadata",
  6276. ".signature.p7s",
  6277. "ThirdPartyNotices.txt",
  6278. "dotnet_library_license.txt",
  6279. "lib/MonoAndroid10/_._",
  6280. "lib/MonoTouch10/_._",
  6281. "lib/net45/_._",
  6282. "lib/portable-net45+win8+wp8+wpa81/_._",
  6283. "lib/win8/_._",
  6284. "lib/wp80/_._",
  6285. "lib/wpa81/_._",
  6286. "lib/xamarinios10/_._",
  6287. "lib/xamarinmac20/_._",
  6288. "lib/xamarintvos10/_._",
  6289. "lib/xamarinwatchos10/_._",
  6290. "ref/MonoAndroid10/_._",
  6291. "ref/MonoTouch10/_._",
  6292. "ref/net45/_._",
  6293. "ref/netcore50/System.Reflection.Primitives.dll",
  6294. "ref/netcore50/System.Reflection.Primitives.xml",
  6295. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6296. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6297. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6298. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6299. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6300. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6301. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6302. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6303. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6304. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6305. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6306. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6307. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6308. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6309. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6310. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6311. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6312. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6313. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6314. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6315. "ref/portable-net45+win8+wp8+wpa81/_._",
  6316. "ref/win8/_._",
  6317. "ref/wp80/_._",
  6318. "ref/wpa81/_._",
  6319. "ref/xamarinios10/_._",
  6320. "ref/xamarinmac20/_._",
  6321. "ref/xamarintvos10/_._",
  6322. "ref/xamarinwatchos10/_._",
  6323. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6324. "system.reflection.primitives.nuspec"
  6325. ]
  6326. },
  6327. "System.Reflection.TypeExtensions/4.3.0": {
  6328. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6329. "type": "package",
  6330. "path": "system.reflection.typeextensions/4.3.0",
  6331. "files": [
  6332. ".nupkg.metadata",
  6333. ".signature.p7s",
  6334. "ThirdPartyNotices.txt",
  6335. "dotnet_library_license.txt",
  6336. "lib/MonoAndroid10/_._",
  6337. "lib/MonoTouch10/_._",
  6338. "lib/net46/System.Reflection.TypeExtensions.dll",
  6339. "lib/net462/System.Reflection.TypeExtensions.dll",
  6340. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6341. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6342. "lib/xamarinios10/_._",
  6343. "lib/xamarinmac20/_._",
  6344. "lib/xamarintvos10/_._",
  6345. "lib/xamarinwatchos10/_._",
  6346. "ref/MonoAndroid10/_._",
  6347. "ref/MonoTouch10/_._",
  6348. "ref/net46/System.Reflection.TypeExtensions.dll",
  6349. "ref/net462/System.Reflection.TypeExtensions.dll",
  6350. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6351. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6352. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6353. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6354. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6355. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6356. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6357. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6358. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6359. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6360. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6361. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6362. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6363. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6364. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6365. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6366. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6367. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6368. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6369. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6370. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6371. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6372. "ref/xamarinios10/_._",
  6373. "ref/xamarinmac20/_._",
  6374. "ref/xamarintvos10/_._",
  6375. "ref/xamarinwatchos10/_._",
  6376. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6377. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6378. "system.reflection.typeextensions.nuspec"
  6379. ]
  6380. },
  6381. "System.Resources.Extensions/4.6.0": {
  6382. "sha512": "6aVCk8oTFZNT3Tx1jjiPi6+aipiJ3qMZYttAREKTRJidP50YvNeOn4PXrqzfA5qC23fLReq2JYp+nJwzj62HGw==",
  6383. "type": "package",
  6384. "path": "system.resources.extensions/4.6.0",
  6385. "files": [
  6386. ".nupkg.metadata",
  6387. ".signature.p7s",
  6388. "LICENSE.TXT",
  6389. "THIRD-PARTY-NOTICES.TXT",
  6390. "lib/netstandard2.0/System.Resources.Extensions.dll",
  6391. "lib/netstandard2.0/System.Resources.Extensions.xml",
  6392. "ref/netstandard2.0/System.Resources.Extensions.dll",
  6393. "ref/netstandard2.0/System.Resources.Extensions.xml",
  6394. "system.resources.extensions.4.6.0.nupkg.sha512",
  6395. "system.resources.extensions.nuspec",
  6396. "useSharedDesignerContext.txt",
  6397. "version.txt"
  6398. ]
  6399. },
  6400. "System.Resources.ResourceManager/4.3.0": {
  6401. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6402. "type": "package",
  6403. "path": "system.resources.resourcemanager/4.3.0",
  6404. "files": [
  6405. ".nupkg.metadata",
  6406. ".signature.p7s",
  6407. "ThirdPartyNotices.txt",
  6408. "dotnet_library_license.txt",
  6409. "lib/MonoAndroid10/_._",
  6410. "lib/MonoTouch10/_._",
  6411. "lib/net45/_._",
  6412. "lib/portable-net45+win8+wp8+wpa81/_._",
  6413. "lib/win8/_._",
  6414. "lib/wp80/_._",
  6415. "lib/wpa81/_._",
  6416. "lib/xamarinios10/_._",
  6417. "lib/xamarinmac20/_._",
  6418. "lib/xamarintvos10/_._",
  6419. "lib/xamarinwatchos10/_._",
  6420. "ref/MonoAndroid10/_._",
  6421. "ref/MonoTouch10/_._",
  6422. "ref/net45/_._",
  6423. "ref/netcore50/System.Resources.ResourceManager.dll",
  6424. "ref/netcore50/System.Resources.ResourceManager.xml",
  6425. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6426. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6427. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6428. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6429. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6430. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6431. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6432. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6433. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6434. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6435. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6436. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6437. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6438. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6439. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6440. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6441. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6442. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6443. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6444. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6445. "ref/portable-net45+win8+wp8+wpa81/_._",
  6446. "ref/win8/_._",
  6447. "ref/wp80/_._",
  6448. "ref/wpa81/_._",
  6449. "ref/xamarinios10/_._",
  6450. "ref/xamarinmac20/_._",
  6451. "ref/xamarintvos10/_._",
  6452. "ref/xamarinwatchos10/_._",
  6453. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6454. "system.resources.resourcemanager.nuspec"
  6455. ]
  6456. },
  6457. "System.Runtime/4.3.0": {
  6458. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6459. "type": "package",
  6460. "path": "system.runtime/4.3.0",
  6461. "files": [
  6462. ".nupkg.metadata",
  6463. ".signature.p7s",
  6464. "ThirdPartyNotices.txt",
  6465. "dotnet_library_license.txt",
  6466. "lib/MonoAndroid10/_._",
  6467. "lib/MonoTouch10/_._",
  6468. "lib/net45/_._",
  6469. "lib/net462/System.Runtime.dll",
  6470. "lib/portable-net45+win8+wp80+wpa81/_._",
  6471. "lib/win8/_._",
  6472. "lib/wp80/_._",
  6473. "lib/wpa81/_._",
  6474. "lib/xamarinios10/_._",
  6475. "lib/xamarinmac20/_._",
  6476. "lib/xamarintvos10/_._",
  6477. "lib/xamarinwatchos10/_._",
  6478. "ref/MonoAndroid10/_._",
  6479. "ref/MonoTouch10/_._",
  6480. "ref/net45/_._",
  6481. "ref/net462/System.Runtime.dll",
  6482. "ref/netcore50/System.Runtime.dll",
  6483. "ref/netcore50/System.Runtime.xml",
  6484. "ref/netcore50/de/System.Runtime.xml",
  6485. "ref/netcore50/es/System.Runtime.xml",
  6486. "ref/netcore50/fr/System.Runtime.xml",
  6487. "ref/netcore50/it/System.Runtime.xml",
  6488. "ref/netcore50/ja/System.Runtime.xml",
  6489. "ref/netcore50/ko/System.Runtime.xml",
  6490. "ref/netcore50/ru/System.Runtime.xml",
  6491. "ref/netcore50/zh-hans/System.Runtime.xml",
  6492. "ref/netcore50/zh-hant/System.Runtime.xml",
  6493. "ref/netstandard1.0/System.Runtime.dll",
  6494. "ref/netstandard1.0/System.Runtime.xml",
  6495. "ref/netstandard1.0/de/System.Runtime.xml",
  6496. "ref/netstandard1.0/es/System.Runtime.xml",
  6497. "ref/netstandard1.0/fr/System.Runtime.xml",
  6498. "ref/netstandard1.0/it/System.Runtime.xml",
  6499. "ref/netstandard1.0/ja/System.Runtime.xml",
  6500. "ref/netstandard1.0/ko/System.Runtime.xml",
  6501. "ref/netstandard1.0/ru/System.Runtime.xml",
  6502. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6503. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6504. "ref/netstandard1.2/System.Runtime.dll",
  6505. "ref/netstandard1.2/System.Runtime.xml",
  6506. "ref/netstandard1.2/de/System.Runtime.xml",
  6507. "ref/netstandard1.2/es/System.Runtime.xml",
  6508. "ref/netstandard1.2/fr/System.Runtime.xml",
  6509. "ref/netstandard1.2/it/System.Runtime.xml",
  6510. "ref/netstandard1.2/ja/System.Runtime.xml",
  6511. "ref/netstandard1.2/ko/System.Runtime.xml",
  6512. "ref/netstandard1.2/ru/System.Runtime.xml",
  6513. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6514. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6515. "ref/netstandard1.3/System.Runtime.dll",
  6516. "ref/netstandard1.3/System.Runtime.xml",
  6517. "ref/netstandard1.3/de/System.Runtime.xml",
  6518. "ref/netstandard1.3/es/System.Runtime.xml",
  6519. "ref/netstandard1.3/fr/System.Runtime.xml",
  6520. "ref/netstandard1.3/it/System.Runtime.xml",
  6521. "ref/netstandard1.3/ja/System.Runtime.xml",
  6522. "ref/netstandard1.3/ko/System.Runtime.xml",
  6523. "ref/netstandard1.3/ru/System.Runtime.xml",
  6524. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6525. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6526. "ref/netstandard1.5/System.Runtime.dll",
  6527. "ref/netstandard1.5/System.Runtime.xml",
  6528. "ref/netstandard1.5/de/System.Runtime.xml",
  6529. "ref/netstandard1.5/es/System.Runtime.xml",
  6530. "ref/netstandard1.5/fr/System.Runtime.xml",
  6531. "ref/netstandard1.5/it/System.Runtime.xml",
  6532. "ref/netstandard1.5/ja/System.Runtime.xml",
  6533. "ref/netstandard1.5/ko/System.Runtime.xml",
  6534. "ref/netstandard1.5/ru/System.Runtime.xml",
  6535. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6536. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6537. "ref/portable-net45+win8+wp80+wpa81/_._",
  6538. "ref/win8/_._",
  6539. "ref/wp80/_._",
  6540. "ref/wpa81/_._",
  6541. "ref/xamarinios10/_._",
  6542. "ref/xamarinmac20/_._",
  6543. "ref/xamarintvos10/_._",
  6544. "ref/xamarinwatchos10/_._",
  6545. "system.runtime.4.3.0.nupkg.sha512",
  6546. "system.runtime.nuspec"
  6547. ]
  6548. },
  6549. "System.Runtime.Caching/4.7.0": {
  6550. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  6551. "type": "package",
  6552. "path": "system.runtime.caching/4.7.0",
  6553. "files": [
  6554. ".nupkg.metadata",
  6555. ".signature.p7s",
  6556. "LICENSE.TXT",
  6557. "THIRD-PARTY-NOTICES.TXT",
  6558. "lib/MonoAndroid10/_._",
  6559. "lib/MonoTouch10/_._",
  6560. "lib/net45/_._",
  6561. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6562. "lib/netstandard2.0/System.Runtime.Caching.xml",
  6563. "lib/xamarinios10/_._",
  6564. "lib/xamarinmac20/_._",
  6565. "lib/xamarintvos10/_._",
  6566. "lib/xamarinwatchos10/_._",
  6567. "ref/MonoAndroid10/_._",
  6568. "ref/MonoTouch10/_._",
  6569. "ref/net45/_._",
  6570. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6571. "ref/netstandard2.0/System.Runtime.Caching.xml",
  6572. "ref/xamarinios10/_._",
  6573. "ref/xamarinmac20/_._",
  6574. "ref/xamarintvos10/_._",
  6575. "ref/xamarinwatchos10/_._",
  6576. "runtimes/win/lib/net45/_._",
  6577. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  6578. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  6579. "system.runtime.caching.4.7.0.nupkg.sha512",
  6580. "system.runtime.caching.nuspec",
  6581. "useSharedDesignerContext.txt",
  6582. "version.txt"
  6583. ]
  6584. },
  6585. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6586. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6587. "type": "package",
  6588. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6589. "files": [
  6590. ".nupkg.metadata",
  6591. ".signature.p7s",
  6592. "Icon.png",
  6593. "LICENSE.TXT",
  6594. "THIRD-PARTY-NOTICES.TXT",
  6595. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6596. "buildTransitive/netcoreapp3.1/_._",
  6597. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6598. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6599. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6600. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6601. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6602. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6603. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6604. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6605. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6606. "system.runtime.compilerservices.unsafe.nuspec",
  6607. "useSharedDesignerContext.txt"
  6608. ]
  6609. },
  6610. "System.Runtime.Extensions/4.3.0": {
  6611. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6612. "type": "package",
  6613. "path": "system.runtime.extensions/4.3.0",
  6614. "files": [
  6615. ".nupkg.metadata",
  6616. ".signature.p7s",
  6617. "ThirdPartyNotices.txt",
  6618. "dotnet_library_license.txt",
  6619. "lib/MonoAndroid10/_._",
  6620. "lib/MonoTouch10/_._",
  6621. "lib/net45/_._",
  6622. "lib/net462/System.Runtime.Extensions.dll",
  6623. "lib/portable-net45+win8+wp8+wpa81/_._",
  6624. "lib/win8/_._",
  6625. "lib/wp80/_._",
  6626. "lib/wpa81/_._",
  6627. "lib/xamarinios10/_._",
  6628. "lib/xamarinmac20/_._",
  6629. "lib/xamarintvos10/_._",
  6630. "lib/xamarinwatchos10/_._",
  6631. "ref/MonoAndroid10/_._",
  6632. "ref/MonoTouch10/_._",
  6633. "ref/net45/_._",
  6634. "ref/net462/System.Runtime.Extensions.dll",
  6635. "ref/netcore50/System.Runtime.Extensions.dll",
  6636. "ref/netcore50/System.Runtime.Extensions.xml",
  6637. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6638. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6639. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6640. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6641. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6642. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6643. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6644. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6645. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6646. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6647. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6648. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6649. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6650. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6651. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6652. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6653. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6654. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6655. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6656. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6657. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6658. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6659. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6660. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6661. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6662. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6663. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6664. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6665. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6666. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6667. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6668. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6669. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6670. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6671. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6672. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6673. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6674. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6675. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6676. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6677. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6678. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6679. "ref/portable-net45+win8+wp8+wpa81/_._",
  6680. "ref/win8/_._",
  6681. "ref/wp80/_._",
  6682. "ref/wpa81/_._",
  6683. "ref/xamarinios10/_._",
  6684. "ref/xamarinmac20/_._",
  6685. "ref/xamarintvos10/_._",
  6686. "ref/xamarinwatchos10/_._",
  6687. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6688. "system.runtime.extensions.nuspec"
  6689. ]
  6690. },
  6691. "System.Runtime.Handles/4.3.0": {
  6692. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6693. "type": "package",
  6694. "path": "system.runtime.handles/4.3.0",
  6695. "files": [
  6696. ".nupkg.metadata",
  6697. ".signature.p7s",
  6698. "ThirdPartyNotices.txt",
  6699. "dotnet_library_license.txt",
  6700. "lib/MonoAndroid10/_._",
  6701. "lib/MonoTouch10/_._",
  6702. "lib/net46/_._",
  6703. "lib/xamarinios10/_._",
  6704. "lib/xamarinmac20/_._",
  6705. "lib/xamarintvos10/_._",
  6706. "lib/xamarinwatchos10/_._",
  6707. "ref/MonoAndroid10/_._",
  6708. "ref/MonoTouch10/_._",
  6709. "ref/net46/_._",
  6710. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6711. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6712. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6713. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6714. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6715. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6716. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6717. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6718. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6719. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6720. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6721. "ref/xamarinios10/_._",
  6722. "ref/xamarinmac20/_._",
  6723. "ref/xamarintvos10/_._",
  6724. "ref/xamarinwatchos10/_._",
  6725. "system.runtime.handles.4.3.0.nupkg.sha512",
  6726. "system.runtime.handles.nuspec"
  6727. ]
  6728. },
  6729. "System.Runtime.InteropServices/4.3.0": {
  6730. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6731. "type": "package",
  6732. "path": "system.runtime.interopservices/4.3.0",
  6733. "files": [
  6734. ".nupkg.metadata",
  6735. ".signature.p7s",
  6736. "ThirdPartyNotices.txt",
  6737. "dotnet_library_license.txt",
  6738. "lib/MonoAndroid10/_._",
  6739. "lib/MonoTouch10/_._",
  6740. "lib/net45/_._",
  6741. "lib/net462/System.Runtime.InteropServices.dll",
  6742. "lib/net463/System.Runtime.InteropServices.dll",
  6743. "lib/portable-net45+win8+wpa81/_._",
  6744. "lib/win8/_._",
  6745. "lib/wpa81/_._",
  6746. "lib/xamarinios10/_._",
  6747. "lib/xamarinmac20/_._",
  6748. "lib/xamarintvos10/_._",
  6749. "lib/xamarinwatchos10/_._",
  6750. "ref/MonoAndroid10/_._",
  6751. "ref/MonoTouch10/_._",
  6752. "ref/net45/_._",
  6753. "ref/net462/System.Runtime.InteropServices.dll",
  6754. "ref/net463/System.Runtime.InteropServices.dll",
  6755. "ref/netcore50/System.Runtime.InteropServices.dll",
  6756. "ref/netcore50/System.Runtime.InteropServices.xml",
  6757. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6758. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6759. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6760. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6761. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6762. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6763. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6764. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6765. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6766. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6767. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6768. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6769. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6770. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6771. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6772. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6773. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6774. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6775. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6776. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6777. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6778. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6779. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6780. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6781. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6782. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6783. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6784. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6785. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6786. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6787. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6788. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6789. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6790. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6791. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6792. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6793. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6794. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6795. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6796. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6797. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6798. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6799. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6800. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6801. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6802. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6803. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6804. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6805. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6806. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6807. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6808. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6809. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6810. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6811. "ref/portable-net45+win8+wpa81/_._",
  6812. "ref/win8/_._",
  6813. "ref/wpa81/_._",
  6814. "ref/xamarinios10/_._",
  6815. "ref/xamarinmac20/_._",
  6816. "ref/xamarintvos10/_._",
  6817. "ref/xamarinwatchos10/_._",
  6818. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6819. "system.runtime.interopservices.nuspec"
  6820. ]
  6821. },
  6822. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6823. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6824. "type": "package",
  6825. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6826. "files": [
  6827. ".nupkg.metadata",
  6828. ".signature.p7s",
  6829. "ThirdPartyNotices.txt",
  6830. "dotnet_library_license.txt",
  6831. "lib/MonoAndroid10/_._",
  6832. "lib/MonoTouch10/_._",
  6833. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6834. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6835. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6836. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6837. "lib/xamarinios10/_._",
  6838. "lib/xamarinmac20/_._",
  6839. "lib/xamarintvos10/_._",
  6840. "lib/xamarinwatchos10/_._",
  6841. "ref/MonoAndroid10/_._",
  6842. "ref/MonoTouch10/_._",
  6843. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6844. "ref/xamarinios10/_._",
  6845. "ref/xamarinmac20/_._",
  6846. "ref/xamarintvos10/_._",
  6847. "ref/xamarinwatchos10/_._",
  6848. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6849. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6850. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6851. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6852. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6853. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6854. "system.runtime.interopservices.runtimeinformation.nuspec"
  6855. ]
  6856. },
  6857. "System.Runtime.Numerics/4.3.0": {
  6858. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6859. "type": "package",
  6860. "path": "system.runtime.numerics/4.3.0",
  6861. "files": [
  6862. ".nupkg.metadata",
  6863. ".signature.p7s",
  6864. "ThirdPartyNotices.txt",
  6865. "dotnet_library_license.txt",
  6866. "lib/MonoAndroid10/_._",
  6867. "lib/MonoTouch10/_._",
  6868. "lib/net45/_._",
  6869. "lib/netcore50/System.Runtime.Numerics.dll",
  6870. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6871. "lib/portable-net45+win8+wpa81/_._",
  6872. "lib/win8/_._",
  6873. "lib/wpa81/_._",
  6874. "lib/xamarinios10/_._",
  6875. "lib/xamarinmac20/_._",
  6876. "lib/xamarintvos10/_._",
  6877. "lib/xamarinwatchos10/_._",
  6878. "ref/MonoAndroid10/_._",
  6879. "ref/MonoTouch10/_._",
  6880. "ref/net45/_._",
  6881. "ref/netcore50/System.Runtime.Numerics.dll",
  6882. "ref/netcore50/System.Runtime.Numerics.xml",
  6883. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6884. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6885. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6886. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6887. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6888. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6889. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6890. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6891. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6892. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6893. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6894. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6895. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6896. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6897. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6898. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6899. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6900. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6901. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6902. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6903. "ref/portable-net45+win8+wpa81/_._",
  6904. "ref/win8/_._",
  6905. "ref/wpa81/_._",
  6906. "ref/xamarinios10/_._",
  6907. "ref/xamarinmac20/_._",
  6908. "ref/xamarintvos10/_._",
  6909. "ref/xamarinwatchos10/_._",
  6910. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6911. "system.runtime.numerics.nuspec"
  6912. ]
  6913. },
  6914. "System.Runtime.Serialization.Formatters/4.3.0": {
  6915. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  6916. "type": "package",
  6917. "path": "system.runtime.serialization.formatters/4.3.0",
  6918. "files": [
  6919. ".nupkg.metadata",
  6920. ".signature.p7s",
  6921. "ThirdPartyNotices.txt",
  6922. "dotnet_library_license.txt",
  6923. "lib/MonoAndroid10/_._",
  6924. "lib/MonoTouch10/_._",
  6925. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  6926. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  6927. "lib/xamarinios10/_._",
  6928. "lib/xamarinmac20/_._",
  6929. "lib/xamarintvos10/_._",
  6930. "lib/xamarinwatchos10/_._",
  6931. "ref/MonoAndroid10/_._",
  6932. "ref/MonoTouch10/_._",
  6933. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  6934. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  6935. "ref/xamarinios10/_._",
  6936. "ref/xamarinmac20/_._",
  6937. "ref/xamarintvos10/_._",
  6938. "ref/xamarinwatchos10/_._",
  6939. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  6940. "system.runtime.serialization.formatters.nuspec"
  6941. ]
  6942. },
  6943. "System.Runtime.Serialization.Primitives/4.3.0": {
  6944. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  6945. "type": "package",
  6946. "path": "system.runtime.serialization.primitives/4.3.0",
  6947. "files": [
  6948. ".nupkg.metadata",
  6949. ".signature.p7s",
  6950. "ThirdPartyNotices.txt",
  6951. "dotnet_library_license.txt",
  6952. "lib/MonoAndroid10/_._",
  6953. "lib/MonoTouch10/_._",
  6954. "lib/net45/_._",
  6955. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  6956. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6957. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6958. "lib/portable-net45+win8+wp8+wpa81/_._",
  6959. "lib/win8/_._",
  6960. "lib/wp80/_._",
  6961. "lib/wpa81/_._",
  6962. "lib/xamarinios10/_._",
  6963. "lib/xamarinmac20/_._",
  6964. "lib/xamarintvos10/_._",
  6965. "lib/xamarinwatchos10/_._",
  6966. "ref/MonoAndroid10/_._",
  6967. "ref/MonoTouch10/_._",
  6968. "ref/net45/_._",
  6969. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  6970. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  6971. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  6972. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  6973. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  6974. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  6975. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  6976. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  6977. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  6978. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  6979. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6980. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6981. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  6982. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  6983. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  6984. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  6985. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  6986. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  6987. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  6988. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  6989. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  6990. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6991. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6992. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6993. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  6994. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  6995. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  6996. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  6997. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  6998. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  6999. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7000. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7001. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7002. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.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. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7012. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7013. "system.runtime.serialization.primitives.nuspec"
  7014. ]
  7015. },
  7016. "System.Security.AccessControl/4.7.0": {
  7017. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7018. "type": "package",
  7019. "path": "system.security.accesscontrol/4.7.0",
  7020. "files": [
  7021. ".nupkg.metadata",
  7022. ".signature.p7s",
  7023. "LICENSE.TXT",
  7024. "THIRD-PARTY-NOTICES.TXT",
  7025. "lib/net46/System.Security.AccessControl.dll",
  7026. "lib/net461/System.Security.AccessControl.dll",
  7027. "lib/net461/System.Security.AccessControl.xml",
  7028. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7029. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7030. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7031. "lib/uap10.0.16299/_._",
  7032. "ref/net46/System.Security.AccessControl.dll",
  7033. "ref/net461/System.Security.AccessControl.dll",
  7034. "ref/net461/System.Security.AccessControl.xml",
  7035. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7036. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7037. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7038. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7039. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7040. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7041. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7042. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7043. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7044. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7045. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7046. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7047. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7048. "ref/uap10.0.16299/_._",
  7049. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7050. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7051. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7052. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7053. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7054. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7055. "runtimes/win/lib/uap10.0.16299/_._",
  7056. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7057. "system.security.accesscontrol.nuspec",
  7058. "useSharedDesignerContext.txt",
  7059. "version.txt"
  7060. ]
  7061. },
  7062. "System.Security.Cryptography.Algorithms/4.3.0": {
  7063. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7064. "type": "package",
  7065. "path": "system.security.cryptography.algorithms/4.3.0",
  7066. "files": [
  7067. ".nupkg.metadata",
  7068. ".signature.p7s",
  7069. "ThirdPartyNotices.txt",
  7070. "dotnet_library_license.txt",
  7071. "lib/MonoAndroid10/_._",
  7072. "lib/MonoTouch10/_._",
  7073. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7074. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7075. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7076. "lib/xamarinios10/_._",
  7077. "lib/xamarinmac20/_._",
  7078. "lib/xamarintvos10/_._",
  7079. "lib/xamarinwatchos10/_._",
  7080. "ref/MonoAndroid10/_._",
  7081. "ref/MonoTouch10/_._",
  7082. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7083. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7084. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7085. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7086. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7087. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7088. "ref/xamarinios10/_._",
  7089. "ref/xamarinmac20/_._",
  7090. "ref/xamarintvos10/_._",
  7091. "ref/xamarinwatchos10/_._",
  7092. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7093. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7094. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7095. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7096. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7097. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7098. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7099. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7100. "system.security.cryptography.algorithms.nuspec"
  7101. ]
  7102. },
  7103. "System.Security.Cryptography.Cng/4.7.0": {
  7104. "sha512": "4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
  7105. "type": "package",
  7106. "path": "system.security.cryptography.cng/4.7.0",
  7107. "files": [
  7108. ".nupkg.metadata",
  7109. ".signature.p7s",
  7110. "LICENSE.TXT",
  7111. "THIRD-PARTY-NOTICES.TXT",
  7112. "lib/MonoAndroid10/_._",
  7113. "lib/MonoTouch10/_._",
  7114. "lib/net46/System.Security.Cryptography.Cng.dll",
  7115. "lib/net461/System.Security.Cryptography.Cng.dll",
  7116. "lib/net461/System.Security.Cryptography.Cng.xml",
  7117. "lib/net462/System.Security.Cryptography.Cng.dll",
  7118. "lib/net462/System.Security.Cryptography.Cng.xml",
  7119. "lib/net47/System.Security.Cryptography.Cng.dll",
  7120. "lib/net47/System.Security.Cryptography.Cng.xml",
  7121. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7122. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7123. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7124. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7125. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7126. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7127. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7128. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7129. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7130. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7131. "lib/uap10.0.16299/_._",
  7132. "lib/xamarinios10/_._",
  7133. "lib/xamarinmac20/_._",
  7134. "lib/xamarintvos10/_._",
  7135. "lib/xamarinwatchos10/_._",
  7136. "ref/MonoAndroid10/_._",
  7137. "ref/MonoTouch10/_._",
  7138. "ref/net46/System.Security.Cryptography.Cng.dll",
  7139. "ref/net461/System.Security.Cryptography.Cng.dll",
  7140. "ref/net461/System.Security.Cryptography.Cng.xml",
  7141. "ref/net462/System.Security.Cryptography.Cng.dll",
  7142. "ref/net462/System.Security.Cryptography.Cng.xml",
  7143. "ref/net47/System.Security.Cryptography.Cng.dll",
  7144. "ref/net47/System.Security.Cryptography.Cng.xml",
  7145. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7146. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7147. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7148. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7149. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7150. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7151. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7152. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7153. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7154. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7155. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7156. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  7157. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  7158. "ref/uap10.0.16299/_._",
  7159. "ref/xamarinios10/_._",
  7160. "ref/xamarinmac20/_._",
  7161. "ref/xamarintvos10/_._",
  7162. "ref/xamarinwatchos10/_._",
  7163. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7164. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7165. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  7166. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7167. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  7168. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7169. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  7170. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7171. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7172. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  7173. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  7174. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7175. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7176. "runtimes/win/lib/uap10.0.16299/_._",
  7177. "system.security.cryptography.cng.4.7.0.nupkg.sha512",
  7178. "system.security.cryptography.cng.nuspec",
  7179. "useSharedDesignerContext.txt",
  7180. "version.txt"
  7181. ]
  7182. },
  7183. "System.Security.Cryptography.Csp/4.3.0": {
  7184. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7185. "type": "package",
  7186. "path": "system.security.cryptography.csp/4.3.0",
  7187. "files": [
  7188. ".nupkg.metadata",
  7189. ".signature.p7s",
  7190. "ThirdPartyNotices.txt",
  7191. "dotnet_library_license.txt",
  7192. "lib/MonoAndroid10/_._",
  7193. "lib/MonoTouch10/_._",
  7194. "lib/net46/System.Security.Cryptography.Csp.dll",
  7195. "lib/xamarinios10/_._",
  7196. "lib/xamarinmac20/_._",
  7197. "lib/xamarintvos10/_._",
  7198. "lib/xamarinwatchos10/_._",
  7199. "ref/MonoAndroid10/_._",
  7200. "ref/MonoTouch10/_._",
  7201. "ref/net46/System.Security.Cryptography.Csp.dll",
  7202. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7203. "ref/xamarinios10/_._",
  7204. "ref/xamarinmac20/_._",
  7205. "ref/xamarintvos10/_._",
  7206. "ref/xamarinwatchos10/_._",
  7207. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7208. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7209. "runtimes/win/lib/netcore50/_._",
  7210. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7211. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7212. "system.security.cryptography.csp.nuspec"
  7213. ]
  7214. },
  7215. "System.Security.Cryptography.Encoding/4.3.0": {
  7216. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7217. "type": "package",
  7218. "path": "system.security.cryptography.encoding/4.3.0",
  7219. "files": [
  7220. ".nupkg.metadata",
  7221. ".signature.p7s",
  7222. "ThirdPartyNotices.txt",
  7223. "dotnet_library_license.txt",
  7224. "lib/MonoAndroid10/_._",
  7225. "lib/MonoTouch10/_._",
  7226. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7227. "lib/xamarinios10/_._",
  7228. "lib/xamarinmac20/_._",
  7229. "lib/xamarintvos10/_._",
  7230. "lib/xamarinwatchos10/_._",
  7231. "ref/MonoAndroid10/_._",
  7232. "ref/MonoTouch10/_._",
  7233. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7234. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7235. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7236. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7237. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7238. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7239. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7240. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7241. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7242. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7243. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7244. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7245. "ref/xamarinios10/_._",
  7246. "ref/xamarinmac20/_._",
  7247. "ref/xamarintvos10/_._",
  7248. "ref/xamarinwatchos10/_._",
  7249. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7250. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7251. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7252. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7253. "system.security.cryptography.encoding.nuspec"
  7254. ]
  7255. },
  7256. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7257. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7258. "type": "package",
  7259. "path": "system.security.cryptography.openssl/4.3.0",
  7260. "files": [
  7261. ".nupkg.metadata",
  7262. ".signature.p7s",
  7263. "ThirdPartyNotices.txt",
  7264. "dotnet_library_license.txt",
  7265. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7266. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7267. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7268. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7269. "system.security.cryptography.openssl.nuspec"
  7270. ]
  7271. },
  7272. "System.Security.Cryptography.Pkcs/4.7.0": {
  7273. "sha512": "0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
  7274. "type": "package",
  7275. "path": "system.security.cryptography.pkcs/4.7.0",
  7276. "files": [
  7277. ".nupkg.metadata",
  7278. ".signature.p7s",
  7279. "LICENSE.TXT",
  7280. "THIRD-PARTY-NOTICES.TXT",
  7281. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  7282. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  7283. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  7284. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7285. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7286. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7287. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7288. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7289. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7290. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7291. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7292. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  7293. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  7294. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  7295. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7296. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  7297. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7298. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7299. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7300. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7301. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7302. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7303. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7304. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  7305. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  7306. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  7307. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7308. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  7309. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  7310. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7311. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7312. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7313. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  7314. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  7315. "system.security.cryptography.pkcs.4.7.0.nupkg.sha512",
  7316. "system.security.cryptography.pkcs.nuspec",
  7317. "useSharedDesignerContext.txt",
  7318. "version.txt"
  7319. ]
  7320. },
  7321. "System.Security.Cryptography.Primitives/4.3.0": {
  7322. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7323. "type": "package",
  7324. "path": "system.security.cryptography.primitives/4.3.0",
  7325. "files": [
  7326. ".nupkg.metadata",
  7327. ".signature.p7s",
  7328. "ThirdPartyNotices.txt",
  7329. "dotnet_library_license.txt",
  7330. "lib/MonoAndroid10/_._",
  7331. "lib/MonoTouch10/_._",
  7332. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7333. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7334. "lib/xamarinios10/_._",
  7335. "lib/xamarinmac20/_._",
  7336. "lib/xamarintvos10/_._",
  7337. "lib/xamarinwatchos10/_._",
  7338. "ref/MonoAndroid10/_._",
  7339. "ref/MonoTouch10/_._",
  7340. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7341. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7342. "ref/xamarinios10/_._",
  7343. "ref/xamarinmac20/_._",
  7344. "ref/xamarintvos10/_._",
  7345. "ref/xamarinwatchos10/_._",
  7346. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7347. "system.security.cryptography.primitives.nuspec"
  7348. ]
  7349. },
  7350. "System.Security.Cryptography.ProtectedData/4.7.0": {
  7351. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  7352. "type": "package",
  7353. "path": "system.security.cryptography.protecteddata/4.7.0",
  7354. "files": [
  7355. ".nupkg.metadata",
  7356. ".signature.p7s",
  7357. "LICENSE.TXT",
  7358. "THIRD-PARTY-NOTICES.TXT",
  7359. "lib/MonoAndroid10/_._",
  7360. "lib/MonoTouch10/_._",
  7361. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7362. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7363. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7364. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7365. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7366. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7367. "lib/xamarinios10/_._",
  7368. "lib/xamarinmac20/_._",
  7369. "lib/xamarintvos10/_._",
  7370. "lib/xamarinwatchos10/_._",
  7371. "ref/MonoAndroid10/_._",
  7372. "ref/MonoTouch10/_._",
  7373. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7374. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7375. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7376. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7377. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7378. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7379. "ref/xamarinios10/_._",
  7380. "ref/xamarinmac20/_._",
  7381. "ref/xamarintvos10/_._",
  7382. "ref/xamarinwatchos10/_._",
  7383. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7384. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7385. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7386. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7387. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7388. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7389. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  7390. "system.security.cryptography.protecteddata.nuspec",
  7391. "useSharedDesignerContext.txt",
  7392. "version.txt"
  7393. ]
  7394. },
  7395. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7396. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7397. "type": "package",
  7398. "path": "system.security.cryptography.x509certificates/4.3.0",
  7399. "files": [
  7400. ".nupkg.metadata",
  7401. ".signature.p7s",
  7402. "ThirdPartyNotices.txt",
  7403. "dotnet_library_license.txt",
  7404. "lib/MonoAndroid10/_._",
  7405. "lib/MonoTouch10/_._",
  7406. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7407. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7408. "lib/xamarinios10/_._",
  7409. "lib/xamarinmac20/_._",
  7410. "lib/xamarintvos10/_._",
  7411. "lib/xamarinwatchos10/_._",
  7412. "ref/MonoAndroid10/_._",
  7413. "ref/MonoTouch10/_._",
  7414. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7415. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7416. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7417. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7418. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7419. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7420. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7421. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7422. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7423. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7424. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7425. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7426. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7427. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7428. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7429. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7430. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7431. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7432. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7433. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7434. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7435. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7436. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7437. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7438. "ref/xamarinios10/_._",
  7439. "ref/xamarinmac20/_._",
  7440. "ref/xamarintvos10/_._",
  7441. "ref/xamarinwatchos10/_._",
  7442. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7443. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7444. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7445. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7446. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7447. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7448. "system.security.cryptography.x509certificates.nuspec"
  7449. ]
  7450. },
  7451. "System.Security.Cryptography.Xml/4.7.0": {
  7452. "sha512": "B6pAyxMvXGbZemb+ER877KSr6OKis+qAdxhhKKK36I6sgj2js8mbcEVviZEHYV8XRTWjbKsAq8Z/zoaegA30dA==",
  7453. "type": "package",
  7454. "path": "system.security.cryptography.xml/4.7.0",
  7455. "files": [
  7456. ".nupkg.metadata",
  7457. ".signature.p7s",
  7458. "LICENSE.TXT",
  7459. "THIRD-PARTY-NOTICES.TXT",
  7460. "lib/net461/System.Security.Cryptography.Xml.dll",
  7461. "lib/net461/System.Security.Cryptography.Xml.xml",
  7462. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  7463. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  7464. "ref/net461/System.Security.Cryptography.Xml.dll",
  7465. "ref/net461/System.Security.Cryptography.Xml.xml",
  7466. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll",
  7467. "ref/netstandard2.0/System.Security.Cryptography.Xml.xml",
  7468. "system.security.cryptography.xml.4.7.0.nupkg.sha512",
  7469. "system.security.cryptography.xml.nuspec",
  7470. "useSharedDesignerContext.txt",
  7471. "version.txt"
  7472. ]
  7473. },
  7474. "System.Security.Permissions/4.7.0": {
  7475. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  7476. "type": "package",
  7477. "path": "system.security.permissions/4.7.0",
  7478. "files": [
  7479. ".nupkg.metadata",
  7480. ".signature.p7s",
  7481. "LICENSE.TXT",
  7482. "THIRD-PARTY-NOTICES.TXT",
  7483. "lib/net461/System.Security.Permissions.dll",
  7484. "lib/net461/System.Security.Permissions.xml",
  7485. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  7486. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  7487. "lib/netstandard2.0/System.Security.Permissions.dll",
  7488. "lib/netstandard2.0/System.Security.Permissions.xml",
  7489. "ref/net461/System.Security.Permissions.dll",
  7490. "ref/net461/System.Security.Permissions.xml",
  7491. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  7492. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  7493. "ref/netstandard2.0/System.Security.Permissions.dll",
  7494. "ref/netstandard2.0/System.Security.Permissions.xml",
  7495. "system.security.permissions.4.7.0.nupkg.sha512",
  7496. "system.security.permissions.nuspec",
  7497. "useSharedDesignerContext.txt",
  7498. "version.txt"
  7499. ]
  7500. },
  7501. "System.Security.Principal.Windows/4.7.0": {
  7502. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  7503. "type": "package",
  7504. "path": "system.security.principal.windows/4.7.0",
  7505. "files": [
  7506. ".nupkg.metadata",
  7507. ".signature.p7s",
  7508. "LICENSE.TXT",
  7509. "THIRD-PARTY-NOTICES.TXT",
  7510. "lib/net46/System.Security.Principal.Windows.dll",
  7511. "lib/net461/System.Security.Principal.Windows.dll",
  7512. "lib/net461/System.Security.Principal.Windows.xml",
  7513. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7514. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7515. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7516. "lib/uap10.0.16299/_._",
  7517. "ref/net46/System.Security.Principal.Windows.dll",
  7518. "ref/net461/System.Security.Principal.Windows.dll",
  7519. "ref/net461/System.Security.Principal.Windows.xml",
  7520. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7521. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7522. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7523. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7524. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7525. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7526. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7527. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7528. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7529. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7530. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7531. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7532. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7533. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7534. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7535. "ref/uap10.0.16299/_._",
  7536. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7537. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7538. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7539. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7540. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7541. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7542. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7543. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7544. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7545. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7546. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7547. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7548. "runtimes/win/lib/uap10.0.16299/_._",
  7549. "system.security.principal.windows.4.7.0.nupkg.sha512",
  7550. "system.security.principal.windows.nuspec",
  7551. "useSharedDesignerContext.txt",
  7552. "version.txt"
  7553. ]
  7554. },
  7555. "System.Text.Encoding/4.3.0": {
  7556. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7557. "type": "package",
  7558. "path": "system.text.encoding/4.3.0",
  7559. "files": [
  7560. ".nupkg.metadata",
  7561. ".signature.p7s",
  7562. "ThirdPartyNotices.txt",
  7563. "dotnet_library_license.txt",
  7564. "lib/MonoAndroid10/_._",
  7565. "lib/MonoTouch10/_._",
  7566. "lib/net45/_._",
  7567. "lib/portable-net45+win8+wp8+wpa81/_._",
  7568. "lib/win8/_._",
  7569. "lib/wp80/_._",
  7570. "lib/wpa81/_._",
  7571. "lib/xamarinios10/_._",
  7572. "lib/xamarinmac20/_._",
  7573. "lib/xamarintvos10/_._",
  7574. "lib/xamarinwatchos10/_._",
  7575. "ref/MonoAndroid10/_._",
  7576. "ref/MonoTouch10/_._",
  7577. "ref/net45/_._",
  7578. "ref/netcore50/System.Text.Encoding.dll",
  7579. "ref/netcore50/System.Text.Encoding.xml",
  7580. "ref/netcore50/de/System.Text.Encoding.xml",
  7581. "ref/netcore50/es/System.Text.Encoding.xml",
  7582. "ref/netcore50/fr/System.Text.Encoding.xml",
  7583. "ref/netcore50/it/System.Text.Encoding.xml",
  7584. "ref/netcore50/ja/System.Text.Encoding.xml",
  7585. "ref/netcore50/ko/System.Text.Encoding.xml",
  7586. "ref/netcore50/ru/System.Text.Encoding.xml",
  7587. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7588. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7589. "ref/netstandard1.0/System.Text.Encoding.dll",
  7590. "ref/netstandard1.0/System.Text.Encoding.xml",
  7591. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7592. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7593. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7594. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7595. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7596. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7597. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7598. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7599. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7600. "ref/netstandard1.3/System.Text.Encoding.dll",
  7601. "ref/netstandard1.3/System.Text.Encoding.xml",
  7602. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7603. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7604. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7605. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7606. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7607. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7608. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7609. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7610. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7611. "ref/portable-net45+win8+wp8+wpa81/_._",
  7612. "ref/win8/_._",
  7613. "ref/wp80/_._",
  7614. "ref/wpa81/_._",
  7615. "ref/xamarinios10/_._",
  7616. "ref/xamarinmac20/_._",
  7617. "ref/xamarintvos10/_._",
  7618. "ref/xamarinwatchos10/_._",
  7619. "system.text.encoding.4.3.0.nupkg.sha512",
  7620. "system.text.encoding.nuspec"
  7621. ]
  7622. },
  7623. "System.Text.Encoding.CodePages/4.7.0": {
  7624. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  7625. "type": "package",
  7626. "path": "system.text.encoding.codepages/4.7.0",
  7627. "files": [
  7628. ".nupkg.metadata",
  7629. ".signature.p7s",
  7630. "LICENSE.TXT",
  7631. "THIRD-PARTY-NOTICES.TXT",
  7632. "lib/MonoAndroid10/_._",
  7633. "lib/MonoTouch10/_._",
  7634. "lib/net46/System.Text.Encoding.CodePages.dll",
  7635. "lib/net461/System.Text.Encoding.CodePages.dll",
  7636. "lib/net461/System.Text.Encoding.CodePages.xml",
  7637. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7638. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7639. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7640. "lib/xamarinios10/_._",
  7641. "lib/xamarinmac20/_._",
  7642. "lib/xamarintvos10/_._",
  7643. "lib/xamarinwatchos10/_._",
  7644. "ref/MonoAndroid10/_._",
  7645. "ref/MonoTouch10/_._",
  7646. "ref/xamarinios10/_._",
  7647. "ref/xamarinmac20/_._",
  7648. "ref/xamarintvos10/_._",
  7649. "ref/xamarinwatchos10/_._",
  7650. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7651. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7652. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7653. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7654. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7655. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7656. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7657. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  7658. "system.text.encoding.codepages.nuspec",
  7659. "useSharedDesignerContext.txt",
  7660. "version.txt"
  7661. ]
  7662. },
  7663. "System.Text.Encoding.Extensions/4.3.0": {
  7664. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7665. "type": "package",
  7666. "path": "system.text.encoding.extensions/4.3.0",
  7667. "files": [
  7668. ".nupkg.metadata",
  7669. ".signature.p7s",
  7670. "ThirdPartyNotices.txt",
  7671. "dotnet_library_license.txt",
  7672. "lib/MonoAndroid10/_._",
  7673. "lib/MonoTouch10/_._",
  7674. "lib/net45/_._",
  7675. "lib/portable-net45+win8+wp8+wpa81/_._",
  7676. "lib/win8/_._",
  7677. "lib/wp80/_._",
  7678. "lib/wpa81/_._",
  7679. "lib/xamarinios10/_._",
  7680. "lib/xamarinmac20/_._",
  7681. "lib/xamarintvos10/_._",
  7682. "lib/xamarinwatchos10/_._",
  7683. "ref/MonoAndroid10/_._",
  7684. "ref/MonoTouch10/_._",
  7685. "ref/net45/_._",
  7686. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7687. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7688. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7689. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7690. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7691. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7692. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7693. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7694. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7695. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7696. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7697. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7698. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7699. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7700. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7701. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7702. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7703. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7704. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7705. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7706. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7707. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7708. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7709. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7710. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7711. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7712. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7713. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7714. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7715. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7716. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7717. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7718. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7719. "ref/portable-net45+win8+wp8+wpa81/_._",
  7720. "ref/win8/_._",
  7721. "ref/wp80/_._",
  7722. "ref/wpa81/_._",
  7723. "ref/xamarinios10/_._",
  7724. "ref/xamarinmac20/_._",
  7725. "ref/xamarintvos10/_._",
  7726. "ref/xamarinwatchos10/_._",
  7727. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7728. "system.text.encoding.extensions.nuspec"
  7729. ]
  7730. },
  7731. "System.Text.Encodings.Web/6.0.0": {
  7732. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  7733. "type": "package",
  7734. "path": "system.text.encodings.web/6.0.0",
  7735. "files": [
  7736. ".nupkg.metadata",
  7737. ".signature.p7s",
  7738. "Icon.png",
  7739. "LICENSE.TXT",
  7740. "THIRD-PARTY-NOTICES.TXT",
  7741. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  7742. "buildTransitive/netcoreapp3.1/_._",
  7743. "lib/net461/System.Text.Encodings.Web.dll",
  7744. "lib/net461/System.Text.Encodings.Web.xml",
  7745. "lib/net6.0/System.Text.Encodings.Web.dll",
  7746. "lib/net6.0/System.Text.Encodings.Web.xml",
  7747. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  7748. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  7749. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7750. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7751. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  7752. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  7753. "system.text.encodings.web.6.0.0.nupkg.sha512",
  7754. "system.text.encodings.web.nuspec",
  7755. "useSharedDesignerContext.txt"
  7756. ]
  7757. },
  7758. "System.Text.Json/6.0.0": {
  7759. "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
  7760. "type": "package",
  7761. "path": "system.text.json/6.0.0",
  7762. "files": [
  7763. ".nupkg.metadata",
  7764. ".signature.p7s",
  7765. "Icon.png",
  7766. "LICENSE.TXT",
  7767. "THIRD-PARTY-NOTICES.TXT",
  7768. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  7769. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7770. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7771. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7772. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7773. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  7774. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  7775. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  7776. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  7777. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  7778. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  7779. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  7780. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  7781. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  7782. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  7783. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  7784. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  7785. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  7786. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  7787. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  7788. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  7789. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  7790. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  7791. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  7792. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  7793. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  7794. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  7795. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  7796. "build/System.Text.Json.targets",
  7797. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  7798. "buildTransitive/netcoreapp3.1/_._",
  7799. "lib/net461/System.Text.Json.dll",
  7800. "lib/net461/System.Text.Json.xml",
  7801. "lib/net6.0/System.Text.Json.dll",
  7802. "lib/net6.0/System.Text.Json.xml",
  7803. "lib/netcoreapp3.1/System.Text.Json.dll",
  7804. "lib/netcoreapp3.1/System.Text.Json.xml",
  7805. "lib/netstandard2.0/System.Text.Json.dll",
  7806. "lib/netstandard2.0/System.Text.Json.xml",
  7807. "system.text.json.6.0.0.nupkg.sha512",
  7808. "system.text.json.nuspec",
  7809. "useSharedDesignerContext.txt"
  7810. ]
  7811. },
  7812. "System.Text.RegularExpressions/4.3.0": {
  7813. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7814. "type": "package",
  7815. "path": "system.text.regularexpressions/4.3.0",
  7816. "files": [
  7817. ".nupkg.metadata",
  7818. ".signature.p7s",
  7819. "ThirdPartyNotices.txt",
  7820. "dotnet_library_license.txt",
  7821. "lib/MonoAndroid10/_._",
  7822. "lib/MonoTouch10/_._",
  7823. "lib/net45/_._",
  7824. "lib/net463/System.Text.RegularExpressions.dll",
  7825. "lib/netcore50/System.Text.RegularExpressions.dll",
  7826. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7827. "lib/portable-net45+win8+wp8+wpa81/_._",
  7828. "lib/win8/_._",
  7829. "lib/wp80/_._",
  7830. "lib/wpa81/_._",
  7831. "lib/xamarinios10/_._",
  7832. "lib/xamarinmac20/_._",
  7833. "lib/xamarintvos10/_._",
  7834. "lib/xamarinwatchos10/_._",
  7835. "ref/MonoAndroid10/_._",
  7836. "ref/MonoTouch10/_._",
  7837. "ref/net45/_._",
  7838. "ref/net463/System.Text.RegularExpressions.dll",
  7839. "ref/netcore50/System.Text.RegularExpressions.dll",
  7840. "ref/netcore50/System.Text.RegularExpressions.xml",
  7841. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7842. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7843. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7844. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7845. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7846. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7847. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7848. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7849. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7850. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7851. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7852. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7853. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7854. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7855. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7856. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7857. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7858. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7859. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7860. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7861. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7862. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7863. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7864. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7865. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7866. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7867. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7868. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7869. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7870. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7871. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7872. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7873. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7874. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7875. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7876. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7877. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7878. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7879. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7880. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7881. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7882. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7883. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7884. "ref/portable-net45+win8+wp8+wpa81/_._",
  7885. "ref/win8/_._",
  7886. "ref/wp80/_._",
  7887. "ref/wpa81/_._",
  7888. "ref/xamarinios10/_._",
  7889. "ref/xamarinmac20/_._",
  7890. "ref/xamarintvos10/_._",
  7891. "ref/xamarinwatchos10/_._",
  7892. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7893. "system.text.regularexpressions.nuspec"
  7894. ]
  7895. },
  7896. "System.Threading/4.3.0": {
  7897. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7898. "type": "package",
  7899. "path": "system.threading/4.3.0",
  7900. "files": [
  7901. ".nupkg.metadata",
  7902. ".signature.p7s",
  7903. "ThirdPartyNotices.txt",
  7904. "dotnet_library_license.txt",
  7905. "lib/MonoAndroid10/_._",
  7906. "lib/MonoTouch10/_._",
  7907. "lib/net45/_._",
  7908. "lib/netcore50/System.Threading.dll",
  7909. "lib/netstandard1.3/System.Threading.dll",
  7910. "lib/portable-net45+win8+wp8+wpa81/_._",
  7911. "lib/win8/_._",
  7912. "lib/wp80/_._",
  7913. "lib/wpa81/_._",
  7914. "lib/xamarinios10/_._",
  7915. "lib/xamarinmac20/_._",
  7916. "lib/xamarintvos10/_._",
  7917. "lib/xamarinwatchos10/_._",
  7918. "ref/MonoAndroid10/_._",
  7919. "ref/MonoTouch10/_._",
  7920. "ref/net45/_._",
  7921. "ref/netcore50/System.Threading.dll",
  7922. "ref/netcore50/System.Threading.xml",
  7923. "ref/netcore50/de/System.Threading.xml",
  7924. "ref/netcore50/es/System.Threading.xml",
  7925. "ref/netcore50/fr/System.Threading.xml",
  7926. "ref/netcore50/it/System.Threading.xml",
  7927. "ref/netcore50/ja/System.Threading.xml",
  7928. "ref/netcore50/ko/System.Threading.xml",
  7929. "ref/netcore50/ru/System.Threading.xml",
  7930. "ref/netcore50/zh-hans/System.Threading.xml",
  7931. "ref/netcore50/zh-hant/System.Threading.xml",
  7932. "ref/netstandard1.0/System.Threading.dll",
  7933. "ref/netstandard1.0/System.Threading.xml",
  7934. "ref/netstandard1.0/de/System.Threading.xml",
  7935. "ref/netstandard1.0/es/System.Threading.xml",
  7936. "ref/netstandard1.0/fr/System.Threading.xml",
  7937. "ref/netstandard1.0/it/System.Threading.xml",
  7938. "ref/netstandard1.0/ja/System.Threading.xml",
  7939. "ref/netstandard1.0/ko/System.Threading.xml",
  7940. "ref/netstandard1.0/ru/System.Threading.xml",
  7941. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7942. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7943. "ref/netstandard1.3/System.Threading.dll",
  7944. "ref/netstandard1.3/System.Threading.xml",
  7945. "ref/netstandard1.3/de/System.Threading.xml",
  7946. "ref/netstandard1.3/es/System.Threading.xml",
  7947. "ref/netstandard1.3/fr/System.Threading.xml",
  7948. "ref/netstandard1.3/it/System.Threading.xml",
  7949. "ref/netstandard1.3/ja/System.Threading.xml",
  7950. "ref/netstandard1.3/ko/System.Threading.xml",
  7951. "ref/netstandard1.3/ru/System.Threading.xml",
  7952. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7953. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7954. "ref/portable-net45+win8+wp8+wpa81/_._",
  7955. "ref/win8/_._",
  7956. "ref/wp80/_._",
  7957. "ref/wpa81/_._",
  7958. "ref/xamarinios10/_._",
  7959. "ref/xamarinmac20/_._",
  7960. "ref/xamarintvos10/_._",
  7961. "ref/xamarinwatchos10/_._",
  7962. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7963. "system.threading.4.3.0.nupkg.sha512",
  7964. "system.threading.nuspec"
  7965. ]
  7966. },
  7967. "System.Threading.Tasks/4.3.0": {
  7968. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7969. "type": "package",
  7970. "path": "system.threading.tasks/4.3.0",
  7971. "files": [
  7972. ".nupkg.metadata",
  7973. ".signature.p7s",
  7974. "ThirdPartyNotices.txt",
  7975. "dotnet_library_license.txt",
  7976. "lib/MonoAndroid10/_._",
  7977. "lib/MonoTouch10/_._",
  7978. "lib/net45/_._",
  7979. "lib/portable-net45+win8+wp8+wpa81/_._",
  7980. "lib/win8/_._",
  7981. "lib/wp80/_._",
  7982. "lib/wpa81/_._",
  7983. "lib/xamarinios10/_._",
  7984. "lib/xamarinmac20/_._",
  7985. "lib/xamarintvos10/_._",
  7986. "lib/xamarinwatchos10/_._",
  7987. "ref/MonoAndroid10/_._",
  7988. "ref/MonoTouch10/_._",
  7989. "ref/net45/_._",
  7990. "ref/netcore50/System.Threading.Tasks.dll",
  7991. "ref/netcore50/System.Threading.Tasks.xml",
  7992. "ref/netcore50/de/System.Threading.Tasks.xml",
  7993. "ref/netcore50/es/System.Threading.Tasks.xml",
  7994. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7995. "ref/netcore50/it/System.Threading.Tasks.xml",
  7996. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7997. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7998. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7999. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8000. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8001. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8002. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8003. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8004. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8005. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8006. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8007. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8008. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8009. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8010. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8011. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8012. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8013. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8014. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8015. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8016. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8017. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8018. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8019. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8020. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8021. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8022. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8023. "ref/portable-net45+win8+wp8+wpa81/_._",
  8024. "ref/win8/_._",
  8025. "ref/wp80/_._",
  8026. "ref/wpa81/_._",
  8027. "ref/xamarinios10/_._",
  8028. "ref/xamarinmac20/_._",
  8029. "ref/xamarintvos10/_._",
  8030. "ref/xamarinwatchos10/_._",
  8031. "system.threading.tasks.4.3.0.nupkg.sha512",
  8032. "system.threading.tasks.nuspec"
  8033. ]
  8034. },
  8035. "System.Threading.Tasks.Dataflow/4.9.0": {
  8036. "sha512": "dTS+3D/GtG2/Pvc3E5YzVvAa7aQJgLDlZDIzukMOJjYudVOQOUXEU68y6Zi3Nn/jqIeB5kOCwrGbQFAKHVzXEQ==",
  8037. "type": "package",
  8038. "path": "system.threading.tasks.dataflow/4.9.0",
  8039. "files": [
  8040. ".nupkg.metadata",
  8041. ".signature.p7s",
  8042. "LICENSE.TXT",
  8043. "THIRD-PARTY-NOTICES.TXT",
  8044. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
  8045. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml",
  8046. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
  8047. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml",
  8048. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
  8049. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
  8050. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll",
  8051. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml",
  8052. "system.threading.tasks.dataflow.4.9.0.nupkg.sha512",
  8053. "system.threading.tasks.dataflow.nuspec",
  8054. "useSharedDesignerContext.txt",
  8055. "version.txt"
  8056. ]
  8057. },
  8058. "System.Threading.Tasks.Extensions/4.5.2": {
  8059. "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  8060. "type": "package",
  8061. "path": "system.threading.tasks.extensions/4.5.2",
  8062. "files": [
  8063. ".nupkg.metadata",
  8064. ".signature.p7s",
  8065. "LICENSE.TXT",
  8066. "THIRD-PARTY-NOTICES.TXT",
  8067. "lib/MonoAndroid10/_._",
  8068. "lib/MonoTouch10/_._",
  8069. "lib/netcoreapp2.1/_._",
  8070. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8071. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8072. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8073. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8074. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8075. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8076. "lib/xamarinios10/_._",
  8077. "lib/xamarinmac20/_._",
  8078. "lib/xamarintvos10/_._",
  8079. "lib/xamarinwatchos10/_._",
  8080. "ref/MonoAndroid10/_._",
  8081. "ref/MonoTouch10/_._",
  8082. "ref/netcoreapp2.1/_._",
  8083. "ref/xamarinios10/_._",
  8084. "ref/xamarinmac20/_._",
  8085. "ref/xamarintvos10/_._",
  8086. "ref/xamarinwatchos10/_._",
  8087. "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
  8088. "system.threading.tasks.extensions.nuspec",
  8089. "useSharedDesignerContext.txt",
  8090. "version.txt"
  8091. ]
  8092. },
  8093. "System.Threading.Timer/4.3.0": {
  8094. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8095. "type": "package",
  8096. "path": "system.threading.timer/4.3.0",
  8097. "files": [
  8098. ".nupkg.metadata",
  8099. ".signature.p7s",
  8100. "ThirdPartyNotices.txt",
  8101. "dotnet_library_license.txt",
  8102. "lib/MonoAndroid10/_._",
  8103. "lib/MonoTouch10/_._",
  8104. "lib/net451/_._",
  8105. "lib/portable-net451+win81+wpa81/_._",
  8106. "lib/win81/_._",
  8107. "lib/wpa81/_._",
  8108. "lib/xamarinios10/_._",
  8109. "lib/xamarinmac20/_._",
  8110. "lib/xamarintvos10/_._",
  8111. "lib/xamarinwatchos10/_._",
  8112. "ref/MonoAndroid10/_._",
  8113. "ref/MonoTouch10/_._",
  8114. "ref/net451/_._",
  8115. "ref/netcore50/System.Threading.Timer.dll",
  8116. "ref/netcore50/System.Threading.Timer.xml",
  8117. "ref/netcore50/de/System.Threading.Timer.xml",
  8118. "ref/netcore50/es/System.Threading.Timer.xml",
  8119. "ref/netcore50/fr/System.Threading.Timer.xml",
  8120. "ref/netcore50/it/System.Threading.Timer.xml",
  8121. "ref/netcore50/ja/System.Threading.Timer.xml",
  8122. "ref/netcore50/ko/System.Threading.Timer.xml",
  8123. "ref/netcore50/ru/System.Threading.Timer.xml",
  8124. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8125. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8126. "ref/netstandard1.2/System.Threading.Timer.dll",
  8127. "ref/netstandard1.2/System.Threading.Timer.xml",
  8128. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8129. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8130. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8131. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8132. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8133. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8134. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8135. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8136. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8137. "ref/portable-net451+win81+wpa81/_._",
  8138. "ref/win81/_._",
  8139. "ref/wpa81/_._",
  8140. "ref/xamarinios10/_._",
  8141. "ref/xamarinmac20/_._",
  8142. "ref/xamarintvos10/_._",
  8143. "ref/xamarinwatchos10/_._",
  8144. "system.threading.timer.4.3.0.nupkg.sha512",
  8145. "system.threading.timer.nuspec"
  8146. ]
  8147. },
  8148. "System.Windows.Extensions/4.7.0": {
  8149. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8150. "type": "package",
  8151. "path": "system.windows.extensions/4.7.0",
  8152. "files": [
  8153. ".nupkg.metadata",
  8154. ".signature.p7s",
  8155. "LICENSE.TXT",
  8156. "THIRD-PARTY-NOTICES.TXT",
  8157. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8158. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8159. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8160. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8161. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8162. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8163. "system.windows.extensions.4.7.0.nupkg.sha512",
  8164. "system.windows.extensions.nuspec",
  8165. "useSharedDesignerContext.txt",
  8166. "version.txt"
  8167. ]
  8168. },
  8169. "System.Xml.ReaderWriter/4.3.0": {
  8170. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8171. "type": "package",
  8172. "path": "system.xml.readerwriter/4.3.0",
  8173. "files": [
  8174. ".nupkg.metadata",
  8175. ".signature.p7s",
  8176. "ThirdPartyNotices.txt",
  8177. "dotnet_library_license.txt",
  8178. "lib/MonoAndroid10/_._",
  8179. "lib/MonoTouch10/_._",
  8180. "lib/net45/_._",
  8181. "lib/net46/System.Xml.ReaderWriter.dll",
  8182. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8183. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8184. "lib/portable-net45+win8+wp8+wpa81/_._",
  8185. "lib/win8/_._",
  8186. "lib/wp80/_._",
  8187. "lib/wpa81/_._",
  8188. "lib/xamarinios10/_._",
  8189. "lib/xamarinmac20/_._",
  8190. "lib/xamarintvos10/_._",
  8191. "lib/xamarinwatchos10/_._",
  8192. "ref/MonoAndroid10/_._",
  8193. "ref/MonoTouch10/_._",
  8194. "ref/net45/_._",
  8195. "ref/net46/System.Xml.ReaderWriter.dll",
  8196. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8197. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8198. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8199. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8200. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8201. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8202. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8203. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8204. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8205. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8206. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8207. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8208. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8209. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8210. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8211. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8212. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8213. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8214. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8215. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8216. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8217. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8218. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8219. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8220. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8221. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8222. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8223. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8224. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8225. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8226. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8227. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8228. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8229. "ref/portable-net45+win8+wp8+wpa81/_._",
  8230. "ref/win8/_._",
  8231. "ref/wp80/_._",
  8232. "ref/wpa81/_._",
  8233. "ref/xamarinios10/_._",
  8234. "ref/xamarinmac20/_._",
  8235. "ref/xamarintvos10/_._",
  8236. "ref/xamarinwatchos10/_._",
  8237. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8238. "system.xml.readerwriter.nuspec"
  8239. ]
  8240. },
  8241. "System.Xml.XDocument/4.3.0": {
  8242. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8243. "type": "package",
  8244. "path": "system.xml.xdocument/4.3.0",
  8245. "files": [
  8246. ".nupkg.metadata",
  8247. ".signature.p7s",
  8248. "ThirdPartyNotices.txt",
  8249. "dotnet_library_license.txt",
  8250. "lib/MonoAndroid10/_._",
  8251. "lib/MonoTouch10/_._",
  8252. "lib/net45/_._",
  8253. "lib/netcore50/System.Xml.XDocument.dll",
  8254. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8255. "lib/portable-net45+win8+wp8+wpa81/_._",
  8256. "lib/win8/_._",
  8257. "lib/wp80/_._",
  8258. "lib/wpa81/_._",
  8259. "lib/xamarinios10/_._",
  8260. "lib/xamarinmac20/_._",
  8261. "lib/xamarintvos10/_._",
  8262. "lib/xamarinwatchos10/_._",
  8263. "ref/MonoAndroid10/_._",
  8264. "ref/MonoTouch10/_._",
  8265. "ref/net45/_._",
  8266. "ref/netcore50/System.Xml.XDocument.dll",
  8267. "ref/netcore50/System.Xml.XDocument.xml",
  8268. "ref/netcore50/de/System.Xml.XDocument.xml",
  8269. "ref/netcore50/es/System.Xml.XDocument.xml",
  8270. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8271. "ref/netcore50/it/System.Xml.XDocument.xml",
  8272. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8273. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8274. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8275. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8276. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8277. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8278. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8279. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8280. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8281. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8282. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8283. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8284. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8285. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8286. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8287. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8288. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8289. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8290. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8291. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8292. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8293. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8294. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8295. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8296. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8297. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8298. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8299. "ref/portable-net45+win8+wp8+wpa81/_._",
  8300. "ref/win8/_._",
  8301. "ref/wp80/_._",
  8302. "ref/wpa81/_._",
  8303. "ref/xamarinios10/_._",
  8304. "ref/xamarinmac20/_._",
  8305. "ref/xamarintvos10/_._",
  8306. "ref/xamarinwatchos10/_._",
  8307. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8308. "system.xml.xdocument.nuspec"
  8309. ]
  8310. },
  8311. "System.Xml.XmlDocument/4.3.0": {
  8312. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8313. "type": "package",
  8314. "path": "system.xml.xmldocument/4.3.0",
  8315. "files": [
  8316. ".nupkg.metadata",
  8317. ".signature.p7s",
  8318. "ThirdPartyNotices.txt",
  8319. "dotnet_library_license.txt",
  8320. "lib/MonoAndroid10/_._",
  8321. "lib/MonoTouch10/_._",
  8322. "lib/net46/System.Xml.XmlDocument.dll",
  8323. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8324. "lib/xamarinios10/_._",
  8325. "lib/xamarinmac20/_._",
  8326. "lib/xamarintvos10/_._",
  8327. "lib/xamarinwatchos10/_._",
  8328. "ref/MonoAndroid10/_._",
  8329. "ref/MonoTouch10/_._",
  8330. "ref/net46/System.Xml.XmlDocument.dll",
  8331. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8332. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8333. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8334. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8335. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8336. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8337. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8338. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8339. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8340. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8341. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8342. "ref/xamarinios10/_._",
  8343. "ref/xamarinmac20/_._",
  8344. "ref/xamarintvos10/_._",
  8345. "ref/xamarinwatchos10/_._",
  8346. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8347. "system.xml.xmldocument.nuspec"
  8348. ]
  8349. }
  8350. },
  8351. "projectFileDependencyGroups": {
  8352. "net6.0": [
  8353. "AutoMapper >= 10.1.1",
  8354. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 8.1.1",
  8355. "MediatR >= 9.0.0",
  8356. "MediatR.Extensions.Microsoft.DependencyInjection >= 9.0.0",
  8357. "Microsoft.AspNet.WebApi.Core >= 5.2.7",
  8358. "Microsoft.AspNetCore.Authentication.JwtBearer >= 6.0.0",
  8359. "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 6.0.0",
  8360. "Microsoft.Build.Tasks.Core >= 17.0.0",
  8361. "Microsoft.EntityFrameworkCore >= 6.0.0",
  8362. "Microsoft.EntityFrameworkCore.SqlServer >= 6.0.0",
  8363. "Microsoft.EntityFrameworkCore.Sqlite >= 6.0.0",
  8364. "Microsoft.EntityFrameworkCore.Tools >= 6.0.0",
  8365. "PuppeteerSharp >= 5.1.0",
  8366. "Swashbuckle.AspNetCore >= 6.2.3",
  8367. "iTextSharp >= 5.5.13.2"
  8368. ]
  8369. },
  8370. "packageFolders": {
  8371. "C:\\Users\\safet.purkovic\\.nuget\\packages\\": {}
  8372. },
  8373. "project": {
  8374. "version": "1.0.0",
  8375. "restore": {
  8376. "projectUniqueName": "C:\\Users\\safet.purkovic\\Desktop\\PDFEngineAPI\\BlackRock.Reporting.API\\BlackRock.Reporting.API.csproj",
  8377. "projectName": "BlackRock.Reporting.API",
  8378. "projectPath": "C:\\Users\\safet.purkovic\\Desktop\\PDFEngineAPI\\BlackRock.Reporting.API\\BlackRock.Reporting.API.csproj",
  8379. "packagesPath": "C:\\Users\\safet.purkovic\\.nuget\\packages\\",
  8380. "outputPath": "C:\\Users\\safet.purkovic\\Desktop\\PDFEngineAPI\\BlackRock.Reporting.API\\obj\\",
  8381. "projectStyle": "PackageReference",
  8382. "configFilePaths": [
  8383. "C:\\Users\\safet.purkovic\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8384. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8385. ],
  8386. "originalTargetFrameworks": [
  8387. "net6.0"
  8388. ],
  8389. "sources": {
  8390. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8391. "https://api.nuget.org/v3/index.json": {}
  8392. },
  8393. "frameworks": {
  8394. "net6.0": {
  8395. "targetAlias": "net6.0",
  8396. "projectReferences": {}
  8397. }
  8398. },
  8399. "warningProperties": {
  8400. "warnAsError": [
  8401. "NU1605"
  8402. ]
  8403. }
  8404. },
  8405. "frameworks": {
  8406. "net6.0": {
  8407. "targetAlias": "net6.0",
  8408. "dependencies": {
  8409. "AutoMapper": {
  8410. "target": "Package",
  8411. "version": "[10.1.1, )"
  8412. },
  8413. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  8414. "target": "Package",
  8415. "version": "[8.1.1, )"
  8416. },
  8417. "MediatR": {
  8418. "target": "Package",
  8419. "version": "[9.0.0, )"
  8420. },
  8421. "MediatR.Extensions.Microsoft.DependencyInjection": {
  8422. "target": "Package",
  8423. "version": "[9.0.0, )"
  8424. },
  8425. "Microsoft.AspNet.WebApi.Core": {
  8426. "target": "Package",
  8427. "version": "[5.2.7, )"
  8428. },
  8429. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  8430. "target": "Package",
  8431. "version": "[6.0.0, )"
  8432. },
  8433. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
  8434. "target": "Package",
  8435. "version": "[6.0.0, )"
  8436. },
  8437. "Microsoft.Build.Tasks.Core": {
  8438. "target": "Package",
  8439. "version": "[17.0.0, )"
  8440. },
  8441. "Microsoft.EntityFrameworkCore": {
  8442. "target": "Package",
  8443. "version": "[6.0.0, )"
  8444. },
  8445. "Microsoft.EntityFrameworkCore.SqlServer": {
  8446. "target": "Package",
  8447. "version": "[6.0.0, )"
  8448. },
  8449. "Microsoft.EntityFrameworkCore.Sqlite": {
  8450. "target": "Package",
  8451. "version": "[6.0.0, )"
  8452. },
  8453. "Microsoft.EntityFrameworkCore.Tools": {
  8454. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8455. "suppressParent": "All",
  8456. "target": "Package",
  8457. "version": "[6.0.0, )"
  8458. },
  8459. "PuppeteerSharp": {
  8460. "target": "Package",
  8461. "version": "[5.1.0, )"
  8462. },
  8463. "Swashbuckle.AspNetCore": {
  8464. "target": "Package",
  8465. "version": "[6.2.3, )"
  8466. },
  8467. "iTextSharp": {
  8468. "target": "Package",
  8469. "version": "[5.5.13.2, )"
  8470. }
  8471. },
  8472. "imports": [
  8473. "net461",
  8474. "net462",
  8475. "net47",
  8476. "net471",
  8477. "net472",
  8478. "net48"
  8479. ],
  8480. "assetTargetFallback": true,
  8481. "warn": true,
  8482. "frameworkReferences": {
  8483. "Microsoft.AspNetCore.App": {
  8484. "privateAssets": "none"
  8485. },
  8486. "Microsoft.NETCore.App": {
  8487. "privateAssets": "all"
  8488. }
  8489. },
  8490. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json"
  8491. }
  8492. }
  8493. },
  8494. "logs": [
  8495. {
  8496. "code": "NU1701",
  8497. "level": "Warning",
  8498. "warningLevel": 1,
  8499. "message": "Package 'BouncyCastle 1.8.6.1' was restored using '.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' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.",
  8500. "libraryId": "BouncyCastle",
  8501. "targetGraphs": [
  8502. "net6.0"
  8503. ]
  8504. },
  8505. {
  8506. "code": "NU1701",
  8507. "level": "Warning",
  8508. "warningLevel": 1,
  8509. "message": "Package 'iTextSharp 5.5.13.2' was restored using '.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' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.",
  8510. "libraryId": "iTextSharp",
  8511. "targetGraphs": [
  8512. "net6.0"
  8513. ]
  8514. },
  8515. {
  8516. "code": "NU1701",
  8517. "level": "Warning",
  8518. "warningLevel": 1,
  8519. "message": "Package 'Microsoft.AspNet.WebApi.Core 5.2.7' was restored using '.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' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.",
  8520. "libraryId": "Microsoft.AspNet.WebApi.Core",
  8521. "targetGraphs": [
  8522. "net6.0"
  8523. ]
  8524. }
  8525. ]
  8526. }