project.assets.json 422 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "coverlet.collector/1.2.0": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Google.Protobuf/3.5.1": {
  12. "type": "package",
  13. "dependencies": {
  14. "NETStandard.Library": "1.6.1"
  15. },
  16. "compile": {
  17. "lib/netstandard1.0/Google.Protobuf.dll": {}
  18. },
  19. "runtime": {
  20. "lib/netstandard1.0/Google.Protobuf.dll": {}
  21. }
  22. },
  23. "iTextSharp.LGPLv2.Core/1.7.0": {
  24. "type": "package",
  25. "dependencies": {
  26. "Portable.BouncyCastle": "1.8.8",
  27. "System.Collections.NonGeneric": "4.3.0",
  28. "System.Drawing.Common": "4.7.0",
  29. "System.Net.Requests": "4.3.0",
  30. "System.Reflection.TypeExtensions": "4.7.0",
  31. "System.Runtime.Loader": "4.3.0",
  32. "System.Security.Cryptography.Algorithms": "4.3.1",
  33. "System.Text.Encoding.CodePages": "4.7.1",
  34. "System.Xml.ReaderWriter": "4.3.1",
  35. "System.Xml.XmlDocument": "4.3.0"
  36. },
  37. "compile": {
  38. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  39. },
  40. "runtime": {
  41. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  42. }
  43. },
  44. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  45. "type": "package",
  46. "compile": {
  47. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  48. },
  49. "runtime": {
  50. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  51. }
  52. },
  53. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  54. "type": "package",
  55. "dependencies": {
  56. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.10"
  57. },
  58. "compile": {
  59. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  60. },
  61. "runtime": {
  62. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  63. }
  64. },
  65. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  66. "type": "package",
  67. "dependencies": {
  68. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  69. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  70. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  77. }
  78. },
  79. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  83. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  87. },
  88. "runtime": {
  89. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  90. }
  91. },
  92. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  93. "type": "package",
  94. "dependencies": {
  95. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  96. "System.Text.Encodings.Web": "4.5.0"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  100. },
  101. "runtime": {
  102. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  103. }
  104. },
  105. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  106. "type": "package",
  107. "dependencies": {
  108. "Microsoft.Extensions.Primitives": "2.2.0"
  109. },
  110. "compile": {
  111. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  112. },
  113. "runtime": {
  114. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  115. }
  116. },
  117. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  118. "type": "package",
  119. "dependencies": {
  120. "Microsoft.EntityFrameworkCore.Relational": "3.1.10",
  121. "Microsoft.Extensions.Identity.Stores": "3.1.10"
  122. },
  123. "compile": {
  124. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  125. },
  126. "runtime": {
  127. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  128. }
  129. },
  130. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  131. "type": "package",
  132. "compile": {
  133. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  134. },
  135. "runtime": {
  136. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  137. }
  138. },
  139. "Microsoft.Bcl.HashCode/1.1.0": {
  140. "type": "package",
  141. "compile": {
  142. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  146. }
  147. },
  148. "Microsoft.CodeCoverage/16.5.0": {
  149. "type": "package",
  150. "compile": {
  151. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  152. },
  153. "runtime": {
  154. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  155. },
  156. "build": {
  157. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  158. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  159. }
  160. },
  161. "Microsoft.CSharp/4.3.0": {
  162. "type": "package",
  163. "dependencies": {
  164. "System.Collections": "4.3.0",
  165. "System.Diagnostics.Debug": "4.3.0",
  166. "System.Dynamic.Runtime": "4.3.0",
  167. "System.Globalization": "4.3.0",
  168. "System.Linq": "4.3.0",
  169. "System.Linq.Expressions": "4.3.0",
  170. "System.ObjectModel": "4.3.0",
  171. "System.Reflection": "4.3.0",
  172. "System.Reflection.Extensions": "4.3.0",
  173. "System.Reflection.Primitives": "4.3.0",
  174. "System.Reflection.TypeExtensions": "4.3.0",
  175. "System.Resources.ResourceManager": "4.3.0",
  176. "System.Runtime": "4.3.0",
  177. "System.Runtime.Extensions": "4.3.0",
  178. "System.Runtime.InteropServices": "4.3.0",
  179. "System.Threading": "4.3.0"
  180. },
  181. "compile": {
  182. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  183. },
  184. "runtime": {
  185. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  186. }
  187. },
  188. "Microsoft.Data.Sqlite/2.2.4": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Data.Sqlite.Core": "2.2.4",
  192. "SQLitePCLRaw.bundle_green": "1.1.12"
  193. },
  194. "compile": {
  195. "lib/netstandard2.0/_._": {}
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/_._": {}
  199. }
  200. },
  201. "Microsoft.Data.Sqlite.Core/2.2.4": {
  202. "type": "package",
  203. "dependencies": {
  204. "SQLitePCLRaw.core": "1.1.12"
  205. },
  206. "compile": {
  207. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  211. }
  212. },
  213. "Microsoft.EntityFrameworkCore/3.1.10": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  217. "Microsoft.Bcl.HashCode": "1.1.0",
  218. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.10",
  219. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.10",
  220. "Microsoft.Extensions.Caching.Memory": "3.1.10",
  221. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  222. "Microsoft.Extensions.Logging": "3.1.10",
  223. "System.Collections.Immutable": "1.7.1",
  224. "System.ComponentModel.Annotations": "4.7.0",
  225. "System.Diagnostics.DiagnosticSource": "4.7.1"
  226. },
  227. "compile": {
  228. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  232. }
  233. },
  234. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  235. "type": "package",
  236. "compile": {
  237. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  238. },
  239. "runtime": {
  240. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  241. }
  242. },
  243. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  244. "type": "package",
  245. "compile": {
  246. "lib/netstandard2.0/_._": {}
  247. },
  248. "runtime": {
  249. "lib/netstandard2.0/_._": {}
  250. }
  251. },
  252. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  253. "type": "package",
  254. "dependencies": {
  255. "Microsoft.EntityFrameworkCore": "3.1.10"
  256. },
  257. "compile": {
  258. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  259. },
  260. "runtime": {
  261. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  262. }
  263. },
  264. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  265. "type": "package",
  266. "dependencies": {
  267. "Microsoft.Extensions.Primitives": "3.1.10"
  268. },
  269. "compile": {
  270. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  271. },
  272. "runtime": {
  273. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  274. }
  275. },
  276. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  277. "type": "package",
  278. "dependencies": {
  279. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  280. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  281. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  282. "Microsoft.Extensions.Options": "3.1.10"
  283. },
  284. "compile": {
  285. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  286. },
  287. "runtime": {
  288. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  289. }
  290. },
  291. "Microsoft.Extensions.Configuration/3.1.10": {
  292. "type": "package",
  293. "dependencies": {
  294. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10"
  295. },
  296. "compile": {
  297. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  298. },
  299. "runtime": {
  300. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  301. }
  302. },
  303. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  304. "type": "package",
  305. "dependencies": {
  306. "Microsoft.Extensions.Primitives": "3.1.10"
  307. },
  308. "compile": {
  309. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  310. },
  311. "runtime": {
  312. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  313. }
  314. },
  315. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  316. "type": "package",
  317. "dependencies": {
  318. "Microsoft.Extensions.Configuration": "3.1.10"
  319. },
  320. "compile": {
  321. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  322. },
  323. "runtime": {
  324. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  325. }
  326. },
  327. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  328. "type": "package",
  329. "dependencies": {
  330. "Microsoft.Extensions.Configuration": "3.1.2",
  331. "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
  332. },
  333. "compile": {
  334. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  335. },
  336. "runtime": {
  337. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  338. }
  339. },
  340. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  341. "type": "package",
  342. "dependencies": {
  343. "Microsoft.Extensions.Configuration": "3.1.2",
  344. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2"
  345. },
  346. "compile": {
  347. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  348. },
  349. "runtime": {
  350. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  351. }
  352. },
  353. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  354. "type": "package",
  355. "dependencies": {
  356. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10"
  357. },
  358. "compile": {
  359. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  360. },
  361. "runtime": {
  362. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  363. }
  364. },
  365. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  366. "type": "package",
  367. "compile": {
  368. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  369. },
  370. "runtime": {
  371. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  372. }
  373. },
  374. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  375. "type": "package",
  376. "dependencies": {
  377. "Microsoft.Extensions.Primitives": "3.1.2"
  378. },
  379. "compile": {
  380. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  381. },
  382. "runtime": {
  383. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  384. }
  385. },
  386. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  387. "type": "package",
  388. "dependencies": {
  389. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  390. "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
  391. },
  392. "compile": {
  393. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  394. },
  395. "runtime": {
  396. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  397. }
  398. },
  399. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  400. "type": "package",
  401. "compile": {
  402. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  403. },
  404. "runtime": {
  405. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  406. }
  407. },
  408. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  409. "type": "package",
  410. "dependencies": {
  411. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  412. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  413. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  414. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  415. },
  416. "compile": {
  417. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  418. },
  419. "runtime": {
  420. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  421. }
  422. },
  423. "Microsoft.Extensions.Identity.Core/3.1.10": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.10",
  427. "Microsoft.Extensions.Logging": "3.1.10",
  428. "Microsoft.Extensions.Options": "3.1.10"
  429. },
  430. "compile": {
  431. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  432. },
  433. "runtime": {
  434. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  435. }
  436. },
  437. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  438. "type": "package",
  439. "dependencies": {
  440. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  441. "Microsoft.Extensions.Identity.Core": "3.1.10",
  442. "Microsoft.Extensions.Logging": "3.1.10"
  443. },
  444. "compile": {
  445. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  446. },
  447. "runtime": {
  448. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  449. }
  450. },
  451. "Microsoft.Extensions.Logging/3.1.10": {
  452. "type": "package",
  453. "dependencies": {
  454. "Microsoft.Extensions.Configuration.Binder": "3.1.10",
  455. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  456. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  457. "Microsoft.Extensions.Options": "3.1.10"
  458. },
  459. "compile": {
  460. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  461. },
  462. "runtime": {
  463. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  464. }
  465. },
  466. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  467. "type": "package",
  468. "compile": {
  469. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  473. }
  474. },
  475. "Microsoft.Extensions.Options/3.1.10": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  479. "Microsoft.Extensions.Primitives": "3.1.10"
  480. },
  481. "compile": {
  482. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  486. }
  487. },
  488. "Microsoft.Extensions.Primitives/3.1.10": {
  489. "type": "package",
  490. "compile": {
  491. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  492. },
  493. "runtime": {
  494. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  495. }
  496. },
  497. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  498. "type": "package",
  499. "dependencies": {
  500. "Microsoft.IdentityModel.Tokens": "5.6.0",
  501. "Newtonsoft.Json": "10.0.1"
  502. },
  503. "compile": {
  504. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  505. },
  506. "runtime": {
  507. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  508. }
  509. },
  510. "Microsoft.IdentityModel.Logging/5.6.0": {
  511. "type": "package",
  512. "compile": {
  513. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  517. }
  518. },
  519. "Microsoft.IdentityModel.Tokens/5.6.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.IdentityModel.Logging": "5.6.0",
  523. "Newtonsoft.Json": "10.0.1",
  524. "System.Security.Cryptography.Cng": "4.5.0"
  525. },
  526. "compile": {
  527. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  531. }
  532. },
  533. "Microsoft.NET.Test.Sdk/16.5.0": {
  534. "type": "package",
  535. "dependencies": {
  536. "Microsoft.CodeCoverage": "16.5.0",
  537. "Microsoft.TestPlatform.TestHost": "16.5.0"
  538. },
  539. "build": {
  540. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
  541. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
  542. },
  543. "buildMultiTargeting": {
  544. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  545. }
  546. },
  547. "Microsoft.NETCore.Jit/2.0.8": {
  548. "type": "package"
  549. },
  550. "Microsoft.NETCore.Platforms/5.0.0": {
  551. "type": "package",
  552. "compile": {
  553. "lib/netstandard1.0/_._": {}
  554. },
  555. "runtime": {
  556. "lib/netstandard1.0/_._": {}
  557. }
  558. },
  559. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  560. "type": "package",
  561. "dependencies": {
  562. "Microsoft.NETCore.Jit": "2.0.8"
  563. },
  564. "compile": {
  565. "ref/netstandard1.0/_._": {}
  566. }
  567. },
  568. "Microsoft.NETCore.Targets/1.1.0": {
  569. "type": "package",
  570. "compile": {
  571. "lib/netstandard1.0/_._": {}
  572. },
  573. "runtime": {
  574. "lib/netstandard1.0/_._": {}
  575. }
  576. },
  577. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  578. "type": "package",
  579. "dependencies": {
  580. "NuGet.Frameworks": "5.0.0"
  581. },
  582. "compile": {
  583. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  584. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  585. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  586. },
  587. "runtime": {
  588. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  589. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  590. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  591. },
  592. "resource": {
  593. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  594. "locale": "cs"
  595. },
  596. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  597. "locale": "cs"
  598. },
  599. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  600. "locale": "de"
  601. },
  602. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  603. "locale": "de"
  604. },
  605. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  606. "locale": "es"
  607. },
  608. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  609. "locale": "es"
  610. },
  611. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  612. "locale": "fr"
  613. },
  614. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  615. "locale": "fr"
  616. },
  617. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  618. "locale": "it"
  619. },
  620. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  621. "locale": "it"
  622. },
  623. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  624. "locale": "ja"
  625. },
  626. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  627. "locale": "ja"
  628. },
  629. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  630. "locale": "ko"
  631. },
  632. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  633. "locale": "ko"
  634. },
  635. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  636. "locale": "pl"
  637. },
  638. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  639. "locale": "pl"
  640. },
  641. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  642. "locale": "pt-BR"
  643. },
  644. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  645. "locale": "pt-BR"
  646. },
  647. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  648. "locale": "ru"
  649. },
  650. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  651. "locale": "ru"
  652. },
  653. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  654. "locale": "tr"
  655. },
  656. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  657. "locale": "tr"
  658. },
  659. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  660. "locale": "zh-Hans"
  661. },
  662. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  663. "locale": "zh-Hans"
  664. },
  665. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  666. "locale": "zh-Hant"
  667. },
  668. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  669. "locale": "zh-Hant"
  670. }
  671. }
  672. },
  673. "Microsoft.TestPlatform.TestHost/16.5.0": {
  674. "type": "package",
  675. "dependencies": {
  676. "Microsoft.TestPlatform.ObjectModel": "16.5.0",
  677. "Newtonsoft.Json": "9.0.1"
  678. },
  679. "compile": {
  680. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  681. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  682. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  683. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  684. "lib/netcoreapp2.1/testhost.dll": {}
  685. },
  686. "runtime": {
  687. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  688. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  689. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  690. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  691. "lib/netcoreapp2.1/testhost.dll": {}
  692. },
  693. "resource": {
  694. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  695. "locale": "cs"
  696. },
  697. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  698. "locale": "cs"
  699. },
  700. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  701. "locale": "cs"
  702. },
  703. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  704. "locale": "de"
  705. },
  706. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  707. "locale": "de"
  708. },
  709. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  710. "locale": "de"
  711. },
  712. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  713. "locale": "es"
  714. },
  715. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  716. "locale": "es"
  717. },
  718. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  719. "locale": "es"
  720. },
  721. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  722. "locale": "fr"
  723. },
  724. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  725. "locale": "fr"
  726. },
  727. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  728. "locale": "fr"
  729. },
  730. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  731. "locale": "it"
  732. },
  733. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  734. "locale": "it"
  735. },
  736. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  737. "locale": "it"
  738. },
  739. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  740. "locale": "ja"
  741. },
  742. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  743. "locale": "ja"
  744. },
  745. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  746. "locale": "ja"
  747. },
  748. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  749. "locale": "ko"
  750. },
  751. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  752. "locale": "ko"
  753. },
  754. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  755. "locale": "ko"
  756. },
  757. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  758. "locale": "pl"
  759. },
  760. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  761. "locale": "pl"
  762. },
  763. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  764. "locale": "pl"
  765. },
  766. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  767. "locale": "pt-BR"
  768. },
  769. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  770. "locale": "pt-BR"
  771. },
  772. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  773. "locale": "pt-BR"
  774. },
  775. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  776. "locale": "ru"
  777. },
  778. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  779. "locale": "ru"
  780. },
  781. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  782. "locale": "ru"
  783. },
  784. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  785. "locale": "tr"
  786. },
  787. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  788. "locale": "tr"
  789. },
  790. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  791. "locale": "tr"
  792. },
  793. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  794. "locale": "zh-Hans"
  795. },
  796. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  797. "locale": "zh-Hans"
  798. },
  799. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  800. "locale": "zh-Hans"
  801. },
  802. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  803. "locale": "zh-Hant"
  804. },
  805. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  806. "locale": "zh-Hant"
  807. },
  808. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  809. "locale": "zh-Hant"
  810. }
  811. },
  812. "build": {
  813. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
  814. }
  815. },
  816. "Microsoft.Win32.Primitives/4.3.0": {
  817. "type": "package",
  818. "dependencies": {
  819. "Microsoft.NETCore.Platforms": "1.1.0",
  820. "Microsoft.NETCore.Targets": "1.1.0",
  821. "System.Runtime": "4.3.0"
  822. },
  823. "compile": {
  824. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  825. }
  826. },
  827. "Microsoft.Win32.Registry/5.0.0": {
  828. "type": "package",
  829. "dependencies": {
  830. "System.Security.AccessControl": "5.0.0",
  831. "System.Security.Principal.Windows": "5.0.0"
  832. },
  833. "compile": {
  834. "ref/netstandard2.0/_._": {}
  835. },
  836. "runtime": {
  837. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  838. },
  839. "runtimeTargets": {
  840. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  841. "assetType": "runtime",
  842. "rid": "win"
  843. }
  844. }
  845. },
  846. "Microsoft.Win32.SystemEvents/4.7.0": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.NETCore.Platforms": "3.1.0"
  850. },
  851. "compile": {
  852. "ref/netstandard2.0/_._": {}
  853. },
  854. "runtime": {
  855. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  856. },
  857. "runtimeTargets": {
  858. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  859. "assetType": "runtime",
  860. "rid": "win"
  861. }
  862. }
  863. },
  864. "MSTest.TestAdapter/2.1.0": {
  865. "type": "package",
  866. "dependencies": {
  867. "NETStandard.Library": "1.6.1",
  868. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  869. },
  870. "build": {
  871. "build/netcoreapp1.0/MSTest.TestAdapter.props": {}
  872. }
  873. },
  874. "MSTest.TestFramework/2.1.0": {
  875. "type": "package",
  876. "compile": {
  877. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  878. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  879. },
  880. "runtime": {
  881. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  882. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  883. }
  884. },
  885. "MySql.Data/8.0.15": {
  886. "type": "package",
  887. "dependencies": {
  888. "Google.Protobuf": "3.5.1",
  889. "System.Configuration.ConfigurationManager": "4.4.1",
  890. "System.Security.Permissions": "4.4.1",
  891. "System.Text.Encoding.CodePages": "4.4.0"
  892. },
  893. "compile": {
  894. "lib/netcoreapp2.0/MySql.Data.dll": {}
  895. },
  896. "runtime": {
  897. "lib/netcoreapp2.0/MySql.Data.dll": {}
  898. }
  899. },
  900. "NETStandard.Library/1.6.1": {
  901. "type": "package",
  902. "dependencies": {
  903. "Microsoft.NETCore.Platforms": "1.1.0",
  904. "Microsoft.Win32.Primitives": "4.3.0",
  905. "System.AppContext": "4.3.0",
  906. "System.Collections": "4.3.0",
  907. "System.Collections.Concurrent": "4.3.0",
  908. "System.Console": "4.3.0",
  909. "System.Diagnostics.Debug": "4.3.0",
  910. "System.Diagnostics.Tools": "4.3.0",
  911. "System.Diagnostics.Tracing": "4.3.0",
  912. "System.Globalization": "4.3.0",
  913. "System.Globalization.Calendars": "4.3.0",
  914. "System.IO": "4.3.0",
  915. "System.IO.Compression": "4.3.0",
  916. "System.IO.Compression.ZipFile": "4.3.0",
  917. "System.IO.FileSystem": "4.3.0",
  918. "System.IO.FileSystem.Primitives": "4.3.0",
  919. "System.Linq": "4.3.0",
  920. "System.Linq.Expressions": "4.3.0",
  921. "System.Net.Http": "4.3.0",
  922. "System.Net.Primitives": "4.3.0",
  923. "System.Net.Sockets": "4.3.0",
  924. "System.ObjectModel": "4.3.0",
  925. "System.Reflection": "4.3.0",
  926. "System.Reflection.Extensions": "4.3.0",
  927. "System.Reflection.Primitives": "4.3.0",
  928. "System.Resources.ResourceManager": "4.3.0",
  929. "System.Runtime": "4.3.0",
  930. "System.Runtime.Extensions": "4.3.0",
  931. "System.Runtime.Handles": "4.3.0",
  932. "System.Runtime.InteropServices": "4.3.0",
  933. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  934. "System.Runtime.Numerics": "4.3.0",
  935. "System.Security.Cryptography.Algorithms": "4.3.0",
  936. "System.Security.Cryptography.Encoding": "4.3.0",
  937. "System.Security.Cryptography.Primitives": "4.3.0",
  938. "System.Security.Cryptography.X509Certificates": "4.3.0",
  939. "System.Text.Encoding": "4.3.0",
  940. "System.Text.Encoding.Extensions": "4.3.0",
  941. "System.Text.RegularExpressions": "4.3.0",
  942. "System.Threading": "4.3.0",
  943. "System.Threading.Tasks": "4.3.0",
  944. "System.Threading.Timer": "4.3.0",
  945. "System.Xml.ReaderWriter": "4.3.0",
  946. "System.Xml.XDocument": "4.3.0"
  947. }
  948. },
  949. "Newtonsoft.Json/10.0.3": {
  950. "type": "package",
  951. "dependencies": {
  952. "Microsoft.CSharp": "4.3.0",
  953. "NETStandard.Library": "1.6.1",
  954. "System.ComponentModel.TypeConverter": "4.3.0",
  955. "System.Runtime.Serialization.Formatters": "4.3.0",
  956. "System.Runtime.Serialization.Primitives": "4.3.0",
  957. "System.Xml.XmlDocument": "4.3.0"
  958. },
  959. "compile": {
  960. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  961. },
  962. "runtime": {
  963. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  964. }
  965. },
  966. "NLog/4.7.5": {
  967. "type": "package",
  968. "compile": {
  969. "lib/netstandard2.0/NLog.dll": {}
  970. },
  971. "runtime": {
  972. "lib/netstandard2.0/NLog.dll": {}
  973. }
  974. },
  975. "NLog.Extensions.Logging/1.6.4": {
  976. "type": "package",
  977. "dependencies": {
  978. "Microsoft.Extensions.Logging": "3.0.0",
  979. "NLog": "4.7.2"
  980. },
  981. "compile": {
  982. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  983. },
  984. "runtime": {
  985. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  986. }
  987. },
  988. "NLog.Web.AspNetCore/4.9.3": {
  989. "type": "package",
  990. "dependencies": {
  991. "NLog.Extensions.Logging": "1.6.4"
  992. },
  993. "compile": {
  994. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  995. },
  996. "runtime": {
  997. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  998. },
  999. "frameworkReferences": [
  1000. "Microsoft.AspNetCore.App"
  1001. ]
  1002. },
  1003. "Npgsql/3.2.7": {
  1004. "type": "package",
  1005. "dependencies": {
  1006. "System.Threading.Tasks.Extensions": "4.3.0"
  1007. },
  1008. "compile": {
  1009. "lib/netstandard2.0/Npgsql.dll": {}
  1010. },
  1011. "runtime": {
  1012. "lib/netstandard2.0/Npgsql.dll": {}
  1013. }
  1014. },
  1015. "NuGet.Frameworks/5.0.0": {
  1016. "type": "package",
  1017. "compile": {
  1018. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1019. },
  1020. "runtime": {
  1021. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1022. }
  1023. },
  1024. "Oracle.ManagedDataAccess.Core/2.18.3": {
  1025. "type": "package",
  1026. "compile": {
  1027. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1028. },
  1029. "runtime": {
  1030. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1031. }
  1032. },
  1033. "Portable.BouncyCastle/1.8.8": {
  1034. "type": "package",
  1035. "compile": {
  1036. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1037. },
  1038. "runtime": {
  1039. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1040. }
  1041. },
  1042. "Quartz/3.2.3": {
  1043. "type": "package",
  1044. "dependencies": {
  1045. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1046. "System.Configuration.ConfigurationManager": "4.7.0",
  1047. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1048. },
  1049. "compile": {
  1050. "lib/netstandard2.0/Quartz.dll": {}
  1051. },
  1052. "runtime": {
  1053. "lib/netstandard2.0/Quartz.dll": {}
  1054. }
  1055. },
  1056. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1057. "type": "package",
  1058. "runtimeTargets": {
  1059. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1060. "assetType": "native",
  1061. "rid": "debian.8-x64"
  1062. }
  1063. }
  1064. },
  1065. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1066. "type": "package",
  1067. "runtimeTargets": {
  1068. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1069. "assetType": "native",
  1070. "rid": "fedora.23-x64"
  1071. }
  1072. }
  1073. },
  1074. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1075. "type": "package",
  1076. "runtimeTargets": {
  1077. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1078. "assetType": "native",
  1079. "rid": "fedora.24-x64"
  1080. }
  1081. }
  1082. },
  1083. "runtime.native.System/4.3.0": {
  1084. "type": "package",
  1085. "dependencies": {
  1086. "Microsoft.NETCore.Platforms": "1.1.0",
  1087. "Microsoft.NETCore.Targets": "1.1.0"
  1088. },
  1089. "compile": {
  1090. "lib/netstandard1.0/_._": {}
  1091. },
  1092. "runtime": {
  1093. "lib/netstandard1.0/_._": {}
  1094. }
  1095. },
  1096. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1097. "type": "package",
  1098. "dependencies": {
  1099. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1100. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1101. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1102. }
  1103. },
  1104. "runtime.native.System.IO.Compression/4.3.0": {
  1105. "type": "package",
  1106. "dependencies": {
  1107. "Microsoft.NETCore.Platforms": "1.1.0",
  1108. "Microsoft.NETCore.Targets": "1.1.0"
  1109. },
  1110. "compile": {
  1111. "lib/netstandard1.0/_._": {}
  1112. },
  1113. "runtime": {
  1114. "lib/netstandard1.0/_._": {}
  1115. }
  1116. },
  1117. "runtime.native.System.Net.Http/4.3.0": {
  1118. "type": "package",
  1119. "dependencies": {
  1120. "Microsoft.NETCore.Platforms": "1.1.0",
  1121. "Microsoft.NETCore.Targets": "1.1.0"
  1122. },
  1123. "compile": {
  1124. "lib/netstandard1.0/_._": {}
  1125. },
  1126. "runtime": {
  1127. "lib/netstandard1.0/_._": {}
  1128. }
  1129. },
  1130. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1131. "type": "package",
  1132. "dependencies": {
  1133. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  1134. },
  1135. "compile": {
  1136. "lib/netstandard1.0/_._": {}
  1137. },
  1138. "runtime": {
  1139. "lib/netstandard1.0/_._": {}
  1140. }
  1141. },
  1142. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1143. "type": "package",
  1144. "dependencies": {
  1145. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1146. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1147. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1148. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1149. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1150. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1151. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1152. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1153. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1154. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1155. },
  1156. "compile": {
  1157. "lib/netstandard1.0/_._": {}
  1158. },
  1159. "runtime": {
  1160. "lib/netstandard1.0/_._": {}
  1161. }
  1162. },
  1163. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1164. "type": "package",
  1165. "runtimeTargets": {
  1166. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1167. "assetType": "native",
  1168. "rid": "opensuse.13.2-x64"
  1169. }
  1170. }
  1171. },
  1172. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1173. "type": "package",
  1174. "runtimeTargets": {
  1175. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1176. "assetType": "native",
  1177. "rid": "opensuse.42.1-x64"
  1178. }
  1179. }
  1180. },
  1181. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1182. "type": "package",
  1183. "runtimeTargets": {
  1184. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1185. "assetType": "native",
  1186. "rid": "osx.10.10-x64"
  1187. }
  1188. }
  1189. },
  1190. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1191. "type": "package",
  1192. "runtimeTargets": {
  1193. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1194. "assetType": "native",
  1195. "rid": "osx.10.10-x64"
  1196. }
  1197. }
  1198. },
  1199. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1200. "type": "package",
  1201. "runtimeTargets": {
  1202. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1203. "assetType": "native",
  1204. "rid": "rhel.7-x64"
  1205. }
  1206. }
  1207. },
  1208. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1209. "type": "package",
  1210. "runtimeTargets": {
  1211. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1212. "assetType": "native",
  1213. "rid": "ubuntu.14.04-x64"
  1214. }
  1215. }
  1216. },
  1217. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1218. "type": "package",
  1219. "runtimeTargets": {
  1220. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1221. "assetType": "native",
  1222. "rid": "ubuntu.16.04-x64"
  1223. }
  1224. }
  1225. },
  1226. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1227. "type": "package",
  1228. "runtimeTargets": {
  1229. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1230. "assetType": "native",
  1231. "rid": "ubuntu.16.10-x64"
  1232. }
  1233. }
  1234. },
  1235. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1236. "type": "package",
  1237. "runtimeTargets": {
  1238. "runtimes/win-arm64/native/sni.dll": {
  1239. "assetType": "native",
  1240. "rid": "win-arm64"
  1241. }
  1242. }
  1243. },
  1244. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1245. "type": "package",
  1246. "runtimeTargets": {
  1247. "runtimes/win-x64/native/sni.dll": {
  1248. "assetType": "native",
  1249. "rid": "win-x64"
  1250. }
  1251. }
  1252. },
  1253. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1254. "type": "package",
  1255. "runtimeTargets": {
  1256. "runtimes/win-x86/native/sni.dll": {
  1257. "assetType": "native",
  1258. "rid": "win-x86"
  1259. }
  1260. }
  1261. },
  1262. "SQLitePCLRaw.bundle_green/1.1.12": {
  1263. "type": "package",
  1264. "dependencies": {
  1265. "SQLitePCLRaw.core": "1.1.12",
  1266. "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.12",
  1267. "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.12",
  1268. "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.12",
  1269. "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.12"
  1270. },
  1271. "compile": {
  1272. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1273. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1274. },
  1275. "runtime": {
  1276. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1277. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1278. }
  1279. },
  1280. "SQLitePCLRaw.core/1.1.12": {
  1281. "type": "package",
  1282. "dependencies": {
  1283. "NETStandard.Library": "1.6.0"
  1284. },
  1285. "compile": {
  1286. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1287. },
  1288. "runtime": {
  1289. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1290. }
  1291. },
  1292. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  1293. "type": "package",
  1294. "compile": {
  1295. "lib/netstandard2.0/_._": {}
  1296. },
  1297. "runtime": {
  1298. "lib/netstandard2.0/_._": {}
  1299. },
  1300. "runtimeTargets": {
  1301. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1302. "assetType": "native",
  1303. "rid": "alpine-x64"
  1304. },
  1305. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1306. "assetType": "native",
  1307. "rid": "linux-arm"
  1308. },
  1309. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1310. "assetType": "native",
  1311. "rid": "linux-arm64"
  1312. },
  1313. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1314. "assetType": "native",
  1315. "rid": "linux-armel"
  1316. },
  1317. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1318. "assetType": "native",
  1319. "rid": "linux-musl-x64"
  1320. },
  1321. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1322. "assetType": "native",
  1323. "rid": "linux-x64"
  1324. },
  1325. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1326. "assetType": "native",
  1327. "rid": "linux-x86"
  1328. }
  1329. }
  1330. },
  1331. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  1332. "type": "package",
  1333. "compile": {
  1334. "lib/netstandard2.0/_._": {}
  1335. },
  1336. "runtime": {
  1337. "lib/netstandard2.0/_._": {}
  1338. },
  1339. "runtimeTargets": {
  1340. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1341. "assetType": "native",
  1342. "rid": "osx-x64"
  1343. }
  1344. }
  1345. },
  1346. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  1347. "type": "package",
  1348. "compile": {
  1349. "lib/netstandard2.0/_._": {}
  1350. },
  1351. "runtime": {
  1352. "lib/netstandard2.0/_._": {}
  1353. },
  1354. "runtimeTargets": {
  1355. "runtimes/win-x64/native/e_sqlite3.dll": {
  1356. "assetType": "native",
  1357. "rid": "win-x64"
  1358. },
  1359. "runtimes/win-x86/native/e_sqlite3.dll": {
  1360. "assetType": "native",
  1361. "rid": "win-x86"
  1362. },
  1363. "runtimes/win8-arm/native/e_sqlite3.dll": {
  1364. "assetType": "native",
  1365. "rid": "win8-arm"
  1366. }
  1367. }
  1368. },
  1369. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  1370. "type": "package",
  1371. "dependencies": {
  1372. "NETStandard.Library": "1.6.0",
  1373. "SQLitePCLRaw.core": "1.1.12"
  1374. },
  1375. "compile": {
  1376. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1377. },
  1378. "runtime": {
  1379. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1380. }
  1381. },
  1382. "sqlSugarCore/5.0.0.18": {
  1383. "type": "package",
  1384. "dependencies": {
  1385. "Microsoft.Data.Sqlite": "2.2.4",
  1386. "MySql.Data": "8.0.15",
  1387. "Newtonsoft.Json": "10.0.3",
  1388. "Npgsql": "3.2.7",
  1389. "Oracle.ManagedDataAccess.Core": "2.18.3",
  1390. "System.Data.Common": "4.3.0",
  1391. "System.Data.SqlClient": "4.4.0",
  1392. "System.Reflection.Emit.Lightweight": "4.3.0"
  1393. },
  1394. "compile": {
  1395. "lib/netstandard2.0/SqlSugar.dll": {}
  1396. },
  1397. "runtime": {
  1398. "lib/netstandard2.0/SqlSugar.dll": {}
  1399. }
  1400. },
  1401. "System.AppContext/4.3.0": {
  1402. "type": "package",
  1403. "dependencies": {
  1404. "System.Runtime": "4.3.0"
  1405. },
  1406. "compile": {
  1407. "ref/netstandard1.6/System.AppContext.dll": {}
  1408. },
  1409. "runtime": {
  1410. "lib/netstandard1.6/System.AppContext.dll": {}
  1411. }
  1412. },
  1413. "System.Buffers/4.3.0": {
  1414. "type": "package",
  1415. "dependencies": {
  1416. "System.Diagnostics.Debug": "4.3.0",
  1417. "System.Diagnostics.Tracing": "4.3.0",
  1418. "System.Resources.ResourceManager": "4.3.0",
  1419. "System.Runtime": "4.3.0",
  1420. "System.Threading": "4.3.0"
  1421. },
  1422. "compile": {
  1423. "lib/netstandard1.1/_._": {}
  1424. },
  1425. "runtime": {
  1426. "lib/netstandard1.1/System.Buffers.dll": {}
  1427. }
  1428. },
  1429. "System.CodeDom/5.0.0": {
  1430. "type": "package",
  1431. "compile": {
  1432. "ref/netstandard2.0/System.CodeDom.dll": {}
  1433. },
  1434. "runtime": {
  1435. "lib/netstandard2.0/System.CodeDom.dll": {}
  1436. }
  1437. },
  1438. "System.Collections/4.3.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "Microsoft.NETCore.Platforms": "1.1.0",
  1442. "Microsoft.NETCore.Targets": "1.1.0",
  1443. "System.Runtime": "4.3.0"
  1444. },
  1445. "compile": {
  1446. "ref/netstandard1.3/System.Collections.dll": {}
  1447. }
  1448. },
  1449. "System.Collections.Concurrent/4.3.0": {
  1450. "type": "package",
  1451. "dependencies": {
  1452. "System.Collections": "4.3.0",
  1453. "System.Diagnostics.Debug": "4.3.0",
  1454. "System.Diagnostics.Tracing": "4.3.0",
  1455. "System.Globalization": "4.3.0",
  1456. "System.Reflection": "4.3.0",
  1457. "System.Resources.ResourceManager": "4.3.0",
  1458. "System.Runtime": "4.3.0",
  1459. "System.Runtime.Extensions": "4.3.0",
  1460. "System.Threading": "4.3.0",
  1461. "System.Threading.Tasks": "4.3.0"
  1462. },
  1463. "compile": {
  1464. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1465. },
  1466. "runtime": {
  1467. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1468. }
  1469. },
  1470. "System.Collections.Immutable/1.7.1": {
  1471. "type": "package",
  1472. "compile": {
  1473. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1474. },
  1475. "runtime": {
  1476. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1477. }
  1478. },
  1479. "System.Collections.NonGeneric/4.3.0": {
  1480. "type": "package",
  1481. "dependencies": {
  1482. "System.Diagnostics.Debug": "4.3.0",
  1483. "System.Globalization": "4.3.0",
  1484. "System.Resources.ResourceManager": "4.3.0",
  1485. "System.Runtime": "4.3.0",
  1486. "System.Runtime.Extensions": "4.3.0",
  1487. "System.Threading": "4.3.0"
  1488. },
  1489. "compile": {
  1490. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1491. },
  1492. "runtime": {
  1493. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1494. }
  1495. },
  1496. "System.Collections.Specialized/4.3.0": {
  1497. "type": "package",
  1498. "dependencies": {
  1499. "System.Collections.NonGeneric": "4.3.0",
  1500. "System.Globalization": "4.3.0",
  1501. "System.Globalization.Extensions": "4.3.0",
  1502. "System.Resources.ResourceManager": "4.3.0",
  1503. "System.Runtime": "4.3.0",
  1504. "System.Runtime.Extensions": "4.3.0",
  1505. "System.Threading": "4.3.0"
  1506. },
  1507. "compile": {
  1508. "ref/netstandard1.3/_._": {}
  1509. },
  1510. "runtime": {
  1511. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1512. }
  1513. },
  1514. "System.ComponentModel/4.3.0": {
  1515. "type": "package",
  1516. "dependencies": {
  1517. "System.Runtime": "4.3.0"
  1518. },
  1519. "compile": {
  1520. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1521. },
  1522. "runtime": {
  1523. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1524. }
  1525. },
  1526. "System.ComponentModel.Annotations/4.7.0": {
  1527. "type": "package",
  1528. "compile": {
  1529. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1530. },
  1531. "runtime": {
  1532. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1533. }
  1534. },
  1535. "System.ComponentModel.Primitives/4.3.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "System.ComponentModel": "4.3.0",
  1539. "System.Resources.ResourceManager": "4.3.0",
  1540. "System.Runtime": "4.3.0"
  1541. },
  1542. "compile": {
  1543. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1544. },
  1545. "runtime": {
  1546. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1547. }
  1548. },
  1549. "System.ComponentModel.TypeConverter/4.3.0": {
  1550. "type": "package",
  1551. "dependencies": {
  1552. "System.Collections": "4.3.0",
  1553. "System.Collections.NonGeneric": "4.3.0",
  1554. "System.Collections.Specialized": "4.3.0",
  1555. "System.ComponentModel": "4.3.0",
  1556. "System.ComponentModel.Primitives": "4.3.0",
  1557. "System.Globalization": "4.3.0",
  1558. "System.Linq": "4.3.0",
  1559. "System.Reflection": "4.3.0",
  1560. "System.Reflection.Extensions": "4.3.0",
  1561. "System.Reflection.Primitives": "4.3.0",
  1562. "System.Reflection.TypeExtensions": "4.3.0",
  1563. "System.Resources.ResourceManager": "4.3.0",
  1564. "System.Runtime": "4.3.0",
  1565. "System.Runtime.Extensions": "4.3.0",
  1566. "System.Threading": "4.3.0"
  1567. },
  1568. "compile": {
  1569. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1570. },
  1571. "runtime": {
  1572. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1573. }
  1574. },
  1575. "System.Configuration.ConfigurationManager/4.7.0": {
  1576. "type": "package",
  1577. "dependencies": {
  1578. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1579. "System.Security.Permissions": "4.7.0"
  1580. },
  1581. "compile": {
  1582. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1583. },
  1584. "runtime": {
  1585. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1586. }
  1587. },
  1588. "System.Console/4.3.0": {
  1589. "type": "package",
  1590. "dependencies": {
  1591. "Microsoft.NETCore.Platforms": "1.1.0",
  1592. "Microsoft.NETCore.Targets": "1.1.0",
  1593. "System.IO": "4.3.0",
  1594. "System.Runtime": "4.3.0",
  1595. "System.Text.Encoding": "4.3.0"
  1596. },
  1597. "compile": {
  1598. "ref/netstandard1.3/System.Console.dll": {}
  1599. }
  1600. },
  1601. "System.Data.Common/4.3.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "System.Collections": "4.3.0",
  1605. "System.Globalization": "4.3.0",
  1606. "System.IO": "4.3.0",
  1607. "System.Resources.ResourceManager": "4.3.0",
  1608. "System.Runtime": "4.3.0",
  1609. "System.Runtime.Extensions": "4.3.0",
  1610. "System.Text.RegularExpressions": "4.3.0",
  1611. "System.Threading.Tasks": "4.3.0"
  1612. },
  1613. "compile": {
  1614. "ref/netstandard1.2/System.Data.Common.dll": {}
  1615. },
  1616. "runtime": {
  1617. "lib/netstandard1.2/System.Data.Common.dll": {}
  1618. }
  1619. },
  1620. "System.Data.SqlClient/4.4.0": {
  1621. "type": "package",
  1622. "dependencies": {
  1623. "Microsoft.Win32.Registry": "4.4.0",
  1624. "System.Security.Principal.Windows": "4.4.0",
  1625. "System.Text.Encoding.CodePages": "4.4.0",
  1626. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1627. },
  1628. "compile": {
  1629. "ref/netstandard2.0/System.Data.SqlClient.dll": {}
  1630. },
  1631. "runtime": {
  1632. "lib/netstandard2.0/System.Data.SqlClient.dll": {}
  1633. },
  1634. "runtimeTargets": {
  1635. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1636. "assetType": "runtime",
  1637. "rid": "unix"
  1638. },
  1639. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1640. "assetType": "runtime",
  1641. "rid": "win"
  1642. }
  1643. }
  1644. },
  1645. "System.Diagnostics.Debug/4.3.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "Microsoft.NETCore.Platforms": "1.1.0",
  1649. "Microsoft.NETCore.Targets": "1.1.0",
  1650. "System.Runtime": "4.3.0"
  1651. },
  1652. "compile": {
  1653. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1654. }
  1655. },
  1656. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1657. "type": "package",
  1658. "compile": {
  1659. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1660. },
  1661. "runtime": {
  1662. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1663. }
  1664. },
  1665. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1666. "type": "package",
  1667. "dependencies": {
  1668. "System.Diagnostics.TraceSource": "4.3.0",
  1669. "System.Globalization": "4.3.0",
  1670. "System.IO": "4.3.0",
  1671. "System.Resources.ResourceManager": "4.3.0",
  1672. "System.Runtime": "4.3.0",
  1673. "System.Threading": "4.3.0"
  1674. },
  1675. "compile": {
  1676. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1677. },
  1678. "runtime": {
  1679. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1680. }
  1681. },
  1682. "System.Diagnostics.Tools/4.3.0": {
  1683. "type": "package",
  1684. "dependencies": {
  1685. "Microsoft.NETCore.Platforms": "1.1.0",
  1686. "Microsoft.NETCore.Targets": "1.1.0",
  1687. "System.Runtime": "4.3.0"
  1688. },
  1689. "compile": {
  1690. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1691. }
  1692. },
  1693. "System.Diagnostics.TraceSource/4.3.0": {
  1694. "type": "package",
  1695. "dependencies": {
  1696. "Microsoft.NETCore.Platforms": "1.1.0",
  1697. "System.Collections": "4.3.0",
  1698. "System.Diagnostics.Debug": "4.3.0",
  1699. "System.Globalization": "4.3.0",
  1700. "System.Resources.ResourceManager": "4.3.0",
  1701. "System.Runtime": "4.3.0",
  1702. "System.Runtime.Extensions": "4.3.0",
  1703. "System.Threading": "4.3.0",
  1704. "runtime.native.System": "4.3.0"
  1705. },
  1706. "compile": {
  1707. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1708. },
  1709. "runtimeTargets": {
  1710. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1711. "assetType": "runtime",
  1712. "rid": "unix"
  1713. },
  1714. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1715. "assetType": "runtime",
  1716. "rid": "win"
  1717. }
  1718. }
  1719. },
  1720. "System.Diagnostics.Tracing/4.3.0": {
  1721. "type": "package",
  1722. "dependencies": {
  1723. "Microsoft.NETCore.Platforms": "1.1.0",
  1724. "Microsoft.NETCore.Targets": "1.1.0",
  1725. "System.Runtime": "4.3.0"
  1726. },
  1727. "compile": {
  1728. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1729. }
  1730. },
  1731. "System.Drawing.Common/4.7.0": {
  1732. "type": "package",
  1733. "dependencies": {
  1734. "Microsoft.NETCore.Platforms": "3.1.0",
  1735. "Microsoft.Win32.SystemEvents": "4.7.0"
  1736. },
  1737. "compile": {
  1738. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1739. },
  1740. "runtime": {
  1741. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1742. },
  1743. "runtimeTargets": {
  1744. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1745. "assetType": "runtime",
  1746. "rid": "unix"
  1747. },
  1748. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1749. "assetType": "runtime",
  1750. "rid": "win"
  1751. }
  1752. }
  1753. },
  1754. "System.Dynamic.Runtime/4.3.0": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "System.Collections": "4.3.0",
  1758. "System.Diagnostics.Debug": "4.3.0",
  1759. "System.Linq": "4.3.0",
  1760. "System.Linq.Expressions": "4.3.0",
  1761. "System.ObjectModel": "4.3.0",
  1762. "System.Reflection": "4.3.0",
  1763. "System.Reflection.Emit": "4.3.0",
  1764. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1765. "System.Reflection.Primitives": "4.3.0",
  1766. "System.Reflection.TypeExtensions": "4.3.0",
  1767. "System.Resources.ResourceManager": "4.3.0",
  1768. "System.Runtime": "4.3.0",
  1769. "System.Runtime.Extensions": "4.3.0",
  1770. "System.Threading": "4.3.0"
  1771. },
  1772. "compile": {
  1773. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1774. },
  1775. "runtime": {
  1776. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1777. }
  1778. },
  1779. "System.Globalization/4.3.0": {
  1780. "type": "package",
  1781. "dependencies": {
  1782. "Microsoft.NETCore.Platforms": "1.1.0",
  1783. "Microsoft.NETCore.Targets": "1.1.0",
  1784. "System.Runtime": "4.3.0"
  1785. },
  1786. "compile": {
  1787. "ref/netstandard1.3/System.Globalization.dll": {}
  1788. }
  1789. },
  1790. "System.Globalization.Calendars/4.3.0": {
  1791. "type": "package",
  1792. "dependencies": {
  1793. "Microsoft.NETCore.Platforms": "1.1.0",
  1794. "Microsoft.NETCore.Targets": "1.1.0",
  1795. "System.Globalization": "4.3.0",
  1796. "System.Runtime": "4.3.0"
  1797. },
  1798. "compile": {
  1799. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1800. }
  1801. },
  1802. "System.Globalization.Extensions/4.3.0": {
  1803. "type": "package",
  1804. "dependencies": {
  1805. "Microsoft.NETCore.Platforms": "1.1.0",
  1806. "System.Globalization": "4.3.0",
  1807. "System.Resources.ResourceManager": "4.3.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Runtime.Extensions": "4.3.0",
  1810. "System.Runtime.InteropServices": "4.3.0"
  1811. },
  1812. "compile": {
  1813. "ref/netstandard1.3/_._": {}
  1814. },
  1815. "runtimeTargets": {
  1816. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1817. "assetType": "runtime",
  1818. "rid": "unix"
  1819. },
  1820. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1821. "assetType": "runtime",
  1822. "rid": "win"
  1823. }
  1824. }
  1825. },
  1826. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1827. "type": "package",
  1828. "dependencies": {
  1829. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1830. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1831. "Newtonsoft.Json": "10.0.1"
  1832. },
  1833. "compile": {
  1834. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1835. },
  1836. "runtime": {
  1837. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1838. }
  1839. },
  1840. "System.IO/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. "System.Text.Encoding": "4.3.0",
  1847. "System.Threading.Tasks": "4.3.0"
  1848. },
  1849. "compile": {
  1850. "ref/netstandard1.5/System.IO.dll": {}
  1851. }
  1852. },
  1853. "System.IO.Compression/4.3.0": {
  1854. "type": "package",
  1855. "dependencies": {
  1856. "Microsoft.NETCore.Platforms": "1.1.0",
  1857. "System.Buffers": "4.3.0",
  1858. "System.Collections": "4.3.0",
  1859. "System.Diagnostics.Debug": "4.3.0",
  1860. "System.IO": "4.3.0",
  1861. "System.Resources.ResourceManager": "4.3.0",
  1862. "System.Runtime": "4.3.0",
  1863. "System.Runtime.Extensions": "4.3.0",
  1864. "System.Runtime.Handles": "4.3.0",
  1865. "System.Runtime.InteropServices": "4.3.0",
  1866. "System.Text.Encoding": "4.3.0",
  1867. "System.Threading": "4.3.0",
  1868. "System.Threading.Tasks": "4.3.0",
  1869. "runtime.native.System": "4.3.0",
  1870. "runtime.native.System.IO.Compression": "4.3.0"
  1871. },
  1872. "compile": {
  1873. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1874. },
  1875. "runtimeTargets": {
  1876. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1877. "assetType": "runtime",
  1878. "rid": "unix"
  1879. },
  1880. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1881. "assetType": "runtime",
  1882. "rid": "win"
  1883. }
  1884. }
  1885. },
  1886. "System.IO.Compression.ZipFile/4.3.0": {
  1887. "type": "package",
  1888. "dependencies": {
  1889. "System.Buffers": "4.3.0",
  1890. "System.IO": "4.3.0",
  1891. "System.IO.Compression": "4.3.0",
  1892. "System.IO.FileSystem": "4.3.0",
  1893. "System.IO.FileSystem.Primitives": "4.3.0",
  1894. "System.Resources.ResourceManager": "4.3.0",
  1895. "System.Runtime": "4.3.0",
  1896. "System.Runtime.Extensions": "4.3.0",
  1897. "System.Text.Encoding": "4.3.0"
  1898. },
  1899. "compile": {
  1900. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1901. },
  1902. "runtime": {
  1903. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1904. }
  1905. },
  1906. "System.IO.FileSystem/4.3.0": {
  1907. "type": "package",
  1908. "dependencies": {
  1909. "Microsoft.NETCore.Platforms": "1.1.0",
  1910. "Microsoft.NETCore.Targets": "1.1.0",
  1911. "System.IO": "4.3.0",
  1912. "System.IO.FileSystem.Primitives": "4.3.0",
  1913. "System.Runtime": "4.3.0",
  1914. "System.Runtime.Handles": "4.3.0",
  1915. "System.Text.Encoding": "4.3.0",
  1916. "System.Threading.Tasks": "4.3.0"
  1917. },
  1918. "compile": {
  1919. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1920. }
  1921. },
  1922. "System.IO.FileSystem.Primitives/4.3.0": {
  1923. "type": "package",
  1924. "dependencies": {
  1925. "System.Runtime": "4.3.0"
  1926. },
  1927. "compile": {
  1928. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1929. },
  1930. "runtime": {
  1931. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1932. }
  1933. },
  1934. "System.Linq/4.3.0": {
  1935. "type": "package",
  1936. "dependencies": {
  1937. "System.Collections": "4.3.0",
  1938. "System.Diagnostics.Debug": "4.3.0",
  1939. "System.Resources.ResourceManager": "4.3.0",
  1940. "System.Runtime": "4.3.0",
  1941. "System.Runtime.Extensions": "4.3.0"
  1942. },
  1943. "compile": {
  1944. "ref/netstandard1.6/System.Linq.dll": {}
  1945. },
  1946. "runtime": {
  1947. "lib/netstandard1.6/System.Linq.dll": {}
  1948. }
  1949. },
  1950. "System.Linq.Expressions/4.3.0": {
  1951. "type": "package",
  1952. "dependencies": {
  1953. "System.Collections": "4.3.0",
  1954. "System.Diagnostics.Debug": "4.3.0",
  1955. "System.Globalization": "4.3.0",
  1956. "System.IO": "4.3.0",
  1957. "System.Linq": "4.3.0",
  1958. "System.ObjectModel": "4.3.0",
  1959. "System.Reflection": "4.3.0",
  1960. "System.Reflection.Emit": "4.3.0",
  1961. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1962. "System.Reflection.Emit.Lightweight": "4.3.0",
  1963. "System.Reflection.Extensions": "4.3.0",
  1964. "System.Reflection.Primitives": "4.3.0",
  1965. "System.Reflection.TypeExtensions": "4.3.0",
  1966. "System.Resources.ResourceManager": "4.3.0",
  1967. "System.Runtime": "4.3.0",
  1968. "System.Runtime.Extensions": "4.3.0",
  1969. "System.Threading": "4.3.0"
  1970. },
  1971. "compile": {
  1972. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1973. },
  1974. "runtime": {
  1975. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1976. }
  1977. },
  1978. "System.Management/5.0.0": {
  1979. "type": "package",
  1980. "dependencies": {
  1981. "Microsoft.NETCore.Platforms": "5.0.0",
  1982. "Microsoft.Win32.Registry": "5.0.0",
  1983. "System.CodeDom": "5.0.0"
  1984. },
  1985. "compile": {
  1986. "ref/netstandard2.0/System.Management.dll": {}
  1987. },
  1988. "runtime": {
  1989. "lib/netstandard2.0/System.Management.dll": {}
  1990. },
  1991. "runtimeTargets": {
  1992. "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
  1993. "assetType": "runtime",
  1994. "rid": "win"
  1995. }
  1996. }
  1997. },
  1998. "System.Net.Http/4.3.0": {
  1999. "type": "package",
  2000. "dependencies": {
  2001. "Microsoft.NETCore.Platforms": "1.1.0",
  2002. "System.Collections": "4.3.0",
  2003. "System.Diagnostics.Debug": "4.3.0",
  2004. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2005. "System.Diagnostics.Tracing": "4.3.0",
  2006. "System.Globalization": "4.3.0",
  2007. "System.Globalization.Extensions": "4.3.0",
  2008. "System.IO": "4.3.0",
  2009. "System.IO.FileSystem": "4.3.0",
  2010. "System.Net.Primitives": "4.3.0",
  2011. "System.Resources.ResourceManager": "4.3.0",
  2012. "System.Runtime": "4.3.0",
  2013. "System.Runtime.Extensions": "4.3.0",
  2014. "System.Runtime.Handles": "4.3.0",
  2015. "System.Runtime.InteropServices": "4.3.0",
  2016. "System.Security.Cryptography.Algorithms": "4.3.0",
  2017. "System.Security.Cryptography.Encoding": "4.3.0",
  2018. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2019. "System.Security.Cryptography.Primitives": "4.3.0",
  2020. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2021. "System.Text.Encoding": "4.3.0",
  2022. "System.Threading": "4.3.0",
  2023. "System.Threading.Tasks": "4.3.0",
  2024. "runtime.native.System": "4.3.0",
  2025. "runtime.native.System.Net.Http": "4.3.0",
  2026. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2027. },
  2028. "compile": {
  2029. "ref/netstandard1.3/System.Net.Http.dll": {}
  2030. },
  2031. "runtimeTargets": {
  2032. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2033. "assetType": "runtime",
  2034. "rid": "unix"
  2035. },
  2036. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2037. "assetType": "runtime",
  2038. "rid": "win"
  2039. }
  2040. }
  2041. },
  2042. "System.Net.Http.WinHttpHandler/4.4.0": {
  2043. "type": "package",
  2044. "compile": {
  2045. "ref/netstandard2.0/_._": {}
  2046. },
  2047. "runtime": {
  2048. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  2049. },
  2050. "runtimeTargets": {
  2051. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  2052. "assetType": "runtime",
  2053. "rid": "win"
  2054. }
  2055. }
  2056. },
  2057. "System.Net.Primitives/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "Microsoft.NETCore.Platforms": "1.1.0",
  2061. "Microsoft.NETCore.Targets": "1.1.0",
  2062. "System.Runtime": "4.3.0",
  2063. "System.Runtime.Handles": "4.3.0"
  2064. },
  2065. "compile": {
  2066. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2067. }
  2068. },
  2069. "System.Net.Requests/4.3.0": {
  2070. "type": "package",
  2071. "dependencies": {
  2072. "Microsoft.NETCore.Platforms": "1.1.0",
  2073. "System.Collections": "4.3.0",
  2074. "System.Diagnostics.Debug": "4.3.0",
  2075. "System.Diagnostics.Tracing": "4.3.0",
  2076. "System.Globalization": "4.3.0",
  2077. "System.IO": "4.3.0",
  2078. "System.Net.Http": "4.3.0",
  2079. "System.Net.Primitives": "4.3.0",
  2080. "System.Net.WebHeaderCollection": "4.3.0",
  2081. "System.Resources.ResourceManager": "4.3.0",
  2082. "System.Runtime": "4.3.0",
  2083. "System.Threading": "4.3.0",
  2084. "System.Threading.Tasks": "4.3.0"
  2085. },
  2086. "compile": {
  2087. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2088. },
  2089. "runtimeTargets": {
  2090. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "unix"
  2093. },
  2094. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
  2095. "assetType": "runtime",
  2096. "rid": "win"
  2097. }
  2098. }
  2099. },
  2100. "System.Net.Sockets/4.3.0": {
  2101. "type": "package",
  2102. "dependencies": {
  2103. "Microsoft.NETCore.Platforms": "1.1.0",
  2104. "Microsoft.NETCore.Targets": "1.1.0",
  2105. "System.IO": "4.3.0",
  2106. "System.Net.Primitives": "4.3.0",
  2107. "System.Runtime": "4.3.0",
  2108. "System.Threading.Tasks": "4.3.0"
  2109. },
  2110. "compile": {
  2111. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2112. }
  2113. },
  2114. "System.Net.WebHeaderCollection/4.3.0": {
  2115. "type": "package",
  2116. "dependencies": {
  2117. "System.Collections": "4.3.0",
  2118. "System.Resources.ResourceManager": "4.3.0",
  2119. "System.Runtime": "4.3.0",
  2120. "System.Runtime.Extensions": "4.3.0"
  2121. },
  2122. "compile": {
  2123. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2124. },
  2125. "runtime": {
  2126. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2127. }
  2128. },
  2129. "System.ObjectModel/4.3.0": {
  2130. "type": "package",
  2131. "dependencies": {
  2132. "System.Collections": "4.3.0",
  2133. "System.Diagnostics.Debug": "4.3.0",
  2134. "System.Resources.ResourceManager": "4.3.0",
  2135. "System.Runtime": "4.3.0",
  2136. "System.Threading": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2140. },
  2141. "runtime": {
  2142. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2143. }
  2144. },
  2145. "System.Private.ServiceModel/4.4.4": {
  2146. "type": "package",
  2147. "dependencies": {
  2148. "Microsoft.NETCore.Platforms": "2.0.0",
  2149. "System.Net.Http.WinHttpHandler": "4.4.0",
  2150. "System.Reflection.DispatchProxy": "4.4.0",
  2151. "System.Security.Principal.Windows": "4.4.0"
  2152. },
  2153. "compile": {
  2154. "ref/netstandard/_._": {}
  2155. },
  2156. "runtimeTargets": {
  2157. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2158. "assetType": "runtime",
  2159. "rid": "unix"
  2160. },
  2161. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2162. "assetType": "runtime",
  2163. "rid": "win7"
  2164. }
  2165. }
  2166. },
  2167. "System.Reflection/4.3.0": {
  2168. "type": "package",
  2169. "dependencies": {
  2170. "Microsoft.NETCore.Platforms": "1.1.0",
  2171. "Microsoft.NETCore.Targets": "1.1.0",
  2172. "System.IO": "4.3.0",
  2173. "System.Reflection.Primitives": "4.3.0",
  2174. "System.Runtime": "4.3.0"
  2175. },
  2176. "compile": {
  2177. "ref/netstandard1.5/System.Reflection.dll": {}
  2178. }
  2179. },
  2180. "System.Reflection.DispatchProxy/4.4.0": {
  2181. "type": "package",
  2182. "compile": {
  2183. "ref/netcoreapp2.0/_._": {}
  2184. },
  2185. "runtime": {
  2186. "lib/netcoreapp2.0/_._": {}
  2187. }
  2188. },
  2189. "System.Reflection.Emit/4.3.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "System.IO": "4.3.0",
  2193. "System.Reflection": "4.3.0",
  2194. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2195. "System.Reflection.Primitives": "4.3.0",
  2196. "System.Runtime": "4.3.0"
  2197. },
  2198. "compile": {
  2199. "ref/netstandard1.1/_._": {}
  2200. },
  2201. "runtime": {
  2202. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2203. }
  2204. },
  2205. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2206. "type": "package",
  2207. "dependencies": {
  2208. "System.Reflection": "4.3.0",
  2209. "System.Reflection.Primitives": "4.3.0",
  2210. "System.Runtime": "4.3.0"
  2211. },
  2212. "compile": {
  2213. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2214. },
  2215. "runtime": {
  2216. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2217. }
  2218. },
  2219. "System.Reflection.Emit.Lightweight/4.3.0": {
  2220. "type": "package",
  2221. "dependencies": {
  2222. "System.Reflection": "4.3.0",
  2223. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2224. "System.Reflection.Primitives": "4.3.0",
  2225. "System.Runtime": "4.3.0"
  2226. },
  2227. "compile": {
  2228. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  2229. },
  2230. "runtime": {
  2231. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2232. }
  2233. },
  2234. "System.Reflection.Extensions/4.3.0": {
  2235. "type": "package",
  2236. "dependencies": {
  2237. "Microsoft.NETCore.Platforms": "1.1.0",
  2238. "Microsoft.NETCore.Targets": "1.1.0",
  2239. "System.Reflection": "4.3.0",
  2240. "System.Runtime": "4.3.0"
  2241. },
  2242. "compile": {
  2243. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2244. }
  2245. },
  2246. "System.Reflection.Primitives/4.3.0": {
  2247. "type": "package",
  2248. "dependencies": {
  2249. "Microsoft.NETCore.Platforms": "1.1.0",
  2250. "Microsoft.NETCore.Targets": "1.1.0",
  2251. "System.Runtime": "4.3.0"
  2252. },
  2253. "compile": {
  2254. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2255. }
  2256. },
  2257. "System.Reflection.TypeExtensions/4.7.0": {
  2258. "type": "package",
  2259. "compile": {
  2260. "ref/netcoreapp2.0/_._": {}
  2261. },
  2262. "runtime": {
  2263. "lib/netcoreapp2.0/_._": {}
  2264. }
  2265. },
  2266. "System.Resources.ResourceManager/4.3.0": {
  2267. "type": "package",
  2268. "dependencies": {
  2269. "Microsoft.NETCore.Platforms": "1.1.0",
  2270. "Microsoft.NETCore.Targets": "1.1.0",
  2271. "System.Globalization": "4.3.0",
  2272. "System.Reflection": "4.3.0",
  2273. "System.Runtime": "4.3.0"
  2274. },
  2275. "compile": {
  2276. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2277. }
  2278. },
  2279. "System.Runtime/4.3.0": {
  2280. "type": "package",
  2281. "dependencies": {
  2282. "Microsoft.NETCore.Platforms": "1.1.0",
  2283. "Microsoft.NETCore.Targets": "1.1.0"
  2284. },
  2285. "compile": {
  2286. "ref/netstandard1.5/System.Runtime.dll": {}
  2287. }
  2288. },
  2289. "System.Runtime.Extensions/4.3.0": {
  2290. "type": "package",
  2291. "dependencies": {
  2292. "Microsoft.NETCore.Platforms": "1.1.0",
  2293. "Microsoft.NETCore.Targets": "1.1.0",
  2294. "System.Runtime": "4.3.0"
  2295. },
  2296. "compile": {
  2297. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2298. }
  2299. },
  2300. "System.Runtime.Handles/4.3.0": {
  2301. "type": "package",
  2302. "dependencies": {
  2303. "Microsoft.NETCore.Platforms": "1.1.0",
  2304. "Microsoft.NETCore.Targets": "1.1.0",
  2305. "System.Runtime": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2309. }
  2310. },
  2311. "System.Runtime.InteropServices/4.3.0": {
  2312. "type": "package",
  2313. "dependencies": {
  2314. "Microsoft.NETCore.Platforms": "1.1.0",
  2315. "Microsoft.NETCore.Targets": "1.1.0",
  2316. "System.Reflection": "4.3.0",
  2317. "System.Reflection.Primitives": "4.3.0",
  2318. "System.Runtime": "4.3.0",
  2319. "System.Runtime.Handles": "4.3.0"
  2320. },
  2321. "compile": {
  2322. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2323. }
  2324. },
  2325. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2326. "type": "package",
  2327. "dependencies": {
  2328. "System.Reflection": "4.3.0",
  2329. "System.Reflection.Extensions": "4.3.0",
  2330. "System.Resources.ResourceManager": "4.3.0",
  2331. "System.Runtime": "4.3.0",
  2332. "System.Runtime.InteropServices": "4.3.0",
  2333. "System.Threading": "4.3.0",
  2334. "runtime.native.System": "4.3.0"
  2335. },
  2336. "compile": {
  2337. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2338. },
  2339. "runtime": {
  2340. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2341. },
  2342. "runtimeTargets": {
  2343. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2344. "assetType": "runtime",
  2345. "rid": "unix"
  2346. },
  2347. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2348. "assetType": "runtime",
  2349. "rid": "win"
  2350. }
  2351. }
  2352. },
  2353. "System.Runtime.Loader/4.3.0": {
  2354. "type": "package",
  2355. "dependencies": {
  2356. "System.IO": "4.3.0",
  2357. "System.Reflection": "4.3.0",
  2358. "System.Runtime": "4.3.0"
  2359. },
  2360. "compile": {
  2361. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  2362. },
  2363. "runtime": {
  2364. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2365. }
  2366. },
  2367. "System.Runtime.Numerics/4.3.0": {
  2368. "type": "package",
  2369. "dependencies": {
  2370. "System.Globalization": "4.3.0",
  2371. "System.Resources.ResourceManager": "4.3.0",
  2372. "System.Runtime": "4.3.0",
  2373. "System.Runtime.Extensions": "4.3.0"
  2374. },
  2375. "compile": {
  2376. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2377. },
  2378. "runtime": {
  2379. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2380. }
  2381. },
  2382. "System.Runtime.Serialization.Formatters/4.3.0": {
  2383. "type": "package",
  2384. "dependencies": {
  2385. "System.Collections": "4.3.0",
  2386. "System.Reflection": "4.3.0",
  2387. "System.Resources.ResourceManager": "4.3.0",
  2388. "System.Runtime": "4.3.0",
  2389. "System.Runtime.Serialization.Primitives": "4.3.0"
  2390. },
  2391. "compile": {
  2392. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  2393. },
  2394. "runtime": {
  2395. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2396. }
  2397. },
  2398. "System.Runtime.Serialization.Primitives/4.3.0": {
  2399. "type": "package",
  2400. "dependencies": {
  2401. "System.Resources.ResourceManager": "4.3.0",
  2402. "System.Runtime": "4.3.0"
  2403. },
  2404. "compile": {
  2405. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2406. },
  2407. "runtime": {
  2408. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2409. }
  2410. },
  2411. "System.Security.AccessControl/5.0.0": {
  2412. "type": "package",
  2413. "dependencies": {
  2414. "Microsoft.NETCore.Platforms": "5.0.0",
  2415. "System.Security.Principal.Windows": "5.0.0"
  2416. },
  2417. "compile": {
  2418. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2419. },
  2420. "runtime": {
  2421. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2422. },
  2423. "runtimeTargets": {
  2424. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2425. "assetType": "runtime",
  2426. "rid": "win"
  2427. }
  2428. }
  2429. },
  2430. "System.Security.Cryptography.Algorithms/4.3.1": {
  2431. "type": "package",
  2432. "dependencies": {
  2433. "Microsoft.NETCore.Platforms": "1.1.0",
  2434. "System.Collections": "4.3.0",
  2435. "System.IO": "4.3.0",
  2436. "System.Resources.ResourceManager": "4.3.0",
  2437. "System.Runtime": "4.3.0",
  2438. "System.Runtime.Extensions": "4.3.0",
  2439. "System.Runtime.Handles": "4.3.0",
  2440. "System.Runtime.InteropServices": "4.3.0",
  2441. "System.Runtime.Numerics": "4.3.0",
  2442. "System.Security.Cryptography.Encoding": "4.3.0",
  2443. "System.Security.Cryptography.Primitives": "4.3.0",
  2444. "System.Text.Encoding": "4.3.0",
  2445. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  2446. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2447. },
  2448. "compile": {
  2449. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2450. },
  2451. "runtimeTargets": {
  2452. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2453. "assetType": "runtime",
  2454. "rid": "osx"
  2455. },
  2456. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2457. "assetType": "runtime",
  2458. "rid": "unix"
  2459. },
  2460. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2461. "assetType": "runtime",
  2462. "rid": "win"
  2463. }
  2464. }
  2465. },
  2466. "System.Security.Cryptography.Cng/4.5.0": {
  2467. "type": "package",
  2468. "compile": {
  2469. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2470. },
  2471. "runtime": {
  2472. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2473. },
  2474. "runtimeTargets": {
  2475. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2476. "assetType": "runtime",
  2477. "rid": "win"
  2478. }
  2479. }
  2480. },
  2481. "System.Security.Cryptography.Csp/4.3.0": {
  2482. "type": "package",
  2483. "dependencies": {
  2484. "Microsoft.NETCore.Platforms": "1.1.0",
  2485. "System.IO": "4.3.0",
  2486. "System.Reflection": "4.3.0",
  2487. "System.Resources.ResourceManager": "4.3.0",
  2488. "System.Runtime": "4.3.0",
  2489. "System.Runtime.Extensions": "4.3.0",
  2490. "System.Runtime.Handles": "4.3.0",
  2491. "System.Runtime.InteropServices": "4.3.0",
  2492. "System.Security.Cryptography.Algorithms": "4.3.0",
  2493. "System.Security.Cryptography.Encoding": "4.3.0",
  2494. "System.Security.Cryptography.Primitives": "4.3.0",
  2495. "System.Text.Encoding": "4.3.0",
  2496. "System.Threading": "4.3.0"
  2497. },
  2498. "compile": {
  2499. "ref/netstandard1.3/_._": {}
  2500. },
  2501. "runtimeTargets": {
  2502. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2503. "assetType": "runtime",
  2504. "rid": "unix"
  2505. },
  2506. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2507. "assetType": "runtime",
  2508. "rid": "win"
  2509. }
  2510. }
  2511. },
  2512. "System.Security.Cryptography.Encoding/4.3.0": {
  2513. "type": "package",
  2514. "dependencies": {
  2515. "Microsoft.NETCore.Platforms": "1.1.0",
  2516. "System.Collections": "4.3.0",
  2517. "System.Collections.Concurrent": "4.3.0",
  2518. "System.Linq": "4.3.0",
  2519. "System.Resources.ResourceManager": "4.3.0",
  2520. "System.Runtime": "4.3.0",
  2521. "System.Runtime.Extensions": "4.3.0",
  2522. "System.Runtime.Handles": "4.3.0",
  2523. "System.Runtime.InteropServices": "4.3.0",
  2524. "System.Security.Cryptography.Primitives": "4.3.0",
  2525. "System.Text.Encoding": "4.3.0",
  2526. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2527. },
  2528. "compile": {
  2529. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2530. },
  2531. "runtimeTargets": {
  2532. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2533. "assetType": "runtime",
  2534. "rid": "unix"
  2535. },
  2536. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2537. "assetType": "runtime",
  2538. "rid": "win"
  2539. }
  2540. }
  2541. },
  2542. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2543. "type": "package",
  2544. "dependencies": {
  2545. "System.Collections": "4.3.0",
  2546. "System.IO": "4.3.0",
  2547. "System.Resources.ResourceManager": "4.3.0",
  2548. "System.Runtime": "4.3.0",
  2549. "System.Runtime.Extensions": "4.3.0",
  2550. "System.Runtime.Handles": "4.3.0",
  2551. "System.Runtime.InteropServices": "4.3.0",
  2552. "System.Runtime.Numerics": "4.3.0",
  2553. "System.Security.Cryptography.Algorithms": "4.3.0",
  2554. "System.Security.Cryptography.Encoding": "4.3.0",
  2555. "System.Security.Cryptography.Primitives": "4.3.0",
  2556. "System.Text.Encoding": "4.3.0",
  2557. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2558. },
  2559. "compile": {
  2560. "ref/netstandard1.6/_._": {}
  2561. },
  2562. "runtime": {
  2563. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2564. },
  2565. "runtimeTargets": {
  2566. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2567. "assetType": "runtime",
  2568. "rid": "unix"
  2569. }
  2570. }
  2571. },
  2572. "System.Security.Cryptography.Primitives/4.3.0": {
  2573. "type": "package",
  2574. "dependencies": {
  2575. "System.Diagnostics.Debug": "4.3.0",
  2576. "System.Globalization": "4.3.0",
  2577. "System.IO": "4.3.0",
  2578. "System.Resources.ResourceManager": "4.3.0",
  2579. "System.Runtime": "4.3.0",
  2580. "System.Threading": "4.3.0",
  2581. "System.Threading.Tasks": "4.3.0"
  2582. },
  2583. "compile": {
  2584. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2585. },
  2586. "runtime": {
  2587. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2588. }
  2589. },
  2590. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2591. "type": "package",
  2592. "compile": {
  2593. "ref/netstandard2.0/_._": {}
  2594. },
  2595. "runtime": {
  2596. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2597. },
  2598. "runtimeTargets": {
  2599. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2600. "assetType": "runtime",
  2601. "rid": "win"
  2602. }
  2603. }
  2604. },
  2605. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2606. "type": "package",
  2607. "dependencies": {
  2608. "Microsoft.NETCore.Platforms": "1.1.0",
  2609. "System.Collections": "4.3.0",
  2610. "System.Diagnostics.Debug": "4.3.0",
  2611. "System.Globalization": "4.3.0",
  2612. "System.Globalization.Calendars": "4.3.0",
  2613. "System.IO": "4.3.0",
  2614. "System.IO.FileSystem": "4.3.0",
  2615. "System.IO.FileSystem.Primitives": "4.3.0",
  2616. "System.Resources.ResourceManager": "4.3.0",
  2617. "System.Runtime": "4.3.0",
  2618. "System.Runtime.Extensions": "4.3.0",
  2619. "System.Runtime.Handles": "4.3.0",
  2620. "System.Runtime.InteropServices": "4.3.0",
  2621. "System.Runtime.Numerics": "4.3.0",
  2622. "System.Security.Cryptography.Algorithms": "4.3.0",
  2623. "System.Security.Cryptography.Cng": "4.3.0",
  2624. "System.Security.Cryptography.Csp": "4.3.0",
  2625. "System.Security.Cryptography.Encoding": "4.3.0",
  2626. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2627. "System.Security.Cryptography.Primitives": "4.3.0",
  2628. "System.Text.Encoding": "4.3.0",
  2629. "System.Threading": "4.3.0",
  2630. "runtime.native.System": "4.3.0",
  2631. "runtime.native.System.Net.Http": "4.3.0",
  2632. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2633. },
  2634. "compile": {
  2635. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2636. },
  2637. "runtimeTargets": {
  2638. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2639. "assetType": "runtime",
  2640. "rid": "unix"
  2641. },
  2642. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2643. "assetType": "runtime",
  2644. "rid": "win"
  2645. }
  2646. }
  2647. },
  2648. "System.Security.Permissions/4.7.0": {
  2649. "type": "package",
  2650. "dependencies": {
  2651. "System.Security.AccessControl": "4.7.0",
  2652. "System.Windows.Extensions": "4.7.0"
  2653. },
  2654. "compile": {
  2655. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2656. },
  2657. "runtime": {
  2658. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2659. }
  2660. },
  2661. "System.Security.Principal.Windows/5.0.0": {
  2662. "type": "package",
  2663. "compile": {
  2664. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2665. },
  2666. "runtime": {
  2667. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2668. },
  2669. "runtimeTargets": {
  2670. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2671. "assetType": "runtime",
  2672. "rid": "unix"
  2673. },
  2674. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2675. "assetType": "runtime",
  2676. "rid": "win"
  2677. }
  2678. }
  2679. },
  2680. "System.ServiceModel.Duplex/4.4.4": {
  2681. "type": "package",
  2682. "dependencies": {
  2683. "System.Private.ServiceModel": "4.4.4",
  2684. "System.ServiceModel.Primitives": "4.4.4"
  2685. },
  2686. "compile": {
  2687. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2688. },
  2689. "runtime": {
  2690. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2691. }
  2692. },
  2693. "System.ServiceModel.Http/4.4.4": {
  2694. "type": "package",
  2695. "dependencies": {
  2696. "System.Private.ServiceModel": "4.4.4",
  2697. "System.ServiceModel.Primitives": "4.4.4"
  2698. },
  2699. "compile": {
  2700. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  2701. },
  2702. "runtime": {
  2703. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  2704. }
  2705. },
  2706. "System.ServiceModel.NetTcp/4.4.4": {
  2707. "type": "package",
  2708. "dependencies": {
  2709. "System.Private.ServiceModel": "4.4.4",
  2710. "System.ServiceModel.Primitives": "4.4.4"
  2711. },
  2712. "compile": {
  2713. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2714. },
  2715. "runtime": {
  2716. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2717. }
  2718. },
  2719. "System.ServiceModel.Primitives/4.4.4": {
  2720. "type": "package",
  2721. "dependencies": {
  2722. "System.Private.ServiceModel": "4.4.4"
  2723. },
  2724. "compile": {
  2725. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2726. "ref/netstandard2.0/System.ServiceModel.dll": {}
  2727. },
  2728. "runtime": {
  2729. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2730. "lib/netstandard2.0/System.ServiceModel.dll": {}
  2731. }
  2732. },
  2733. "System.ServiceModel.Security/4.4.4": {
  2734. "type": "package",
  2735. "dependencies": {
  2736. "System.Private.ServiceModel": "4.4.4",
  2737. "System.ServiceModel.Primitives": "4.4.4"
  2738. },
  2739. "compile": {
  2740. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  2741. },
  2742. "runtime": {
  2743. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  2744. }
  2745. },
  2746. "System.Text.Encoding/4.3.0": {
  2747. "type": "package",
  2748. "dependencies": {
  2749. "Microsoft.NETCore.Platforms": "1.1.0",
  2750. "Microsoft.NETCore.Targets": "1.1.0",
  2751. "System.Runtime": "4.3.0"
  2752. },
  2753. "compile": {
  2754. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2755. }
  2756. },
  2757. "System.Text.Encoding.CodePages/4.7.1": {
  2758. "type": "package",
  2759. "dependencies": {
  2760. "Microsoft.NETCore.Platforms": "3.1.1"
  2761. },
  2762. "compile": {
  2763. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2764. },
  2765. "runtime": {
  2766. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2767. },
  2768. "runtimeTargets": {
  2769. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2770. "assetType": "runtime",
  2771. "rid": "win"
  2772. }
  2773. }
  2774. },
  2775. "System.Text.Encoding.Extensions/4.3.0": {
  2776. "type": "package",
  2777. "dependencies": {
  2778. "Microsoft.NETCore.Platforms": "1.1.0",
  2779. "Microsoft.NETCore.Targets": "1.1.0",
  2780. "System.Runtime": "4.3.0",
  2781. "System.Text.Encoding": "4.3.0"
  2782. },
  2783. "compile": {
  2784. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2785. }
  2786. },
  2787. "System.Text.Encodings.Web/4.5.0": {
  2788. "type": "package",
  2789. "compile": {
  2790. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2791. },
  2792. "runtime": {
  2793. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2794. }
  2795. },
  2796. "System.Text.RegularExpressions/4.3.0": {
  2797. "type": "package",
  2798. "dependencies": {
  2799. "System.Runtime": "4.3.0"
  2800. },
  2801. "compile": {
  2802. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2803. },
  2804. "runtime": {
  2805. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2806. }
  2807. },
  2808. "System.Threading/4.3.0": {
  2809. "type": "package",
  2810. "dependencies": {
  2811. "System.Runtime": "4.3.0",
  2812. "System.Threading.Tasks": "4.3.0"
  2813. },
  2814. "compile": {
  2815. "ref/netstandard1.3/System.Threading.dll": {}
  2816. },
  2817. "runtime": {
  2818. "lib/netstandard1.3/System.Threading.dll": {}
  2819. }
  2820. },
  2821. "System.Threading.Tasks/4.3.0": {
  2822. "type": "package",
  2823. "dependencies": {
  2824. "Microsoft.NETCore.Platforms": "1.1.0",
  2825. "Microsoft.NETCore.Targets": "1.1.0",
  2826. "System.Runtime": "4.3.0"
  2827. },
  2828. "compile": {
  2829. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2830. }
  2831. },
  2832. "System.Threading.Tasks.Extensions/4.3.0": {
  2833. "type": "package",
  2834. "dependencies": {
  2835. "System.Collections": "4.3.0",
  2836. "System.Runtime": "4.3.0",
  2837. "System.Threading.Tasks": "4.3.0"
  2838. },
  2839. "compile": {
  2840. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2841. },
  2842. "runtime": {
  2843. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2844. }
  2845. },
  2846. "System.Threading.Timer/4.3.0": {
  2847. "type": "package",
  2848. "dependencies": {
  2849. "Microsoft.NETCore.Platforms": "1.1.0",
  2850. "Microsoft.NETCore.Targets": "1.1.0",
  2851. "System.Runtime": "4.3.0"
  2852. },
  2853. "compile": {
  2854. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2855. }
  2856. },
  2857. "System.Windows.Extensions/4.7.0": {
  2858. "type": "package",
  2859. "dependencies": {
  2860. "System.Drawing.Common": "4.7.0"
  2861. },
  2862. "compile": {
  2863. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2864. },
  2865. "runtime": {
  2866. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2867. },
  2868. "runtimeTargets": {
  2869. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2870. "assetType": "runtime",
  2871. "rid": "win"
  2872. }
  2873. }
  2874. },
  2875. "System.Xml.ReaderWriter/4.3.1": {
  2876. "type": "package",
  2877. "dependencies": {
  2878. "System.Collections": "4.3.0",
  2879. "System.Diagnostics.Debug": "4.3.0",
  2880. "System.Globalization": "4.3.0",
  2881. "System.IO": "4.3.0",
  2882. "System.IO.FileSystem": "4.3.0",
  2883. "System.IO.FileSystem.Primitives": "4.3.0",
  2884. "System.Resources.ResourceManager": "4.3.0",
  2885. "System.Runtime": "4.3.0",
  2886. "System.Runtime.Extensions": "4.3.0",
  2887. "System.Runtime.InteropServices": "4.3.0",
  2888. "System.Text.Encoding": "4.3.0",
  2889. "System.Text.Encoding.Extensions": "4.3.0",
  2890. "System.Text.RegularExpressions": "4.3.0",
  2891. "System.Threading.Tasks": "4.3.0",
  2892. "System.Threading.Tasks.Extensions": "4.3.0"
  2893. },
  2894. "compile": {
  2895. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2896. },
  2897. "runtime": {
  2898. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2899. }
  2900. },
  2901. "System.Xml.XDocument/4.3.0": {
  2902. "type": "package",
  2903. "dependencies": {
  2904. "System.Collections": "4.3.0",
  2905. "System.Diagnostics.Debug": "4.3.0",
  2906. "System.Diagnostics.Tools": "4.3.0",
  2907. "System.Globalization": "4.3.0",
  2908. "System.IO": "4.3.0",
  2909. "System.Reflection": "4.3.0",
  2910. "System.Resources.ResourceManager": "4.3.0",
  2911. "System.Runtime": "4.3.0",
  2912. "System.Runtime.Extensions": "4.3.0",
  2913. "System.Text.Encoding": "4.3.0",
  2914. "System.Threading": "4.3.0",
  2915. "System.Xml.ReaderWriter": "4.3.0"
  2916. },
  2917. "compile": {
  2918. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2919. },
  2920. "runtime": {
  2921. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2922. }
  2923. },
  2924. "System.Xml.XmlDocument/4.3.0": {
  2925. "type": "package",
  2926. "dependencies": {
  2927. "System.Collections": "4.3.0",
  2928. "System.Diagnostics.Debug": "4.3.0",
  2929. "System.Globalization": "4.3.0",
  2930. "System.IO": "4.3.0",
  2931. "System.Resources.ResourceManager": "4.3.0",
  2932. "System.Runtime": "4.3.0",
  2933. "System.Runtime.Extensions": "4.3.0",
  2934. "System.Text.Encoding": "4.3.0",
  2935. "System.Threading": "4.3.0",
  2936. "System.Xml.ReaderWriter": "4.3.0"
  2937. },
  2938. "compile": {
  2939. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2940. },
  2941. "runtime": {
  2942. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2943. }
  2944. },
  2945. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  2946. "type": "project",
  2947. "framework": ".NETStandard,Version=v2.1",
  2948. "dependencies": {
  2949. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10",
  2950. "NLog": "4.7.5",
  2951. "System.ServiceModel.Duplex": "4.4.0",
  2952. "System.ServiceModel.Http": "4.4.0",
  2953. "System.ServiceModel.NetTcp": "4.4.0",
  2954. "System.ServiceModel.Security": "4.4.0",
  2955. "WebAPIBase.NetCore.Enties": "1.0.0",
  2956. "WebAPIBase.Utils": "1.0.0",
  2957. "iTextSharp.LGPLv2.Core": "1.7.0",
  2958. "sqlSugarCore": "5.0.0.18"
  2959. },
  2960. "compile": {
  2961. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2962. },
  2963. "runtime": {
  2964. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2965. }
  2966. },
  2967. "WebAPIBase.NetCore.Enties/1.0.0": {
  2968. "type": "project",
  2969. "framework": ".NETStandard,Version=v2.1",
  2970. "dependencies": {
  2971. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "3.1.10",
  2972. "Microsoft.Extensions.Identity.Stores": "3.1.10",
  2973. "WebAPIBase.Utils": "1.0.0",
  2974. "sqlSugarCore": "5.0.0.18"
  2975. },
  2976. "compile": {
  2977. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2978. },
  2979. "runtime": {
  2980. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2981. }
  2982. },
  2983. "WebAPIBase.Utils/1.0.0": {
  2984. "type": "project",
  2985. "framework": ".NETStandard,Version=v2.0",
  2986. "dependencies": {
  2987. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  2988. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  2989. "Microsoft.Extensions.Configuration": "3.1.10",
  2990. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  2991. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  2992. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  2993. "NLog": "4.7.5",
  2994. "NLog.Web.AspNetCore": "4.9.3",
  2995. "Quartz": "3.2.3",
  2996. "System.Drawing.Common": "4.7.0",
  2997. "System.IdentityModel.Tokens.Jwt": "5.6.0",
  2998. "System.Management": "5.0.0"
  2999. },
  3000. "compile": {
  3001. "bin/placeholder/WebAPIBase.Utils.dll": {}
  3002. },
  3003. "runtime": {
  3004. "bin/placeholder/WebAPIBase.Utils.dll": {}
  3005. }
  3006. }
  3007. }
  3008. },
  3009. "libraries": {
  3010. "coverlet.collector/1.2.0": {
  3011. "sha512": "ZB+EGXsVBIn8cew7D3S2c+rgIlokKv1dSwsXEoiFQaNXF/BSxp9Rlfz/jV1ehSWH5XpLitfRxFNW3ok7uPDOXA==",
  3012. "type": "package",
  3013. "path": "coverlet.collector/1.2.0",
  3014. "files": [
  3015. ".nupkg.metadata",
  3016. ".signature.p7s",
  3017. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  3018. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3019. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  3020. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  3021. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3022. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3023. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3024. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3025. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  3026. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  3027. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  3028. "build/netstandard1.0/Mono.Cecil.dll",
  3029. "build/netstandard1.0/Newtonsoft.Json.dll",
  3030. "build/netstandard1.0/System.Xml.XPath.XmlDocument.dll",
  3031. "build/netstandard1.0/coverlet.collector.deps.json",
  3032. "build/netstandard1.0/coverlet.collector.dll",
  3033. "build/netstandard1.0/coverlet.collector.pdb",
  3034. "build/netstandard1.0/coverlet.collector.targets",
  3035. "build/netstandard1.0/coverlet.core.dll",
  3036. "build/netstandard1.0/coverlet.core.pdb",
  3037. "coverlet.collector.1.2.0.nupkg.sha512",
  3038. "coverlet.collector.nuspec"
  3039. ]
  3040. },
  3041. "Google.Protobuf/3.5.1": {
  3042. "sha512": "f2k1VNaB9bfvEsvARzzEL1TZiIpL33KKK3JMH7UANlPlJVptuvsk4qpBZEnz0pORWZOdUHlVwMQuUzFqjJYCxA==",
  3043. "type": "package",
  3044. "path": "google.protobuf/3.5.1",
  3045. "files": [
  3046. ".nupkg.metadata",
  3047. ".signature.p7s",
  3048. "google.protobuf.3.5.1.nupkg.sha512",
  3049. "google.protobuf.nuspec",
  3050. "lib/net45/Google.Protobuf.dll",
  3051. "lib/net45/Google.Protobuf.xml",
  3052. "lib/netstandard1.0/Google.Protobuf.dll",
  3053. "lib/netstandard1.0/Google.Protobuf.xml"
  3054. ]
  3055. },
  3056. "iTextSharp.LGPLv2.Core/1.7.0": {
  3057. "sha512": "eN/ivAHNjPFCBle/IRmU0om47ywhX2/oumEUsRwv50FSsTCcty87BXjzn6fP2S2+yJGc6gaEQ9YFaYU7Loybkg==",
  3058. "type": "package",
  3059. "path": "itextsharp.lgplv2.core/1.7.0",
  3060. "files": [
  3061. ".nupkg.metadata",
  3062. ".signature.p7s",
  3063. "itextsharp.lgplv2.core.1.7.0.nupkg.sha512",
  3064. "itextsharp.lgplv2.core.nuspec",
  3065. "lib/net40/iTextSharp.LGPLv2.Core.dll",
  3066. "lib/net40/iTextSharp.LGPLv2.Core.xml",
  3067. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.dll",
  3068. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.xml",
  3069. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll",
  3070. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.xml"
  3071. ]
  3072. },
  3073. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  3074. "sha512": "s5jFewA59+K/MXnib5eC/WVCDyL4EvSVtBzvXmAlTcZ9iBqqw+4oyFWP5hHy2NZuynjvKDFsokR9zEDrdEwLYA==",
  3075. "type": "package",
  3076. "path": "microsoft.aspnetcore.cryptography.internal/3.1.10",
  3077. "files": [
  3078. ".nupkg.metadata",
  3079. ".signature.p7s",
  3080. "Icon.png",
  3081. "THIRD-PARTY-NOTICES.TXT",
  3082. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3083. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3084. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3085. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3086. "microsoft.aspnetcore.cryptography.internal.3.1.10.nupkg.sha512",
  3087. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3088. ]
  3089. },
  3090. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  3091. "sha512": "yXwwlRVybA/IlIl+djCnJAKIoQmG6AXN8K7/yx2csFkt+5SLD03/ziUhyfiH6yJ80LLlHsWxIYedug0s/UDh9g==",
  3092. "type": "package",
  3093. "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.10",
  3094. "files": [
  3095. ".nupkg.metadata",
  3096. ".signature.p7s",
  3097. "Icon.png",
  3098. "THIRD-PARTY-NOTICES.TXT",
  3099. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3100. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3101. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3102. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3103. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3104. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3105. "microsoft.aspnetcore.cryptography.keyderivation.3.1.10.nupkg.sha512",
  3106. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  3107. ]
  3108. },
  3109. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3110. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3111. "type": "package",
  3112. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3113. "files": [
  3114. ".nupkg.metadata",
  3115. ".signature.p7s",
  3116. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3117. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3118. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3119. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3120. ]
  3121. },
  3122. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3123. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3124. "type": "package",
  3125. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3126. "files": [
  3127. ".nupkg.metadata",
  3128. ".signature.p7s",
  3129. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3130. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3131. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3132. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3133. ]
  3134. },
  3135. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3136. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3137. "type": "package",
  3138. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3139. "files": [
  3140. ".nupkg.metadata",
  3141. ".signature.p7s",
  3142. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3143. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3144. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3145. "microsoft.aspnetcore.http.abstractions.nuspec"
  3146. ]
  3147. },
  3148. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3149. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3150. "type": "package",
  3151. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3156. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3157. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3158. "microsoft.aspnetcore.http.features.nuspec"
  3159. ]
  3160. },
  3161. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  3162. "sha512": "5zh2py185WLLC5qJRgtI44FKi95LwxxxoTTEf1S230MJZix0JygPzYzXRfnkBej0pR6c7oqwDNwGmS7JR7KNKw==",
  3163. "type": "package",
  3164. "path": "microsoft.aspnetcore.identity.entityframeworkcore/3.1.10",
  3165. "files": [
  3166. ".nupkg.metadata",
  3167. ".signature.p7s",
  3168. "Icon.png",
  3169. "THIRD-PARTY-NOTICES.TXT",
  3170. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3171. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3172. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3173. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3174. "microsoft.aspnetcore.identity.entityframeworkcore.3.1.10.nupkg.sha512",
  3175. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3176. ]
  3177. },
  3178. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  3179. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  3180. "type": "package",
  3181. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  3182. "files": [
  3183. ".nupkg.metadata",
  3184. ".signature.p7s",
  3185. "Icon.png",
  3186. "LICENSE.TXT",
  3187. "THIRD-PARTY-NOTICES.TXT",
  3188. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3189. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  3190. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3191. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3192. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3193. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3194. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  3195. "microsoft.bcl.asyncinterfaces.nuspec",
  3196. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3197. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3198. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3199. "useSharedDesignerContext.txt",
  3200. "version.txt"
  3201. ]
  3202. },
  3203. "Microsoft.Bcl.HashCode/1.1.0": {
  3204. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  3205. "type": "package",
  3206. "path": "microsoft.bcl.hashcode/1.1.0",
  3207. "files": [
  3208. ".nupkg.metadata",
  3209. ".signature.p7s",
  3210. "LICENSE.TXT",
  3211. "THIRD-PARTY-NOTICES.TXT",
  3212. "lib/net461/Microsoft.Bcl.HashCode.dll",
  3213. "lib/net461/Microsoft.Bcl.HashCode.xml",
  3214. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3215. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  3216. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3217. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  3218. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3219. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  3220. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  3221. "microsoft.bcl.hashcode.nuspec",
  3222. "ref/net461/Microsoft.Bcl.HashCode.dll",
  3223. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3224. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3225. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3226. "useSharedDesignerContext.txt",
  3227. "version.txt"
  3228. ]
  3229. },
  3230. "Microsoft.CodeCoverage/16.5.0": {
  3231. "sha512": "PM5YLtyN45EyUGePJpaNogndlaQPrMgQQXHKMhMESC6KfSVvt+j7+dxBi8NYC6X6dZVysf7ngwhSW3wwvPJRSQ==",
  3232. "type": "package",
  3233. "path": "microsoft.codecoverage/16.5.0",
  3234. "files": [
  3235. ".nupkg.metadata",
  3236. ".signature.p7s",
  3237. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  3238. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  3239. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  3240. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  3241. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  3242. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  3243. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  3244. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  3245. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  3246. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  3247. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3248. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3249. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3250. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3251. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3252. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3253. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3254. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3255. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3256. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3257. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3258. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3259. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3260. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3261. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3262. "microsoft.codecoverage.16.5.0.nupkg.sha512",
  3263. "microsoft.codecoverage.nuspec"
  3264. ]
  3265. },
  3266. "Microsoft.CSharp/4.3.0": {
  3267. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  3268. "type": "package",
  3269. "path": "microsoft.csharp/4.3.0",
  3270. "files": [
  3271. ".nupkg.metadata",
  3272. ".signature.p7s",
  3273. "ThirdPartyNotices.txt",
  3274. "dotnet_library_license.txt",
  3275. "lib/MonoAndroid10/_._",
  3276. "lib/MonoTouch10/_._",
  3277. "lib/net45/_._",
  3278. "lib/netcore50/Microsoft.CSharp.dll",
  3279. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3280. "lib/portable-net45+win8+wp8+wpa81/_._",
  3281. "lib/win8/_._",
  3282. "lib/wp80/_._",
  3283. "lib/wpa81/_._",
  3284. "lib/xamarinios10/_._",
  3285. "lib/xamarinmac20/_._",
  3286. "lib/xamarintvos10/_._",
  3287. "lib/xamarinwatchos10/_._",
  3288. "microsoft.csharp.4.3.0.nupkg.sha512",
  3289. "microsoft.csharp.nuspec",
  3290. "ref/MonoAndroid10/_._",
  3291. "ref/MonoTouch10/_._",
  3292. "ref/net45/_._",
  3293. "ref/netcore50/Microsoft.CSharp.dll",
  3294. "ref/netcore50/Microsoft.CSharp.xml",
  3295. "ref/netcore50/de/Microsoft.CSharp.xml",
  3296. "ref/netcore50/es/Microsoft.CSharp.xml",
  3297. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3298. "ref/netcore50/it/Microsoft.CSharp.xml",
  3299. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3300. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3301. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3302. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3303. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3304. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3305. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3306. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3307. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3308. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3309. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3310. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3311. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3312. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3313. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3314. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3315. "ref/portable-net45+win8+wp8+wpa81/_._",
  3316. "ref/win8/_._",
  3317. "ref/wp80/_._",
  3318. "ref/wpa81/_._",
  3319. "ref/xamarinios10/_._",
  3320. "ref/xamarinmac20/_._",
  3321. "ref/xamarintvos10/_._",
  3322. "ref/xamarinwatchos10/_._"
  3323. ]
  3324. },
  3325. "Microsoft.Data.Sqlite/2.2.4": {
  3326. "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  3327. "type": "package",
  3328. "path": "microsoft.data.sqlite/2.2.4",
  3329. "files": [
  3330. ".nupkg.metadata",
  3331. ".signature.p7s",
  3332. "lib/netstandard2.0/_._",
  3333. "microsoft.data.sqlite.2.2.4.nupkg.sha512",
  3334. "microsoft.data.sqlite.nuspec"
  3335. ]
  3336. },
  3337. "Microsoft.Data.Sqlite.Core/2.2.4": {
  3338. "sha512": "69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  3339. "type": "package",
  3340. "path": "microsoft.data.sqlite.core/2.2.4",
  3341. "files": [
  3342. ".nupkg.metadata",
  3343. ".signature.p7s",
  3344. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3345. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3346. "microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
  3347. "microsoft.data.sqlite.core.nuspec"
  3348. ]
  3349. },
  3350. "Microsoft.EntityFrameworkCore/3.1.10": {
  3351. "sha512": "0IhJl9mVJ4IhHobKvOo2iLB0xfxX2eYaSz4VZX+bMSm8IyZA1tOmyaOtg7oSzeUAe6eqpKVQLTgMFzk2AqCcaA==",
  3352. "type": "package",
  3353. "path": "microsoft.entityframeworkcore/3.1.10",
  3354. "files": [
  3355. ".nupkg.metadata",
  3356. ".signature.p7s",
  3357. "Icon.png",
  3358. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3359. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3360. "microsoft.entityframeworkcore.3.1.10.nupkg.sha512",
  3361. "microsoft.entityframeworkcore.nuspec"
  3362. ]
  3363. },
  3364. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  3365. "sha512": "B1kUQ7o6+4Ly2neo86RJCpTYzTPpW1xzpHyRaTmGQS/p7umZOGoBJay+i/YDLmZkUPI4XULGnu5KJKipA0awUw==",
  3366. "type": "package",
  3367. "path": "microsoft.entityframeworkcore.abstractions/3.1.10",
  3368. "files": [
  3369. ".nupkg.metadata",
  3370. ".signature.p7s",
  3371. "Icon.png",
  3372. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3373. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3374. "microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512",
  3375. "microsoft.entityframeworkcore.abstractions.nuspec"
  3376. ]
  3377. },
  3378. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  3379. "sha512": "reHrrF8i/Wao7l2PVXJ+JeZzEC4OkbcbfnQs8vtiT+SQ5P4MdQj3WzMkupjebaJWhIJZRc6qPT4BD9BUWQU4wQ==",
  3380. "type": "package",
  3381. "path": "microsoft.entityframeworkcore.analyzers/3.1.10",
  3382. "files": [
  3383. ".nupkg.metadata",
  3384. ".signature.p7s",
  3385. "Icon.png",
  3386. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3387. "lib/netstandard2.0/_._",
  3388. "microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512",
  3389. "microsoft.entityframeworkcore.analyzers.nuspec"
  3390. ]
  3391. },
  3392. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  3393. "sha512": "JpDMpGDx+wPvFSbw9vu13nfZESdu2SPFhLI1bPZwqDU0ZV40TmUOUN91hHjWhgh5qRX1jQTWMuvK3EmlpywgAw==",
  3394. "type": "package",
  3395. "path": "microsoft.entityframeworkcore.relational/3.1.10",
  3396. "files": [
  3397. ".nupkg.metadata",
  3398. ".signature.p7s",
  3399. "Icon.png",
  3400. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3401. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3402. "microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512",
  3403. "microsoft.entityframeworkcore.relational.nuspec"
  3404. ]
  3405. },
  3406. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  3407. "sha512": "xdl25cxDgwVxF9ckD9vJ5AdjzRE1vTGLYj9kZf6aL317ZneUijkxd/nSuzN1gEuO74dwG/Yfr1zfs636D6YZsA==",
  3408. "type": "package",
  3409. "path": "microsoft.extensions.caching.abstractions/3.1.10",
  3410. "files": [
  3411. ".nupkg.metadata",
  3412. ".signature.p7s",
  3413. "Icon.png",
  3414. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3415. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3416. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3417. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3418. "microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512",
  3419. "microsoft.extensions.caching.abstractions.nuspec"
  3420. ]
  3421. },
  3422. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  3423. "sha512": "pR6mRkJx67/itEnEpnBiiATeH/P6RnhqvriD6RdQsXepO+uisfUrd149CTGPc1G5J0Qf9bwSCJkb/MYkuQ6mqw==",
  3424. "type": "package",
  3425. "path": "microsoft.extensions.caching.memory/3.1.10",
  3426. "files": [
  3427. ".nupkg.metadata",
  3428. ".signature.p7s",
  3429. "Icon.png",
  3430. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3431. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3432. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3433. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3434. "microsoft.extensions.caching.memory.3.1.10.nupkg.sha512",
  3435. "microsoft.extensions.caching.memory.nuspec"
  3436. ]
  3437. },
  3438. "Microsoft.Extensions.Configuration/3.1.10": {
  3439. "sha512": "HHBhCP3wAJe7UIXjim0wFXty0WG/rZAP3aZyy03uuaxiOOPHJjbUdY6K9qkfQuP+hsRzfiT+np5k4rFmcSo3og==",
  3440. "type": "package",
  3441. "path": "microsoft.extensions.configuration/3.1.10",
  3442. "files": [
  3443. ".nupkg.metadata",
  3444. ".signature.p7s",
  3445. "Icon.png",
  3446. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3447. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3448. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3449. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3450. "microsoft.extensions.configuration.3.1.10.nupkg.sha512",
  3451. "microsoft.extensions.configuration.nuspec"
  3452. ]
  3453. },
  3454. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  3455. "sha512": "UEfngyXt8XYhmekUza9JsWlA37pNOtZAjcK5EEKQrHo2LDKJmZVmcyAUFlkzCcf97OSr+w/MiDLifDDNQk9agw==",
  3456. "type": "package",
  3457. "path": "microsoft.extensions.configuration.abstractions/3.1.10",
  3458. "files": [
  3459. ".nupkg.metadata",
  3460. ".signature.p7s",
  3461. "Icon.png",
  3462. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3463. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3464. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3465. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3466. "microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512",
  3467. "microsoft.extensions.configuration.abstractions.nuspec"
  3468. ]
  3469. },
  3470. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  3471. "sha512": "B9nQBk0GZVkOgSB1oB9V/7kvxhBvLCqm2x4m8MIoSxrd9yga8MVq2HWqnai8zZdH1WL6OlOG5mCVrwgAVwNNJg==",
  3472. "type": "package",
  3473. "path": "microsoft.extensions.configuration.binder/3.1.10",
  3474. "files": [
  3475. ".nupkg.metadata",
  3476. ".signature.p7s",
  3477. "Icon.png",
  3478. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3479. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3480. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3481. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3482. "microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512",
  3483. "microsoft.extensions.configuration.binder.nuspec"
  3484. ]
  3485. },
  3486. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  3487. "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  3488. "type": "package",
  3489. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  3490. "files": [
  3491. ".nupkg.metadata",
  3492. ".signature.p7s",
  3493. "Icon.png",
  3494. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3495. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3496. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3497. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3498. "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
  3499. "microsoft.extensions.configuration.fileextensions.nuspec"
  3500. ]
  3501. },
  3502. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  3503. "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  3504. "type": "package",
  3505. "path": "microsoft.extensions.configuration.json/3.1.2",
  3506. "files": [
  3507. ".nupkg.metadata",
  3508. ".signature.p7s",
  3509. "Icon.png",
  3510. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
  3511. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
  3512. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3513. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3514. "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
  3515. "microsoft.extensions.configuration.json.nuspec"
  3516. ]
  3517. },
  3518. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  3519. "sha512": "fla8hKhQmld2s/7arhUxlu3dzZLBFJLg4BQiQZdqKND4MlmnMU9jhoxY4MMlSYl6MtxumtwASHMJnuV9f96IQQ==",
  3520. "type": "package",
  3521. "path": "microsoft.extensions.dependencyinjection/3.1.10",
  3522. "files": [
  3523. ".nupkg.metadata",
  3524. ".signature.p7s",
  3525. "Icon.png",
  3526. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3527. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3528. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3529. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3530. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3531. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3532. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3533. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3534. "microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512",
  3535. "microsoft.extensions.dependencyinjection.nuspec"
  3536. ]
  3537. },
  3538. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  3539. "sha512": "bhjtAN7Ix5WOAr47RK16Lr1l2eizSBMCYQSavkooZyf6Xdf8XWAYGWsGsPqUFOeeRxzhpRho051rXaLn5wskVw==",
  3540. "type": "package",
  3541. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.10",
  3542. "files": [
  3543. ".nupkg.metadata",
  3544. ".signature.p7s",
  3545. "Icon.png",
  3546. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3547. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3548. "microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512",
  3549. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3550. ]
  3551. },
  3552. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  3553. "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  3554. "type": "package",
  3555. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  3556. "files": [
  3557. ".nupkg.metadata",
  3558. ".signature.p7s",
  3559. "Icon.png",
  3560. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3561. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3562. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3563. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3564. "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
  3565. "microsoft.extensions.fileproviders.abstractions.nuspec"
  3566. ]
  3567. },
  3568. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  3569. "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  3570. "type": "package",
  3571. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  3572. "files": [
  3573. ".nupkg.metadata",
  3574. ".signature.p7s",
  3575. "Icon.png",
  3576. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
  3577. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
  3578. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3579. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3580. "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
  3581. "microsoft.extensions.fileproviders.physical.nuspec"
  3582. ]
  3583. },
  3584. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  3585. "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  3586. "type": "package",
  3587. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  3588. "files": [
  3589. ".nupkg.metadata",
  3590. ".signature.p7s",
  3591. "Icon.png",
  3592. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3593. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3594. "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
  3595. "microsoft.extensions.filesystemglobbing.nuspec"
  3596. ]
  3597. },
  3598. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  3599. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  3600. "type": "package",
  3601. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  3602. "files": [
  3603. ".nupkg.metadata",
  3604. ".signature.p7s",
  3605. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3606. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3607. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  3608. "microsoft.extensions.hosting.abstractions.nuspec"
  3609. ]
  3610. },
  3611. "Microsoft.Extensions.Identity.Core/3.1.10": {
  3612. "sha512": "AuVQQAi7DtsrrHk6aO9BnMQCPGfI49AjeXOALTdbrJrPaLn35De9pAgobKftaUILwM4uzQdYEK012yqz2NH46w==",
  3613. "type": "package",
  3614. "path": "microsoft.extensions.identity.core/3.1.10",
  3615. "files": [
  3616. ".nupkg.metadata",
  3617. ".signature.p7s",
  3618. "Icon.png",
  3619. "THIRD-PARTY-NOTICES.TXT",
  3620. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll",
  3621. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.xml",
  3622. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  3623. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  3624. "microsoft.extensions.identity.core.3.1.10.nupkg.sha512",
  3625. "microsoft.extensions.identity.core.nuspec"
  3626. ]
  3627. },
  3628. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  3629. "sha512": "USjhGGw7PivOcVVqNGPd2lg1S1J2jvrRePlgxNcPt4gSbTtGuaRBdd78dvpHoR1GQnJ93YqoyGH3X3FsHeDL/w==",
  3630. "type": "package",
  3631. "path": "microsoft.extensions.identity.stores/3.1.10",
  3632. "files": [
  3633. ".nupkg.metadata",
  3634. ".signature.p7s",
  3635. "Icon.png",
  3636. "THIRD-PARTY-NOTICES.TXT",
  3637. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll",
  3638. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.xml",
  3639. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  3640. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  3641. "microsoft.extensions.identity.stores.3.1.10.nupkg.sha512",
  3642. "microsoft.extensions.identity.stores.nuspec"
  3643. ]
  3644. },
  3645. "Microsoft.Extensions.Logging/3.1.10": {
  3646. "sha512": "GjP+4cUFdsNk/Px6BlJ7p7x7ibpawcaAV4tfrRJTv2s6Nb7yz5OEKA0kbNl1ZXKa6uMQzbNqc5+B/tJsqzgIXg==",
  3647. "type": "package",
  3648. "path": "microsoft.extensions.logging/3.1.10",
  3649. "files": [
  3650. ".nupkg.metadata",
  3651. ".signature.p7s",
  3652. "Icon.png",
  3653. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  3654. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  3655. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3656. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3657. "microsoft.extensions.logging.3.1.10.nupkg.sha512",
  3658. "microsoft.extensions.logging.nuspec"
  3659. ]
  3660. },
  3661. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  3662. "sha512": "bKHbgzbGsPZbEaExRaJqBz3WQ1GfhMttM23e1nivLJ8HbA3Ad526mW2G2K350q3Dc3HG83I5W8uSZWG4Rv4IpA==",
  3663. "type": "package",
  3664. "path": "microsoft.extensions.logging.abstractions/3.1.10",
  3665. "files": [
  3666. ".nupkg.metadata",
  3667. ".signature.p7s",
  3668. "Icon.png",
  3669. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3670. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3671. "microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512",
  3672. "microsoft.extensions.logging.abstractions.nuspec"
  3673. ]
  3674. },
  3675. "Microsoft.Extensions.Options/3.1.10": {
  3676. "sha512": "CusdV4eIv+CGb9Fy6a+JcRqpcVJREmvFI8eHk3nQ76VLtEAIJpKQY5r5sRSs5w6NevNi2ukdnKleH0YCPudFZQ==",
  3677. "type": "package",
  3678. "path": "microsoft.extensions.options/3.1.10",
  3679. "files": [
  3680. ".nupkg.metadata",
  3681. ".signature.p7s",
  3682. "Icon.png",
  3683. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  3684. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  3685. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3686. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3687. "microsoft.extensions.options.3.1.10.nupkg.sha512",
  3688. "microsoft.extensions.options.nuspec"
  3689. ]
  3690. },
  3691. "Microsoft.Extensions.Primitives/3.1.10": {
  3692. "sha512": "YDuQS3BeaVY6PCWUm5f6qFTYsxhwntQrcfwUzbohU/0rZBL5XI+UsD5SgggHKHX+rFY4laaT428q608Sw/mDsw==",
  3693. "type": "package",
  3694. "path": "microsoft.extensions.primitives/3.1.10",
  3695. "files": [
  3696. ".nupkg.metadata",
  3697. ".signature.p7s",
  3698. "Icon.png",
  3699. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3700. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3701. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3702. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3703. "microsoft.extensions.primitives.3.1.10.nupkg.sha512",
  3704. "microsoft.extensions.primitives.nuspec"
  3705. ]
  3706. },
  3707. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  3708. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  3709. "type": "package",
  3710. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  3711. "files": [
  3712. ".nupkg.metadata",
  3713. ".signature.p7s",
  3714. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3715. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3716. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  3717. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  3718. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3719. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3720. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3721. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3722. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3723. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3724. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  3725. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3726. ]
  3727. },
  3728. "Microsoft.IdentityModel.Logging/5.6.0": {
  3729. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  3730. "type": "package",
  3731. "path": "microsoft.identitymodel.logging/5.6.0",
  3732. "files": [
  3733. ".nupkg.metadata",
  3734. ".signature.p7s",
  3735. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3736. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3737. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3738. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3739. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3740. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3741. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3742. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3743. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3744. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3745. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  3746. "microsoft.identitymodel.logging.nuspec"
  3747. ]
  3748. },
  3749. "Microsoft.IdentityModel.Tokens/5.6.0": {
  3750. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  3751. "type": "package",
  3752. "path": "microsoft.identitymodel.tokens/5.6.0",
  3753. "files": [
  3754. ".nupkg.metadata",
  3755. ".signature.p7s",
  3756. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3757. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3758. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3759. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3760. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3761. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3762. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3763. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3764. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3765. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3766. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  3767. "microsoft.identitymodel.tokens.nuspec"
  3768. ]
  3769. },
  3770. "Microsoft.NET.Test.Sdk/16.5.0": {
  3771. "sha512": "yHZOhVSPuGqgHi+KhHiAZqNY08avkQraXKvgKgDU8c/ztmGzw7gmukkv49EaTq6T3xmp4XroWk3gAlbJHMxl8w==",
  3772. "type": "package",
  3773. "path": "microsoft.net.test.sdk/16.5.0",
  3774. "files": [
  3775. ".nupkg.metadata",
  3776. ".signature.p7s",
  3777. "build/net40/Microsoft.NET.Test.Sdk.props",
  3778. "build/net40/Microsoft.NET.Test.Sdk.targets",
  3779. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  3780. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  3781. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  3782. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  3783. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  3784. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  3785. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  3786. "microsoft.net.test.sdk.16.5.0.nupkg.sha512",
  3787. "microsoft.net.test.sdk.nuspec"
  3788. ]
  3789. },
  3790. "Microsoft.NETCore.Jit/2.0.8": {
  3791. "sha512": "webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  3792. "type": "package",
  3793. "path": "microsoft.netcore.jit/2.0.8",
  3794. "files": [
  3795. ".nupkg.metadata",
  3796. ".signature.p7s",
  3797. "LICENSE.TXT",
  3798. "THIRD-PARTY-NOTICES.TXT",
  3799. "microsoft.netcore.jit.2.0.8.nupkg.sha512",
  3800. "microsoft.netcore.jit.nuspec",
  3801. "runtime.json",
  3802. "version.txt"
  3803. ]
  3804. },
  3805. "Microsoft.NETCore.Platforms/5.0.0": {
  3806. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3807. "type": "package",
  3808. "path": "microsoft.netcore.platforms/5.0.0",
  3809. "files": [
  3810. ".nupkg.metadata",
  3811. ".signature.p7s",
  3812. "Icon.png",
  3813. "LICENSE.TXT",
  3814. "THIRD-PARTY-NOTICES.TXT",
  3815. "lib/netstandard1.0/_._",
  3816. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  3817. "microsoft.netcore.platforms.nuspec",
  3818. "runtime.json",
  3819. "useSharedDesignerContext.txt",
  3820. "version.txt"
  3821. ]
  3822. },
  3823. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  3824. "sha512": "F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  3825. "type": "package",
  3826. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  3827. "files": [
  3828. ".nupkg.metadata",
  3829. ".signature.p7s",
  3830. "LICENSE.TXT",
  3831. "THIRD-PARTY-NOTICES.TXT",
  3832. "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512",
  3833. "microsoft.netcore.runtime.coreclr.nuspec",
  3834. "ref/netstandard1.0/_._",
  3835. "runtime.json",
  3836. "version.txt"
  3837. ]
  3838. },
  3839. "Microsoft.NETCore.Targets/1.1.0": {
  3840. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3841. "type": "package",
  3842. "path": "microsoft.netcore.targets/1.1.0",
  3843. "files": [
  3844. ".nupkg.metadata",
  3845. ".signature.p7s",
  3846. "ThirdPartyNotices.txt",
  3847. "dotnet_library_license.txt",
  3848. "lib/netstandard1.0/_._",
  3849. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3850. "microsoft.netcore.targets.nuspec",
  3851. "runtime.json"
  3852. ]
  3853. },
  3854. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  3855. "sha512": "NnLFxmFBCAS6kye2JFszD5WKgj4Zve5KX/R0mhYwh6BVnSeybI2unRnjEPtLyY3CAVhwrY4bh/8LNFtslAcGZg==",
  3856. "type": "package",
  3857. "path": "microsoft.testplatform.objectmodel/16.5.0",
  3858. "files": [
  3859. ".nupkg.metadata",
  3860. ".signature.p7s",
  3861. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  3862. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3863. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3864. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3865. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3866. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3867. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3868. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3869. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3870. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3871. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3872. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3873. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3874. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3875. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3876. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3877. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3878. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3879. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3880. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3881. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3882. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3883. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3884. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3885. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3886. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3887. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3888. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3889. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3890. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3891. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3892. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3893. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3894. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3895. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3896. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3897. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3898. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3899. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3900. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3901. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3902. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3903. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3904. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3905. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3906. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3907. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3908. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3909. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3910. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3911. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3912. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3913. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3914. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3915. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3916. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3917. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3918. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3919. "microsoft.testplatform.objectmodel.16.5.0.nupkg.sha512",
  3920. "microsoft.testplatform.objectmodel.nuspec"
  3921. ]
  3922. },
  3923. "Microsoft.TestPlatform.TestHost/16.5.0": {
  3924. "sha512": "ytGymboQIvjNX5pLC0yp/Bz9sGDHqSnLQgBRtd4VrqOUgKmmcfxMYZ6p0TBZgAT1oijdC6xqUZ7rl8mbaaXTJw==",
  3925. "type": "package",
  3926. "path": "microsoft.testplatform.testhost/16.5.0",
  3927. "files": [
  3928. ".nupkg.metadata",
  3929. ".signature.p7s",
  3930. "ThirdPartyNotices.txt",
  3931. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  3932. "build/netcoreapp2.1/x64/testhost.dll",
  3933. "build/netcoreapp2.1/x64/testhost.exe",
  3934. "build/netcoreapp2.1/x86/testhost.x86.dll",
  3935. "build/netcoreapp2.1/x86/testhost.x86.exe",
  3936. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  3937. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  3938. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3939. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3940. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3941. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  3942. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3943. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3944. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3945. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3946. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3947. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  3948. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3949. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3950. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3951. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3952. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3953. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  3954. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3955. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3956. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3957. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3958. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3959. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  3960. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3961. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3962. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3963. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3964. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3965. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  3966. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3967. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3968. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3969. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3970. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3971. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  3972. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3973. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3974. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3975. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3976. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3977. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  3978. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3979. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3980. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3981. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3982. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3983. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  3984. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3985. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3986. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3987. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3988. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3989. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  3990. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3991. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3992. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3993. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3994. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3995. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  3996. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3997. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3998. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3999. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4000. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4001. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  4002. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4003. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4004. "build/uap10.0/x64/msdia140.dll",
  4005. "build/uap10.0/x86/msdia140.dll",
  4006. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4007. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4008. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4009. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  4010. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4011. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4012. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4013. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4014. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4015. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  4016. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4017. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4018. "lib/net45/_._",
  4019. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  4020. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  4021. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  4022. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  4023. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4024. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4025. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4026. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4027. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4028. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4029. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4030. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4031. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4032. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4033. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4034. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4035. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4036. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4037. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4038. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4039. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4040. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4041. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4042. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4043. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4044. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4045. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4046. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4047. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4048. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4049. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4050. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4051. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4052. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4053. "lib/netcoreapp2.1/testhost.deps.json",
  4054. "lib/netcoreapp2.1/testhost.dll",
  4055. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4056. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4057. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4058. "lib/netcoreapp2.1/x64/msdia140.dll",
  4059. "lib/netcoreapp2.1/x86/msdia140.dll",
  4060. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4061. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4062. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4063. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4064. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4065. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4066. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  4067. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  4068. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  4069. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  4070. "lib/uap10.0/testhost.dll",
  4071. "microsoft.testplatform.testhost.16.5.0.nupkg.sha512",
  4072. "microsoft.testplatform.testhost.nuspec"
  4073. ]
  4074. },
  4075. "Microsoft.Win32.Primitives/4.3.0": {
  4076. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4077. "type": "package",
  4078. "path": "microsoft.win32.primitives/4.3.0",
  4079. "files": [
  4080. ".nupkg.metadata",
  4081. ".signature.p7s",
  4082. "ThirdPartyNotices.txt",
  4083. "dotnet_library_license.txt",
  4084. "lib/MonoAndroid10/_._",
  4085. "lib/MonoTouch10/_._",
  4086. "lib/net46/Microsoft.Win32.Primitives.dll",
  4087. "lib/xamarinios10/_._",
  4088. "lib/xamarinmac20/_._",
  4089. "lib/xamarintvos10/_._",
  4090. "lib/xamarinwatchos10/_._",
  4091. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4092. "microsoft.win32.primitives.nuspec",
  4093. "ref/MonoAndroid10/_._",
  4094. "ref/MonoTouch10/_._",
  4095. "ref/net46/Microsoft.Win32.Primitives.dll",
  4096. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4097. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4098. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4099. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4100. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4101. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4102. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4103. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4104. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4105. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4106. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4107. "ref/xamarinios10/_._",
  4108. "ref/xamarinmac20/_._",
  4109. "ref/xamarintvos10/_._",
  4110. "ref/xamarinwatchos10/_._"
  4111. ]
  4112. },
  4113. "Microsoft.Win32.Registry/5.0.0": {
  4114. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  4115. "type": "package",
  4116. "path": "microsoft.win32.registry/5.0.0",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "Icon.png",
  4121. "LICENSE.TXT",
  4122. "THIRD-PARTY-NOTICES.TXT",
  4123. "lib/net46/Microsoft.Win32.Registry.dll",
  4124. "lib/net461/Microsoft.Win32.Registry.dll",
  4125. "lib/net461/Microsoft.Win32.Registry.xml",
  4126. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4127. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4128. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4129. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  4130. "microsoft.win32.registry.nuspec",
  4131. "ref/net46/Microsoft.Win32.Registry.dll",
  4132. "ref/net461/Microsoft.Win32.Registry.dll",
  4133. "ref/net461/Microsoft.Win32.Registry.xml",
  4134. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4135. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4136. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4137. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4138. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4139. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4140. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4141. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4142. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4143. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4144. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4145. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4146. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4147. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4148. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4149. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  4150. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4151. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4152. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4153. "useSharedDesignerContext.txt",
  4154. "version.txt"
  4155. ]
  4156. },
  4157. "Microsoft.Win32.SystemEvents/4.7.0": {
  4158. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4159. "type": "package",
  4160. "path": "microsoft.win32.systemevents/4.7.0",
  4161. "files": [
  4162. ".nupkg.metadata",
  4163. ".signature.p7s",
  4164. "LICENSE.TXT",
  4165. "THIRD-PARTY-NOTICES.TXT",
  4166. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4167. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4168. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4169. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4170. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4171. "microsoft.win32.systemevents.nuspec",
  4172. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4173. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4174. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4175. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4176. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4177. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4178. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4179. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4180. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4181. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4182. "useSharedDesignerContext.txt",
  4183. "version.txt"
  4184. ]
  4185. },
  4186. "MSTest.TestAdapter/2.1.0": {
  4187. "sha512": "roxWjDyH5S+XlibaHM96VswxYq4vfbB53Ys9k3Qr2F1uNH+VpgIbygNQvtZUxSoAaI7aNSMMKA/HBfZPg5QDCA==",
  4188. "type": "package",
  4189. "path": "mstest.testadapter/2.1.0",
  4190. "files": [
  4191. ".nupkg.metadata",
  4192. ".signature.p7s",
  4193. "LICENSE.txt",
  4194. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  4195. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll",
  4196. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4197. "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4198. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4199. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4200. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4201. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4202. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4203. "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4204. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4205. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4206. "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4207. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4208. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4209. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4210. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4211. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4212. "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4213. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4214. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4215. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4216. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4217. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4218. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4219. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4220. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4221. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4222. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4223. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4224. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4225. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4226. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4227. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4228. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4229. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4230. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4231. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4232. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4233. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4234. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4235. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4236. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4237. "build/net45/MSTest.TestAdapter.props",
  4238. "build/net45/MSTest.TestAdapter.targets",
  4239. "build/netcoreapp1.0/MSTest.TestAdapter.props",
  4240. "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4241. "build/uap10.0/MSTest.TestAdapter.props",
  4242. "build/uap10.0/MSTest.TestAdapter.targets",
  4243. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4244. "mstest.testadapter.2.1.0.nupkg.sha512",
  4245. "mstest.testadapter.nuspec"
  4246. ]
  4247. },
  4248. "MSTest.TestFramework/2.1.0": {
  4249. "sha512": "FcW3sokxmi52e4gzBdv4bv59yQWJ0Lg2F579U82O4V9Pr7aNwTe7HxlHChzQqvcqgnH69XH8aDfMlfM3Y1wjAg==",
  4250. "type": "package",
  4251. "path": "mstest.testframework/2.1.0",
  4252. "files": [
  4253. ".nupkg.metadata",
  4254. ".signature.p7s",
  4255. "LICENSE.txt",
  4256. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4257. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4258. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4259. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4260. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4261. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4262. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4263. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4264. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4265. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4266. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4267. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4268. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4269. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4270. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4271. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4272. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4273. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4274. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4275. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4276. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4277. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4278. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4279. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4280. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4281. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4282. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4283. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4284. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4285. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4286. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4287. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4288. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4289. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4290. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4291. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4292. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4293. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4294. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4295. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4296. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4297. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4298. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4299. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4300. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4301. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4302. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4303. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4304. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4305. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4306. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4307. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4308. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4309. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4310. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4311. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4312. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4313. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4314. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4315. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4316. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4317. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4318. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4319. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4320. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4321. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4322. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4323. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4324. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4325. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4326. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4327. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4328. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4329. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4330. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4331. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4332. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4333. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4334. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4335. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4336. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4337. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4338. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4339. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4340. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4341. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4342. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4343. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4344. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4345. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4346. "mstest.testframework.2.1.0.nupkg.sha512",
  4347. "mstest.testframework.nuspec"
  4348. ]
  4349. },
  4350. "MySql.Data/8.0.15": {
  4351. "sha512": "PnjT2+TzlYUBF5cILcLMD1ux85P5iiRTF9PWx+Mel6/Z/rx+k39aWuA0mozfdgd+0TlJjGKKTyQZfKeYlRXTUA==",
  4352. "type": "package",
  4353. "path": "mysql.data/8.0.15",
  4354. "files": [
  4355. ".nupkg.metadata",
  4356. ".signature.p7s",
  4357. "lib/net452/MySql.Data.dll",
  4358. "lib/net452/MySql.Data.xml",
  4359. "lib/netcoreapp2.0/MySql.Data.dll",
  4360. "lib/netcoreapp2.0/MySql.Data.xml",
  4361. "lib/netstandard1.6/MySql.Data.dll",
  4362. "lib/netstandard1.6/MySql.Data.xml",
  4363. "lib/netstandard2.0/MySql.Data.dll",
  4364. "lib/netstandard2.0/MySql.Data.xml",
  4365. "mysql.data.8.0.15.nupkg.sha512",
  4366. "mysql.data.nuspec"
  4367. ]
  4368. },
  4369. "NETStandard.Library/1.6.1": {
  4370. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4371. "type": "package",
  4372. "path": "netstandard.library/1.6.1",
  4373. "files": [
  4374. ".nupkg.metadata",
  4375. ".signature.p7s",
  4376. "ThirdPartyNotices.txt",
  4377. "dotnet_library_license.txt",
  4378. "netstandard.library.1.6.1.nupkg.sha512",
  4379. "netstandard.library.nuspec"
  4380. ]
  4381. },
  4382. "Newtonsoft.Json/10.0.3": {
  4383. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  4384. "type": "package",
  4385. "path": "newtonsoft.json/10.0.3",
  4386. "hasTools": true,
  4387. "files": [
  4388. ".nupkg.metadata",
  4389. ".signature.p7s",
  4390. "LICENSE.md",
  4391. "lib/net20/Newtonsoft.Json.dll",
  4392. "lib/net20/Newtonsoft.Json.xml",
  4393. "lib/net35/Newtonsoft.Json.dll",
  4394. "lib/net35/Newtonsoft.Json.xml",
  4395. "lib/net40/Newtonsoft.Json.dll",
  4396. "lib/net40/Newtonsoft.Json.xml",
  4397. "lib/net45/Newtonsoft.Json.dll",
  4398. "lib/net45/Newtonsoft.Json.xml",
  4399. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4400. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4401. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4402. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4403. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4404. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4405. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4406. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4407. "newtonsoft.json.10.0.3.nupkg.sha512",
  4408. "newtonsoft.json.nuspec",
  4409. "tools/install.ps1"
  4410. ]
  4411. },
  4412. "NLog/4.7.5": {
  4413. "sha512": "1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  4414. "type": "package",
  4415. "path": "nlog/4.7.5",
  4416. "files": [
  4417. ".nupkg.metadata",
  4418. ".signature.p7s",
  4419. "lib/monoandroid44/NLog.dll",
  4420. "lib/monoandroid44/NLog.xml",
  4421. "lib/net35/NLog.dll",
  4422. "lib/net35/NLog.xml",
  4423. "lib/net40-client/NLog.dll",
  4424. "lib/net40-client/NLog.xml",
  4425. "lib/net45/NLog.dll",
  4426. "lib/net45/NLog.xml",
  4427. "lib/netstandard1.3/NLog.dll",
  4428. "lib/netstandard1.3/NLog.xml",
  4429. "lib/netstandard1.5/NLog.dll",
  4430. "lib/netstandard1.5/NLog.xml",
  4431. "lib/netstandard2.0/NLog.dll",
  4432. "lib/netstandard2.0/NLog.xml",
  4433. "lib/sl4/NLog.dll",
  4434. "lib/sl4/NLog.xml",
  4435. "lib/sl5/NLog.dll",
  4436. "lib/sl5/NLog.xml",
  4437. "lib/wp8/NLog.dll",
  4438. "lib/wp8/NLog.xml",
  4439. "lib/xamarinios10/NLog.dll",
  4440. "lib/xamarinios10/NLog.xml",
  4441. "nlog.4.7.5.nupkg.sha512",
  4442. "nlog.nuspec"
  4443. ]
  4444. },
  4445. "NLog.Extensions.Logging/1.6.4": {
  4446. "sha512": "ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  4447. "type": "package",
  4448. "path": "nlog.extensions.logging/1.6.4",
  4449. "files": [
  4450. ".nupkg.metadata",
  4451. ".signature.p7s",
  4452. "lib/net451/NLog.Extensions.Logging.dll",
  4453. "lib/net451/NLog.Extensions.Logging.xml",
  4454. "lib/net461/NLog.Extensions.Logging.dll",
  4455. "lib/net461/NLog.Extensions.Logging.xml",
  4456. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  4457. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  4458. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  4459. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  4460. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  4461. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  4462. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  4463. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  4464. "nlog.extensions.logging.1.6.4.nupkg.sha512",
  4465. "nlog.extensions.logging.nuspec"
  4466. ]
  4467. },
  4468. "NLog.Web.AspNetCore/4.9.3": {
  4469. "sha512": "v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  4470. "type": "package",
  4471. "path": "nlog.web.aspnetcore/4.9.3",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "lib/net451/NLog.Web.AspNetCore.dll",
  4476. "lib/net451/NLog.Web.AspNetCore.xml",
  4477. "lib/net461/NLog.Web.AspNetCore.dll",
  4478. "lib/net461/NLog.Web.AspNetCore.xml",
  4479. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  4480. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  4481. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  4482. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  4483. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  4484. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  4485. "nlog.web.aspnetcore.4.9.3.nupkg.sha512",
  4486. "nlog.web.aspnetcore.nuspec"
  4487. ]
  4488. },
  4489. "Npgsql/3.2.7": {
  4490. "sha512": "CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  4491. "type": "package",
  4492. "path": "npgsql/3.2.7",
  4493. "files": [
  4494. ".nupkg.metadata",
  4495. ".signature.p7s",
  4496. "lib/net45/Npgsql.dll",
  4497. "lib/net45/Npgsql.xml",
  4498. "lib/net451/Npgsql.dll",
  4499. "lib/net451/Npgsql.xml",
  4500. "lib/netstandard1.3/Npgsql.dll",
  4501. "lib/netstandard1.3/Npgsql.xml",
  4502. "lib/netstandard2.0/Npgsql.dll",
  4503. "lib/netstandard2.0/Npgsql.xml",
  4504. "npgsql.3.2.7.nupkg.sha512",
  4505. "npgsql.nuspec"
  4506. ]
  4507. },
  4508. "NuGet.Frameworks/5.0.0": {
  4509. "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==",
  4510. "type": "package",
  4511. "path": "nuget.frameworks/5.0.0",
  4512. "files": [
  4513. ".nupkg.metadata",
  4514. ".signature.p7s",
  4515. "lib/net40/NuGet.Frameworks.dll",
  4516. "lib/net40/NuGet.Frameworks.xml",
  4517. "lib/net472/NuGet.Frameworks.dll",
  4518. "lib/net472/NuGet.Frameworks.xml",
  4519. "lib/netstandard2.0/NuGet.Frameworks.dll",
  4520. "lib/netstandard2.0/NuGet.Frameworks.xml",
  4521. "nuget.frameworks.5.0.0.nupkg.sha512",
  4522. "nuget.frameworks.nuspec"
  4523. ]
  4524. },
  4525. "Oracle.ManagedDataAccess.Core/2.18.3": {
  4526. "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  4527. "type": "package",
  4528. "path": "oracle.manageddataaccess.core/2.18.3",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "info.txt",
  4533. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll",
  4534. "oracle.manageddataaccess.core.2.18.3.nupkg.sha512",
  4535. "oracle.manageddataaccess.core.nuspec",
  4536. "readme.txt"
  4537. ]
  4538. },
  4539. "Portable.BouncyCastle/1.8.8": {
  4540. "sha512": "1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
  4541. "type": "package",
  4542. "path": "portable.bouncycastle/1.8.8",
  4543. "files": [
  4544. ".nupkg.metadata",
  4545. ".signature.p7s",
  4546. "lib/net40/BouncyCastle.Crypto.dll",
  4547. "lib/net40/BouncyCastle.Crypto.xml",
  4548. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  4549. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  4550. "portable.bouncycastle.1.8.8.nupkg.sha512",
  4551. "portable.bouncycastle.nuspec"
  4552. ]
  4553. },
  4554. "Quartz/3.2.3": {
  4555. "sha512": "AWybQvHH/eI69NEiqe4x4jgCGYOCxHfsbrK7IdZJU35MC+85wneNtY4xd9CkUiLlYJvV7YsU0uBMzJV00HKtWg==",
  4556. "type": "package",
  4557. "path": "quartz/3.2.3",
  4558. "files": [
  4559. ".nupkg.metadata",
  4560. ".signature.p7s",
  4561. "lib/net461/Quartz.dll",
  4562. "lib/net461/Quartz.xml",
  4563. "lib/netstandard2.0/Quartz.dll",
  4564. "lib/netstandard2.0/Quartz.xml",
  4565. "quartz-logo-small.png",
  4566. "quartz.3.2.3.nupkg.sha512",
  4567. "quartz.nuspec"
  4568. ]
  4569. },
  4570. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4571. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  4572. "type": "package",
  4573. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4574. "files": [
  4575. ".nupkg.metadata",
  4576. ".signature.p7s",
  4577. "ThirdPartyNotices.txt",
  4578. "dotnet_library_license.txt",
  4579. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4580. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4581. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4582. ]
  4583. },
  4584. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4585. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  4586. "type": "package",
  4587. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4588. "files": [
  4589. ".nupkg.metadata",
  4590. ".signature.p7s",
  4591. "ThirdPartyNotices.txt",
  4592. "dotnet_library_license.txt",
  4593. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4594. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4595. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4596. ]
  4597. },
  4598. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4599. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  4600. "type": "package",
  4601. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4602. "files": [
  4603. ".nupkg.metadata",
  4604. ".signature.p7s",
  4605. "ThirdPartyNotices.txt",
  4606. "dotnet_library_license.txt",
  4607. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4608. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4609. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4610. ]
  4611. },
  4612. "runtime.native.System/4.3.0": {
  4613. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4614. "type": "package",
  4615. "path": "runtime.native.system/4.3.0",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "ThirdPartyNotices.txt",
  4620. "dotnet_library_license.txt",
  4621. "lib/netstandard1.0/_._",
  4622. "runtime.native.system.4.3.0.nupkg.sha512",
  4623. "runtime.native.system.nuspec"
  4624. ]
  4625. },
  4626. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4627. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4628. "type": "package",
  4629. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4630. "files": [
  4631. ".nupkg.metadata",
  4632. ".signature.p7s",
  4633. "LICENSE.TXT",
  4634. "THIRD-PARTY-NOTICES.TXT",
  4635. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4636. "runtime.native.system.data.sqlclient.sni.nuspec",
  4637. "useSharedDesignerContext.txt",
  4638. "version.txt"
  4639. ]
  4640. },
  4641. "runtime.native.System.IO.Compression/4.3.0": {
  4642. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4643. "type": "package",
  4644. "path": "runtime.native.system.io.compression/4.3.0",
  4645. "files": [
  4646. ".nupkg.metadata",
  4647. ".signature.p7s",
  4648. "ThirdPartyNotices.txt",
  4649. "dotnet_library_license.txt",
  4650. "lib/netstandard1.0/_._",
  4651. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4652. "runtime.native.system.io.compression.nuspec"
  4653. ]
  4654. },
  4655. "runtime.native.System.Net.Http/4.3.0": {
  4656. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4657. "type": "package",
  4658. "path": "runtime.native.system.net.http/4.3.0",
  4659. "files": [
  4660. ".nupkg.metadata",
  4661. ".signature.p7s",
  4662. "ThirdPartyNotices.txt",
  4663. "dotnet_library_license.txt",
  4664. "lib/netstandard1.0/_._",
  4665. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4666. "runtime.native.system.net.http.nuspec"
  4667. ]
  4668. },
  4669. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4670. "sha512": "UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  4671. "type": "package",
  4672. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  4673. "files": [
  4674. ".nupkg.metadata",
  4675. ".signature.p7s",
  4676. "ThirdPartyNotices.txt",
  4677. "dotnet_library_license.txt",
  4678. "lib/netstandard1.0/_._",
  4679. "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4680. "runtime.native.system.security.cryptography.apple.nuspec"
  4681. ]
  4682. },
  4683. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4684. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  4685. "type": "package",
  4686. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  4687. "files": [
  4688. ".nupkg.metadata",
  4689. ".signature.p7s",
  4690. "ThirdPartyNotices.txt",
  4691. "dotnet_library_license.txt",
  4692. "lib/netstandard1.0/_._",
  4693. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4694. "runtime.native.system.security.cryptography.openssl.nuspec"
  4695. ]
  4696. },
  4697. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4698. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4699. "type": "package",
  4700. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4701. "files": [
  4702. ".nupkg.metadata",
  4703. ".signature.p7s",
  4704. "ThirdPartyNotices.txt",
  4705. "dotnet_library_license.txt",
  4706. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4707. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4708. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4709. ]
  4710. },
  4711. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4712. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4713. "type": "package",
  4714. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4715. "files": [
  4716. ".nupkg.metadata",
  4717. ".signature.p7s",
  4718. "ThirdPartyNotices.txt",
  4719. "dotnet_library_license.txt",
  4720. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4721. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4722. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4723. ]
  4724. },
  4725. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4726. "sha512": "t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  4727. "type": "package",
  4728. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "ThirdPartyNotices.txt",
  4733. "dotnet_library_license.txt",
  4734. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4735. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4736. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4737. ]
  4738. },
  4739. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4740. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4741. "type": "package",
  4742. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4743. "files": [
  4744. ".nupkg.metadata",
  4745. ".signature.p7s",
  4746. "ThirdPartyNotices.txt",
  4747. "dotnet_library_license.txt",
  4748. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4749. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4750. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4751. ]
  4752. },
  4753. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4754. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4755. "type": "package",
  4756. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4757. "files": [
  4758. ".nupkg.metadata",
  4759. ".signature.p7s",
  4760. "ThirdPartyNotices.txt",
  4761. "dotnet_library_license.txt",
  4762. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4763. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4764. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4765. ]
  4766. },
  4767. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4768. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4769. "type": "package",
  4770. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4771. "files": [
  4772. ".nupkg.metadata",
  4773. ".signature.p7s",
  4774. "ThirdPartyNotices.txt",
  4775. "dotnet_library_license.txt",
  4776. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4777. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4778. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4779. ]
  4780. },
  4781. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4782. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4783. "type": "package",
  4784. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4785. "files": [
  4786. ".nupkg.metadata",
  4787. ".signature.p7s",
  4788. "ThirdPartyNotices.txt",
  4789. "dotnet_library_license.txt",
  4790. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4791. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4792. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4793. ]
  4794. },
  4795. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4796. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4797. "type": "package",
  4798. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4799. "files": [
  4800. ".nupkg.metadata",
  4801. ".signature.p7s",
  4802. "ThirdPartyNotices.txt",
  4803. "dotnet_library_license.txt",
  4804. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4805. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4806. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4807. ]
  4808. },
  4809. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4810. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4811. "type": "package",
  4812. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4813. "files": [
  4814. ".nupkg.metadata",
  4815. ".signature.p7s",
  4816. "ThirdPartyNotices.txt",
  4817. "dotnet_library_license.txt",
  4818. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4819. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4820. "runtimes/win-arm64/native/sni.dll",
  4821. "useSharedDesignerContext.txt",
  4822. "version.txt"
  4823. ]
  4824. },
  4825. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4826. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4827. "type": "package",
  4828. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4829. "files": [
  4830. ".nupkg.metadata",
  4831. ".signature.p7s",
  4832. "ThirdPartyNotices.txt",
  4833. "dotnet_library_license.txt",
  4834. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4835. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4836. "runtimes/win-x64/native/sni.dll",
  4837. "useSharedDesignerContext.txt",
  4838. "version.txt"
  4839. ]
  4840. },
  4841. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4842. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4843. "type": "package",
  4844. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4845. "files": [
  4846. ".nupkg.metadata",
  4847. ".signature.p7s",
  4848. "ThirdPartyNotices.txt",
  4849. "dotnet_library_license.txt",
  4850. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4851. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4852. "runtimes/win-x86/native/sni.dll",
  4853. "useSharedDesignerContext.txt",
  4854. "version.txt"
  4855. ]
  4856. },
  4857. "SQLitePCLRaw.bundle_green/1.1.12": {
  4858. "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  4859. "type": "package",
  4860. "path": "sqlitepclraw.bundle_green/1.1.12",
  4861. "files": [
  4862. ".nupkg.metadata",
  4863. ".signature.p7s",
  4864. "build/wp8/SQLitePCLRaw.bundle_green.targets",
  4865. "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
  4866. "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
  4867. "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
  4868. "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
  4869. "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
  4870. "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
  4871. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
  4872. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
  4873. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4874. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4875. "lib/net35/SQLitePCLRaw.batteries_green.dll",
  4876. "lib/net35/SQLitePCLRaw.batteries_v2.dll",
  4877. "lib/net40/SQLitePCLRaw.batteries_green.dll",
  4878. "lib/net40/SQLitePCLRaw.batteries_v2.dll",
  4879. "lib/net45/SQLitePCLRaw.batteries_green.dll",
  4880. "lib/net45/SQLitePCLRaw.batteries_v2.dll",
  4881. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
  4882. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
  4883. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
  4884. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
  4885. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4886. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4887. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4888. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4889. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4890. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4891. "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
  4892. "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
  4893. "lib/win8/SQLitePCLRaw.batteries_green.dll",
  4894. "lib/win8/SQLitePCLRaw.batteries_v2.dll",
  4895. "lib/win81/SQLitePCLRaw.batteries_green.dll",
  4896. "lib/win81/SQLitePCLRaw.batteries_v2.dll",
  4897. "lib/wp8/_._",
  4898. "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
  4899. "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
  4900. "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
  4901. "sqlitepclraw.bundle_green.nuspec"
  4902. ]
  4903. },
  4904. "SQLitePCLRaw.core/1.1.12": {
  4905. "sha512": "S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  4906. "type": "package",
  4907. "path": "sqlitepclraw.core/1.1.12",
  4908. "files": [
  4909. ".nupkg.metadata",
  4910. ".signature.p7s",
  4911. "lib/MonoAndroid/SQLitePCLRaw.core.dll",
  4912. "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
  4913. "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4914. "lib/net35/SQLitePCLRaw.core.dll",
  4915. "lib/net40/SQLitePCLRaw.core.dll",
  4916. "lib/net45/SQLitePCLRaw.core.dll",
  4917. "lib/netstandard1.0/SQLitePCLRaw.core.dll",
  4918. "lib/netstandard1.1/SQLitePCLRaw.core.dll",
  4919. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4920. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4921. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4922. "lib/uap10.0/SQLitePCLRaw.core.dll",
  4923. "lib/win8/SQLitePCLRaw.core.dll",
  4924. "lib/win81/SQLitePCLRaw.core.dll",
  4925. "lib/wpa81/SQLitePCLRaw.core.dll",
  4926. "sqlitepclraw.core.1.1.12.nupkg.sha512",
  4927. "sqlitepclraw.core.nuspec"
  4928. ]
  4929. },
  4930. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  4931. "sha512": "Tn/YE1VxWtHa4MQ9KC//ptIw6cLAUh+xXSdpX7MyGINmb4/igqyx0IOEq5WeH/+cuI/EnDtdWAOn98eMQnKsTQ==",
  4932. "type": "package",
  4933. "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.12",
  4934. "files": [
  4935. ".nupkg.metadata",
  4936. ".signature.p7s",
  4937. "build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets",
  4938. "lib/net35/_._",
  4939. "lib/netstandard1.0/_._",
  4940. "lib/netstandard2.0/_._",
  4941. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4942. "runtimes/linux-arm/native/libe_sqlite3.so",
  4943. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4944. "runtimes/linux-armel/native/libe_sqlite3.so",
  4945. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4946. "runtimes/linux-x64/native/libe_sqlite3.so",
  4947. "runtimes/linux-x86/native/libe_sqlite3.so",
  4948. "sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512",
  4949. "sqlitepclraw.lib.e_sqlite3.linux.nuspec"
  4950. ]
  4951. },
  4952. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  4953. "sha512": "qfl1ljn6NOQDyM2i9JDZc6xekHoC+Fqe4GzuhWFCS6siI7lLInw09HHSZRqyimV36vjdQYnyBBFKSn53rSOYkA==",
  4954. "type": "package",
  4955. "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.12",
  4956. "files": [
  4957. ".nupkg.metadata",
  4958. ".signature.p7s",
  4959. "build/Xamarin.Mac20/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4960. "build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4961. "lib/Xamarin.Mac20/_._",
  4962. "lib/net35/_._",
  4963. "lib/netstandard1.0/_._",
  4964. "lib/netstandard2.0/_._",
  4965. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4966. "sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512",
  4967. "sqlitepclraw.lib.e_sqlite3.osx.nuspec"
  4968. ]
  4969. },
  4970. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  4971. "sha512": "YfmaVhcEyAGU6BZ7NQiYYfCHKsCYjldwsafiFKArzqeM8MHuhfqft1Fjdv7ncukXrvKsHXhCrzJzKEMwPXiSSg==",
  4972. "type": "package",
  4973. "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.12",
  4974. "files": [
  4975. ".nupkg.metadata",
  4976. ".signature.p7s",
  4977. "build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets",
  4978. "lib/net35/_._",
  4979. "lib/netstandard1.0/_._",
  4980. "lib/netstandard2.0/_._",
  4981. "runtimes/win-x64/native/e_sqlite3.dll",
  4982. "runtimes/win-x86/native/e_sqlite3.dll",
  4983. "runtimes/win8-arm/native/e_sqlite3.dll",
  4984. "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512",
  4985. "sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec"
  4986. ]
  4987. },
  4988. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  4989. "sha512": "qjz6Ad1Q5hiI8imCiG5Mpa/w8E8+rAk3SRJdX54uEOo5nPywiN1H0jmMZO+ID0nPibQA3yjlAHt5/GcLW9Iftg==",
  4990. "type": "package",
  4991. "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12",
  4992. "files": [
  4993. ".nupkg.metadata",
  4994. ".signature.p7s",
  4995. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll",
  4996. "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512",
  4997. "sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec"
  4998. ]
  4999. },
  5000. "sqlSugarCore/5.0.0.18": {
  5001. "sha512": "AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  5002. "type": "package",
  5003. "path": "sqlsugarcore/5.0.0.18",
  5004. "files": [
  5005. ".nupkg.metadata",
  5006. ".signature.p7s",
  5007. "lib/netstandard2.0/SqlSugar.dll",
  5008. "sqlsugarcore.5.0.0.18.nupkg.sha512",
  5009. "sqlsugarcore.nuspec"
  5010. ]
  5011. },
  5012. "System.AppContext/4.3.0": {
  5013. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5014. "type": "package",
  5015. "path": "system.appcontext/4.3.0",
  5016. "files": [
  5017. ".nupkg.metadata",
  5018. ".signature.p7s",
  5019. "ThirdPartyNotices.txt",
  5020. "dotnet_library_license.txt",
  5021. "lib/MonoAndroid10/_._",
  5022. "lib/MonoTouch10/_._",
  5023. "lib/net46/System.AppContext.dll",
  5024. "lib/net463/System.AppContext.dll",
  5025. "lib/netcore50/System.AppContext.dll",
  5026. "lib/netstandard1.6/System.AppContext.dll",
  5027. "lib/xamarinios10/_._",
  5028. "lib/xamarinmac20/_._",
  5029. "lib/xamarintvos10/_._",
  5030. "lib/xamarinwatchos10/_._",
  5031. "ref/MonoAndroid10/_._",
  5032. "ref/MonoTouch10/_._",
  5033. "ref/net46/System.AppContext.dll",
  5034. "ref/net463/System.AppContext.dll",
  5035. "ref/netstandard/_._",
  5036. "ref/netstandard1.3/System.AppContext.dll",
  5037. "ref/netstandard1.3/System.AppContext.xml",
  5038. "ref/netstandard1.3/de/System.AppContext.xml",
  5039. "ref/netstandard1.3/es/System.AppContext.xml",
  5040. "ref/netstandard1.3/fr/System.AppContext.xml",
  5041. "ref/netstandard1.3/it/System.AppContext.xml",
  5042. "ref/netstandard1.3/ja/System.AppContext.xml",
  5043. "ref/netstandard1.3/ko/System.AppContext.xml",
  5044. "ref/netstandard1.3/ru/System.AppContext.xml",
  5045. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5046. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5047. "ref/netstandard1.6/System.AppContext.dll",
  5048. "ref/netstandard1.6/System.AppContext.xml",
  5049. "ref/netstandard1.6/de/System.AppContext.xml",
  5050. "ref/netstandard1.6/es/System.AppContext.xml",
  5051. "ref/netstandard1.6/fr/System.AppContext.xml",
  5052. "ref/netstandard1.6/it/System.AppContext.xml",
  5053. "ref/netstandard1.6/ja/System.AppContext.xml",
  5054. "ref/netstandard1.6/ko/System.AppContext.xml",
  5055. "ref/netstandard1.6/ru/System.AppContext.xml",
  5056. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5057. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5058. "ref/xamarinios10/_._",
  5059. "ref/xamarinmac20/_._",
  5060. "ref/xamarintvos10/_._",
  5061. "ref/xamarinwatchos10/_._",
  5062. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5063. "system.appcontext.4.3.0.nupkg.sha512",
  5064. "system.appcontext.nuspec"
  5065. ]
  5066. },
  5067. "System.Buffers/4.3.0": {
  5068. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  5069. "type": "package",
  5070. "path": "system.buffers/4.3.0",
  5071. "files": [
  5072. ".nupkg.metadata",
  5073. ".signature.p7s",
  5074. "ThirdPartyNotices.txt",
  5075. "dotnet_library_license.txt",
  5076. "lib/netstandard1.1/.xml",
  5077. "lib/netstandard1.1/System.Buffers.dll",
  5078. "system.buffers.4.3.0.nupkg.sha512",
  5079. "system.buffers.nuspec"
  5080. ]
  5081. },
  5082. "System.CodeDom/5.0.0": {
  5083. "sha512": "JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==",
  5084. "type": "package",
  5085. "path": "system.codedom/5.0.0",
  5086. "files": [
  5087. ".nupkg.metadata",
  5088. ".signature.p7s",
  5089. "Icon.png",
  5090. "LICENSE.TXT",
  5091. "THIRD-PARTY-NOTICES.TXT",
  5092. "lib/net461/System.CodeDom.dll",
  5093. "lib/net461/System.CodeDom.xml",
  5094. "lib/netstandard2.0/System.CodeDom.dll",
  5095. "lib/netstandard2.0/System.CodeDom.xml",
  5096. "ref/net461/System.CodeDom.dll",
  5097. "ref/net461/System.CodeDom.xml",
  5098. "ref/netstandard2.0/System.CodeDom.dll",
  5099. "ref/netstandard2.0/System.CodeDom.xml",
  5100. "system.codedom.5.0.0.nupkg.sha512",
  5101. "system.codedom.nuspec",
  5102. "useSharedDesignerContext.txt",
  5103. "version.txt"
  5104. ]
  5105. },
  5106. "System.Collections/4.3.0": {
  5107. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5108. "type": "package",
  5109. "path": "system.collections/4.3.0",
  5110. "files": [
  5111. ".nupkg.metadata",
  5112. ".signature.p7s",
  5113. "ThirdPartyNotices.txt",
  5114. "dotnet_library_license.txt",
  5115. "lib/MonoAndroid10/_._",
  5116. "lib/MonoTouch10/_._",
  5117. "lib/net45/_._",
  5118. "lib/portable-net45+win8+wp8+wpa81/_._",
  5119. "lib/win8/_._",
  5120. "lib/wp80/_._",
  5121. "lib/wpa81/_._",
  5122. "lib/xamarinios10/_._",
  5123. "lib/xamarinmac20/_._",
  5124. "lib/xamarintvos10/_._",
  5125. "lib/xamarinwatchos10/_._",
  5126. "ref/MonoAndroid10/_._",
  5127. "ref/MonoTouch10/_._",
  5128. "ref/net45/_._",
  5129. "ref/netcore50/System.Collections.dll",
  5130. "ref/netcore50/System.Collections.xml",
  5131. "ref/netcore50/de/System.Collections.xml",
  5132. "ref/netcore50/es/System.Collections.xml",
  5133. "ref/netcore50/fr/System.Collections.xml",
  5134. "ref/netcore50/it/System.Collections.xml",
  5135. "ref/netcore50/ja/System.Collections.xml",
  5136. "ref/netcore50/ko/System.Collections.xml",
  5137. "ref/netcore50/ru/System.Collections.xml",
  5138. "ref/netcore50/zh-hans/System.Collections.xml",
  5139. "ref/netcore50/zh-hant/System.Collections.xml",
  5140. "ref/netstandard1.0/System.Collections.dll",
  5141. "ref/netstandard1.0/System.Collections.xml",
  5142. "ref/netstandard1.0/de/System.Collections.xml",
  5143. "ref/netstandard1.0/es/System.Collections.xml",
  5144. "ref/netstandard1.0/fr/System.Collections.xml",
  5145. "ref/netstandard1.0/it/System.Collections.xml",
  5146. "ref/netstandard1.0/ja/System.Collections.xml",
  5147. "ref/netstandard1.0/ko/System.Collections.xml",
  5148. "ref/netstandard1.0/ru/System.Collections.xml",
  5149. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5150. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5151. "ref/netstandard1.3/System.Collections.dll",
  5152. "ref/netstandard1.3/System.Collections.xml",
  5153. "ref/netstandard1.3/de/System.Collections.xml",
  5154. "ref/netstandard1.3/es/System.Collections.xml",
  5155. "ref/netstandard1.3/fr/System.Collections.xml",
  5156. "ref/netstandard1.3/it/System.Collections.xml",
  5157. "ref/netstandard1.3/ja/System.Collections.xml",
  5158. "ref/netstandard1.3/ko/System.Collections.xml",
  5159. "ref/netstandard1.3/ru/System.Collections.xml",
  5160. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5161. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5162. "ref/portable-net45+win8+wp8+wpa81/_._",
  5163. "ref/win8/_._",
  5164. "ref/wp80/_._",
  5165. "ref/wpa81/_._",
  5166. "ref/xamarinios10/_._",
  5167. "ref/xamarinmac20/_._",
  5168. "ref/xamarintvos10/_._",
  5169. "ref/xamarinwatchos10/_._",
  5170. "system.collections.4.3.0.nupkg.sha512",
  5171. "system.collections.nuspec"
  5172. ]
  5173. },
  5174. "System.Collections.Concurrent/4.3.0": {
  5175. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5176. "type": "package",
  5177. "path": "system.collections.concurrent/4.3.0",
  5178. "files": [
  5179. ".nupkg.metadata",
  5180. ".signature.p7s",
  5181. "ThirdPartyNotices.txt",
  5182. "dotnet_library_license.txt",
  5183. "lib/MonoAndroid10/_._",
  5184. "lib/MonoTouch10/_._",
  5185. "lib/net45/_._",
  5186. "lib/netcore50/System.Collections.Concurrent.dll",
  5187. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5188. "lib/portable-net45+win8+wpa81/_._",
  5189. "lib/win8/_._",
  5190. "lib/wpa81/_._",
  5191. "lib/xamarinios10/_._",
  5192. "lib/xamarinmac20/_._",
  5193. "lib/xamarintvos10/_._",
  5194. "lib/xamarinwatchos10/_._",
  5195. "ref/MonoAndroid10/_._",
  5196. "ref/MonoTouch10/_._",
  5197. "ref/net45/_._",
  5198. "ref/netcore50/System.Collections.Concurrent.dll",
  5199. "ref/netcore50/System.Collections.Concurrent.xml",
  5200. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5201. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5202. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5203. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5204. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5205. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5206. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5207. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5208. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5209. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5210. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5211. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5212. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5213. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5214. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5215. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5216. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5217. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5218. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5219. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5220. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5221. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5222. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5223. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5224. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5225. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5226. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5227. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5228. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5229. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5230. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5231. "ref/portable-net45+win8+wpa81/_._",
  5232. "ref/win8/_._",
  5233. "ref/wpa81/_._",
  5234. "ref/xamarinios10/_._",
  5235. "ref/xamarinmac20/_._",
  5236. "ref/xamarintvos10/_._",
  5237. "ref/xamarinwatchos10/_._",
  5238. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5239. "system.collections.concurrent.nuspec"
  5240. ]
  5241. },
  5242. "System.Collections.Immutable/1.7.1": {
  5243. "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
  5244. "type": "package",
  5245. "path": "system.collections.immutable/1.7.1",
  5246. "files": [
  5247. ".nupkg.metadata",
  5248. ".signature.p7s",
  5249. "Icon.png",
  5250. "LICENSE.TXT",
  5251. "THIRD-PARTY-NOTICES.TXT",
  5252. "lib/net461/System.Collections.Immutable.dll",
  5253. "lib/net461/System.Collections.Immutable.xml",
  5254. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5255. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5256. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5257. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5258. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5259. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5260. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5261. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5262. "system.collections.immutable.1.7.1.nupkg.sha512",
  5263. "system.collections.immutable.nuspec",
  5264. "useSharedDesignerContext.txt",
  5265. "version.txt"
  5266. ]
  5267. },
  5268. "System.Collections.NonGeneric/4.3.0": {
  5269. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5270. "type": "package",
  5271. "path": "system.collections.nongeneric/4.3.0",
  5272. "files": [
  5273. ".nupkg.metadata",
  5274. ".signature.p7s",
  5275. "ThirdPartyNotices.txt",
  5276. "dotnet_library_license.txt",
  5277. "lib/MonoAndroid10/_._",
  5278. "lib/MonoTouch10/_._",
  5279. "lib/net46/System.Collections.NonGeneric.dll",
  5280. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5281. "lib/xamarinios10/_._",
  5282. "lib/xamarinmac20/_._",
  5283. "lib/xamarintvos10/_._",
  5284. "lib/xamarinwatchos10/_._",
  5285. "ref/MonoAndroid10/_._",
  5286. "ref/MonoTouch10/_._",
  5287. "ref/net46/System.Collections.NonGeneric.dll",
  5288. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5289. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5290. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5291. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5292. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5293. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5294. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5295. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5296. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5297. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5298. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5299. "ref/xamarinios10/_._",
  5300. "ref/xamarinmac20/_._",
  5301. "ref/xamarintvos10/_._",
  5302. "ref/xamarinwatchos10/_._",
  5303. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5304. "system.collections.nongeneric.nuspec"
  5305. ]
  5306. },
  5307. "System.Collections.Specialized/4.3.0": {
  5308. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5309. "type": "package",
  5310. "path": "system.collections.specialized/4.3.0",
  5311. "files": [
  5312. ".nupkg.metadata",
  5313. ".signature.p7s",
  5314. "ThirdPartyNotices.txt",
  5315. "dotnet_library_license.txt",
  5316. "lib/MonoAndroid10/_._",
  5317. "lib/MonoTouch10/_._",
  5318. "lib/net46/System.Collections.Specialized.dll",
  5319. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5320. "lib/xamarinios10/_._",
  5321. "lib/xamarinmac20/_._",
  5322. "lib/xamarintvos10/_._",
  5323. "lib/xamarinwatchos10/_._",
  5324. "ref/MonoAndroid10/_._",
  5325. "ref/MonoTouch10/_._",
  5326. "ref/net46/System.Collections.Specialized.dll",
  5327. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5328. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5329. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5330. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5331. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5332. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5333. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5334. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5335. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5336. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5337. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5338. "ref/xamarinios10/_._",
  5339. "ref/xamarinmac20/_._",
  5340. "ref/xamarintvos10/_._",
  5341. "ref/xamarinwatchos10/_._",
  5342. "system.collections.specialized.4.3.0.nupkg.sha512",
  5343. "system.collections.specialized.nuspec"
  5344. ]
  5345. },
  5346. "System.ComponentModel/4.3.0": {
  5347. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5348. "type": "package",
  5349. "path": "system.componentmodel/4.3.0",
  5350. "files": [
  5351. ".nupkg.metadata",
  5352. ".signature.p7s",
  5353. "ThirdPartyNotices.txt",
  5354. "dotnet_library_license.txt",
  5355. "lib/MonoAndroid10/_._",
  5356. "lib/MonoTouch10/_._",
  5357. "lib/net45/_._",
  5358. "lib/netcore50/System.ComponentModel.dll",
  5359. "lib/netstandard1.3/System.ComponentModel.dll",
  5360. "lib/portable-net45+win8+wp8+wpa81/_._",
  5361. "lib/win8/_._",
  5362. "lib/wp80/_._",
  5363. "lib/wpa81/_._",
  5364. "lib/xamarinios10/_._",
  5365. "lib/xamarinmac20/_._",
  5366. "lib/xamarintvos10/_._",
  5367. "lib/xamarinwatchos10/_._",
  5368. "ref/MonoAndroid10/_._",
  5369. "ref/MonoTouch10/_._",
  5370. "ref/net45/_._",
  5371. "ref/netcore50/System.ComponentModel.dll",
  5372. "ref/netcore50/System.ComponentModel.xml",
  5373. "ref/netcore50/de/System.ComponentModel.xml",
  5374. "ref/netcore50/es/System.ComponentModel.xml",
  5375. "ref/netcore50/fr/System.ComponentModel.xml",
  5376. "ref/netcore50/it/System.ComponentModel.xml",
  5377. "ref/netcore50/ja/System.ComponentModel.xml",
  5378. "ref/netcore50/ko/System.ComponentModel.xml",
  5379. "ref/netcore50/ru/System.ComponentModel.xml",
  5380. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5381. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5382. "ref/netstandard1.0/System.ComponentModel.dll",
  5383. "ref/netstandard1.0/System.ComponentModel.xml",
  5384. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5385. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5386. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5387. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5388. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5389. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5390. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5391. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5392. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5393. "ref/portable-net45+win8+wp8+wpa81/_._",
  5394. "ref/win8/_._",
  5395. "ref/wp80/_._",
  5396. "ref/wpa81/_._",
  5397. "ref/xamarinios10/_._",
  5398. "ref/xamarinmac20/_._",
  5399. "ref/xamarintvos10/_._",
  5400. "ref/xamarinwatchos10/_._",
  5401. "system.componentmodel.4.3.0.nupkg.sha512",
  5402. "system.componentmodel.nuspec"
  5403. ]
  5404. },
  5405. "System.ComponentModel.Annotations/4.7.0": {
  5406. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  5407. "type": "package",
  5408. "path": "system.componentmodel.annotations/4.7.0",
  5409. "files": [
  5410. ".nupkg.metadata",
  5411. ".signature.p7s",
  5412. "LICENSE.TXT",
  5413. "THIRD-PARTY-NOTICES.TXT",
  5414. "lib/MonoAndroid10/_._",
  5415. "lib/MonoTouch10/_._",
  5416. "lib/net45/_._",
  5417. "lib/net461/System.ComponentModel.Annotations.dll",
  5418. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5419. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5420. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5421. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5422. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5423. "lib/portable-net45+win8/_._",
  5424. "lib/win8/_._",
  5425. "lib/xamarinios10/_._",
  5426. "lib/xamarinmac20/_._",
  5427. "lib/xamarintvos10/_._",
  5428. "lib/xamarinwatchos10/_._",
  5429. "ref/MonoAndroid10/_._",
  5430. "ref/MonoTouch10/_._",
  5431. "ref/net45/_._",
  5432. "ref/net461/System.ComponentModel.Annotations.dll",
  5433. "ref/net461/System.ComponentModel.Annotations.xml",
  5434. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5435. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5436. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5437. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5438. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5439. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5440. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5441. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5442. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5443. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5444. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5445. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5446. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5447. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5448. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5449. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5450. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5451. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5452. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5453. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5454. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5455. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5456. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5457. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5458. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5459. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5460. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5461. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5462. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5463. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5464. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5465. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5466. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5467. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5468. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5469. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5470. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5471. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5472. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5473. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5474. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5475. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5476. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5477. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5478. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5479. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5480. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5481. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5482. "ref/portable-net45+win8/_._",
  5483. "ref/win8/_._",
  5484. "ref/xamarinios10/_._",
  5485. "ref/xamarinmac20/_._",
  5486. "ref/xamarintvos10/_._",
  5487. "ref/xamarinwatchos10/_._",
  5488. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  5489. "system.componentmodel.annotations.nuspec",
  5490. "useSharedDesignerContext.txt",
  5491. "version.txt"
  5492. ]
  5493. },
  5494. "System.ComponentModel.Primitives/4.3.0": {
  5495. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5496. "type": "package",
  5497. "path": "system.componentmodel.primitives/4.3.0",
  5498. "files": [
  5499. ".nupkg.metadata",
  5500. ".signature.p7s",
  5501. "ThirdPartyNotices.txt",
  5502. "dotnet_library_license.txt",
  5503. "lib/MonoAndroid10/_._",
  5504. "lib/MonoTouch10/_._",
  5505. "lib/net45/System.ComponentModel.Primitives.dll",
  5506. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5507. "lib/xamarinios10/_._",
  5508. "lib/xamarinmac20/_._",
  5509. "lib/xamarintvos10/_._",
  5510. "lib/xamarinwatchos10/_._",
  5511. "ref/MonoAndroid10/_._",
  5512. "ref/MonoTouch10/_._",
  5513. "ref/net45/System.ComponentModel.Primitives.dll",
  5514. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5515. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5516. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5517. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5518. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5519. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5520. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5521. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5522. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5523. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5524. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5525. "ref/xamarinios10/_._",
  5526. "ref/xamarinmac20/_._",
  5527. "ref/xamarintvos10/_._",
  5528. "ref/xamarinwatchos10/_._",
  5529. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5530. "system.componentmodel.primitives.nuspec"
  5531. ]
  5532. },
  5533. "System.ComponentModel.TypeConverter/4.3.0": {
  5534. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5535. "type": "package",
  5536. "path": "system.componentmodel.typeconverter/4.3.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/MonoAndroid10/_._",
  5543. "lib/MonoTouch10/_._",
  5544. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5545. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5546. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5547. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5548. "lib/xamarinios10/_._",
  5549. "lib/xamarinmac20/_._",
  5550. "lib/xamarintvos10/_._",
  5551. "lib/xamarinwatchos10/_._",
  5552. "ref/MonoAndroid10/_._",
  5553. "ref/MonoTouch10/_._",
  5554. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5555. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5556. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5557. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5558. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5559. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5560. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5561. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5562. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5563. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5564. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5565. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5566. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5567. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5568. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5569. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5570. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5571. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5572. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5573. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5574. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5575. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5576. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5577. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5578. "ref/xamarinios10/_._",
  5579. "ref/xamarinmac20/_._",
  5580. "ref/xamarintvos10/_._",
  5581. "ref/xamarinwatchos10/_._",
  5582. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5583. "system.componentmodel.typeconverter.nuspec"
  5584. ]
  5585. },
  5586. "System.Configuration.ConfigurationManager/4.7.0": {
  5587. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5588. "type": "package",
  5589. "path": "system.configuration.configurationmanager/4.7.0",
  5590. "files": [
  5591. ".nupkg.metadata",
  5592. ".signature.p7s",
  5593. "LICENSE.TXT",
  5594. "THIRD-PARTY-NOTICES.TXT",
  5595. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5596. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5597. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5598. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5599. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5600. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5601. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5602. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5603. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5604. "system.configuration.configurationmanager.nuspec",
  5605. "useSharedDesignerContext.txt",
  5606. "version.txt"
  5607. ]
  5608. },
  5609. "System.Console/4.3.0": {
  5610. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5611. "type": "package",
  5612. "path": "system.console/4.3.0",
  5613. "files": [
  5614. ".nupkg.metadata",
  5615. ".signature.p7s",
  5616. "ThirdPartyNotices.txt",
  5617. "dotnet_library_license.txt",
  5618. "lib/MonoAndroid10/_._",
  5619. "lib/MonoTouch10/_._",
  5620. "lib/net46/System.Console.dll",
  5621. "lib/xamarinios10/_._",
  5622. "lib/xamarinmac20/_._",
  5623. "lib/xamarintvos10/_._",
  5624. "lib/xamarinwatchos10/_._",
  5625. "ref/MonoAndroid10/_._",
  5626. "ref/MonoTouch10/_._",
  5627. "ref/net46/System.Console.dll",
  5628. "ref/netstandard1.3/System.Console.dll",
  5629. "ref/netstandard1.3/System.Console.xml",
  5630. "ref/netstandard1.3/de/System.Console.xml",
  5631. "ref/netstandard1.3/es/System.Console.xml",
  5632. "ref/netstandard1.3/fr/System.Console.xml",
  5633. "ref/netstandard1.3/it/System.Console.xml",
  5634. "ref/netstandard1.3/ja/System.Console.xml",
  5635. "ref/netstandard1.3/ko/System.Console.xml",
  5636. "ref/netstandard1.3/ru/System.Console.xml",
  5637. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5638. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5639. "ref/xamarinios10/_._",
  5640. "ref/xamarinmac20/_._",
  5641. "ref/xamarintvos10/_._",
  5642. "ref/xamarinwatchos10/_._",
  5643. "system.console.4.3.0.nupkg.sha512",
  5644. "system.console.nuspec"
  5645. ]
  5646. },
  5647. "System.Data.Common/4.3.0": {
  5648. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5649. "type": "package",
  5650. "path": "system.data.common/4.3.0",
  5651. "files": [
  5652. ".nupkg.metadata",
  5653. ".signature.p7s",
  5654. "ThirdPartyNotices.txt",
  5655. "dotnet_library_license.txt",
  5656. "lib/MonoAndroid10/_._",
  5657. "lib/MonoTouch10/_._",
  5658. "lib/net451/System.Data.Common.dll",
  5659. "lib/netstandard1.2/System.Data.Common.dll",
  5660. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5661. "lib/xamarinios10/_._",
  5662. "lib/xamarinmac20/_._",
  5663. "lib/xamarintvos10/_._",
  5664. "lib/xamarinwatchos10/_._",
  5665. "ref/MonoAndroid10/_._",
  5666. "ref/MonoTouch10/_._",
  5667. "ref/net451/System.Data.Common.dll",
  5668. "ref/netstandard1.2/System.Data.Common.dll",
  5669. "ref/netstandard1.2/System.Data.Common.xml",
  5670. "ref/netstandard1.2/de/System.Data.Common.xml",
  5671. "ref/netstandard1.2/es/System.Data.Common.xml",
  5672. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5673. "ref/netstandard1.2/it/System.Data.Common.xml",
  5674. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5675. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5676. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5677. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5678. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5679. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5680. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5681. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5682. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5683. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5684. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5685. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5686. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5687. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5688. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5689. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5690. "ref/xamarinios10/_._",
  5691. "ref/xamarinmac20/_._",
  5692. "ref/xamarintvos10/_._",
  5693. "ref/xamarinwatchos10/_._",
  5694. "system.data.common.4.3.0.nupkg.sha512",
  5695. "system.data.common.nuspec"
  5696. ]
  5697. },
  5698. "System.Data.SqlClient/4.4.0": {
  5699. "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  5700. "type": "package",
  5701. "path": "system.data.sqlclient/4.4.0",
  5702. "files": [
  5703. ".nupkg.metadata",
  5704. ".signature.p7s",
  5705. "LICENSE.TXT",
  5706. "THIRD-PARTY-NOTICES.TXT",
  5707. "lib/MonoAndroid10/_._",
  5708. "lib/MonoTouch10/_._",
  5709. "lib/net451/System.Data.SqlClient.dll",
  5710. "lib/net46/System.Data.SqlClient.dll",
  5711. "lib/net461/System.Data.SqlClient.dll",
  5712. "lib/netstandard1.2/System.Data.SqlClient.dll",
  5713. "lib/netstandard1.3/System.Data.SqlClient.dll",
  5714. "lib/netstandard2.0/System.Data.SqlClient.dll",
  5715. "lib/xamarinios10/_._",
  5716. "lib/xamarinmac20/_._",
  5717. "lib/xamarintvos10/_._",
  5718. "lib/xamarinwatchos10/_._",
  5719. "ref/MonoAndroid10/_._",
  5720. "ref/MonoTouch10/_._",
  5721. "ref/net451/System.Data.SqlClient.dll",
  5722. "ref/net46/System.Data.SqlClient.dll",
  5723. "ref/net461/System.Data.SqlClient.dll",
  5724. "ref/net461/System.Data.SqlClient.xml",
  5725. "ref/netstandard1.2/System.Data.SqlClient.dll",
  5726. "ref/netstandard1.2/System.Data.SqlClient.xml",
  5727. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  5728. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  5729. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  5730. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  5731. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  5732. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  5733. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  5734. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  5735. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  5736. "ref/netstandard1.3/System.Data.SqlClient.dll",
  5737. "ref/netstandard1.3/System.Data.SqlClient.xml",
  5738. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  5739. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  5740. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  5741. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  5742. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  5743. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  5744. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  5745. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  5746. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  5747. "ref/netstandard2.0/System.Data.SqlClient.dll",
  5748. "ref/netstandard2.0/System.Data.SqlClient.xml",
  5749. "ref/xamarinios10/_._",
  5750. "ref/xamarinmac20/_._",
  5751. "ref/xamarintvos10/_._",
  5752. "ref/xamarinwatchos10/_._",
  5753. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  5754. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  5755. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  5756. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  5757. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  5758. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  5759. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  5760. "system.data.sqlclient.4.4.0.nupkg.sha512",
  5761. "system.data.sqlclient.nuspec",
  5762. "useSharedDesignerContext.txt",
  5763. "version.txt"
  5764. ]
  5765. },
  5766. "System.Diagnostics.Debug/4.3.0": {
  5767. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5768. "type": "package",
  5769. "path": "system.diagnostics.debug/4.3.0",
  5770. "files": [
  5771. ".nupkg.metadata",
  5772. ".signature.p7s",
  5773. "ThirdPartyNotices.txt",
  5774. "dotnet_library_license.txt",
  5775. "lib/MonoAndroid10/_._",
  5776. "lib/MonoTouch10/_._",
  5777. "lib/net45/_._",
  5778. "lib/portable-net45+win8+wp8+wpa81/_._",
  5779. "lib/win8/_._",
  5780. "lib/wp80/_._",
  5781. "lib/wpa81/_._",
  5782. "lib/xamarinios10/_._",
  5783. "lib/xamarinmac20/_._",
  5784. "lib/xamarintvos10/_._",
  5785. "lib/xamarinwatchos10/_._",
  5786. "ref/MonoAndroid10/_._",
  5787. "ref/MonoTouch10/_._",
  5788. "ref/net45/_._",
  5789. "ref/netcore50/System.Diagnostics.Debug.dll",
  5790. "ref/netcore50/System.Diagnostics.Debug.xml",
  5791. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5792. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5793. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5794. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5795. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5796. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5797. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5798. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5799. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5800. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5801. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5802. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5803. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5804. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5805. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5806. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5807. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5808. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5809. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5810. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5811. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5812. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5813. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5814. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5815. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5816. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5817. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5818. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5819. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5820. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5821. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5822. "ref/portable-net45+win8+wp8+wpa81/_._",
  5823. "ref/win8/_._",
  5824. "ref/wp80/_._",
  5825. "ref/wpa81/_._",
  5826. "ref/xamarinios10/_._",
  5827. "ref/xamarinmac20/_._",
  5828. "ref/xamarintvos10/_._",
  5829. "ref/xamarinwatchos10/_._",
  5830. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5831. "system.diagnostics.debug.nuspec"
  5832. ]
  5833. },
  5834. "System.Diagnostics.DiagnosticSource/4.7.1": {
  5835. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  5836. "type": "package",
  5837. "path": "system.diagnostics.diagnosticsource/4.7.1",
  5838. "files": [
  5839. ".nupkg.metadata",
  5840. ".signature.p7s",
  5841. "Icon.png",
  5842. "LICENSE.TXT",
  5843. "THIRD-PARTY-NOTICES.TXT",
  5844. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5845. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5846. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5847. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5848. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5849. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5850. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5851. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5852. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5853. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5854. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  5855. "system.diagnostics.diagnosticsource.nuspec",
  5856. "useSharedDesignerContext.txt",
  5857. "version.txt"
  5858. ]
  5859. },
  5860. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  5861. "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  5862. "type": "package",
  5863. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  5864. "files": [
  5865. ".nupkg.metadata",
  5866. ".signature.p7s",
  5867. "ThirdPartyNotices.txt",
  5868. "dotnet_library_license.txt",
  5869. "lib/MonoAndroid10/_._",
  5870. "lib/MonoTouch10/_._",
  5871. "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5872. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5873. "lib/xamarinios10/_._",
  5874. "lib/xamarinmac20/_._",
  5875. "lib/xamarintvos10/_._",
  5876. "lib/xamarinwatchos10/_._",
  5877. "ref/MonoAndroid10/_._",
  5878. "ref/MonoTouch10/_._",
  5879. "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5880. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5881. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
  5882. "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
  5883. "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
  5884. "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
  5885. "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
  5886. "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
  5887. "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
  5888. "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
  5889. "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
  5890. "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
  5891. "ref/xamarinios10/_._",
  5892. "ref/xamarinmac20/_._",
  5893. "ref/xamarintvos10/_._",
  5894. "ref/xamarinwatchos10/_._",
  5895. "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512",
  5896. "system.diagnostics.textwritertracelistener.nuspec"
  5897. ]
  5898. },
  5899. "System.Diagnostics.Tools/4.3.0": {
  5900. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5901. "type": "package",
  5902. "path": "system.diagnostics.tools/4.3.0",
  5903. "files": [
  5904. ".nupkg.metadata",
  5905. ".signature.p7s",
  5906. "ThirdPartyNotices.txt",
  5907. "dotnet_library_license.txt",
  5908. "lib/MonoAndroid10/_._",
  5909. "lib/MonoTouch10/_._",
  5910. "lib/net45/_._",
  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.Diagnostics.Tools.dll",
  5923. "ref/netcore50/System.Diagnostics.Tools.xml",
  5924. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5925. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5926. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5927. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5928. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5929. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5930. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5931. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5932. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5933. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5934. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5935. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5936. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5937. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5938. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5939. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5940. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5941. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5942. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5943. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5944. "ref/portable-net45+win8+wp8+wpa81/_._",
  5945. "ref/win8/_._",
  5946. "ref/wp80/_._",
  5947. "ref/wpa81/_._",
  5948. "ref/xamarinios10/_._",
  5949. "ref/xamarinmac20/_._",
  5950. "ref/xamarintvos10/_._",
  5951. "ref/xamarinwatchos10/_._",
  5952. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5953. "system.diagnostics.tools.nuspec"
  5954. ]
  5955. },
  5956. "System.Diagnostics.TraceSource/4.3.0": {
  5957. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5958. "type": "package",
  5959. "path": "system.diagnostics.tracesource/4.3.0",
  5960. "files": [
  5961. ".nupkg.metadata",
  5962. ".signature.p7s",
  5963. "ThirdPartyNotices.txt",
  5964. "dotnet_library_license.txt",
  5965. "lib/MonoAndroid10/_._",
  5966. "lib/MonoTouch10/_._",
  5967. "lib/net46/System.Diagnostics.TraceSource.dll",
  5968. "lib/xamarinios10/_._",
  5969. "lib/xamarinmac20/_._",
  5970. "lib/xamarintvos10/_._",
  5971. "lib/xamarinwatchos10/_._",
  5972. "ref/MonoAndroid10/_._",
  5973. "ref/MonoTouch10/_._",
  5974. "ref/net46/System.Diagnostics.TraceSource.dll",
  5975. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5976. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5977. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5978. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5979. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5980. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5981. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5982. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5983. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5984. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5985. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5986. "ref/xamarinios10/_._",
  5987. "ref/xamarinmac20/_._",
  5988. "ref/xamarintvos10/_._",
  5989. "ref/xamarinwatchos10/_._",
  5990. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5991. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5992. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5993. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5994. "system.diagnostics.tracesource.nuspec"
  5995. ]
  5996. },
  5997. "System.Diagnostics.Tracing/4.3.0": {
  5998. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5999. "type": "package",
  6000. "path": "system.diagnostics.tracing/4.3.0",
  6001. "files": [
  6002. ".nupkg.metadata",
  6003. ".signature.p7s",
  6004. "ThirdPartyNotices.txt",
  6005. "dotnet_library_license.txt",
  6006. "lib/MonoAndroid10/_._",
  6007. "lib/MonoTouch10/_._",
  6008. "lib/net45/_._",
  6009. "lib/net462/System.Diagnostics.Tracing.dll",
  6010. "lib/portable-net45+win8+wpa81/_._",
  6011. "lib/win8/_._",
  6012. "lib/wpa81/_._",
  6013. "lib/xamarinios10/_._",
  6014. "lib/xamarinmac20/_._",
  6015. "lib/xamarintvos10/_._",
  6016. "lib/xamarinwatchos10/_._",
  6017. "ref/MonoAndroid10/_._",
  6018. "ref/MonoTouch10/_._",
  6019. "ref/net45/_._",
  6020. "ref/net462/System.Diagnostics.Tracing.dll",
  6021. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6022. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6023. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6024. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6025. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6026. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6027. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6028. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6029. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6030. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6031. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6032. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6033. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6034. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6035. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6036. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6037. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6038. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6039. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6040. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6041. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6042. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6043. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6044. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6045. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6046. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6047. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6048. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6049. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6050. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6051. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6052. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6053. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6054. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6055. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6056. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6057. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6058. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6059. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6060. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6061. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6062. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6063. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6064. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6065. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6066. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6067. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6068. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6069. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6070. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6071. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6072. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6073. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6074. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6075. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6076. "ref/portable-net45+win8+wpa81/_._",
  6077. "ref/win8/_._",
  6078. "ref/wpa81/_._",
  6079. "ref/xamarinios10/_._",
  6080. "ref/xamarinmac20/_._",
  6081. "ref/xamarintvos10/_._",
  6082. "ref/xamarinwatchos10/_._",
  6083. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6084. "system.diagnostics.tracing.nuspec"
  6085. ]
  6086. },
  6087. "System.Drawing.Common/4.7.0": {
  6088. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  6089. "type": "package",
  6090. "path": "system.drawing.common/4.7.0",
  6091. "files": [
  6092. ".nupkg.metadata",
  6093. ".signature.p7s",
  6094. "LICENSE.TXT",
  6095. "THIRD-PARTY-NOTICES.TXT",
  6096. "lib/MonoAndroid10/_._",
  6097. "lib/MonoTouch10/_._",
  6098. "lib/net461/System.Drawing.Common.dll",
  6099. "lib/netstandard2.0/System.Drawing.Common.dll",
  6100. "lib/xamarinios10/_._",
  6101. "lib/xamarinmac20/_._",
  6102. "lib/xamarintvos10/_._",
  6103. "lib/xamarinwatchos10/_._",
  6104. "ref/MonoAndroid10/_._",
  6105. "ref/MonoTouch10/_._",
  6106. "ref/net461/System.Drawing.Common.dll",
  6107. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6108. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6109. "ref/netstandard2.0/System.Drawing.Common.dll",
  6110. "ref/xamarinios10/_._",
  6111. "ref/xamarinmac20/_._",
  6112. "ref/xamarintvos10/_._",
  6113. "ref/xamarinwatchos10/_._",
  6114. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6115. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6116. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6117. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6118. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6119. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6120. "system.drawing.common.4.7.0.nupkg.sha512",
  6121. "system.drawing.common.nuspec",
  6122. "useSharedDesignerContext.txt",
  6123. "version.txt"
  6124. ]
  6125. },
  6126. "System.Dynamic.Runtime/4.3.0": {
  6127. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6128. "type": "package",
  6129. "path": "system.dynamic.runtime/4.3.0",
  6130. "files": [
  6131. ".nupkg.metadata",
  6132. ".signature.p7s",
  6133. "ThirdPartyNotices.txt",
  6134. "dotnet_library_license.txt",
  6135. "lib/MonoAndroid10/_._",
  6136. "lib/MonoTouch10/_._",
  6137. "lib/net45/_._",
  6138. "lib/netcore50/System.Dynamic.Runtime.dll",
  6139. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6140. "lib/portable-net45+win8+wp8+wpa81/_._",
  6141. "lib/win8/_._",
  6142. "lib/wp80/_._",
  6143. "lib/wpa81/_._",
  6144. "lib/xamarinios10/_._",
  6145. "lib/xamarinmac20/_._",
  6146. "lib/xamarintvos10/_._",
  6147. "lib/xamarinwatchos10/_._",
  6148. "ref/MonoAndroid10/_._",
  6149. "ref/MonoTouch10/_._",
  6150. "ref/net45/_._",
  6151. "ref/netcore50/System.Dynamic.Runtime.dll",
  6152. "ref/netcore50/System.Dynamic.Runtime.xml",
  6153. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6154. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6155. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6156. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6157. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6158. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6159. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6160. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6161. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6162. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6163. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6164. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6165. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6166. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6167. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6168. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6169. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6170. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6171. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6172. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6173. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6174. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6175. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6176. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6177. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6178. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6179. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6180. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6181. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6182. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6183. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6184. "ref/portable-net45+win8+wp8+wpa81/_._",
  6185. "ref/win8/_._",
  6186. "ref/wp80/_._",
  6187. "ref/wpa81/_._",
  6188. "ref/xamarinios10/_._",
  6189. "ref/xamarinmac20/_._",
  6190. "ref/xamarintvos10/_._",
  6191. "ref/xamarinwatchos10/_._",
  6192. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6193. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6194. "system.dynamic.runtime.nuspec"
  6195. ]
  6196. },
  6197. "System.Globalization/4.3.0": {
  6198. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6199. "type": "package",
  6200. "path": "system.globalization/4.3.0",
  6201. "files": [
  6202. ".nupkg.metadata",
  6203. ".signature.p7s",
  6204. "ThirdPartyNotices.txt",
  6205. "dotnet_library_license.txt",
  6206. "lib/MonoAndroid10/_._",
  6207. "lib/MonoTouch10/_._",
  6208. "lib/net45/_._",
  6209. "lib/portable-net45+win8+wp8+wpa81/_._",
  6210. "lib/win8/_._",
  6211. "lib/wp80/_._",
  6212. "lib/wpa81/_._",
  6213. "lib/xamarinios10/_._",
  6214. "lib/xamarinmac20/_._",
  6215. "lib/xamarintvos10/_._",
  6216. "lib/xamarinwatchos10/_._",
  6217. "ref/MonoAndroid10/_._",
  6218. "ref/MonoTouch10/_._",
  6219. "ref/net45/_._",
  6220. "ref/netcore50/System.Globalization.dll",
  6221. "ref/netcore50/System.Globalization.xml",
  6222. "ref/netcore50/de/System.Globalization.xml",
  6223. "ref/netcore50/es/System.Globalization.xml",
  6224. "ref/netcore50/fr/System.Globalization.xml",
  6225. "ref/netcore50/it/System.Globalization.xml",
  6226. "ref/netcore50/ja/System.Globalization.xml",
  6227. "ref/netcore50/ko/System.Globalization.xml",
  6228. "ref/netcore50/ru/System.Globalization.xml",
  6229. "ref/netcore50/zh-hans/System.Globalization.xml",
  6230. "ref/netcore50/zh-hant/System.Globalization.xml",
  6231. "ref/netstandard1.0/System.Globalization.dll",
  6232. "ref/netstandard1.0/System.Globalization.xml",
  6233. "ref/netstandard1.0/de/System.Globalization.xml",
  6234. "ref/netstandard1.0/es/System.Globalization.xml",
  6235. "ref/netstandard1.0/fr/System.Globalization.xml",
  6236. "ref/netstandard1.0/it/System.Globalization.xml",
  6237. "ref/netstandard1.0/ja/System.Globalization.xml",
  6238. "ref/netstandard1.0/ko/System.Globalization.xml",
  6239. "ref/netstandard1.0/ru/System.Globalization.xml",
  6240. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6241. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6242. "ref/netstandard1.3/System.Globalization.dll",
  6243. "ref/netstandard1.3/System.Globalization.xml",
  6244. "ref/netstandard1.3/de/System.Globalization.xml",
  6245. "ref/netstandard1.3/es/System.Globalization.xml",
  6246. "ref/netstandard1.3/fr/System.Globalization.xml",
  6247. "ref/netstandard1.3/it/System.Globalization.xml",
  6248. "ref/netstandard1.3/ja/System.Globalization.xml",
  6249. "ref/netstandard1.3/ko/System.Globalization.xml",
  6250. "ref/netstandard1.3/ru/System.Globalization.xml",
  6251. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6252. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6253. "ref/portable-net45+win8+wp8+wpa81/_._",
  6254. "ref/win8/_._",
  6255. "ref/wp80/_._",
  6256. "ref/wpa81/_._",
  6257. "ref/xamarinios10/_._",
  6258. "ref/xamarinmac20/_._",
  6259. "ref/xamarintvos10/_._",
  6260. "ref/xamarinwatchos10/_._",
  6261. "system.globalization.4.3.0.nupkg.sha512",
  6262. "system.globalization.nuspec"
  6263. ]
  6264. },
  6265. "System.Globalization.Calendars/4.3.0": {
  6266. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6267. "type": "package",
  6268. "path": "system.globalization.calendars/4.3.0",
  6269. "files": [
  6270. ".nupkg.metadata",
  6271. ".signature.p7s",
  6272. "ThirdPartyNotices.txt",
  6273. "dotnet_library_license.txt",
  6274. "lib/MonoAndroid10/_._",
  6275. "lib/MonoTouch10/_._",
  6276. "lib/net46/System.Globalization.Calendars.dll",
  6277. "lib/xamarinios10/_._",
  6278. "lib/xamarinmac20/_._",
  6279. "lib/xamarintvos10/_._",
  6280. "lib/xamarinwatchos10/_._",
  6281. "ref/MonoAndroid10/_._",
  6282. "ref/MonoTouch10/_._",
  6283. "ref/net46/System.Globalization.Calendars.dll",
  6284. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6285. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6286. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6287. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6288. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6289. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6290. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6291. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6292. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6293. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6294. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6295. "ref/xamarinios10/_._",
  6296. "ref/xamarinmac20/_._",
  6297. "ref/xamarintvos10/_._",
  6298. "ref/xamarinwatchos10/_._",
  6299. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6300. "system.globalization.calendars.nuspec"
  6301. ]
  6302. },
  6303. "System.Globalization.Extensions/4.3.0": {
  6304. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6305. "type": "package",
  6306. "path": "system.globalization.extensions/4.3.0",
  6307. "files": [
  6308. ".nupkg.metadata",
  6309. ".signature.p7s",
  6310. "ThirdPartyNotices.txt",
  6311. "dotnet_library_license.txt",
  6312. "lib/MonoAndroid10/_._",
  6313. "lib/MonoTouch10/_._",
  6314. "lib/net46/System.Globalization.Extensions.dll",
  6315. "lib/xamarinios10/_._",
  6316. "lib/xamarinmac20/_._",
  6317. "lib/xamarintvos10/_._",
  6318. "lib/xamarinwatchos10/_._",
  6319. "ref/MonoAndroid10/_._",
  6320. "ref/MonoTouch10/_._",
  6321. "ref/net46/System.Globalization.Extensions.dll",
  6322. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6323. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6324. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6325. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6326. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6327. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6328. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6329. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6330. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6331. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6332. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6333. "ref/xamarinios10/_._",
  6334. "ref/xamarinmac20/_._",
  6335. "ref/xamarintvos10/_._",
  6336. "ref/xamarinwatchos10/_._",
  6337. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6338. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6339. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6340. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6341. "system.globalization.extensions.nuspec"
  6342. ]
  6343. },
  6344. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  6345. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  6346. "type": "package",
  6347. "path": "system.identitymodel.tokens.jwt/5.6.0",
  6348. "files": [
  6349. ".nupkg.metadata",
  6350. ".signature.p7s",
  6351. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6352. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6353. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  6354. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  6355. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6356. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6357. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  6358. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  6359. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6360. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6361. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  6362. "system.identitymodel.tokens.jwt.nuspec"
  6363. ]
  6364. },
  6365. "System.IO/4.3.0": {
  6366. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6367. "type": "package",
  6368. "path": "system.io/4.3.0",
  6369. "files": [
  6370. ".nupkg.metadata",
  6371. ".signature.p7s",
  6372. "ThirdPartyNotices.txt",
  6373. "dotnet_library_license.txt",
  6374. "lib/MonoAndroid10/_._",
  6375. "lib/MonoTouch10/_._",
  6376. "lib/net45/_._",
  6377. "lib/net462/System.IO.dll",
  6378. "lib/portable-net45+win8+wp8+wpa81/_._",
  6379. "lib/win8/_._",
  6380. "lib/wp80/_._",
  6381. "lib/wpa81/_._",
  6382. "lib/xamarinios10/_._",
  6383. "lib/xamarinmac20/_._",
  6384. "lib/xamarintvos10/_._",
  6385. "lib/xamarinwatchos10/_._",
  6386. "ref/MonoAndroid10/_._",
  6387. "ref/MonoTouch10/_._",
  6388. "ref/net45/_._",
  6389. "ref/net462/System.IO.dll",
  6390. "ref/netcore50/System.IO.dll",
  6391. "ref/netcore50/System.IO.xml",
  6392. "ref/netcore50/de/System.IO.xml",
  6393. "ref/netcore50/es/System.IO.xml",
  6394. "ref/netcore50/fr/System.IO.xml",
  6395. "ref/netcore50/it/System.IO.xml",
  6396. "ref/netcore50/ja/System.IO.xml",
  6397. "ref/netcore50/ko/System.IO.xml",
  6398. "ref/netcore50/ru/System.IO.xml",
  6399. "ref/netcore50/zh-hans/System.IO.xml",
  6400. "ref/netcore50/zh-hant/System.IO.xml",
  6401. "ref/netstandard1.0/System.IO.dll",
  6402. "ref/netstandard1.0/System.IO.xml",
  6403. "ref/netstandard1.0/de/System.IO.xml",
  6404. "ref/netstandard1.0/es/System.IO.xml",
  6405. "ref/netstandard1.0/fr/System.IO.xml",
  6406. "ref/netstandard1.0/it/System.IO.xml",
  6407. "ref/netstandard1.0/ja/System.IO.xml",
  6408. "ref/netstandard1.0/ko/System.IO.xml",
  6409. "ref/netstandard1.0/ru/System.IO.xml",
  6410. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6411. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6412. "ref/netstandard1.3/System.IO.dll",
  6413. "ref/netstandard1.3/System.IO.xml",
  6414. "ref/netstandard1.3/de/System.IO.xml",
  6415. "ref/netstandard1.3/es/System.IO.xml",
  6416. "ref/netstandard1.3/fr/System.IO.xml",
  6417. "ref/netstandard1.3/it/System.IO.xml",
  6418. "ref/netstandard1.3/ja/System.IO.xml",
  6419. "ref/netstandard1.3/ko/System.IO.xml",
  6420. "ref/netstandard1.3/ru/System.IO.xml",
  6421. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6422. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6423. "ref/netstandard1.5/System.IO.dll",
  6424. "ref/netstandard1.5/System.IO.xml",
  6425. "ref/netstandard1.5/de/System.IO.xml",
  6426. "ref/netstandard1.5/es/System.IO.xml",
  6427. "ref/netstandard1.5/fr/System.IO.xml",
  6428. "ref/netstandard1.5/it/System.IO.xml",
  6429. "ref/netstandard1.5/ja/System.IO.xml",
  6430. "ref/netstandard1.5/ko/System.IO.xml",
  6431. "ref/netstandard1.5/ru/System.IO.xml",
  6432. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6433. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6434. "ref/portable-net45+win8+wp8+wpa81/_._",
  6435. "ref/win8/_._",
  6436. "ref/wp80/_._",
  6437. "ref/wpa81/_._",
  6438. "ref/xamarinios10/_._",
  6439. "ref/xamarinmac20/_._",
  6440. "ref/xamarintvos10/_._",
  6441. "ref/xamarinwatchos10/_._",
  6442. "system.io.4.3.0.nupkg.sha512",
  6443. "system.io.nuspec"
  6444. ]
  6445. },
  6446. "System.IO.Compression/4.3.0": {
  6447. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6448. "type": "package",
  6449. "path": "system.io.compression/4.3.0",
  6450. "files": [
  6451. ".nupkg.metadata",
  6452. ".signature.p7s",
  6453. "ThirdPartyNotices.txt",
  6454. "dotnet_library_license.txt",
  6455. "lib/MonoAndroid10/_._",
  6456. "lib/MonoTouch10/_._",
  6457. "lib/net45/_._",
  6458. "lib/net46/System.IO.Compression.dll",
  6459. "lib/portable-net45+win8+wpa81/_._",
  6460. "lib/win8/_._",
  6461. "lib/wpa81/_._",
  6462. "lib/xamarinios10/_._",
  6463. "lib/xamarinmac20/_._",
  6464. "lib/xamarintvos10/_._",
  6465. "lib/xamarinwatchos10/_._",
  6466. "ref/MonoAndroid10/_._",
  6467. "ref/MonoTouch10/_._",
  6468. "ref/net45/_._",
  6469. "ref/net46/System.IO.Compression.dll",
  6470. "ref/netcore50/System.IO.Compression.dll",
  6471. "ref/netcore50/System.IO.Compression.xml",
  6472. "ref/netcore50/de/System.IO.Compression.xml",
  6473. "ref/netcore50/es/System.IO.Compression.xml",
  6474. "ref/netcore50/fr/System.IO.Compression.xml",
  6475. "ref/netcore50/it/System.IO.Compression.xml",
  6476. "ref/netcore50/ja/System.IO.Compression.xml",
  6477. "ref/netcore50/ko/System.IO.Compression.xml",
  6478. "ref/netcore50/ru/System.IO.Compression.xml",
  6479. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6480. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6481. "ref/netstandard1.1/System.IO.Compression.dll",
  6482. "ref/netstandard1.1/System.IO.Compression.xml",
  6483. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6484. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6485. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6486. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6487. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6488. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6489. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6490. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6491. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6492. "ref/netstandard1.3/System.IO.Compression.dll",
  6493. "ref/netstandard1.3/System.IO.Compression.xml",
  6494. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6495. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6496. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6497. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6498. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6499. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6500. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6501. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6502. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6503. "ref/portable-net45+win8+wpa81/_._",
  6504. "ref/win8/_._",
  6505. "ref/wpa81/_._",
  6506. "ref/xamarinios10/_._",
  6507. "ref/xamarinmac20/_._",
  6508. "ref/xamarintvos10/_._",
  6509. "ref/xamarinwatchos10/_._",
  6510. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6511. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6512. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6513. "system.io.compression.4.3.0.nupkg.sha512",
  6514. "system.io.compression.nuspec"
  6515. ]
  6516. },
  6517. "System.IO.Compression.ZipFile/4.3.0": {
  6518. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6519. "type": "package",
  6520. "path": "system.io.compression.zipfile/4.3.0",
  6521. "files": [
  6522. ".nupkg.metadata",
  6523. ".signature.p7s",
  6524. "ThirdPartyNotices.txt",
  6525. "dotnet_library_license.txt",
  6526. "lib/MonoAndroid10/_._",
  6527. "lib/MonoTouch10/_._",
  6528. "lib/net46/System.IO.Compression.ZipFile.dll",
  6529. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6530. "lib/xamarinios10/_._",
  6531. "lib/xamarinmac20/_._",
  6532. "lib/xamarintvos10/_._",
  6533. "lib/xamarinwatchos10/_._",
  6534. "ref/MonoAndroid10/_._",
  6535. "ref/MonoTouch10/_._",
  6536. "ref/net46/System.IO.Compression.ZipFile.dll",
  6537. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6538. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6539. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6540. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6541. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6542. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6543. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6544. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6545. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6546. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6547. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6548. "ref/xamarinios10/_._",
  6549. "ref/xamarinmac20/_._",
  6550. "ref/xamarintvos10/_._",
  6551. "ref/xamarinwatchos10/_._",
  6552. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6553. "system.io.compression.zipfile.nuspec"
  6554. ]
  6555. },
  6556. "System.IO.FileSystem/4.3.0": {
  6557. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6558. "type": "package",
  6559. "path": "system.io.filesystem/4.3.0",
  6560. "files": [
  6561. ".nupkg.metadata",
  6562. ".signature.p7s",
  6563. "ThirdPartyNotices.txt",
  6564. "dotnet_library_license.txt",
  6565. "lib/MonoAndroid10/_._",
  6566. "lib/MonoTouch10/_._",
  6567. "lib/net46/System.IO.FileSystem.dll",
  6568. "lib/xamarinios10/_._",
  6569. "lib/xamarinmac20/_._",
  6570. "lib/xamarintvos10/_._",
  6571. "lib/xamarinwatchos10/_._",
  6572. "ref/MonoAndroid10/_._",
  6573. "ref/MonoTouch10/_._",
  6574. "ref/net46/System.IO.FileSystem.dll",
  6575. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6576. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6577. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6578. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6579. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6580. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6581. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6582. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6583. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6584. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6585. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6586. "ref/xamarinios10/_._",
  6587. "ref/xamarinmac20/_._",
  6588. "ref/xamarintvos10/_._",
  6589. "ref/xamarinwatchos10/_._",
  6590. "system.io.filesystem.4.3.0.nupkg.sha512",
  6591. "system.io.filesystem.nuspec"
  6592. ]
  6593. },
  6594. "System.IO.FileSystem.Primitives/4.3.0": {
  6595. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6596. "type": "package",
  6597. "path": "system.io.filesystem.primitives/4.3.0",
  6598. "files": [
  6599. ".nupkg.metadata",
  6600. ".signature.p7s",
  6601. "ThirdPartyNotices.txt",
  6602. "dotnet_library_license.txt",
  6603. "lib/MonoAndroid10/_._",
  6604. "lib/MonoTouch10/_._",
  6605. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6606. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6607. "lib/xamarinios10/_._",
  6608. "lib/xamarinmac20/_._",
  6609. "lib/xamarintvos10/_._",
  6610. "lib/xamarinwatchos10/_._",
  6611. "ref/MonoAndroid10/_._",
  6612. "ref/MonoTouch10/_._",
  6613. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6614. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6615. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6616. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6617. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6618. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6619. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6620. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6621. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6622. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6623. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6624. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6625. "ref/xamarinios10/_._",
  6626. "ref/xamarinmac20/_._",
  6627. "ref/xamarintvos10/_._",
  6628. "ref/xamarinwatchos10/_._",
  6629. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6630. "system.io.filesystem.primitives.nuspec"
  6631. ]
  6632. },
  6633. "System.Linq/4.3.0": {
  6634. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6635. "type": "package",
  6636. "path": "system.linq/4.3.0",
  6637. "files": [
  6638. ".nupkg.metadata",
  6639. ".signature.p7s",
  6640. "ThirdPartyNotices.txt",
  6641. "dotnet_library_license.txt",
  6642. "lib/MonoAndroid10/_._",
  6643. "lib/MonoTouch10/_._",
  6644. "lib/net45/_._",
  6645. "lib/net463/System.Linq.dll",
  6646. "lib/netcore50/System.Linq.dll",
  6647. "lib/netstandard1.6/System.Linq.dll",
  6648. "lib/portable-net45+win8+wp8+wpa81/_._",
  6649. "lib/win8/_._",
  6650. "lib/wp80/_._",
  6651. "lib/wpa81/_._",
  6652. "lib/xamarinios10/_._",
  6653. "lib/xamarinmac20/_._",
  6654. "lib/xamarintvos10/_._",
  6655. "lib/xamarinwatchos10/_._",
  6656. "ref/MonoAndroid10/_._",
  6657. "ref/MonoTouch10/_._",
  6658. "ref/net45/_._",
  6659. "ref/net463/System.Linq.dll",
  6660. "ref/netcore50/System.Linq.dll",
  6661. "ref/netcore50/System.Linq.xml",
  6662. "ref/netcore50/de/System.Linq.xml",
  6663. "ref/netcore50/es/System.Linq.xml",
  6664. "ref/netcore50/fr/System.Linq.xml",
  6665. "ref/netcore50/it/System.Linq.xml",
  6666. "ref/netcore50/ja/System.Linq.xml",
  6667. "ref/netcore50/ko/System.Linq.xml",
  6668. "ref/netcore50/ru/System.Linq.xml",
  6669. "ref/netcore50/zh-hans/System.Linq.xml",
  6670. "ref/netcore50/zh-hant/System.Linq.xml",
  6671. "ref/netstandard1.0/System.Linq.dll",
  6672. "ref/netstandard1.0/System.Linq.xml",
  6673. "ref/netstandard1.0/de/System.Linq.xml",
  6674. "ref/netstandard1.0/es/System.Linq.xml",
  6675. "ref/netstandard1.0/fr/System.Linq.xml",
  6676. "ref/netstandard1.0/it/System.Linq.xml",
  6677. "ref/netstandard1.0/ja/System.Linq.xml",
  6678. "ref/netstandard1.0/ko/System.Linq.xml",
  6679. "ref/netstandard1.0/ru/System.Linq.xml",
  6680. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6681. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6682. "ref/netstandard1.6/System.Linq.dll",
  6683. "ref/netstandard1.6/System.Linq.xml",
  6684. "ref/netstandard1.6/de/System.Linq.xml",
  6685. "ref/netstandard1.6/es/System.Linq.xml",
  6686. "ref/netstandard1.6/fr/System.Linq.xml",
  6687. "ref/netstandard1.6/it/System.Linq.xml",
  6688. "ref/netstandard1.6/ja/System.Linq.xml",
  6689. "ref/netstandard1.6/ko/System.Linq.xml",
  6690. "ref/netstandard1.6/ru/System.Linq.xml",
  6691. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6692. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6693. "ref/portable-net45+win8+wp8+wpa81/_._",
  6694. "ref/win8/_._",
  6695. "ref/wp80/_._",
  6696. "ref/wpa81/_._",
  6697. "ref/xamarinios10/_._",
  6698. "ref/xamarinmac20/_._",
  6699. "ref/xamarintvos10/_._",
  6700. "ref/xamarinwatchos10/_._",
  6701. "system.linq.4.3.0.nupkg.sha512",
  6702. "system.linq.nuspec"
  6703. ]
  6704. },
  6705. "System.Linq.Expressions/4.3.0": {
  6706. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6707. "type": "package",
  6708. "path": "system.linq.expressions/4.3.0",
  6709. "files": [
  6710. ".nupkg.metadata",
  6711. ".signature.p7s",
  6712. "ThirdPartyNotices.txt",
  6713. "dotnet_library_license.txt",
  6714. "lib/MonoAndroid10/_._",
  6715. "lib/MonoTouch10/_._",
  6716. "lib/net45/_._",
  6717. "lib/net463/System.Linq.Expressions.dll",
  6718. "lib/netcore50/System.Linq.Expressions.dll",
  6719. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6720. "lib/portable-net45+win8+wp8+wpa81/_._",
  6721. "lib/win8/_._",
  6722. "lib/wp80/_._",
  6723. "lib/wpa81/_._",
  6724. "lib/xamarinios10/_._",
  6725. "lib/xamarinmac20/_._",
  6726. "lib/xamarintvos10/_._",
  6727. "lib/xamarinwatchos10/_._",
  6728. "ref/MonoAndroid10/_._",
  6729. "ref/MonoTouch10/_._",
  6730. "ref/net45/_._",
  6731. "ref/net463/System.Linq.Expressions.dll",
  6732. "ref/netcore50/System.Linq.Expressions.dll",
  6733. "ref/netcore50/System.Linq.Expressions.xml",
  6734. "ref/netcore50/de/System.Linq.Expressions.xml",
  6735. "ref/netcore50/es/System.Linq.Expressions.xml",
  6736. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6737. "ref/netcore50/it/System.Linq.Expressions.xml",
  6738. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6739. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6740. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6741. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6742. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6743. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6744. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6745. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6746. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6747. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6748. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6749. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6750. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6751. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6752. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6753. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6754. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6755. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6756. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6757. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6758. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6759. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6760. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6761. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6762. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6763. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6764. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6765. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6766. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6767. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6768. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6769. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6770. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6771. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6772. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6773. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6774. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6775. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6776. "ref/portable-net45+win8+wp8+wpa81/_._",
  6777. "ref/win8/_._",
  6778. "ref/wp80/_._",
  6779. "ref/wpa81/_._",
  6780. "ref/xamarinios10/_._",
  6781. "ref/xamarinmac20/_._",
  6782. "ref/xamarintvos10/_._",
  6783. "ref/xamarinwatchos10/_._",
  6784. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6785. "system.linq.expressions.4.3.0.nupkg.sha512",
  6786. "system.linq.expressions.nuspec"
  6787. ]
  6788. },
  6789. "System.Management/5.0.0": {
  6790. "sha512": "MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==",
  6791. "type": "package",
  6792. "path": "system.management/5.0.0",
  6793. "files": [
  6794. ".nupkg.metadata",
  6795. ".signature.p7s",
  6796. "Icon.png",
  6797. "LICENSE.TXT",
  6798. "THIRD-PARTY-NOTICES.TXT",
  6799. "lib/net45/_._",
  6800. "lib/netstandard2.0/System.Management.dll",
  6801. "lib/netstandard2.0/System.Management.xml",
  6802. "ref/net45/_._",
  6803. "ref/netstandard2.0/System.Management.dll",
  6804. "ref/netstandard2.0/System.Management.xml",
  6805. "runtimes/win/lib/net45/_._",
  6806. "runtimes/win/lib/netcoreapp2.0/System.Management.dll",
  6807. "runtimes/win/lib/netcoreapp2.0/System.Management.xml",
  6808. "system.management.5.0.0.nupkg.sha512",
  6809. "system.management.nuspec",
  6810. "useSharedDesignerContext.txt",
  6811. "version.txt"
  6812. ]
  6813. },
  6814. "System.Net.Http/4.3.0": {
  6815. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6816. "type": "package",
  6817. "path": "system.net.http/4.3.0",
  6818. "files": [
  6819. ".nupkg.metadata",
  6820. ".signature.p7s",
  6821. "ThirdPartyNotices.txt",
  6822. "dotnet_library_license.txt",
  6823. "lib/Xamarinmac20/_._",
  6824. "lib/monoandroid10/_._",
  6825. "lib/monotouch10/_._",
  6826. "lib/net45/_._",
  6827. "lib/net46/System.Net.Http.dll",
  6828. "lib/portable-net45+win8+wpa81/_._",
  6829. "lib/win8/_._",
  6830. "lib/wpa81/_._",
  6831. "lib/xamarinios10/_._",
  6832. "lib/xamarintvos10/_._",
  6833. "lib/xamarinwatchos10/_._",
  6834. "ref/Xamarinmac20/_._",
  6835. "ref/monoandroid10/_._",
  6836. "ref/monotouch10/_._",
  6837. "ref/net45/_._",
  6838. "ref/net46/System.Net.Http.dll",
  6839. "ref/net46/System.Net.Http.xml",
  6840. "ref/net46/de/System.Net.Http.xml",
  6841. "ref/net46/es/System.Net.Http.xml",
  6842. "ref/net46/fr/System.Net.Http.xml",
  6843. "ref/net46/it/System.Net.Http.xml",
  6844. "ref/net46/ja/System.Net.Http.xml",
  6845. "ref/net46/ko/System.Net.Http.xml",
  6846. "ref/net46/ru/System.Net.Http.xml",
  6847. "ref/net46/zh-hans/System.Net.Http.xml",
  6848. "ref/net46/zh-hant/System.Net.Http.xml",
  6849. "ref/netcore50/System.Net.Http.dll",
  6850. "ref/netcore50/System.Net.Http.xml",
  6851. "ref/netcore50/de/System.Net.Http.xml",
  6852. "ref/netcore50/es/System.Net.Http.xml",
  6853. "ref/netcore50/fr/System.Net.Http.xml",
  6854. "ref/netcore50/it/System.Net.Http.xml",
  6855. "ref/netcore50/ja/System.Net.Http.xml",
  6856. "ref/netcore50/ko/System.Net.Http.xml",
  6857. "ref/netcore50/ru/System.Net.Http.xml",
  6858. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6859. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6860. "ref/netstandard1.1/System.Net.Http.dll",
  6861. "ref/netstandard1.1/System.Net.Http.xml",
  6862. "ref/netstandard1.1/de/System.Net.Http.xml",
  6863. "ref/netstandard1.1/es/System.Net.Http.xml",
  6864. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6865. "ref/netstandard1.1/it/System.Net.Http.xml",
  6866. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6867. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6868. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6869. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6870. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6871. "ref/netstandard1.3/System.Net.Http.dll",
  6872. "ref/netstandard1.3/System.Net.Http.xml",
  6873. "ref/netstandard1.3/de/System.Net.Http.xml",
  6874. "ref/netstandard1.3/es/System.Net.Http.xml",
  6875. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6876. "ref/netstandard1.3/it/System.Net.Http.xml",
  6877. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6878. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6879. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6880. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6881. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6882. "ref/portable-net45+win8+wpa81/_._",
  6883. "ref/win8/_._",
  6884. "ref/wpa81/_._",
  6885. "ref/xamarinios10/_._",
  6886. "ref/xamarintvos10/_._",
  6887. "ref/xamarinwatchos10/_._",
  6888. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6889. "runtimes/win/lib/net46/System.Net.Http.dll",
  6890. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6891. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6892. "system.net.http.4.3.0.nupkg.sha512",
  6893. "system.net.http.nuspec"
  6894. ]
  6895. },
  6896. "System.Net.Http.WinHttpHandler/4.4.0": {
  6897. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  6898. "type": "package",
  6899. "path": "system.net.http.winhttphandler/4.4.0",
  6900. "files": [
  6901. ".nupkg.metadata",
  6902. ".signature.p7s",
  6903. "LICENSE.TXT",
  6904. "THIRD-PARTY-NOTICES.TXT",
  6905. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  6906. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  6907. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6908. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6909. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6910. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  6911. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  6912. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  6913. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  6914. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  6915. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  6916. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  6917. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  6918. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  6919. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  6920. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6921. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  6922. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  6923. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  6924. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6925. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6926. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  6927. "system.net.http.winhttphandler.nuspec",
  6928. "useSharedDesignerContext.txt",
  6929. "version.txt"
  6930. ]
  6931. },
  6932. "System.Net.Primitives/4.3.0": {
  6933. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6934. "type": "package",
  6935. "path": "system.net.primitives/4.3.0",
  6936. "files": [
  6937. ".nupkg.metadata",
  6938. ".signature.p7s",
  6939. "ThirdPartyNotices.txt",
  6940. "dotnet_library_license.txt",
  6941. "lib/MonoAndroid10/_._",
  6942. "lib/MonoTouch10/_._",
  6943. "lib/net45/_._",
  6944. "lib/portable-net45+win8+wp8+wpa81/_._",
  6945. "lib/win8/_._",
  6946. "lib/wp80/_._",
  6947. "lib/wpa81/_._",
  6948. "lib/xamarinios10/_._",
  6949. "lib/xamarinmac20/_._",
  6950. "lib/xamarintvos10/_._",
  6951. "lib/xamarinwatchos10/_._",
  6952. "ref/MonoAndroid10/_._",
  6953. "ref/MonoTouch10/_._",
  6954. "ref/net45/_._",
  6955. "ref/netcore50/System.Net.Primitives.dll",
  6956. "ref/netcore50/System.Net.Primitives.xml",
  6957. "ref/netcore50/de/System.Net.Primitives.xml",
  6958. "ref/netcore50/es/System.Net.Primitives.xml",
  6959. "ref/netcore50/fr/System.Net.Primitives.xml",
  6960. "ref/netcore50/it/System.Net.Primitives.xml",
  6961. "ref/netcore50/ja/System.Net.Primitives.xml",
  6962. "ref/netcore50/ko/System.Net.Primitives.xml",
  6963. "ref/netcore50/ru/System.Net.Primitives.xml",
  6964. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6965. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6966. "ref/netstandard1.0/System.Net.Primitives.dll",
  6967. "ref/netstandard1.0/System.Net.Primitives.xml",
  6968. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6969. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6970. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6971. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6972. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6973. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6974. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6975. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6976. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6977. "ref/netstandard1.1/System.Net.Primitives.dll",
  6978. "ref/netstandard1.1/System.Net.Primitives.xml",
  6979. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6980. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6981. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6982. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6983. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6984. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6985. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6986. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6987. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6988. "ref/netstandard1.3/System.Net.Primitives.dll",
  6989. "ref/netstandard1.3/System.Net.Primitives.xml",
  6990. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6991. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6992. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6993. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6994. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6995. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6996. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6997. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6998. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6999. "ref/portable-net45+win8+wp8+wpa81/_._",
  7000. "ref/win8/_._",
  7001. "ref/wp80/_._",
  7002. "ref/wpa81/_._",
  7003. "ref/xamarinios10/_._",
  7004. "ref/xamarinmac20/_._",
  7005. "ref/xamarintvos10/_._",
  7006. "ref/xamarinwatchos10/_._",
  7007. "system.net.primitives.4.3.0.nupkg.sha512",
  7008. "system.net.primitives.nuspec"
  7009. ]
  7010. },
  7011. "System.Net.Requests/4.3.0": {
  7012. "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
  7013. "type": "package",
  7014. "path": "system.net.requests/4.3.0",
  7015. "files": [
  7016. ".nupkg.metadata",
  7017. ".signature.p7s",
  7018. "ThirdPartyNotices.txt",
  7019. "dotnet_library_license.txt",
  7020. "lib/MonoAndroid10/_._",
  7021. "lib/MonoTouch10/_._",
  7022. "lib/net45/_._",
  7023. "lib/portable-net45+win8+wp8+wpa81/_._",
  7024. "lib/win8/_._",
  7025. "lib/wp80/_._",
  7026. "lib/wpa81/_._",
  7027. "lib/xamarinios10/_._",
  7028. "lib/xamarinmac20/_._",
  7029. "lib/xamarintvos10/_._",
  7030. "lib/xamarinwatchos10/_._",
  7031. "ref/MonoAndroid10/_._",
  7032. "ref/MonoTouch10/_._",
  7033. "ref/net45/_._",
  7034. "ref/net46/_._",
  7035. "ref/netcore50/System.Net.Requests.dll",
  7036. "ref/netcore50/System.Net.Requests.xml",
  7037. "ref/netcore50/de/System.Net.Requests.xml",
  7038. "ref/netcore50/es/System.Net.Requests.xml",
  7039. "ref/netcore50/fr/System.Net.Requests.xml",
  7040. "ref/netcore50/it/System.Net.Requests.xml",
  7041. "ref/netcore50/ja/System.Net.Requests.xml",
  7042. "ref/netcore50/ko/System.Net.Requests.xml",
  7043. "ref/netcore50/ru/System.Net.Requests.xml",
  7044. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  7045. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  7046. "ref/netstandard1.0/System.Net.Requests.dll",
  7047. "ref/netstandard1.0/System.Net.Requests.xml",
  7048. "ref/netstandard1.0/de/System.Net.Requests.xml",
  7049. "ref/netstandard1.0/es/System.Net.Requests.xml",
  7050. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  7051. "ref/netstandard1.0/it/System.Net.Requests.xml",
  7052. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  7053. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  7054. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  7055. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  7056. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  7057. "ref/netstandard1.1/System.Net.Requests.dll",
  7058. "ref/netstandard1.1/System.Net.Requests.xml",
  7059. "ref/netstandard1.1/de/System.Net.Requests.xml",
  7060. "ref/netstandard1.1/es/System.Net.Requests.xml",
  7061. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  7062. "ref/netstandard1.1/it/System.Net.Requests.xml",
  7063. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  7064. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  7065. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  7066. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  7067. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  7068. "ref/netstandard1.3/System.Net.Requests.dll",
  7069. "ref/netstandard1.3/System.Net.Requests.xml",
  7070. "ref/netstandard1.3/de/System.Net.Requests.xml",
  7071. "ref/netstandard1.3/es/System.Net.Requests.xml",
  7072. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  7073. "ref/netstandard1.3/it/System.Net.Requests.xml",
  7074. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  7075. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  7076. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  7077. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  7078. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  7079. "ref/portable-net45+win8+wp8+wpa81/_._",
  7080. "ref/win8/_._",
  7081. "ref/wp80/_._",
  7082. "ref/wpa81/_._",
  7083. "ref/xamarinios10/_._",
  7084. "ref/xamarinmac20/_._",
  7085. "ref/xamarintvos10/_._",
  7086. "ref/xamarinwatchos10/_._",
  7087. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  7088. "runtimes/win/lib/net46/_._",
  7089. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll",
  7090. "system.net.requests.4.3.0.nupkg.sha512",
  7091. "system.net.requests.nuspec"
  7092. ]
  7093. },
  7094. "System.Net.Sockets/4.3.0": {
  7095. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7096. "type": "package",
  7097. "path": "system.net.sockets/4.3.0",
  7098. "files": [
  7099. ".nupkg.metadata",
  7100. ".signature.p7s",
  7101. "ThirdPartyNotices.txt",
  7102. "dotnet_library_license.txt",
  7103. "lib/MonoAndroid10/_._",
  7104. "lib/MonoTouch10/_._",
  7105. "lib/net46/System.Net.Sockets.dll",
  7106. "lib/xamarinios10/_._",
  7107. "lib/xamarinmac20/_._",
  7108. "lib/xamarintvos10/_._",
  7109. "lib/xamarinwatchos10/_._",
  7110. "ref/MonoAndroid10/_._",
  7111. "ref/MonoTouch10/_._",
  7112. "ref/net46/System.Net.Sockets.dll",
  7113. "ref/netstandard1.3/System.Net.Sockets.dll",
  7114. "ref/netstandard1.3/System.Net.Sockets.xml",
  7115. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7116. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7117. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7118. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7119. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7120. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7121. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7122. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7123. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7124. "ref/xamarinios10/_._",
  7125. "ref/xamarinmac20/_._",
  7126. "ref/xamarintvos10/_._",
  7127. "ref/xamarinwatchos10/_._",
  7128. "system.net.sockets.4.3.0.nupkg.sha512",
  7129. "system.net.sockets.nuspec"
  7130. ]
  7131. },
  7132. "System.Net.WebHeaderCollection/4.3.0": {
  7133. "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
  7134. "type": "package",
  7135. "path": "system.net.webheadercollection/4.3.0",
  7136. "files": [
  7137. ".nupkg.metadata",
  7138. ".signature.p7s",
  7139. "ThirdPartyNotices.txt",
  7140. "dotnet_library_license.txt",
  7141. "lib/MonoAndroid10/_._",
  7142. "lib/MonoTouch10/_._",
  7143. "lib/net46/_._",
  7144. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7145. "lib/xamarinios10/_._",
  7146. "lib/xamarinmac20/_._",
  7147. "lib/xamarintvos10/_._",
  7148. "lib/xamarinwatchos10/_._",
  7149. "ref/MonoAndroid10/_._",
  7150. "ref/MonoTouch10/_._",
  7151. "ref/net46/_._",
  7152. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7153. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7154. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7155. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7156. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7157. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7158. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7159. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7160. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7161. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7162. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7163. "ref/xamarinios10/_._",
  7164. "ref/xamarinmac20/_._",
  7165. "ref/xamarintvos10/_._",
  7166. "ref/xamarinwatchos10/_._",
  7167. "system.net.webheadercollection.4.3.0.nupkg.sha512",
  7168. "system.net.webheadercollection.nuspec"
  7169. ]
  7170. },
  7171. "System.ObjectModel/4.3.0": {
  7172. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7173. "type": "package",
  7174. "path": "system.objectmodel/4.3.0",
  7175. "files": [
  7176. ".nupkg.metadata",
  7177. ".signature.p7s",
  7178. "ThirdPartyNotices.txt",
  7179. "dotnet_library_license.txt",
  7180. "lib/MonoAndroid10/_._",
  7181. "lib/MonoTouch10/_._",
  7182. "lib/net45/_._",
  7183. "lib/netcore50/System.ObjectModel.dll",
  7184. "lib/netstandard1.3/System.ObjectModel.dll",
  7185. "lib/portable-net45+win8+wp8+wpa81/_._",
  7186. "lib/win8/_._",
  7187. "lib/wp80/_._",
  7188. "lib/wpa81/_._",
  7189. "lib/xamarinios10/_._",
  7190. "lib/xamarinmac20/_._",
  7191. "lib/xamarintvos10/_._",
  7192. "lib/xamarinwatchos10/_._",
  7193. "ref/MonoAndroid10/_._",
  7194. "ref/MonoTouch10/_._",
  7195. "ref/net45/_._",
  7196. "ref/netcore50/System.ObjectModel.dll",
  7197. "ref/netcore50/System.ObjectModel.xml",
  7198. "ref/netcore50/de/System.ObjectModel.xml",
  7199. "ref/netcore50/es/System.ObjectModel.xml",
  7200. "ref/netcore50/fr/System.ObjectModel.xml",
  7201. "ref/netcore50/it/System.ObjectModel.xml",
  7202. "ref/netcore50/ja/System.ObjectModel.xml",
  7203. "ref/netcore50/ko/System.ObjectModel.xml",
  7204. "ref/netcore50/ru/System.ObjectModel.xml",
  7205. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7206. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7207. "ref/netstandard1.0/System.ObjectModel.dll",
  7208. "ref/netstandard1.0/System.ObjectModel.xml",
  7209. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7210. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7211. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7212. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7213. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7214. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7215. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7216. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7217. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7218. "ref/netstandard1.3/System.ObjectModel.dll",
  7219. "ref/netstandard1.3/System.ObjectModel.xml",
  7220. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7221. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7222. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7223. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7224. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7225. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7226. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7227. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7228. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7229. "ref/portable-net45+win8+wp8+wpa81/_._",
  7230. "ref/win8/_._",
  7231. "ref/wp80/_._",
  7232. "ref/wpa81/_._",
  7233. "ref/xamarinios10/_._",
  7234. "ref/xamarinmac20/_._",
  7235. "ref/xamarintvos10/_._",
  7236. "ref/xamarinwatchos10/_._",
  7237. "system.objectmodel.4.3.0.nupkg.sha512",
  7238. "system.objectmodel.nuspec"
  7239. ]
  7240. },
  7241. "System.Private.ServiceModel/4.4.4": {
  7242. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  7243. "type": "package",
  7244. "path": "system.private.servicemodel/4.4.4",
  7245. "files": [
  7246. ".nupkg.metadata",
  7247. ".signature.p7s",
  7248. "LICENSE.TXT",
  7249. "THIRD-PARTY-NOTICES.TXT",
  7250. "ref/netstandard/_._",
  7251. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7252. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7253. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  7254. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7255. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7256. "system.private.servicemodel.4.4.4.nupkg.sha512",
  7257. "system.private.servicemodel.nuspec",
  7258. "version.txt"
  7259. ]
  7260. },
  7261. "System.Reflection/4.3.0": {
  7262. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7263. "type": "package",
  7264. "path": "system.reflection/4.3.0",
  7265. "files": [
  7266. ".nupkg.metadata",
  7267. ".signature.p7s",
  7268. "ThirdPartyNotices.txt",
  7269. "dotnet_library_license.txt",
  7270. "lib/MonoAndroid10/_._",
  7271. "lib/MonoTouch10/_._",
  7272. "lib/net45/_._",
  7273. "lib/net462/System.Reflection.dll",
  7274. "lib/portable-net45+win8+wp8+wpa81/_._",
  7275. "lib/win8/_._",
  7276. "lib/wp80/_._",
  7277. "lib/wpa81/_._",
  7278. "lib/xamarinios10/_._",
  7279. "lib/xamarinmac20/_._",
  7280. "lib/xamarintvos10/_._",
  7281. "lib/xamarinwatchos10/_._",
  7282. "ref/MonoAndroid10/_._",
  7283. "ref/MonoTouch10/_._",
  7284. "ref/net45/_._",
  7285. "ref/net462/System.Reflection.dll",
  7286. "ref/netcore50/System.Reflection.dll",
  7287. "ref/netcore50/System.Reflection.xml",
  7288. "ref/netcore50/de/System.Reflection.xml",
  7289. "ref/netcore50/es/System.Reflection.xml",
  7290. "ref/netcore50/fr/System.Reflection.xml",
  7291. "ref/netcore50/it/System.Reflection.xml",
  7292. "ref/netcore50/ja/System.Reflection.xml",
  7293. "ref/netcore50/ko/System.Reflection.xml",
  7294. "ref/netcore50/ru/System.Reflection.xml",
  7295. "ref/netcore50/zh-hans/System.Reflection.xml",
  7296. "ref/netcore50/zh-hant/System.Reflection.xml",
  7297. "ref/netstandard1.0/System.Reflection.dll",
  7298. "ref/netstandard1.0/System.Reflection.xml",
  7299. "ref/netstandard1.0/de/System.Reflection.xml",
  7300. "ref/netstandard1.0/es/System.Reflection.xml",
  7301. "ref/netstandard1.0/fr/System.Reflection.xml",
  7302. "ref/netstandard1.0/it/System.Reflection.xml",
  7303. "ref/netstandard1.0/ja/System.Reflection.xml",
  7304. "ref/netstandard1.0/ko/System.Reflection.xml",
  7305. "ref/netstandard1.0/ru/System.Reflection.xml",
  7306. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7307. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7308. "ref/netstandard1.3/System.Reflection.dll",
  7309. "ref/netstandard1.3/System.Reflection.xml",
  7310. "ref/netstandard1.3/de/System.Reflection.xml",
  7311. "ref/netstandard1.3/es/System.Reflection.xml",
  7312. "ref/netstandard1.3/fr/System.Reflection.xml",
  7313. "ref/netstandard1.3/it/System.Reflection.xml",
  7314. "ref/netstandard1.3/ja/System.Reflection.xml",
  7315. "ref/netstandard1.3/ko/System.Reflection.xml",
  7316. "ref/netstandard1.3/ru/System.Reflection.xml",
  7317. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7318. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7319. "ref/netstandard1.5/System.Reflection.dll",
  7320. "ref/netstandard1.5/System.Reflection.xml",
  7321. "ref/netstandard1.5/de/System.Reflection.xml",
  7322. "ref/netstandard1.5/es/System.Reflection.xml",
  7323. "ref/netstandard1.5/fr/System.Reflection.xml",
  7324. "ref/netstandard1.5/it/System.Reflection.xml",
  7325. "ref/netstandard1.5/ja/System.Reflection.xml",
  7326. "ref/netstandard1.5/ko/System.Reflection.xml",
  7327. "ref/netstandard1.5/ru/System.Reflection.xml",
  7328. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7329. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7330. "ref/portable-net45+win8+wp8+wpa81/_._",
  7331. "ref/win8/_._",
  7332. "ref/wp80/_._",
  7333. "ref/wpa81/_._",
  7334. "ref/xamarinios10/_._",
  7335. "ref/xamarinmac20/_._",
  7336. "ref/xamarintvos10/_._",
  7337. "ref/xamarinwatchos10/_._",
  7338. "system.reflection.4.3.0.nupkg.sha512",
  7339. "system.reflection.nuspec"
  7340. ]
  7341. },
  7342. "System.Reflection.DispatchProxy/4.4.0": {
  7343. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  7344. "type": "package",
  7345. "path": "system.reflection.dispatchproxy/4.4.0",
  7346. "files": [
  7347. ".nupkg.metadata",
  7348. ".signature.p7s",
  7349. "LICENSE.TXT",
  7350. "THIRD-PARTY-NOTICES.TXT",
  7351. "lib/MonoAndroid10/_._",
  7352. "lib/MonoTouch10/_._",
  7353. "lib/net461/System.Reflection.DispatchProxy.dll",
  7354. "lib/netcoreapp2.0/_._",
  7355. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7356. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7357. "lib/xamarinios10/_._",
  7358. "lib/xamarinmac20/_._",
  7359. "lib/xamarintvos10/_._",
  7360. "lib/xamarinwatchos10/_._",
  7361. "ref/MonoAndroid10/_._",
  7362. "ref/MonoTouch10/_._",
  7363. "ref/netcoreapp2.0/_._",
  7364. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7365. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  7366. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  7367. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  7368. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  7369. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  7370. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  7371. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  7372. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  7373. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  7374. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  7375. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7376. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  7377. "ref/xamarinios10/_._",
  7378. "ref/xamarinmac20/_._",
  7379. "ref/xamarintvos10/_._",
  7380. "ref/xamarinwatchos10/_._",
  7381. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  7382. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  7383. "system.reflection.dispatchproxy.nuspec",
  7384. "useSharedDesignerContext.txt",
  7385. "version.txt"
  7386. ]
  7387. },
  7388. "System.Reflection.Emit/4.3.0": {
  7389. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7390. "type": "package",
  7391. "path": "system.reflection.emit/4.3.0",
  7392. "files": [
  7393. ".nupkg.metadata",
  7394. ".signature.p7s",
  7395. "ThirdPartyNotices.txt",
  7396. "dotnet_library_license.txt",
  7397. "lib/MonoAndroid10/_._",
  7398. "lib/monotouch10/_._",
  7399. "lib/net45/_._",
  7400. "lib/netcore50/System.Reflection.Emit.dll",
  7401. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7402. "lib/xamarinios10/_._",
  7403. "lib/xamarinmac20/_._",
  7404. "lib/xamarintvos10/_._",
  7405. "lib/xamarinwatchos10/_._",
  7406. "ref/MonoAndroid10/_._",
  7407. "ref/net45/_._",
  7408. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7409. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7410. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7411. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7412. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7413. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7414. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7415. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7416. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7417. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7418. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7419. "ref/xamarinmac20/_._",
  7420. "system.reflection.emit.4.3.0.nupkg.sha512",
  7421. "system.reflection.emit.nuspec"
  7422. ]
  7423. },
  7424. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7425. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7426. "type": "package",
  7427. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7428. "files": [
  7429. ".nupkg.metadata",
  7430. ".signature.p7s",
  7431. "ThirdPartyNotices.txt",
  7432. "dotnet_library_license.txt",
  7433. "lib/MonoAndroid10/_._",
  7434. "lib/MonoTouch10/_._",
  7435. "lib/net45/_._",
  7436. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7437. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7438. "lib/portable-net45+wp8/_._",
  7439. "lib/wp80/_._",
  7440. "lib/xamarinios10/_._",
  7441. "lib/xamarinmac20/_._",
  7442. "lib/xamarintvos10/_._",
  7443. "lib/xamarinwatchos10/_._",
  7444. "ref/MonoAndroid10/_._",
  7445. "ref/MonoTouch10/_._",
  7446. "ref/net45/_._",
  7447. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7448. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7449. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7450. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7451. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7452. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7453. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7454. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7455. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7456. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7457. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7458. "ref/portable-net45+wp8/_._",
  7459. "ref/wp80/_._",
  7460. "ref/xamarinios10/_._",
  7461. "ref/xamarinmac20/_._",
  7462. "ref/xamarintvos10/_._",
  7463. "ref/xamarinwatchos10/_._",
  7464. "runtimes/aot/lib/netcore50/_._",
  7465. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7466. "system.reflection.emit.ilgeneration.nuspec"
  7467. ]
  7468. },
  7469. "System.Reflection.Emit.Lightweight/4.3.0": {
  7470. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7471. "type": "package",
  7472. "path": "system.reflection.emit.lightweight/4.3.0",
  7473. "files": [
  7474. ".nupkg.metadata",
  7475. ".signature.p7s",
  7476. "ThirdPartyNotices.txt",
  7477. "dotnet_library_license.txt",
  7478. "lib/MonoAndroid10/_._",
  7479. "lib/MonoTouch10/_._",
  7480. "lib/net45/_._",
  7481. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7482. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7483. "lib/portable-net45+wp8/_._",
  7484. "lib/wp80/_._",
  7485. "lib/xamarinios10/_._",
  7486. "lib/xamarinmac20/_._",
  7487. "lib/xamarintvos10/_._",
  7488. "lib/xamarinwatchos10/_._",
  7489. "ref/MonoAndroid10/_._",
  7490. "ref/MonoTouch10/_._",
  7491. "ref/net45/_._",
  7492. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7493. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7494. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7495. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7496. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7497. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7498. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7499. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7500. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7501. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7502. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7503. "ref/portable-net45+wp8/_._",
  7504. "ref/wp80/_._",
  7505. "ref/xamarinios10/_._",
  7506. "ref/xamarinmac20/_._",
  7507. "ref/xamarintvos10/_._",
  7508. "ref/xamarinwatchos10/_._",
  7509. "runtimes/aot/lib/netcore50/_._",
  7510. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7511. "system.reflection.emit.lightweight.nuspec"
  7512. ]
  7513. },
  7514. "System.Reflection.Extensions/4.3.0": {
  7515. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7516. "type": "package",
  7517. "path": "system.reflection.extensions/4.3.0",
  7518. "files": [
  7519. ".nupkg.metadata",
  7520. ".signature.p7s",
  7521. "ThirdPartyNotices.txt",
  7522. "dotnet_library_license.txt",
  7523. "lib/MonoAndroid10/_._",
  7524. "lib/MonoTouch10/_._",
  7525. "lib/net45/_._",
  7526. "lib/portable-net45+win8+wp8+wpa81/_._",
  7527. "lib/win8/_._",
  7528. "lib/wp80/_._",
  7529. "lib/wpa81/_._",
  7530. "lib/xamarinios10/_._",
  7531. "lib/xamarinmac20/_._",
  7532. "lib/xamarintvos10/_._",
  7533. "lib/xamarinwatchos10/_._",
  7534. "ref/MonoAndroid10/_._",
  7535. "ref/MonoTouch10/_._",
  7536. "ref/net45/_._",
  7537. "ref/netcore50/System.Reflection.Extensions.dll",
  7538. "ref/netcore50/System.Reflection.Extensions.xml",
  7539. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7540. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7541. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7542. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7543. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7544. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7545. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7546. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7547. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7548. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7549. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7550. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7551. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7552. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7553. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7554. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7555. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7556. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7557. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7558. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7559. "ref/portable-net45+win8+wp8+wpa81/_._",
  7560. "ref/win8/_._",
  7561. "ref/wp80/_._",
  7562. "ref/wpa81/_._",
  7563. "ref/xamarinios10/_._",
  7564. "ref/xamarinmac20/_._",
  7565. "ref/xamarintvos10/_._",
  7566. "ref/xamarinwatchos10/_._",
  7567. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7568. "system.reflection.extensions.nuspec"
  7569. ]
  7570. },
  7571. "System.Reflection.Primitives/4.3.0": {
  7572. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7573. "type": "package",
  7574. "path": "system.reflection.primitives/4.3.0",
  7575. "files": [
  7576. ".nupkg.metadata",
  7577. ".signature.p7s",
  7578. "ThirdPartyNotices.txt",
  7579. "dotnet_library_license.txt",
  7580. "lib/MonoAndroid10/_._",
  7581. "lib/MonoTouch10/_._",
  7582. "lib/net45/_._",
  7583. "lib/portable-net45+win8+wp8+wpa81/_._",
  7584. "lib/win8/_._",
  7585. "lib/wp80/_._",
  7586. "lib/wpa81/_._",
  7587. "lib/xamarinios10/_._",
  7588. "lib/xamarinmac20/_._",
  7589. "lib/xamarintvos10/_._",
  7590. "lib/xamarinwatchos10/_._",
  7591. "ref/MonoAndroid10/_._",
  7592. "ref/MonoTouch10/_._",
  7593. "ref/net45/_._",
  7594. "ref/netcore50/System.Reflection.Primitives.dll",
  7595. "ref/netcore50/System.Reflection.Primitives.xml",
  7596. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7597. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7598. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7599. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7600. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7601. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7602. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7603. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7604. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7605. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7606. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7607. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7608. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7609. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7610. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7611. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7612. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7613. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7614. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7615. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7616. "ref/portable-net45+win8+wp8+wpa81/_._",
  7617. "ref/win8/_._",
  7618. "ref/wp80/_._",
  7619. "ref/wpa81/_._",
  7620. "ref/xamarinios10/_._",
  7621. "ref/xamarinmac20/_._",
  7622. "ref/xamarintvos10/_._",
  7623. "ref/xamarinwatchos10/_._",
  7624. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7625. "system.reflection.primitives.nuspec"
  7626. ]
  7627. },
  7628. "System.Reflection.TypeExtensions/4.7.0": {
  7629. "sha512": "VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
  7630. "type": "package",
  7631. "path": "system.reflection.typeextensions/4.7.0",
  7632. "files": [
  7633. ".nupkg.metadata",
  7634. ".signature.p7s",
  7635. "LICENSE.TXT",
  7636. "THIRD-PARTY-NOTICES.TXT",
  7637. "lib/MonoAndroid10/_._",
  7638. "lib/MonoTouch10/_._",
  7639. "lib/net46/System.Reflection.TypeExtensions.dll",
  7640. "lib/net461/System.Reflection.TypeExtensions.dll",
  7641. "lib/net461/System.Reflection.TypeExtensions.xml",
  7642. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7643. "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll",
  7644. "lib/netcoreapp2.0/_._",
  7645. "lib/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7646. "lib/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7647. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7648. "lib/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7649. "lib/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7650. "lib/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7651. "lib/uap10.0.16299/_._",
  7652. "lib/xamarinios10/_._",
  7653. "lib/xamarinmac20/_._",
  7654. "lib/xamarintvos10/_._",
  7655. "lib/xamarinwatchos10/_._",
  7656. "ref/MonoAndroid10/_._",
  7657. "ref/MonoTouch10/_._",
  7658. "ref/net46/System.Reflection.TypeExtensions.dll",
  7659. "ref/net461/System.Reflection.TypeExtensions.dll",
  7660. "ref/net461/System.Reflection.TypeExtensions.xml",
  7661. "ref/net472/System.Reflection.TypeExtensions.dll",
  7662. "ref/net472/System.Reflection.TypeExtensions.xml",
  7663. "ref/netcoreapp2.0/_._",
  7664. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7665. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7666. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7667. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7668. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7669. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7670. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7671. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7672. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7673. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7674. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7675. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7676. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7677. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7678. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7679. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7680. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7681. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7682. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7683. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7684. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7685. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7686. "ref/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7687. "ref/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7688. "ref/uap10.0.16299/_._",
  7689. "ref/xamarinios10/_._",
  7690. "ref/xamarinmac20/_._",
  7691. "ref/xamarintvos10/_._",
  7692. "ref/xamarinwatchos10/_._",
  7693. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7694. "runtimes/aot/lib/uap10.0.16299/_._",
  7695. "system.reflection.typeextensions.4.7.0.nupkg.sha512",
  7696. "system.reflection.typeextensions.nuspec",
  7697. "useSharedDesignerContext.txt",
  7698. "version.txt"
  7699. ]
  7700. },
  7701. "System.Resources.ResourceManager/4.3.0": {
  7702. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7703. "type": "package",
  7704. "path": "system.resources.resourcemanager/4.3.0",
  7705. "files": [
  7706. ".nupkg.metadata",
  7707. ".signature.p7s",
  7708. "ThirdPartyNotices.txt",
  7709. "dotnet_library_license.txt",
  7710. "lib/MonoAndroid10/_._",
  7711. "lib/MonoTouch10/_._",
  7712. "lib/net45/_._",
  7713. "lib/portable-net45+win8+wp8+wpa81/_._",
  7714. "lib/win8/_._",
  7715. "lib/wp80/_._",
  7716. "lib/wpa81/_._",
  7717. "lib/xamarinios10/_._",
  7718. "lib/xamarinmac20/_._",
  7719. "lib/xamarintvos10/_._",
  7720. "lib/xamarinwatchos10/_._",
  7721. "ref/MonoAndroid10/_._",
  7722. "ref/MonoTouch10/_._",
  7723. "ref/net45/_._",
  7724. "ref/netcore50/System.Resources.ResourceManager.dll",
  7725. "ref/netcore50/System.Resources.ResourceManager.xml",
  7726. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7727. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7728. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7729. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7730. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7731. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7732. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7733. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7734. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7735. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7736. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7737. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7738. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7739. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7740. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7741. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7742. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7743. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7744. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7745. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7746. "ref/portable-net45+win8+wp8+wpa81/_._",
  7747. "ref/win8/_._",
  7748. "ref/wp80/_._",
  7749. "ref/wpa81/_._",
  7750. "ref/xamarinios10/_._",
  7751. "ref/xamarinmac20/_._",
  7752. "ref/xamarintvos10/_._",
  7753. "ref/xamarinwatchos10/_._",
  7754. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7755. "system.resources.resourcemanager.nuspec"
  7756. ]
  7757. },
  7758. "System.Runtime/4.3.0": {
  7759. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7760. "type": "package",
  7761. "path": "system.runtime/4.3.0",
  7762. "files": [
  7763. ".nupkg.metadata",
  7764. ".signature.p7s",
  7765. "ThirdPartyNotices.txt",
  7766. "dotnet_library_license.txt",
  7767. "lib/MonoAndroid10/_._",
  7768. "lib/MonoTouch10/_._",
  7769. "lib/net45/_._",
  7770. "lib/net462/System.Runtime.dll",
  7771. "lib/portable-net45+win8+wp80+wpa81/_._",
  7772. "lib/win8/_._",
  7773. "lib/wp80/_._",
  7774. "lib/wpa81/_._",
  7775. "lib/xamarinios10/_._",
  7776. "lib/xamarinmac20/_._",
  7777. "lib/xamarintvos10/_._",
  7778. "lib/xamarinwatchos10/_._",
  7779. "ref/MonoAndroid10/_._",
  7780. "ref/MonoTouch10/_._",
  7781. "ref/net45/_._",
  7782. "ref/net462/System.Runtime.dll",
  7783. "ref/netcore50/System.Runtime.dll",
  7784. "ref/netcore50/System.Runtime.xml",
  7785. "ref/netcore50/de/System.Runtime.xml",
  7786. "ref/netcore50/es/System.Runtime.xml",
  7787. "ref/netcore50/fr/System.Runtime.xml",
  7788. "ref/netcore50/it/System.Runtime.xml",
  7789. "ref/netcore50/ja/System.Runtime.xml",
  7790. "ref/netcore50/ko/System.Runtime.xml",
  7791. "ref/netcore50/ru/System.Runtime.xml",
  7792. "ref/netcore50/zh-hans/System.Runtime.xml",
  7793. "ref/netcore50/zh-hant/System.Runtime.xml",
  7794. "ref/netstandard1.0/System.Runtime.dll",
  7795. "ref/netstandard1.0/System.Runtime.xml",
  7796. "ref/netstandard1.0/de/System.Runtime.xml",
  7797. "ref/netstandard1.0/es/System.Runtime.xml",
  7798. "ref/netstandard1.0/fr/System.Runtime.xml",
  7799. "ref/netstandard1.0/it/System.Runtime.xml",
  7800. "ref/netstandard1.0/ja/System.Runtime.xml",
  7801. "ref/netstandard1.0/ko/System.Runtime.xml",
  7802. "ref/netstandard1.0/ru/System.Runtime.xml",
  7803. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7804. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7805. "ref/netstandard1.2/System.Runtime.dll",
  7806. "ref/netstandard1.2/System.Runtime.xml",
  7807. "ref/netstandard1.2/de/System.Runtime.xml",
  7808. "ref/netstandard1.2/es/System.Runtime.xml",
  7809. "ref/netstandard1.2/fr/System.Runtime.xml",
  7810. "ref/netstandard1.2/it/System.Runtime.xml",
  7811. "ref/netstandard1.2/ja/System.Runtime.xml",
  7812. "ref/netstandard1.2/ko/System.Runtime.xml",
  7813. "ref/netstandard1.2/ru/System.Runtime.xml",
  7814. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7815. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7816. "ref/netstandard1.3/System.Runtime.dll",
  7817. "ref/netstandard1.3/System.Runtime.xml",
  7818. "ref/netstandard1.3/de/System.Runtime.xml",
  7819. "ref/netstandard1.3/es/System.Runtime.xml",
  7820. "ref/netstandard1.3/fr/System.Runtime.xml",
  7821. "ref/netstandard1.3/it/System.Runtime.xml",
  7822. "ref/netstandard1.3/ja/System.Runtime.xml",
  7823. "ref/netstandard1.3/ko/System.Runtime.xml",
  7824. "ref/netstandard1.3/ru/System.Runtime.xml",
  7825. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7826. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7827. "ref/netstandard1.5/System.Runtime.dll",
  7828. "ref/netstandard1.5/System.Runtime.xml",
  7829. "ref/netstandard1.5/de/System.Runtime.xml",
  7830. "ref/netstandard1.5/es/System.Runtime.xml",
  7831. "ref/netstandard1.5/fr/System.Runtime.xml",
  7832. "ref/netstandard1.5/it/System.Runtime.xml",
  7833. "ref/netstandard1.5/ja/System.Runtime.xml",
  7834. "ref/netstandard1.5/ko/System.Runtime.xml",
  7835. "ref/netstandard1.5/ru/System.Runtime.xml",
  7836. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7837. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7838. "ref/portable-net45+win8+wp80+wpa81/_._",
  7839. "ref/win8/_._",
  7840. "ref/wp80/_._",
  7841. "ref/wpa81/_._",
  7842. "ref/xamarinios10/_._",
  7843. "ref/xamarinmac20/_._",
  7844. "ref/xamarintvos10/_._",
  7845. "ref/xamarinwatchos10/_._",
  7846. "system.runtime.4.3.0.nupkg.sha512",
  7847. "system.runtime.nuspec"
  7848. ]
  7849. },
  7850. "System.Runtime.Extensions/4.3.0": {
  7851. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7852. "type": "package",
  7853. "path": "system.runtime.extensions/4.3.0",
  7854. "files": [
  7855. ".nupkg.metadata",
  7856. ".signature.p7s",
  7857. "ThirdPartyNotices.txt",
  7858. "dotnet_library_license.txt",
  7859. "lib/MonoAndroid10/_._",
  7860. "lib/MonoTouch10/_._",
  7861. "lib/net45/_._",
  7862. "lib/net462/System.Runtime.Extensions.dll",
  7863. "lib/portable-net45+win8+wp8+wpa81/_._",
  7864. "lib/win8/_._",
  7865. "lib/wp80/_._",
  7866. "lib/wpa81/_._",
  7867. "lib/xamarinios10/_._",
  7868. "lib/xamarinmac20/_._",
  7869. "lib/xamarintvos10/_._",
  7870. "lib/xamarinwatchos10/_._",
  7871. "ref/MonoAndroid10/_._",
  7872. "ref/MonoTouch10/_._",
  7873. "ref/net45/_._",
  7874. "ref/net462/System.Runtime.Extensions.dll",
  7875. "ref/netcore50/System.Runtime.Extensions.dll",
  7876. "ref/netcore50/System.Runtime.Extensions.xml",
  7877. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7878. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7879. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7880. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7881. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7882. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7883. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7884. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7885. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7886. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7887. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7888. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7889. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7890. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7891. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7892. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7893. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7894. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7895. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7896. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7897. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7898. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7899. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7900. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7901. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7902. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7903. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7904. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7905. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7906. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7907. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7908. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7909. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7910. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7911. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7912. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7913. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7914. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7915. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7916. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7917. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7918. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7919. "ref/portable-net45+win8+wp8+wpa81/_._",
  7920. "ref/win8/_._",
  7921. "ref/wp80/_._",
  7922. "ref/wpa81/_._",
  7923. "ref/xamarinios10/_._",
  7924. "ref/xamarinmac20/_._",
  7925. "ref/xamarintvos10/_._",
  7926. "ref/xamarinwatchos10/_._",
  7927. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7928. "system.runtime.extensions.nuspec"
  7929. ]
  7930. },
  7931. "System.Runtime.Handles/4.3.0": {
  7932. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7933. "type": "package",
  7934. "path": "system.runtime.handles/4.3.0",
  7935. "files": [
  7936. ".nupkg.metadata",
  7937. ".signature.p7s",
  7938. "ThirdPartyNotices.txt",
  7939. "dotnet_library_license.txt",
  7940. "lib/MonoAndroid10/_._",
  7941. "lib/MonoTouch10/_._",
  7942. "lib/net46/_._",
  7943. "lib/xamarinios10/_._",
  7944. "lib/xamarinmac20/_._",
  7945. "lib/xamarintvos10/_._",
  7946. "lib/xamarinwatchos10/_._",
  7947. "ref/MonoAndroid10/_._",
  7948. "ref/MonoTouch10/_._",
  7949. "ref/net46/_._",
  7950. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7951. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7952. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7953. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7954. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7955. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7956. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7957. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7958. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7959. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7960. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7961. "ref/xamarinios10/_._",
  7962. "ref/xamarinmac20/_._",
  7963. "ref/xamarintvos10/_._",
  7964. "ref/xamarinwatchos10/_._",
  7965. "system.runtime.handles.4.3.0.nupkg.sha512",
  7966. "system.runtime.handles.nuspec"
  7967. ]
  7968. },
  7969. "System.Runtime.InteropServices/4.3.0": {
  7970. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7971. "type": "package",
  7972. "path": "system.runtime.interopservices/4.3.0",
  7973. "files": [
  7974. ".nupkg.metadata",
  7975. ".signature.p7s",
  7976. "ThirdPartyNotices.txt",
  7977. "dotnet_library_license.txt",
  7978. "lib/MonoAndroid10/_._",
  7979. "lib/MonoTouch10/_._",
  7980. "lib/net45/_._",
  7981. "lib/net462/System.Runtime.InteropServices.dll",
  7982. "lib/net463/System.Runtime.InteropServices.dll",
  7983. "lib/portable-net45+win8+wpa81/_._",
  7984. "lib/win8/_._",
  7985. "lib/wpa81/_._",
  7986. "lib/xamarinios10/_._",
  7987. "lib/xamarinmac20/_._",
  7988. "lib/xamarintvos10/_._",
  7989. "lib/xamarinwatchos10/_._",
  7990. "ref/MonoAndroid10/_._",
  7991. "ref/MonoTouch10/_._",
  7992. "ref/net45/_._",
  7993. "ref/net462/System.Runtime.InteropServices.dll",
  7994. "ref/net463/System.Runtime.InteropServices.dll",
  7995. "ref/netcore50/System.Runtime.InteropServices.dll",
  7996. "ref/netcore50/System.Runtime.InteropServices.xml",
  7997. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7998. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7999. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8000. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8001. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8002. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8003. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8004. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8005. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8006. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8007. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8008. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8009. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8010. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8011. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8012. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8013. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8014. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8015. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8016. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8017. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8018. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8019. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8020. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8021. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8022. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8023. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8024. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8025. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8026. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8027. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8028. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8029. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8030. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8031. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8032. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8033. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8034. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8035. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8036. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8037. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8038. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8039. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8040. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8041. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8042. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8043. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8044. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8045. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8046. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8047. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8048. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8049. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8050. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8051. "ref/portable-net45+win8+wpa81/_._",
  8052. "ref/win8/_._",
  8053. "ref/wpa81/_._",
  8054. "ref/xamarinios10/_._",
  8055. "ref/xamarinmac20/_._",
  8056. "ref/xamarintvos10/_._",
  8057. "ref/xamarinwatchos10/_._",
  8058. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8059. "system.runtime.interopservices.nuspec"
  8060. ]
  8061. },
  8062. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8063. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8064. "type": "package",
  8065. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8066. "files": [
  8067. ".nupkg.metadata",
  8068. ".signature.p7s",
  8069. "ThirdPartyNotices.txt",
  8070. "dotnet_library_license.txt",
  8071. "lib/MonoAndroid10/_._",
  8072. "lib/MonoTouch10/_._",
  8073. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8074. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8075. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8076. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8077. "lib/xamarinios10/_._",
  8078. "lib/xamarinmac20/_._",
  8079. "lib/xamarintvos10/_._",
  8080. "lib/xamarinwatchos10/_._",
  8081. "ref/MonoAndroid10/_._",
  8082. "ref/MonoTouch10/_._",
  8083. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8084. "ref/xamarinios10/_._",
  8085. "ref/xamarinmac20/_._",
  8086. "ref/xamarintvos10/_._",
  8087. "ref/xamarinwatchos10/_._",
  8088. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8089. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8090. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8091. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8092. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8093. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8094. "system.runtime.interopservices.runtimeinformation.nuspec"
  8095. ]
  8096. },
  8097. "System.Runtime.Loader/4.3.0": {
  8098. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8099. "type": "package",
  8100. "path": "system.runtime.loader/4.3.0",
  8101. "files": [
  8102. ".nupkg.metadata",
  8103. ".signature.p7s",
  8104. "ThirdPartyNotices.txt",
  8105. "dotnet_library_license.txt",
  8106. "lib/MonoAndroid10/_._",
  8107. "lib/MonoTouch10/_._",
  8108. "lib/net462/_._",
  8109. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8110. "lib/xamarinios10/_._",
  8111. "lib/xamarinmac20/_._",
  8112. "lib/xamarintvos10/_._",
  8113. "lib/xamarinwatchos10/_._",
  8114. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8115. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8116. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8117. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8118. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8119. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8120. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8121. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8122. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8123. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8124. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8125. "system.runtime.loader.4.3.0.nupkg.sha512",
  8126. "system.runtime.loader.nuspec"
  8127. ]
  8128. },
  8129. "System.Runtime.Numerics/4.3.0": {
  8130. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8131. "type": "package",
  8132. "path": "system.runtime.numerics/4.3.0",
  8133. "files": [
  8134. ".nupkg.metadata",
  8135. ".signature.p7s",
  8136. "ThirdPartyNotices.txt",
  8137. "dotnet_library_license.txt",
  8138. "lib/MonoAndroid10/_._",
  8139. "lib/MonoTouch10/_._",
  8140. "lib/net45/_._",
  8141. "lib/netcore50/System.Runtime.Numerics.dll",
  8142. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8143. "lib/portable-net45+win8+wpa81/_._",
  8144. "lib/win8/_._",
  8145. "lib/wpa81/_._",
  8146. "lib/xamarinios10/_._",
  8147. "lib/xamarinmac20/_._",
  8148. "lib/xamarintvos10/_._",
  8149. "lib/xamarinwatchos10/_._",
  8150. "ref/MonoAndroid10/_._",
  8151. "ref/MonoTouch10/_._",
  8152. "ref/net45/_._",
  8153. "ref/netcore50/System.Runtime.Numerics.dll",
  8154. "ref/netcore50/System.Runtime.Numerics.xml",
  8155. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8156. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8157. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8158. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8159. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8160. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8161. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8162. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8163. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8164. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8165. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8166. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8167. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8168. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8169. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8170. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8171. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8172. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8173. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8174. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8175. "ref/portable-net45+win8+wpa81/_._",
  8176. "ref/win8/_._",
  8177. "ref/wpa81/_._",
  8178. "ref/xamarinios10/_._",
  8179. "ref/xamarinmac20/_._",
  8180. "ref/xamarintvos10/_._",
  8181. "ref/xamarinwatchos10/_._",
  8182. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8183. "system.runtime.numerics.nuspec"
  8184. ]
  8185. },
  8186. "System.Runtime.Serialization.Formatters/4.3.0": {
  8187. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  8188. "type": "package",
  8189. "path": "system.runtime.serialization.formatters/4.3.0",
  8190. "files": [
  8191. ".nupkg.metadata",
  8192. ".signature.p7s",
  8193. "ThirdPartyNotices.txt",
  8194. "dotnet_library_license.txt",
  8195. "lib/MonoAndroid10/_._",
  8196. "lib/MonoTouch10/_._",
  8197. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  8198. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  8199. "lib/xamarinios10/_._",
  8200. "lib/xamarinmac20/_._",
  8201. "lib/xamarintvos10/_._",
  8202. "lib/xamarinwatchos10/_._",
  8203. "ref/MonoAndroid10/_._",
  8204. "ref/MonoTouch10/_._",
  8205. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  8206. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  8207. "ref/xamarinios10/_._",
  8208. "ref/xamarinmac20/_._",
  8209. "ref/xamarintvos10/_._",
  8210. "ref/xamarinwatchos10/_._",
  8211. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  8212. "system.runtime.serialization.formatters.nuspec"
  8213. ]
  8214. },
  8215. "System.Runtime.Serialization.Primitives/4.3.0": {
  8216. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8217. "type": "package",
  8218. "path": "system.runtime.serialization.primitives/4.3.0",
  8219. "files": [
  8220. ".nupkg.metadata",
  8221. ".signature.p7s",
  8222. "ThirdPartyNotices.txt",
  8223. "dotnet_library_license.txt",
  8224. "lib/MonoAndroid10/_._",
  8225. "lib/MonoTouch10/_._",
  8226. "lib/net45/_._",
  8227. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8228. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8229. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8230. "lib/portable-net45+win8+wp8+wpa81/_._",
  8231. "lib/win8/_._",
  8232. "lib/wp80/_._",
  8233. "lib/wpa81/_._",
  8234. "lib/xamarinios10/_._",
  8235. "lib/xamarinmac20/_._",
  8236. "lib/xamarintvos10/_._",
  8237. "lib/xamarinwatchos10/_._",
  8238. "ref/MonoAndroid10/_._",
  8239. "ref/MonoTouch10/_._",
  8240. "ref/net45/_._",
  8241. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8242. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8243. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8244. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8245. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8246. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8247. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8248. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8249. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8250. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8251. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8252. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8253. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8254. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8255. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8256. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8257. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8258. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8259. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8260. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8261. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8262. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8263. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8264. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8265. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8266. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8267. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8268. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8269. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8270. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8271. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8272. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8273. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8274. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8275. "ref/portable-net45+win8+wp8+wpa81/_._",
  8276. "ref/win8/_._",
  8277. "ref/wp80/_._",
  8278. "ref/wpa81/_._",
  8279. "ref/xamarinios10/_._",
  8280. "ref/xamarinmac20/_._",
  8281. "ref/xamarintvos10/_._",
  8282. "ref/xamarinwatchos10/_._",
  8283. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8284. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8285. "system.runtime.serialization.primitives.nuspec"
  8286. ]
  8287. },
  8288. "System.Security.AccessControl/5.0.0": {
  8289. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  8290. "type": "package",
  8291. "path": "system.security.accesscontrol/5.0.0",
  8292. "files": [
  8293. ".nupkg.metadata",
  8294. ".signature.p7s",
  8295. "Icon.png",
  8296. "LICENSE.TXT",
  8297. "THIRD-PARTY-NOTICES.TXT",
  8298. "lib/net46/System.Security.AccessControl.dll",
  8299. "lib/net461/System.Security.AccessControl.dll",
  8300. "lib/net461/System.Security.AccessControl.xml",
  8301. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8302. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8303. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8304. "lib/uap10.0.16299/_._",
  8305. "ref/net46/System.Security.AccessControl.dll",
  8306. "ref/net461/System.Security.AccessControl.dll",
  8307. "ref/net461/System.Security.AccessControl.xml",
  8308. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8309. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8310. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8311. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8312. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8313. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8314. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8315. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8316. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8317. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8318. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8319. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8320. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8321. "ref/uap10.0.16299/_._",
  8322. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8323. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8324. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8325. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8326. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8327. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8328. "runtimes/win/lib/uap10.0.16299/_._",
  8329. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  8330. "system.security.accesscontrol.nuspec",
  8331. "useSharedDesignerContext.txt",
  8332. "version.txt"
  8333. ]
  8334. },
  8335. "System.Security.Cryptography.Algorithms/4.3.1": {
  8336. "sha512": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  8337. "type": "package",
  8338. "path": "system.security.cryptography.algorithms/4.3.1",
  8339. "files": [
  8340. ".nupkg.metadata",
  8341. ".signature.p7s",
  8342. "ThirdPartyNotices.txt",
  8343. "dotnet_library_license.txt",
  8344. "lib/MonoAndroid10/_._",
  8345. "lib/MonoTouch10/_._",
  8346. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8347. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8348. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8349. "lib/xamarinios10/_._",
  8350. "lib/xamarinmac20/_._",
  8351. "lib/xamarintvos10/_._",
  8352. "lib/xamarinwatchos10/_._",
  8353. "ref/MonoAndroid10/_._",
  8354. "ref/MonoTouch10/_._",
  8355. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8356. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8357. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8358. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8359. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8360. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8361. "ref/xamarinios10/_._",
  8362. "ref/xamarinmac20/_._",
  8363. "ref/xamarintvos10/_._",
  8364. "ref/xamarinwatchos10/_._",
  8365. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8366. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8367. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8368. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8369. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8370. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8371. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8372. "system.security.cryptography.algorithms.4.3.1.nupkg.sha512",
  8373. "system.security.cryptography.algorithms.nuspec"
  8374. ]
  8375. },
  8376. "System.Security.Cryptography.Cng/4.5.0": {
  8377. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8378. "type": "package",
  8379. "path": "system.security.cryptography.cng/4.5.0",
  8380. "files": [
  8381. ".nupkg.metadata",
  8382. ".signature.p7s",
  8383. "LICENSE.TXT",
  8384. "THIRD-PARTY-NOTICES.TXT",
  8385. "lib/MonoAndroid10/_._",
  8386. "lib/MonoTouch10/_._",
  8387. "lib/net46/System.Security.Cryptography.Cng.dll",
  8388. "lib/net461/System.Security.Cryptography.Cng.dll",
  8389. "lib/net462/System.Security.Cryptography.Cng.dll",
  8390. "lib/net47/System.Security.Cryptography.Cng.dll",
  8391. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8392. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8393. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8394. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8395. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8396. "lib/uap10.0.16299/_._",
  8397. "lib/xamarinios10/_._",
  8398. "lib/xamarinmac20/_._",
  8399. "lib/xamarintvos10/_._",
  8400. "lib/xamarinwatchos10/_._",
  8401. "ref/MonoAndroid10/_._",
  8402. "ref/MonoTouch10/_._",
  8403. "ref/net46/System.Security.Cryptography.Cng.dll",
  8404. "ref/net461/System.Security.Cryptography.Cng.dll",
  8405. "ref/net461/System.Security.Cryptography.Cng.xml",
  8406. "ref/net462/System.Security.Cryptography.Cng.dll",
  8407. "ref/net462/System.Security.Cryptography.Cng.xml",
  8408. "ref/net47/System.Security.Cryptography.Cng.dll",
  8409. "ref/net47/System.Security.Cryptography.Cng.xml",
  8410. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8411. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8412. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8413. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8414. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8415. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8416. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8417. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8418. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8419. "ref/uap10.0.16299/_._",
  8420. "ref/xamarinios10/_._",
  8421. "ref/xamarinmac20/_._",
  8422. "ref/xamarintvos10/_._",
  8423. "ref/xamarinwatchos10/_._",
  8424. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8425. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8426. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8427. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8428. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8429. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8430. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8431. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8432. "runtimes/win/lib/uap10.0.16299/_._",
  8433. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8434. "system.security.cryptography.cng.nuspec",
  8435. "useSharedDesignerContext.txt",
  8436. "version.txt"
  8437. ]
  8438. },
  8439. "System.Security.Cryptography.Csp/4.3.0": {
  8440. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8441. "type": "package",
  8442. "path": "system.security.cryptography.csp/4.3.0",
  8443. "files": [
  8444. ".nupkg.metadata",
  8445. ".signature.p7s",
  8446. "ThirdPartyNotices.txt",
  8447. "dotnet_library_license.txt",
  8448. "lib/MonoAndroid10/_._",
  8449. "lib/MonoTouch10/_._",
  8450. "lib/net46/System.Security.Cryptography.Csp.dll",
  8451. "lib/xamarinios10/_._",
  8452. "lib/xamarinmac20/_._",
  8453. "lib/xamarintvos10/_._",
  8454. "lib/xamarinwatchos10/_._",
  8455. "ref/MonoAndroid10/_._",
  8456. "ref/MonoTouch10/_._",
  8457. "ref/net46/System.Security.Cryptography.Csp.dll",
  8458. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8459. "ref/xamarinios10/_._",
  8460. "ref/xamarinmac20/_._",
  8461. "ref/xamarintvos10/_._",
  8462. "ref/xamarinwatchos10/_._",
  8463. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8464. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8465. "runtimes/win/lib/netcore50/_._",
  8466. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8467. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8468. "system.security.cryptography.csp.nuspec"
  8469. ]
  8470. },
  8471. "System.Security.Cryptography.Encoding/4.3.0": {
  8472. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8473. "type": "package",
  8474. "path": "system.security.cryptography.encoding/4.3.0",
  8475. "files": [
  8476. ".nupkg.metadata",
  8477. ".signature.p7s",
  8478. "ThirdPartyNotices.txt",
  8479. "dotnet_library_license.txt",
  8480. "lib/MonoAndroid10/_._",
  8481. "lib/MonoTouch10/_._",
  8482. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8483. "lib/xamarinios10/_._",
  8484. "lib/xamarinmac20/_._",
  8485. "lib/xamarintvos10/_._",
  8486. "lib/xamarinwatchos10/_._",
  8487. "ref/MonoAndroid10/_._",
  8488. "ref/MonoTouch10/_._",
  8489. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8490. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8491. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8492. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8493. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8494. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8495. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8496. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8497. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8498. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8499. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8500. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8501. "ref/xamarinios10/_._",
  8502. "ref/xamarinmac20/_._",
  8503. "ref/xamarintvos10/_._",
  8504. "ref/xamarinwatchos10/_._",
  8505. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8506. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8507. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8508. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8509. "system.security.cryptography.encoding.nuspec"
  8510. ]
  8511. },
  8512. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8513. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8514. "type": "package",
  8515. "path": "system.security.cryptography.openssl/4.3.0",
  8516. "files": [
  8517. ".nupkg.metadata",
  8518. ".signature.p7s",
  8519. "ThirdPartyNotices.txt",
  8520. "dotnet_library_license.txt",
  8521. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8522. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8523. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8524. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8525. "system.security.cryptography.openssl.nuspec"
  8526. ]
  8527. },
  8528. "System.Security.Cryptography.Primitives/4.3.0": {
  8529. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8530. "type": "package",
  8531. "path": "system.security.cryptography.primitives/4.3.0",
  8532. "files": [
  8533. ".nupkg.metadata",
  8534. ".signature.p7s",
  8535. "ThirdPartyNotices.txt",
  8536. "dotnet_library_license.txt",
  8537. "lib/MonoAndroid10/_._",
  8538. "lib/MonoTouch10/_._",
  8539. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8540. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8541. "lib/xamarinios10/_._",
  8542. "lib/xamarinmac20/_._",
  8543. "lib/xamarintvos10/_._",
  8544. "lib/xamarinwatchos10/_._",
  8545. "ref/MonoAndroid10/_._",
  8546. "ref/MonoTouch10/_._",
  8547. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8548. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8549. "ref/xamarinios10/_._",
  8550. "ref/xamarinmac20/_._",
  8551. "ref/xamarintvos10/_._",
  8552. "ref/xamarinwatchos10/_._",
  8553. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8554. "system.security.cryptography.primitives.nuspec"
  8555. ]
  8556. },
  8557. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8558. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8559. "type": "package",
  8560. "path": "system.security.cryptography.protecteddata/4.7.0",
  8561. "files": [
  8562. ".nupkg.metadata",
  8563. ".signature.p7s",
  8564. "LICENSE.TXT",
  8565. "THIRD-PARTY-NOTICES.TXT",
  8566. "lib/MonoAndroid10/_._",
  8567. "lib/MonoTouch10/_._",
  8568. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8569. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8570. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8571. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8572. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8573. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8574. "lib/xamarinios10/_._",
  8575. "lib/xamarinmac20/_._",
  8576. "lib/xamarintvos10/_._",
  8577. "lib/xamarinwatchos10/_._",
  8578. "ref/MonoAndroid10/_._",
  8579. "ref/MonoTouch10/_._",
  8580. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8581. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8582. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8583. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8584. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8585. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8586. "ref/xamarinios10/_._",
  8587. "ref/xamarinmac20/_._",
  8588. "ref/xamarintvos10/_._",
  8589. "ref/xamarinwatchos10/_._",
  8590. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8591. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8592. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8593. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8594. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8595. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8596. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8597. "system.security.cryptography.protecteddata.nuspec",
  8598. "useSharedDesignerContext.txt",
  8599. "version.txt"
  8600. ]
  8601. },
  8602. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8603. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8604. "type": "package",
  8605. "path": "system.security.cryptography.x509certificates/4.3.0",
  8606. "files": [
  8607. ".nupkg.metadata",
  8608. ".signature.p7s",
  8609. "ThirdPartyNotices.txt",
  8610. "dotnet_library_license.txt",
  8611. "lib/MonoAndroid10/_._",
  8612. "lib/MonoTouch10/_._",
  8613. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8614. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8615. "lib/xamarinios10/_._",
  8616. "lib/xamarinmac20/_._",
  8617. "lib/xamarintvos10/_._",
  8618. "lib/xamarinwatchos10/_._",
  8619. "ref/MonoAndroid10/_._",
  8620. "ref/MonoTouch10/_._",
  8621. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8622. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8623. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8624. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8625. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8626. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8627. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8628. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8629. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8630. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8631. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8632. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8633. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8634. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8635. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8636. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8637. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8638. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8639. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8640. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8641. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8642. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8643. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8644. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8645. "ref/xamarinios10/_._",
  8646. "ref/xamarinmac20/_._",
  8647. "ref/xamarintvos10/_._",
  8648. "ref/xamarinwatchos10/_._",
  8649. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8650. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8651. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8652. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8653. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8654. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8655. "system.security.cryptography.x509certificates.nuspec"
  8656. ]
  8657. },
  8658. "System.Security.Permissions/4.7.0": {
  8659. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8660. "type": "package",
  8661. "path": "system.security.permissions/4.7.0",
  8662. "files": [
  8663. ".nupkg.metadata",
  8664. ".signature.p7s",
  8665. "LICENSE.TXT",
  8666. "THIRD-PARTY-NOTICES.TXT",
  8667. "lib/net461/System.Security.Permissions.dll",
  8668. "lib/net461/System.Security.Permissions.xml",
  8669. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8670. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8671. "lib/netstandard2.0/System.Security.Permissions.dll",
  8672. "lib/netstandard2.0/System.Security.Permissions.xml",
  8673. "ref/net461/System.Security.Permissions.dll",
  8674. "ref/net461/System.Security.Permissions.xml",
  8675. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8676. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8677. "ref/netstandard2.0/System.Security.Permissions.dll",
  8678. "ref/netstandard2.0/System.Security.Permissions.xml",
  8679. "system.security.permissions.4.7.0.nupkg.sha512",
  8680. "system.security.permissions.nuspec",
  8681. "useSharedDesignerContext.txt",
  8682. "version.txt"
  8683. ]
  8684. },
  8685. "System.Security.Principal.Windows/5.0.0": {
  8686. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  8687. "type": "package",
  8688. "path": "system.security.principal.windows/5.0.0",
  8689. "files": [
  8690. ".nupkg.metadata",
  8691. ".signature.p7s",
  8692. "Icon.png",
  8693. "LICENSE.TXT",
  8694. "THIRD-PARTY-NOTICES.TXT",
  8695. "lib/net46/System.Security.Principal.Windows.dll",
  8696. "lib/net461/System.Security.Principal.Windows.dll",
  8697. "lib/net461/System.Security.Principal.Windows.xml",
  8698. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8699. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8700. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8701. "lib/uap10.0.16299/_._",
  8702. "ref/net46/System.Security.Principal.Windows.dll",
  8703. "ref/net461/System.Security.Principal.Windows.dll",
  8704. "ref/net461/System.Security.Principal.Windows.xml",
  8705. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8706. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8707. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8708. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8709. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8710. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8711. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8712. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8713. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8714. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8715. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8716. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8717. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8718. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8719. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8720. "ref/uap10.0.16299/_._",
  8721. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8722. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8723. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8724. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8725. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8726. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8727. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8728. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8729. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8730. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8731. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8732. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8733. "runtimes/win/lib/uap10.0.16299/_._",
  8734. "system.security.principal.windows.5.0.0.nupkg.sha512",
  8735. "system.security.principal.windows.nuspec",
  8736. "useSharedDesignerContext.txt",
  8737. "version.txt"
  8738. ]
  8739. },
  8740. "System.ServiceModel.Duplex/4.4.4": {
  8741. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  8742. "type": "package",
  8743. "path": "system.servicemodel.duplex/4.4.4",
  8744. "files": [
  8745. ".nupkg.metadata",
  8746. ".signature.p7s",
  8747. "LICENSE.TXT",
  8748. "THIRD-PARTY-NOTICES.TXT",
  8749. "lib/MonoAndroid10/_._",
  8750. "lib/MonoTouch10/_._",
  8751. "lib/net45/_._",
  8752. "lib/net461/System.ServiceModel.Duplex.dll",
  8753. "lib/netcore50/System.ServiceModel.Duplex.dll",
  8754. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  8755. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  8756. "lib/portable-net45+win8/_._",
  8757. "lib/win8/_._",
  8758. "lib/xamarinios10/_._",
  8759. "lib/xamarinmac20/_._",
  8760. "lib/xamarintvos10/_._",
  8761. "lib/xamarinwatchos10/_._",
  8762. "ref/MonoAndroid10/_._",
  8763. "ref/MonoTouch10/_._",
  8764. "ref/net45/_._",
  8765. "ref/net461/System.ServiceModel.Duplex.dll",
  8766. "ref/netcore50/System.ServiceModel.Duplex.dll",
  8767. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  8768. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  8769. "ref/portable-net45+win8/_._",
  8770. "ref/win8/_._",
  8771. "ref/xamarinios10/_._",
  8772. "ref/xamarinmac20/_._",
  8773. "ref/xamarintvos10/_._",
  8774. "ref/xamarinwatchos10/_._",
  8775. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  8776. "system.servicemodel.duplex.nuspec",
  8777. "version.txt"
  8778. ]
  8779. },
  8780. "System.ServiceModel.Http/4.4.4": {
  8781. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  8782. "type": "package",
  8783. "path": "system.servicemodel.http/4.4.4",
  8784. "files": [
  8785. ".nupkg.metadata",
  8786. ".signature.p7s",
  8787. "LICENSE.TXT",
  8788. "THIRD-PARTY-NOTICES.TXT",
  8789. "lib/MonoAndroid10/_._",
  8790. "lib/MonoTouch10/_._",
  8791. "lib/net45/_._",
  8792. "lib/net46/System.ServiceModel.Http.dll",
  8793. "lib/net461/System.ServiceModel.Http.dll",
  8794. "lib/netcore50/System.ServiceModel.Http.dll",
  8795. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  8796. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  8797. "lib/portable-net45+win8+wp8/_._",
  8798. "lib/win8/_._",
  8799. "lib/wp8/_._",
  8800. "lib/xamarinios10/_._",
  8801. "lib/xamarinmac20/_._",
  8802. "lib/xamarintvos10/_._",
  8803. "lib/xamarinwatchos10/_._",
  8804. "ref/MonoAndroid10/_._",
  8805. "ref/MonoTouch10/_._",
  8806. "ref/net45/_._",
  8807. "ref/net46/System.ServiceModel.Http.dll",
  8808. "ref/net461/System.ServiceModel.Http.dll",
  8809. "ref/netcore50/System.ServiceModel.Http.dll",
  8810. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  8811. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  8812. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  8813. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  8814. "ref/portable-net45+win8+wp8/_._",
  8815. "ref/win8/_._",
  8816. "ref/wp8/_._",
  8817. "ref/xamarinios10/_._",
  8818. "ref/xamarinmac20/_._",
  8819. "ref/xamarintvos10/_._",
  8820. "ref/xamarinwatchos10/_._",
  8821. "system.servicemodel.http.4.4.4.nupkg.sha512",
  8822. "system.servicemodel.http.nuspec",
  8823. "version.txt"
  8824. ]
  8825. },
  8826. "System.ServiceModel.NetTcp/4.4.4": {
  8827. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  8828. "type": "package",
  8829. "path": "system.servicemodel.nettcp/4.4.4",
  8830. "files": [
  8831. ".nupkg.metadata",
  8832. ".signature.p7s",
  8833. "LICENSE.TXT",
  8834. "THIRD-PARTY-NOTICES.TXT",
  8835. "lib/MonoAndroid10/_._",
  8836. "lib/MonoTouch10/_._",
  8837. "lib/net45/_._",
  8838. "lib/net46/System.ServiceModel.NetTcp.dll",
  8839. "lib/net461/System.ServiceModel.NetTcp.dll",
  8840. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  8841. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8842. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8843. "lib/portable-net45+win8/_._",
  8844. "lib/win8/_._",
  8845. "lib/xamarinios10/_._",
  8846. "lib/xamarinmac20/_._",
  8847. "lib/xamarintvos10/_._",
  8848. "lib/xamarinwatchos10/_._",
  8849. "ref/MonoAndroid10/_._",
  8850. "ref/MonoTouch10/_._",
  8851. "ref/net45/_._",
  8852. "ref/net46/System.ServiceModel.NetTcp.dll",
  8853. "ref/net461/System.ServiceModel.NetTcp.dll",
  8854. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  8855. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  8856. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8857. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8858. "ref/portable-net45+win8/_._",
  8859. "ref/win8/_._",
  8860. "ref/xamarinios10/_._",
  8861. "ref/xamarinmac20/_._",
  8862. "ref/xamarintvos10/_._",
  8863. "ref/xamarinwatchos10/_._",
  8864. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  8865. "system.servicemodel.nettcp.nuspec",
  8866. "version.txt"
  8867. ]
  8868. },
  8869. "System.ServiceModel.Primitives/4.4.4": {
  8870. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  8871. "type": "package",
  8872. "path": "system.servicemodel.primitives/4.4.4",
  8873. "files": [
  8874. ".nupkg.metadata",
  8875. ".signature.p7s",
  8876. "LICENSE.TXT",
  8877. "THIRD-PARTY-NOTICES.TXT",
  8878. "lib/MonoAndroid10/_._",
  8879. "lib/MonoTouch10/_._",
  8880. "lib/net45/_._",
  8881. "lib/net46/System.ServiceModel.Primitives.dll",
  8882. "lib/net461/System.ServiceModel.Primitives.dll",
  8883. "lib/netcore50/System.ServiceModel.Primitives.dll",
  8884. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  8885. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  8886. "lib/netstandard2.0/System.ServiceModel.dll",
  8887. "lib/portable-net45+win8+wp8/_._",
  8888. "lib/win8/_._",
  8889. "lib/wp8/_._",
  8890. "lib/xamarinios10/_._",
  8891. "lib/xamarinmac20/_._",
  8892. "lib/xamarintvos10/_._",
  8893. "lib/xamarinwatchos10/_._",
  8894. "ref/MonoAndroid10/_._",
  8895. "ref/MonoTouch10/_._",
  8896. "ref/net45/_._",
  8897. "ref/net46/System.ServiceModel.Primitives.dll",
  8898. "ref/net461/System.ServiceModel.Primitives.dll",
  8899. "ref/netcore50/System.ServiceModel.Primitives.dll",
  8900. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  8901. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  8902. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  8903. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  8904. "ref/netstandard2.0/System.ServiceModel.dll",
  8905. "ref/portable-net45+win8+wp8/_._",
  8906. "ref/win8/_._",
  8907. "ref/wp8/_._",
  8908. "ref/xamarinios10/_._",
  8909. "ref/xamarinmac20/_._",
  8910. "ref/xamarintvos10/_._",
  8911. "ref/xamarinwatchos10/_._",
  8912. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  8913. "system.servicemodel.primitives.nuspec",
  8914. "version.txt"
  8915. ]
  8916. },
  8917. "System.ServiceModel.Security/4.4.4": {
  8918. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  8919. "type": "package",
  8920. "path": "system.servicemodel.security/4.4.4",
  8921. "files": [
  8922. ".nupkg.metadata",
  8923. ".signature.p7s",
  8924. "LICENSE.TXT",
  8925. "THIRD-PARTY-NOTICES.TXT",
  8926. "lib/MonoAndroid10/_._",
  8927. "lib/MonoTouch10/_._",
  8928. "lib/net45/_._",
  8929. "lib/netcore50/System.ServiceModel.Security.dll",
  8930. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  8931. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  8932. "lib/portable-net45+win8+wp8/_._",
  8933. "lib/win8/_._",
  8934. "lib/wp8/_._",
  8935. "lib/xamarinios10/_._",
  8936. "lib/xamarinmac20/_._",
  8937. "lib/xamarintvos10/_._",
  8938. "lib/xamarinwatchos10/_._",
  8939. "ref/MonoAndroid10/_._",
  8940. "ref/MonoTouch10/_._",
  8941. "ref/net45/_._",
  8942. "ref/netcore50/System.ServiceModel.Security.dll",
  8943. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  8944. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  8945. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  8946. "ref/portable-net45+win8+wp8/_._",
  8947. "ref/win8/_._",
  8948. "ref/wp8/_._",
  8949. "ref/xamarinios10/_._",
  8950. "ref/xamarinmac20/_._",
  8951. "ref/xamarintvos10/_._",
  8952. "ref/xamarinwatchos10/_._",
  8953. "system.servicemodel.security.4.4.4.nupkg.sha512",
  8954. "system.servicemodel.security.nuspec",
  8955. "version.txt"
  8956. ]
  8957. },
  8958. "System.Text.Encoding/4.3.0": {
  8959. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8960. "type": "package",
  8961. "path": "system.text.encoding/4.3.0",
  8962. "files": [
  8963. ".nupkg.metadata",
  8964. ".signature.p7s",
  8965. "ThirdPartyNotices.txt",
  8966. "dotnet_library_license.txt",
  8967. "lib/MonoAndroid10/_._",
  8968. "lib/MonoTouch10/_._",
  8969. "lib/net45/_._",
  8970. "lib/portable-net45+win8+wp8+wpa81/_._",
  8971. "lib/win8/_._",
  8972. "lib/wp80/_._",
  8973. "lib/wpa81/_._",
  8974. "lib/xamarinios10/_._",
  8975. "lib/xamarinmac20/_._",
  8976. "lib/xamarintvos10/_._",
  8977. "lib/xamarinwatchos10/_._",
  8978. "ref/MonoAndroid10/_._",
  8979. "ref/MonoTouch10/_._",
  8980. "ref/net45/_._",
  8981. "ref/netcore50/System.Text.Encoding.dll",
  8982. "ref/netcore50/System.Text.Encoding.xml",
  8983. "ref/netcore50/de/System.Text.Encoding.xml",
  8984. "ref/netcore50/es/System.Text.Encoding.xml",
  8985. "ref/netcore50/fr/System.Text.Encoding.xml",
  8986. "ref/netcore50/it/System.Text.Encoding.xml",
  8987. "ref/netcore50/ja/System.Text.Encoding.xml",
  8988. "ref/netcore50/ko/System.Text.Encoding.xml",
  8989. "ref/netcore50/ru/System.Text.Encoding.xml",
  8990. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8991. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8992. "ref/netstandard1.0/System.Text.Encoding.dll",
  8993. "ref/netstandard1.0/System.Text.Encoding.xml",
  8994. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8995. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8996. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8997. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8998. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8999. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9000. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9001. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9002. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9003. "ref/netstandard1.3/System.Text.Encoding.dll",
  9004. "ref/netstandard1.3/System.Text.Encoding.xml",
  9005. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9006. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9007. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9008. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9009. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9010. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9011. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9012. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9013. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9014. "ref/portable-net45+win8+wp8+wpa81/_._",
  9015. "ref/win8/_._",
  9016. "ref/wp80/_._",
  9017. "ref/wpa81/_._",
  9018. "ref/xamarinios10/_._",
  9019. "ref/xamarinmac20/_._",
  9020. "ref/xamarintvos10/_._",
  9021. "ref/xamarinwatchos10/_._",
  9022. "system.text.encoding.4.3.0.nupkg.sha512",
  9023. "system.text.encoding.nuspec"
  9024. ]
  9025. },
  9026. "System.Text.Encoding.CodePages/4.7.1": {
  9027. "sha512": "i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
  9028. "type": "package",
  9029. "path": "system.text.encoding.codepages/4.7.1",
  9030. "files": [
  9031. ".nupkg.metadata",
  9032. ".signature.p7s",
  9033. "Icon.png",
  9034. "LICENSE.TXT",
  9035. "THIRD-PARTY-NOTICES.TXT",
  9036. "lib/MonoAndroid10/_._",
  9037. "lib/MonoTouch10/_._",
  9038. "lib/net46/System.Text.Encoding.CodePages.dll",
  9039. "lib/net461/System.Text.Encoding.CodePages.dll",
  9040. "lib/net461/System.Text.Encoding.CodePages.xml",
  9041. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9042. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9043. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9044. "lib/xamarinios10/_._",
  9045. "lib/xamarinmac20/_._",
  9046. "lib/xamarintvos10/_._",
  9047. "lib/xamarinwatchos10/_._",
  9048. "ref/MonoAndroid10/_._",
  9049. "ref/MonoTouch10/_._",
  9050. "ref/xamarinios10/_._",
  9051. "ref/xamarinmac20/_._",
  9052. "ref/xamarintvos10/_._",
  9053. "ref/xamarinwatchos10/_._",
  9054. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9055. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9056. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9057. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9058. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9059. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9060. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9061. "system.text.encoding.codepages.4.7.1.nupkg.sha512",
  9062. "system.text.encoding.codepages.nuspec",
  9063. "useSharedDesignerContext.txt",
  9064. "version.txt"
  9065. ]
  9066. },
  9067. "System.Text.Encoding.Extensions/4.3.0": {
  9068. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9069. "type": "package",
  9070. "path": "system.text.encoding.extensions/4.3.0",
  9071. "files": [
  9072. ".nupkg.metadata",
  9073. ".signature.p7s",
  9074. "ThirdPartyNotices.txt",
  9075. "dotnet_library_license.txt",
  9076. "lib/MonoAndroid10/_._",
  9077. "lib/MonoTouch10/_._",
  9078. "lib/net45/_._",
  9079. "lib/portable-net45+win8+wp8+wpa81/_._",
  9080. "lib/win8/_._",
  9081. "lib/wp80/_._",
  9082. "lib/wpa81/_._",
  9083. "lib/xamarinios10/_._",
  9084. "lib/xamarinmac20/_._",
  9085. "lib/xamarintvos10/_._",
  9086. "lib/xamarinwatchos10/_._",
  9087. "ref/MonoAndroid10/_._",
  9088. "ref/MonoTouch10/_._",
  9089. "ref/net45/_._",
  9090. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9091. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9092. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9093. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9094. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9095. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9096. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9097. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9098. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9099. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9100. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9101. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9102. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9103. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9104. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9105. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9106. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9107. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9108. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9109. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9110. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9111. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9112. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9113. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9114. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9115. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9116. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9117. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9118. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9119. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9120. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9121. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9122. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9123. "ref/portable-net45+win8+wp8+wpa81/_._",
  9124. "ref/win8/_._",
  9125. "ref/wp80/_._",
  9126. "ref/wpa81/_._",
  9127. "ref/xamarinios10/_._",
  9128. "ref/xamarinmac20/_._",
  9129. "ref/xamarintvos10/_._",
  9130. "ref/xamarinwatchos10/_._",
  9131. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9132. "system.text.encoding.extensions.nuspec"
  9133. ]
  9134. },
  9135. "System.Text.Encodings.Web/4.5.0": {
  9136. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  9137. "type": "package",
  9138. "path": "system.text.encodings.web/4.5.0",
  9139. "files": [
  9140. ".nupkg.metadata",
  9141. ".signature.p7s",
  9142. "LICENSE.TXT",
  9143. "THIRD-PARTY-NOTICES.TXT",
  9144. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9145. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9146. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9147. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9148. "system.text.encodings.web.4.5.0.nupkg.sha512",
  9149. "system.text.encodings.web.nuspec",
  9150. "useSharedDesignerContext.txt",
  9151. "version.txt"
  9152. ]
  9153. },
  9154. "System.Text.RegularExpressions/4.3.0": {
  9155. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9156. "type": "package",
  9157. "path": "system.text.regularexpressions/4.3.0",
  9158. "files": [
  9159. ".nupkg.metadata",
  9160. ".signature.p7s",
  9161. "ThirdPartyNotices.txt",
  9162. "dotnet_library_license.txt",
  9163. "lib/MonoAndroid10/_._",
  9164. "lib/MonoTouch10/_._",
  9165. "lib/net45/_._",
  9166. "lib/net463/System.Text.RegularExpressions.dll",
  9167. "lib/netcore50/System.Text.RegularExpressions.dll",
  9168. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9169. "lib/portable-net45+win8+wp8+wpa81/_._",
  9170. "lib/win8/_._",
  9171. "lib/wp80/_._",
  9172. "lib/wpa81/_._",
  9173. "lib/xamarinios10/_._",
  9174. "lib/xamarinmac20/_._",
  9175. "lib/xamarintvos10/_._",
  9176. "lib/xamarinwatchos10/_._",
  9177. "ref/MonoAndroid10/_._",
  9178. "ref/MonoTouch10/_._",
  9179. "ref/net45/_._",
  9180. "ref/net463/System.Text.RegularExpressions.dll",
  9181. "ref/netcore50/System.Text.RegularExpressions.dll",
  9182. "ref/netcore50/System.Text.RegularExpressions.xml",
  9183. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9184. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9185. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9186. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9187. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9188. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9189. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9190. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9191. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9192. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9193. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9194. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9195. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9196. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9197. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9198. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9199. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9200. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9201. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9202. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9203. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9204. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9205. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9206. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9207. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9208. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9209. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9210. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9211. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9212. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9213. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9214. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9215. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9216. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9217. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9218. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9219. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9220. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9221. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9222. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9223. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9224. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9225. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9226. "ref/portable-net45+win8+wp8+wpa81/_._",
  9227. "ref/win8/_._",
  9228. "ref/wp80/_._",
  9229. "ref/wpa81/_._",
  9230. "ref/xamarinios10/_._",
  9231. "ref/xamarinmac20/_._",
  9232. "ref/xamarintvos10/_._",
  9233. "ref/xamarinwatchos10/_._",
  9234. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9235. "system.text.regularexpressions.nuspec"
  9236. ]
  9237. },
  9238. "System.Threading/4.3.0": {
  9239. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9240. "type": "package",
  9241. "path": "system.threading/4.3.0",
  9242. "files": [
  9243. ".nupkg.metadata",
  9244. ".signature.p7s",
  9245. "ThirdPartyNotices.txt",
  9246. "dotnet_library_license.txt",
  9247. "lib/MonoAndroid10/_._",
  9248. "lib/MonoTouch10/_._",
  9249. "lib/net45/_._",
  9250. "lib/netcore50/System.Threading.dll",
  9251. "lib/netstandard1.3/System.Threading.dll",
  9252. "lib/portable-net45+win8+wp8+wpa81/_._",
  9253. "lib/win8/_._",
  9254. "lib/wp80/_._",
  9255. "lib/wpa81/_._",
  9256. "lib/xamarinios10/_._",
  9257. "lib/xamarinmac20/_._",
  9258. "lib/xamarintvos10/_._",
  9259. "lib/xamarinwatchos10/_._",
  9260. "ref/MonoAndroid10/_._",
  9261. "ref/MonoTouch10/_._",
  9262. "ref/net45/_._",
  9263. "ref/netcore50/System.Threading.dll",
  9264. "ref/netcore50/System.Threading.xml",
  9265. "ref/netcore50/de/System.Threading.xml",
  9266. "ref/netcore50/es/System.Threading.xml",
  9267. "ref/netcore50/fr/System.Threading.xml",
  9268. "ref/netcore50/it/System.Threading.xml",
  9269. "ref/netcore50/ja/System.Threading.xml",
  9270. "ref/netcore50/ko/System.Threading.xml",
  9271. "ref/netcore50/ru/System.Threading.xml",
  9272. "ref/netcore50/zh-hans/System.Threading.xml",
  9273. "ref/netcore50/zh-hant/System.Threading.xml",
  9274. "ref/netstandard1.0/System.Threading.dll",
  9275. "ref/netstandard1.0/System.Threading.xml",
  9276. "ref/netstandard1.0/de/System.Threading.xml",
  9277. "ref/netstandard1.0/es/System.Threading.xml",
  9278. "ref/netstandard1.0/fr/System.Threading.xml",
  9279. "ref/netstandard1.0/it/System.Threading.xml",
  9280. "ref/netstandard1.0/ja/System.Threading.xml",
  9281. "ref/netstandard1.0/ko/System.Threading.xml",
  9282. "ref/netstandard1.0/ru/System.Threading.xml",
  9283. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9284. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9285. "ref/netstandard1.3/System.Threading.dll",
  9286. "ref/netstandard1.3/System.Threading.xml",
  9287. "ref/netstandard1.3/de/System.Threading.xml",
  9288. "ref/netstandard1.3/es/System.Threading.xml",
  9289. "ref/netstandard1.3/fr/System.Threading.xml",
  9290. "ref/netstandard1.3/it/System.Threading.xml",
  9291. "ref/netstandard1.3/ja/System.Threading.xml",
  9292. "ref/netstandard1.3/ko/System.Threading.xml",
  9293. "ref/netstandard1.3/ru/System.Threading.xml",
  9294. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9295. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9296. "ref/portable-net45+win8+wp8+wpa81/_._",
  9297. "ref/win8/_._",
  9298. "ref/wp80/_._",
  9299. "ref/wpa81/_._",
  9300. "ref/xamarinios10/_._",
  9301. "ref/xamarinmac20/_._",
  9302. "ref/xamarintvos10/_._",
  9303. "ref/xamarinwatchos10/_._",
  9304. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9305. "system.threading.4.3.0.nupkg.sha512",
  9306. "system.threading.nuspec"
  9307. ]
  9308. },
  9309. "System.Threading.Tasks/4.3.0": {
  9310. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9311. "type": "package",
  9312. "path": "system.threading.tasks/4.3.0",
  9313. "files": [
  9314. ".nupkg.metadata",
  9315. ".signature.p7s",
  9316. "ThirdPartyNotices.txt",
  9317. "dotnet_library_license.txt",
  9318. "lib/MonoAndroid10/_._",
  9319. "lib/MonoTouch10/_._",
  9320. "lib/net45/_._",
  9321. "lib/portable-net45+win8+wp8+wpa81/_._",
  9322. "lib/win8/_._",
  9323. "lib/wp80/_._",
  9324. "lib/wpa81/_._",
  9325. "lib/xamarinios10/_._",
  9326. "lib/xamarinmac20/_._",
  9327. "lib/xamarintvos10/_._",
  9328. "lib/xamarinwatchos10/_._",
  9329. "ref/MonoAndroid10/_._",
  9330. "ref/MonoTouch10/_._",
  9331. "ref/net45/_._",
  9332. "ref/netcore50/System.Threading.Tasks.dll",
  9333. "ref/netcore50/System.Threading.Tasks.xml",
  9334. "ref/netcore50/de/System.Threading.Tasks.xml",
  9335. "ref/netcore50/es/System.Threading.Tasks.xml",
  9336. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9337. "ref/netcore50/it/System.Threading.Tasks.xml",
  9338. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9339. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9340. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9341. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9342. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9343. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9344. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9345. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9346. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9347. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9348. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9349. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9350. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9351. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9352. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9353. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9354. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9355. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9356. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9357. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9358. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9359. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9360. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9361. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9362. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9363. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9364. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9365. "ref/portable-net45+win8+wp8+wpa81/_._",
  9366. "ref/win8/_._",
  9367. "ref/wp80/_._",
  9368. "ref/wpa81/_._",
  9369. "ref/xamarinios10/_._",
  9370. "ref/xamarinmac20/_._",
  9371. "ref/xamarintvos10/_._",
  9372. "ref/xamarinwatchos10/_._",
  9373. "system.threading.tasks.4.3.0.nupkg.sha512",
  9374. "system.threading.tasks.nuspec"
  9375. ]
  9376. },
  9377. "System.Threading.Tasks.Extensions/4.3.0": {
  9378. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9379. "type": "package",
  9380. "path": "system.threading.tasks.extensions/4.3.0",
  9381. "files": [
  9382. ".nupkg.metadata",
  9383. ".signature.p7s",
  9384. "ThirdPartyNotices.txt",
  9385. "dotnet_library_license.txt",
  9386. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9387. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9388. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9389. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9390. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9391. "system.threading.tasks.extensions.nuspec"
  9392. ]
  9393. },
  9394. "System.Threading.Timer/4.3.0": {
  9395. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9396. "type": "package",
  9397. "path": "system.threading.timer/4.3.0",
  9398. "files": [
  9399. ".nupkg.metadata",
  9400. ".signature.p7s",
  9401. "ThirdPartyNotices.txt",
  9402. "dotnet_library_license.txt",
  9403. "lib/MonoAndroid10/_._",
  9404. "lib/MonoTouch10/_._",
  9405. "lib/net451/_._",
  9406. "lib/portable-net451+win81+wpa81/_._",
  9407. "lib/win81/_._",
  9408. "lib/wpa81/_._",
  9409. "lib/xamarinios10/_._",
  9410. "lib/xamarinmac20/_._",
  9411. "lib/xamarintvos10/_._",
  9412. "lib/xamarinwatchos10/_._",
  9413. "ref/MonoAndroid10/_._",
  9414. "ref/MonoTouch10/_._",
  9415. "ref/net451/_._",
  9416. "ref/netcore50/System.Threading.Timer.dll",
  9417. "ref/netcore50/System.Threading.Timer.xml",
  9418. "ref/netcore50/de/System.Threading.Timer.xml",
  9419. "ref/netcore50/es/System.Threading.Timer.xml",
  9420. "ref/netcore50/fr/System.Threading.Timer.xml",
  9421. "ref/netcore50/it/System.Threading.Timer.xml",
  9422. "ref/netcore50/ja/System.Threading.Timer.xml",
  9423. "ref/netcore50/ko/System.Threading.Timer.xml",
  9424. "ref/netcore50/ru/System.Threading.Timer.xml",
  9425. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9426. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9427. "ref/netstandard1.2/System.Threading.Timer.dll",
  9428. "ref/netstandard1.2/System.Threading.Timer.xml",
  9429. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9430. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9431. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9432. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9433. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9434. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9435. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9436. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9437. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9438. "ref/portable-net451+win81+wpa81/_._",
  9439. "ref/win81/_._",
  9440. "ref/wpa81/_._",
  9441. "ref/xamarinios10/_._",
  9442. "ref/xamarinmac20/_._",
  9443. "ref/xamarintvos10/_._",
  9444. "ref/xamarinwatchos10/_._",
  9445. "system.threading.timer.4.3.0.nupkg.sha512",
  9446. "system.threading.timer.nuspec"
  9447. ]
  9448. },
  9449. "System.Windows.Extensions/4.7.0": {
  9450. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9451. "type": "package",
  9452. "path": "system.windows.extensions/4.7.0",
  9453. "files": [
  9454. ".nupkg.metadata",
  9455. ".signature.p7s",
  9456. "LICENSE.TXT",
  9457. "THIRD-PARTY-NOTICES.TXT",
  9458. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9459. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9460. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9461. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9462. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9463. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9464. "system.windows.extensions.4.7.0.nupkg.sha512",
  9465. "system.windows.extensions.nuspec",
  9466. "useSharedDesignerContext.txt",
  9467. "version.txt"
  9468. ]
  9469. },
  9470. "System.Xml.ReaderWriter/4.3.1": {
  9471. "sha512": "fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==",
  9472. "type": "package",
  9473. "path": "system.xml.readerwriter/4.3.1",
  9474. "files": [
  9475. ".nupkg.metadata",
  9476. ".signature.p7s",
  9477. "ThirdPartyNotices.txt",
  9478. "dotnet_library_license.txt",
  9479. "lib/MonoAndroid10/_._",
  9480. "lib/MonoTouch10/_._",
  9481. "lib/net45/_._",
  9482. "lib/net46/System.Xml.ReaderWriter.dll",
  9483. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9484. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9485. "lib/portable-net45+win8+wp8+wpa81/_._",
  9486. "lib/win8/_._",
  9487. "lib/wp80/_._",
  9488. "lib/wpa81/_._",
  9489. "lib/xamarinios10/_._",
  9490. "lib/xamarinmac20/_._",
  9491. "lib/xamarintvos10/_._",
  9492. "lib/xamarinwatchos10/_._",
  9493. "ref/MonoAndroid10/_._",
  9494. "ref/MonoTouch10/_._",
  9495. "ref/net45/_._",
  9496. "ref/net46/System.Xml.ReaderWriter.dll",
  9497. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9498. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9499. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9500. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9501. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9502. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9503. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9504. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9505. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9506. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9507. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9508. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9509. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9510. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9511. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9512. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9513. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9514. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9515. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9516. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9517. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9518. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9519. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9520. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9521. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9522. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9523. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9524. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9525. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9526. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9527. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9528. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9529. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9530. "ref/portable-net45+win8+wp8+wpa81/_._",
  9531. "ref/win8/_._",
  9532. "ref/wp80/_._",
  9533. "ref/wpa81/_._",
  9534. "ref/xamarinios10/_._",
  9535. "ref/xamarinmac20/_._",
  9536. "ref/xamarintvos10/_._",
  9537. "ref/xamarinwatchos10/_._",
  9538. "system.xml.readerwriter.4.3.1.nupkg.sha512",
  9539. "system.xml.readerwriter.nuspec"
  9540. ]
  9541. },
  9542. "System.Xml.XDocument/4.3.0": {
  9543. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9544. "type": "package",
  9545. "path": "system.xml.xdocument/4.3.0",
  9546. "files": [
  9547. ".nupkg.metadata",
  9548. ".signature.p7s",
  9549. "ThirdPartyNotices.txt",
  9550. "dotnet_library_license.txt",
  9551. "lib/MonoAndroid10/_._",
  9552. "lib/MonoTouch10/_._",
  9553. "lib/net45/_._",
  9554. "lib/netcore50/System.Xml.XDocument.dll",
  9555. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9556. "lib/portable-net45+win8+wp8+wpa81/_._",
  9557. "lib/win8/_._",
  9558. "lib/wp80/_._",
  9559. "lib/wpa81/_._",
  9560. "lib/xamarinios10/_._",
  9561. "lib/xamarinmac20/_._",
  9562. "lib/xamarintvos10/_._",
  9563. "lib/xamarinwatchos10/_._",
  9564. "ref/MonoAndroid10/_._",
  9565. "ref/MonoTouch10/_._",
  9566. "ref/net45/_._",
  9567. "ref/netcore50/System.Xml.XDocument.dll",
  9568. "ref/netcore50/System.Xml.XDocument.xml",
  9569. "ref/netcore50/de/System.Xml.XDocument.xml",
  9570. "ref/netcore50/es/System.Xml.XDocument.xml",
  9571. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9572. "ref/netcore50/it/System.Xml.XDocument.xml",
  9573. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9574. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9575. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9576. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9577. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9578. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9579. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9580. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9581. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9582. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9583. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9584. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9585. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9586. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9587. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9588. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9589. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9590. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9591. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9592. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9593. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9594. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9595. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9596. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9597. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9598. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9599. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9600. "ref/portable-net45+win8+wp8+wpa81/_._",
  9601. "ref/win8/_._",
  9602. "ref/wp80/_._",
  9603. "ref/wpa81/_._",
  9604. "ref/xamarinios10/_._",
  9605. "ref/xamarinmac20/_._",
  9606. "ref/xamarintvos10/_._",
  9607. "ref/xamarinwatchos10/_._",
  9608. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9609. "system.xml.xdocument.nuspec"
  9610. ]
  9611. },
  9612. "System.Xml.XmlDocument/4.3.0": {
  9613. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9614. "type": "package",
  9615. "path": "system.xml.xmldocument/4.3.0",
  9616. "files": [
  9617. ".nupkg.metadata",
  9618. ".signature.p7s",
  9619. "ThirdPartyNotices.txt",
  9620. "dotnet_library_license.txt",
  9621. "lib/MonoAndroid10/_._",
  9622. "lib/MonoTouch10/_._",
  9623. "lib/net46/System.Xml.XmlDocument.dll",
  9624. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9625. "lib/xamarinios10/_._",
  9626. "lib/xamarinmac20/_._",
  9627. "lib/xamarintvos10/_._",
  9628. "lib/xamarinwatchos10/_._",
  9629. "ref/MonoAndroid10/_._",
  9630. "ref/MonoTouch10/_._",
  9631. "ref/net46/System.Xml.XmlDocument.dll",
  9632. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9633. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9634. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9635. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9636. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9637. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9638. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9639. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9640. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9641. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9642. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9643. "ref/xamarinios10/_._",
  9644. "ref/xamarinmac20/_._",
  9645. "ref/xamarintvos10/_._",
  9646. "ref/xamarinwatchos10/_._",
  9647. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9648. "system.xml.xmldocument.nuspec"
  9649. ]
  9650. },
  9651. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  9652. "type": "project",
  9653. "path": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj",
  9654. "msbuildProject": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj"
  9655. },
  9656. "WebAPIBase.NetCore.Enties/1.0.0": {
  9657. "type": "project",
  9658. "path": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj",
  9659. "msbuildProject": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj"
  9660. },
  9661. "WebAPIBase.Utils/1.0.0": {
  9662. "type": "project",
  9663. "path": "../Utils/WebAPIBase.Utils.csproj",
  9664. "msbuildProject": "../Utils/WebAPIBase.Utils.csproj"
  9665. }
  9666. },
  9667. "projectFileDependencyGroups": {
  9668. ".NETCoreApp,Version=v3.1": [
  9669. "MSTest.TestAdapter >= 2.1.0",
  9670. "MSTest.TestFramework >= 2.1.0",
  9671. "Microsoft.NET.Test.Sdk >= 16.5.0",
  9672. "WebAPIBase.NetCore.BusinessCore >= 1.0.0",
  9673. "coverlet.collector >= 1.2.0"
  9674. ]
  9675. },
  9676. "packageFolders": {
  9677. "C:\\Users\\1\\.nuget\\packages\\": {},
  9678. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
  9679. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  9680. },
  9681. "project": {
  9682. "version": "1.0.0",
  9683. "restore": {
  9684. "projectUniqueName": "D:\\路涛科技\\源代码\\dccloud工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9685. "projectName": "WebAPIBase.NetCore.BusinessCoreTests",
  9686. "projectPath": "D:\\路涛科技\\源代码\\dccloud工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9687. "packagesPath": "C:\\Users\\1\\.nuget\\packages\\",
  9688. "outputPath": "D:\\路涛科技\\源代码\\dccloud工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\obj\\",
  9689. "projectStyle": "PackageReference",
  9690. "fallbackFolders": [
  9691. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
  9692. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  9693. ],
  9694. "configFilePaths": [
  9695. "C:\\Users\\1\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9696. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9697. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9698. ],
  9699. "originalTargetFrameworks": [
  9700. "netcoreapp3.1"
  9701. ],
  9702. "sources": {
  9703. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9704. "https://api.nuget.org/v3/index.json": {}
  9705. },
  9706. "frameworks": {
  9707. "netcoreapp3.1": {
  9708. "targetAlias": "netcoreapp3.1",
  9709. "projectReferences": {
  9710. "D:\\路涛科技\\源代码\\dccloud工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj": {
  9711. "projectPath": "D:\\路涛科技\\源代码\\dccloud工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj"
  9712. }
  9713. }
  9714. }
  9715. },
  9716. "warningProperties": {
  9717. "warnAsError": [
  9718. "NU1605"
  9719. ]
  9720. }
  9721. },
  9722. "frameworks": {
  9723. "netcoreapp3.1": {
  9724. "targetAlias": "netcoreapp3.1",
  9725. "dependencies": {
  9726. "MSTest.TestAdapter": {
  9727. "target": "Package",
  9728. "version": "[2.1.0, )"
  9729. },
  9730. "MSTest.TestFramework": {
  9731. "target": "Package",
  9732. "version": "[2.1.0, )"
  9733. },
  9734. "Microsoft.NET.Test.Sdk": {
  9735. "target": "Package",
  9736. "version": "[16.5.0, )"
  9737. },
  9738. "coverlet.collector": {
  9739. "target": "Package",
  9740. "version": "[1.2.0, )"
  9741. }
  9742. },
  9743. "imports": [
  9744. "net461",
  9745. "net462",
  9746. "net47",
  9747. "net471",
  9748. "net472",
  9749. "net48"
  9750. ],
  9751. "assetTargetFallback": true,
  9752. "warn": true,
  9753. "frameworkReferences": {
  9754. "Microsoft.NETCore.App": {
  9755. "privateAssets": "all"
  9756. }
  9757. },
  9758. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
  9759. }
  9760. }
  9761. }
  9762. }