project.assets.json 263 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETStandard,Version=v2.0": {
  5. "Google.Protobuf/3.5.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "NETStandard.Library": "1.6.1"
  9. },
  10. "compile": {
  11. "lib/netstandard1.0/Google.Protobuf.dll": {}
  12. },
  13. "runtime": {
  14. "lib/netstandard1.0/Google.Protobuf.dll": {}
  15. }
  16. },
  17. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  18. "type": "package",
  19. "dependencies": {
  20. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  21. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  22. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  23. },
  24. "compile": {
  25. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  26. },
  27. "runtime": {
  28. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  29. }
  30. },
  31. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  32. "type": "package",
  33. "dependencies": {
  34. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  35. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  36. },
  37. "compile": {
  38. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  39. },
  40. "runtime": {
  41. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  42. }
  43. },
  44. "Microsoft.AspNetCore.Http/2.1.0": {
  45. "type": "package",
  46. "dependencies": {
  47. "Microsoft.AspNetCore.Http.Abstractions": "2.1.0",
  48. "Microsoft.AspNetCore.WebUtilities": "2.1.0",
  49. "Microsoft.Extensions.ObjectPool": "2.1.0",
  50. "Microsoft.Extensions.Options": "2.1.0",
  51. "Microsoft.Net.Http.Headers": "2.1.0"
  52. },
  53. "compile": {
  54. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
  55. },
  56. "runtime": {
  57. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
  58. }
  59. },
  60. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  61. "type": "package",
  62. "dependencies": {
  63. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  64. "System.Text.Encodings.Web": "4.5.0"
  65. },
  66. "compile": {
  67. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  68. },
  69. "runtime": {
  70. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  71. }
  72. },
  73. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  74. "type": "package",
  75. "dependencies": {
  76. "Microsoft.Extensions.Primitives": "2.2.0"
  77. },
  78. "compile": {
  79. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  80. },
  81. "runtime": {
  82. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  83. }
  84. },
  85. "Microsoft.AspNetCore.Routing.Abstractions/2.1.0": {
  86. "type": "package",
  87. "dependencies": {
  88. "Microsoft.AspNetCore.Http.Abstractions": "2.1.0"
  89. },
  90. "compile": {
  91. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  95. }
  96. },
  97. "Microsoft.AspNetCore.WebUtilities/2.1.0": {
  98. "type": "package",
  99. "dependencies": {
  100. "Microsoft.Net.Http.Headers": "2.1.0",
  101. "System.Text.Encodings.Web": "4.5.0"
  102. },
  103. "compile": {
  104. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  108. }
  109. },
  110. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  111. "type": "package",
  112. "dependencies": {
  113. "System.Threading.Tasks.Extensions": "4.5.2"
  114. },
  115. "compile": {
  116. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
  117. },
  118. "runtime": {
  119. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
  120. }
  121. },
  122. "Microsoft.CSharp/4.3.0": {
  123. "type": "package",
  124. "dependencies": {
  125. "System.Collections": "4.3.0",
  126. "System.Diagnostics.Debug": "4.3.0",
  127. "System.Dynamic.Runtime": "4.3.0",
  128. "System.Globalization": "4.3.0",
  129. "System.Linq": "4.3.0",
  130. "System.Linq.Expressions": "4.3.0",
  131. "System.ObjectModel": "4.3.0",
  132. "System.Reflection": "4.3.0",
  133. "System.Reflection.Extensions": "4.3.0",
  134. "System.Reflection.Primitives": "4.3.0",
  135. "System.Reflection.TypeExtensions": "4.3.0",
  136. "System.Resources.ResourceManager": "4.3.0",
  137. "System.Runtime": "4.3.0",
  138. "System.Runtime.Extensions": "4.3.0",
  139. "System.Runtime.InteropServices": "4.3.0",
  140. "System.Threading": "4.3.0"
  141. },
  142. "compile": {
  143. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  144. },
  145. "runtime": {
  146. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  147. }
  148. },
  149. "Microsoft.Data.Sqlite/2.2.4": {
  150. "type": "package",
  151. "dependencies": {
  152. "Microsoft.Data.Sqlite.Core": "2.2.4",
  153. "SQLitePCLRaw.bundle_green": "1.1.12"
  154. },
  155. "compile": {
  156. "lib/netstandard2.0/_._": {}
  157. },
  158. "runtime": {
  159. "lib/netstandard2.0/_._": {}
  160. }
  161. },
  162. "Microsoft.Data.Sqlite.Core/2.2.4": {
  163. "type": "package",
  164. "dependencies": {
  165. "SQLitePCLRaw.core": "1.1.12"
  166. },
  167. "compile": {
  168. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  169. },
  170. "runtime": {
  171. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  172. }
  173. },
  174. "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
  175. "type": "package",
  176. "dependencies": {
  177. "Microsoft.Extensions.Primitives": "3.1.2"
  178. },
  179. "compile": {
  180. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  181. },
  182. "runtime": {
  183. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  184. }
  185. },
  186. "Microsoft.Extensions.Caching.Memory/3.1.2": {
  187. "type": "package",
  188. "dependencies": {
  189. "Microsoft.Extensions.Caching.Abstractions": "3.1.2",
  190. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  191. "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
  192. "Microsoft.Extensions.Options": "3.1.2"
  193. },
  194. "compile": {
  195. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  199. }
  200. },
  201. "Microsoft.Extensions.Configuration/3.1.9": {
  202. "type": "package",
  203. "dependencies": {
  204. "Microsoft.Extensions.Configuration.Abstractions": "3.1.9"
  205. },
  206. "compile": {
  207. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  211. }
  212. },
  213. "Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.Extensions.Primitives": "3.1.9"
  217. },
  218. "compile": {
  219. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  220. },
  221. "runtime": {
  222. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  223. }
  224. },
  225. "Microsoft.Extensions.Configuration.Binder/2.1.0": {
  226. "type": "package",
  227. "dependencies": {
  228. "Microsoft.Extensions.Configuration": "2.1.0"
  229. },
  230. "compile": {
  231. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  232. },
  233. "runtime": {
  234. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  235. }
  236. },
  237. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  238. "type": "package",
  239. "dependencies": {
  240. "Microsoft.Extensions.Configuration": "3.1.2",
  241. "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
  242. },
  243. "compile": {
  244. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  245. },
  246. "runtime": {
  247. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  248. }
  249. },
  250. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  251. "type": "package",
  252. "dependencies": {
  253. "Microsoft.Extensions.Configuration": "3.1.2",
  254. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  255. "System.Text.Json": "4.7.1",
  256. "System.Threading.Tasks.Extensions": "4.5.2"
  257. },
  258. "compile": {
  259. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
  260. },
  261. "runtime": {
  262. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
  263. }
  264. },
  265. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  266. "type": "package",
  267. "compile": {
  268. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  269. },
  270. "runtime": {
  271. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  272. }
  273. },
  274. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  275. "type": "package",
  276. "dependencies": {
  277. "Microsoft.Extensions.Primitives": "3.1.2"
  278. },
  279. "compile": {
  280. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  281. },
  282. "runtime": {
  283. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  284. }
  285. },
  286. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  287. "type": "package",
  288. "dependencies": {
  289. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  290. "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
  291. },
  292. "compile": {
  293. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  294. },
  295. "runtime": {
  296. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  297. }
  298. },
  299. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  300. "type": "package",
  301. "compile": {
  302. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  303. },
  304. "runtime": {
  305. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  306. }
  307. },
  308. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  309. "type": "package",
  310. "dependencies": {
  311. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  312. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  313. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  314. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  315. },
  316. "compile": {
  317. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  318. },
  319. "runtime": {
  320. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  321. }
  322. },
  323. "Microsoft.Extensions.Logging/2.1.0": {
  324. "type": "package",
  325. "dependencies": {
  326. "Microsoft.Extensions.Configuration.Binder": "2.1.0",
  327. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0",
  328. "Microsoft.Extensions.Logging.Abstractions": "2.1.0",
  329. "Microsoft.Extensions.Options": "2.1.0"
  330. },
  331. "compile": {
  332. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  333. },
  334. "runtime": {
  335. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  336. }
  337. },
  338. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  339. "type": "package",
  340. "compile": {
  341. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  342. },
  343. "runtime": {
  344. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  345. }
  346. },
  347. "Microsoft.Extensions.ObjectPool/2.1.0": {
  348. "type": "package",
  349. "compile": {
  350. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
  351. },
  352. "runtime": {
  353. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
  354. }
  355. },
  356. "Microsoft.Extensions.Options/3.1.2": {
  357. "type": "package",
  358. "dependencies": {
  359. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  360. "Microsoft.Extensions.Primitives": "3.1.2",
  361. "System.ComponentModel.Annotations": "4.7.0"
  362. },
  363. "compile": {
  364. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  365. },
  366. "runtime": {
  367. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  368. }
  369. },
  370. "Microsoft.Extensions.Primitives/3.1.9": {
  371. "type": "package",
  372. "dependencies": {
  373. "System.Memory": "4.5.2",
  374. "System.Runtime.CompilerServices.Unsafe": "4.7.1"
  375. },
  376. "compile": {
  377. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  378. },
  379. "runtime": {
  380. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  381. }
  382. },
  383. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  384. "type": "package",
  385. "dependencies": {
  386. "Microsoft.IdentityModel.Tokens": "5.6.0",
  387. "Newtonsoft.Json": "10.0.1"
  388. },
  389. "compile": {
  390. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  391. },
  392. "runtime": {
  393. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  394. }
  395. },
  396. "Microsoft.IdentityModel.Logging/5.6.0": {
  397. "type": "package",
  398. "compile": {
  399. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  400. },
  401. "runtime": {
  402. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  403. }
  404. },
  405. "Microsoft.IdentityModel.Tokens/5.6.0": {
  406. "type": "package",
  407. "dependencies": {
  408. "Microsoft.IdentityModel.Logging": "5.6.0",
  409. "Newtonsoft.Json": "10.0.1",
  410. "System.Security.Cryptography.Cng": "4.5.0"
  411. },
  412. "compile": {
  413. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  414. },
  415. "runtime": {
  416. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  417. }
  418. },
  419. "Microsoft.Net.Http.Headers/2.1.0": {
  420. "type": "package",
  421. "dependencies": {
  422. "Microsoft.Extensions.Primitives": "2.1.0",
  423. "System.Buffers": "4.5.0"
  424. },
  425. "compile": {
  426. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  427. },
  428. "runtime": {
  429. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  430. }
  431. },
  432. "Microsoft.NETCore.Jit/2.0.8": {
  433. "type": "package"
  434. },
  435. "Microsoft.NETCore.Platforms/2.0.0": {
  436. "type": "package",
  437. "compile": {
  438. "lib/netstandard1.0/_._": {}
  439. },
  440. "runtime": {
  441. "lib/netstandard1.0/_._": {}
  442. }
  443. },
  444. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  445. "type": "package",
  446. "dependencies": {
  447. "Microsoft.NETCore.Jit": "2.0.8"
  448. },
  449. "compile": {
  450. "ref/netstandard1.0/_._": {}
  451. }
  452. },
  453. "Microsoft.NETCore.Targets/1.1.0": {
  454. "type": "package",
  455. "compile": {
  456. "lib/netstandard1.0/_._": {}
  457. },
  458. "runtime": {
  459. "lib/netstandard1.0/_._": {}
  460. }
  461. },
  462. "Microsoft.Win32.Registry/4.4.0": {
  463. "type": "package",
  464. "dependencies": {
  465. "System.Security.AccessControl": "4.4.0",
  466. "System.Security.Principal.Windows": "4.4.0"
  467. },
  468. "compile": {
  469. "ref/netstandard2.0/_._": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  473. },
  474. "runtimeTargets": {
  475. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  476. "assetType": "runtime",
  477. "rid": "win"
  478. }
  479. }
  480. },
  481. "MySql.Data/8.0.15": {
  482. "type": "package",
  483. "dependencies": {
  484. "Google.Protobuf": "3.5.1",
  485. "System.Configuration.ConfigurationManager": "4.4.1",
  486. "System.Security.Permissions": "4.4.1",
  487. "System.Text.Encoding.CodePages": "4.4.0"
  488. },
  489. "compile": {
  490. "lib/netstandard2.0/MySql.Data.dll": {}
  491. },
  492. "runtime": {
  493. "lib/netstandard2.0/MySql.Data.dll": {}
  494. }
  495. },
  496. "NETStandard.Library/2.0.3": {
  497. "type": "package",
  498. "dependencies": {
  499. "Microsoft.NETCore.Platforms": "1.1.0"
  500. },
  501. "compile": {
  502. "lib/netstandard1.0/_._": {}
  503. },
  504. "runtime": {
  505. "lib/netstandard1.0/_._": {}
  506. },
  507. "build": {
  508. "build/netstandard2.0/NETStandard.Library.targets": {}
  509. }
  510. },
  511. "Newtonsoft.Json/10.0.3": {
  512. "type": "package",
  513. "dependencies": {
  514. "Microsoft.CSharp": "4.3.0",
  515. "NETStandard.Library": "1.6.1",
  516. "System.ComponentModel.TypeConverter": "4.3.0",
  517. "System.Runtime.Serialization.Formatters": "4.3.0",
  518. "System.Runtime.Serialization.Primitives": "4.3.0",
  519. "System.Xml.XmlDocument": "4.3.0"
  520. },
  521. "compile": {
  522. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  523. },
  524. "runtime": {
  525. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  526. }
  527. },
  528. "NLog/4.7.5": {
  529. "type": "package",
  530. "compile": {
  531. "lib/netstandard2.0/NLog.dll": {}
  532. },
  533. "runtime": {
  534. "lib/netstandard2.0/NLog.dll": {}
  535. }
  536. },
  537. "NLog.Extensions.Logging/1.6.4": {
  538. "type": "package",
  539. "dependencies": {
  540. "Microsoft.Extensions.Logging": "2.1.0",
  541. "NLog": "4.7.2"
  542. },
  543. "compile": {
  544. "lib/netstandard2.0/NLog.Extensions.Logging.dll": {}
  545. },
  546. "runtime": {
  547. "lib/netstandard2.0/NLog.Extensions.Logging.dll": {}
  548. }
  549. },
  550. "NLog.Web.AspNetCore/4.9.3": {
  551. "type": "package",
  552. "dependencies": {
  553. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.0",
  554. "Microsoft.AspNetCore.Http": "2.1.0",
  555. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.0",
  556. "NLog.Extensions.Logging": "1.6.4"
  557. },
  558. "compile": {
  559. "lib/netstandard2.0/NLog.Web.AspNetCore.dll": {}
  560. },
  561. "runtime": {
  562. "lib/netstandard2.0/NLog.Web.AspNetCore.dll": {}
  563. }
  564. },
  565. "Npgsql/3.2.7": {
  566. "type": "package",
  567. "dependencies": {
  568. "System.Threading.Tasks.Extensions": "4.3.0"
  569. },
  570. "compile": {
  571. "lib/netstandard2.0/Npgsql.dll": {}
  572. },
  573. "runtime": {
  574. "lib/netstandard2.0/Npgsql.dll": {}
  575. }
  576. },
  577. "Oracle.ManagedDataAccess.Core/2.18.3": {
  578. "type": "package",
  579. "compile": {
  580. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  581. },
  582. "runtime": {
  583. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  584. }
  585. },
  586. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  587. "type": "package",
  588. "dependencies": {
  589. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  590. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  591. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  592. }
  593. },
  594. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  595. "type": "package",
  596. "runtimeTargets": {
  597. "runtimes/win-arm64/native/sni.dll": {
  598. "assetType": "native",
  599. "rid": "win-arm64"
  600. }
  601. }
  602. },
  603. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  604. "type": "package",
  605. "runtimeTargets": {
  606. "runtimes/win-x64/native/sni.dll": {
  607. "assetType": "native",
  608. "rid": "win-x64"
  609. }
  610. }
  611. },
  612. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  613. "type": "package",
  614. "runtimeTargets": {
  615. "runtimes/win-x86/native/sni.dll": {
  616. "assetType": "native",
  617. "rid": "win-x86"
  618. }
  619. }
  620. },
  621. "SQLitePCLRaw.bundle_green/1.1.12": {
  622. "type": "package",
  623. "dependencies": {
  624. "NETStandard.Library": "1.6.0",
  625. "SQLitePCLRaw.core": "1.1.12"
  626. },
  627. "compile": {
  628. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll": {},
  629. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll": {}
  630. },
  631. "runtime": {
  632. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll": {},
  633. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll": {}
  634. }
  635. },
  636. "SQLitePCLRaw.core/1.1.12": {
  637. "type": "package",
  638. "dependencies": {
  639. "NETStandard.Library": "1.6.0"
  640. },
  641. "compile": {
  642. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  643. },
  644. "runtime": {
  645. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  646. }
  647. },
  648. "sqlSugarCore/5.0.0.18": {
  649. "type": "package",
  650. "dependencies": {
  651. "Microsoft.Data.Sqlite": "2.2.4",
  652. "MySql.Data": "8.0.15",
  653. "Newtonsoft.Json": "10.0.3",
  654. "Npgsql": "3.2.7",
  655. "Oracle.ManagedDataAccess.Core": "2.18.3",
  656. "System.Data.Common": "4.3.0",
  657. "System.Data.SqlClient": "4.4.0",
  658. "System.Reflection.Emit.Lightweight": "4.3.0"
  659. },
  660. "compile": {
  661. "lib/netstandard2.0/SqlSugar.dll": {}
  662. },
  663. "runtime": {
  664. "lib/netstandard2.0/SqlSugar.dll": {}
  665. }
  666. },
  667. "System.Buffers/4.5.0": {
  668. "type": "package",
  669. "compile": {
  670. "ref/netstandard2.0/System.Buffers.dll": {}
  671. },
  672. "runtime": {
  673. "lib/netstandard2.0/System.Buffers.dll": {}
  674. }
  675. },
  676. "System.Collections/4.3.0": {
  677. "type": "package",
  678. "dependencies": {
  679. "Microsoft.NETCore.Platforms": "1.1.0",
  680. "Microsoft.NETCore.Targets": "1.1.0",
  681. "System.Runtime": "4.3.0"
  682. },
  683. "compile": {
  684. "ref/netstandard1.3/_._": {}
  685. }
  686. },
  687. "System.Collections.NonGeneric/4.3.0": {
  688. "type": "package",
  689. "dependencies": {
  690. "System.Diagnostics.Debug": "4.3.0",
  691. "System.Globalization": "4.3.0",
  692. "System.Resources.ResourceManager": "4.3.0",
  693. "System.Runtime": "4.3.0",
  694. "System.Runtime.Extensions": "4.3.0",
  695. "System.Threading": "4.3.0"
  696. },
  697. "compile": {
  698. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  699. },
  700. "runtime": {
  701. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  702. }
  703. },
  704. "System.Collections.Specialized/4.3.0": {
  705. "type": "package",
  706. "dependencies": {
  707. "System.Collections.NonGeneric": "4.3.0",
  708. "System.Globalization": "4.3.0",
  709. "System.Globalization.Extensions": "4.3.0",
  710. "System.Resources.ResourceManager": "4.3.0",
  711. "System.Runtime": "4.3.0",
  712. "System.Runtime.Extensions": "4.3.0",
  713. "System.Threading": "4.3.0"
  714. },
  715. "compile": {
  716. "ref/netstandard1.3/_._": {}
  717. },
  718. "runtime": {
  719. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  720. }
  721. },
  722. "System.ComponentModel/4.3.0": {
  723. "type": "package",
  724. "dependencies": {
  725. "System.Runtime": "4.3.0"
  726. },
  727. "compile": {
  728. "ref/netstandard1.0/System.ComponentModel.dll": {}
  729. },
  730. "runtime": {
  731. "lib/netstandard1.3/System.ComponentModel.dll": {}
  732. }
  733. },
  734. "System.ComponentModel.Annotations/4.7.0": {
  735. "type": "package",
  736. "compile": {
  737. "ref/netstandard2.0/System.ComponentModel.Annotations.dll": {}
  738. },
  739. "runtime": {
  740. "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {}
  741. }
  742. },
  743. "System.ComponentModel.Primitives/4.3.0": {
  744. "type": "package",
  745. "dependencies": {
  746. "System.ComponentModel": "4.3.0",
  747. "System.Resources.ResourceManager": "4.3.0",
  748. "System.Runtime": "4.3.0"
  749. },
  750. "compile": {
  751. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  752. },
  753. "runtime": {
  754. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  755. }
  756. },
  757. "System.ComponentModel.TypeConverter/4.3.0": {
  758. "type": "package",
  759. "dependencies": {
  760. "System.Collections": "4.3.0",
  761. "System.Collections.NonGeneric": "4.3.0",
  762. "System.Collections.Specialized": "4.3.0",
  763. "System.ComponentModel": "4.3.0",
  764. "System.ComponentModel.Primitives": "4.3.0",
  765. "System.Globalization": "4.3.0",
  766. "System.Linq": "4.3.0",
  767. "System.Reflection": "4.3.0",
  768. "System.Reflection.Extensions": "4.3.0",
  769. "System.Reflection.Primitives": "4.3.0",
  770. "System.Reflection.TypeExtensions": "4.3.0",
  771. "System.Resources.ResourceManager": "4.3.0",
  772. "System.Runtime": "4.3.0",
  773. "System.Runtime.Extensions": "4.3.0",
  774. "System.Threading": "4.3.0"
  775. },
  776. "compile": {
  777. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  778. },
  779. "runtime": {
  780. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  781. }
  782. },
  783. "System.Configuration.ConfigurationManager/4.4.1": {
  784. "type": "package",
  785. "dependencies": {
  786. "System.Security.Cryptography.ProtectedData": "4.4.0"
  787. },
  788. "compile": {
  789. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  790. },
  791. "runtime": {
  792. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  793. }
  794. },
  795. "System.Data.Common/4.3.0": {
  796. "type": "package",
  797. "dependencies": {
  798. "System.Collections": "4.3.0",
  799. "System.Globalization": "4.3.0",
  800. "System.IO": "4.3.0",
  801. "System.Resources.ResourceManager": "4.3.0",
  802. "System.Runtime": "4.3.0",
  803. "System.Runtime.Extensions": "4.3.0",
  804. "System.Text.RegularExpressions": "4.3.0",
  805. "System.Threading.Tasks": "4.3.0"
  806. },
  807. "compile": {
  808. "ref/netstandard1.2/System.Data.Common.dll": {}
  809. },
  810. "runtime": {
  811. "lib/netstandard1.2/System.Data.Common.dll": {}
  812. }
  813. },
  814. "System.Data.SqlClient/4.4.0": {
  815. "type": "package",
  816. "dependencies": {
  817. "Microsoft.Win32.Registry": "4.4.0",
  818. "System.Diagnostics.DiagnosticSource": "4.4.1",
  819. "System.Security.Principal.Windows": "4.4.0",
  820. "System.Text.Encoding.CodePages": "4.4.0",
  821. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  822. },
  823. "compile": {
  824. "ref/netstandard2.0/System.Data.SqlClient.dll": {}
  825. },
  826. "runtime": {
  827. "lib/netstandard2.0/System.Data.SqlClient.dll": {}
  828. },
  829. "runtimeTargets": {
  830. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
  831. "assetType": "runtime",
  832. "rid": "unix"
  833. },
  834. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
  835. "assetType": "runtime",
  836. "rid": "win"
  837. }
  838. }
  839. },
  840. "System.Diagnostics.Debug/4.3.0": {
  841. "type": "package",
  842. "dependencies": {
  843. "Microsoft.NETCore.Platforms": "1.1.0",
  844. "Microsoft.NETCore.Targets": "1.1.0",
  845. "System.Runtime": "4.3.0"
  846. },
  847. "compile": {
  848. "ref/netstandard1.3/_._": {}
  849. }
  850. },
  851. "System.Diagnostics.DiagnosticSource/4.4.1": {
  852. "type": "package",
  853. "dependencies": {
  854. "System.Collections": "4.3.0",
  855. "System.Diagnostics.Debug": "4.3.0",
  856. "System.Diagnostics.Tracing": "4.3.0",
  857. "System.Reflection": "4.3.0",
  858. "System.Runtime": "4.3.0",
  859. "System.Runtime.Extensions": "4.3.0",
  860. "System.Threading": "4.3.0"
  861. },
  862. "compile": {
  863. "lib/netstandard1.3/_._": {}
  864. },
  865. "runtime": {
  866. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  867. }
  868. },
  869. "System.Diagnostics.Tracing/4.3.0": {
  870. "type": "package",
  871. "dependencies": {
  872. "Microsoft.NETCore.Platforms": "1.1.0",
  873. "Microsoft.NETCore.Targets": "1.1.0",
  874. "System.Runtime": "4.3.0"
  875. },
  876. "compile": {
  877. "ref/netstandard1.5/_._": {}
  878. }
  879. },
  880. "System.Drawing.Common/4.7.0": {
  881. "type": "package",
  882. "compile": {
  883. "ref/netstandard2.0/System.Drawing.Common.dll": {}
  884. },
  885. "runtime": {
  886. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  887. }
  888. },
  889. "System.Dynamic.Runtime/4.3.0": {
  890. "type": "package",
  891. "dependencies": {
  892. "System.Collections": "4.3.0",
  893. "System.Diagnostics.Debug": "4.3.0",
  894. "System.Linq": "4.3.0",
  895. "System.Linq.Expressions": "4.3.0",
  896. "System.ObjectModel": "4.3.0",
  897. "System.Reflection": "4.3.0",
  898. "System.Reflection.Emit": "4.3.0",
  899. "System.Reflection.Emit.ILGeneration": "4.3.0",
  900. "System.Reflection.Primitives": "4.3.0",
  901. "System.Reflection.TypeExtensions": "4.3.0",
  902. "System.Resources.ResourceManager": "4.3.0",
  903. "System.Runtime": "4.3.0",
  904. "System.Runtime.Extensions": "4.3.0",
  905. "System.Threading": "4.3.0"
  906. },
  907. "compile": {
  908. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  909. },
  910. "runtime": {
  911. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  912. }
  913. },
  914. "System.Globalization/4.3.0": {
  915. "type": "package",
  916. "dependencies": {
  917. "Microsoft.NETCore.Platforms": "1.1.0",
  918. "Microsoft.NETCore.Targets": "1.1.0",
  919. "System.Runtime": "4.3.0"
  920. },
  921. "compile": {
  922. "ref/netstandard1.3/System.Globalization.dll": {}
  923. }
  924. },
  925. "System.Globalization.Extensions/4.3.0": {
  926. "type": "package",
  927. "dependencies": {
  928. "Microsoft.NETCore.Platforms": "1.1.0",
  929. "System.Globalization": "4.3.0",
  930. "System.Resources.ResourceManager": "4.3.0",
  931. "System.Runtime": "4.3.0",
  932. "System.Runtime.Extensions": "4.3.0",
  933. "System.Runtime.InteropServices": "4.3.0"
  934. },
  935. "compile": {
  936. "ref/netstandard1.3/_._": {}
  937. },
  938. "runtimeTargets": {
  939. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  940. "assetType": "runtime",
  941. "rid": "unix"
  942. },
  943. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  944. "assetType": "runtime",
  945. "rid": "win"
  946. }
  947. }
  948. },
  949. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  950. "type": "package",
  951. "dependencies": {
  952. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  953. "Microsoft.IdentityModel.Tokens": "5.6.0",
  954. "Newtonsoft.Json": "10.0.1"
  955. },
  956. "compile": {
  957. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  958. },
  959. "runtime": {
  960. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  961. }
  962. },
  963. "System.IO/4.3.0": {
  964. "type": "package",
  965. "dependencies": {
  966. "Microsoft.NETCore.Platforms": "1.1.0",
  967. "Microsoft.NETCore.Targets": "1.1.0",
  968. "System.Runtime": "4.3.0",
  969. "System.Text.Encoding": "4.3.0",
  970. "System.Threading.Tasks": "4.3.0"
  971. },
  972. "compile": {
  973. "ref/netstandard1.5/System.IO.dll": {}
  974. }
  975. },
  976. "System.IO.FileSystem/4.3.0": {
  977. "type": "package",
  978. "dependencies": {
  979. "Microsoft.NETCore.Platforms": "1.1.0",
  980. "Microsoft.NETCore.Targets": "1.1.0",
  981. "System.IO": "4.3.0",
  982. "System.IO.FileSystem.Primitives": "4.3.0",
  983. "System.Runtime": "4.3.0",
  984. "System.Runtime.Handles": "4.3.0",
  985. "System.Text.Encoding": "4.3.0",
  986. "System.Threading.Tasks": "4.3.0"
  987. },
  988. "compile": {
  989. "ref/netstandard1.3/_._": {}
  990. }
  991. },
  992. "System.IO.FileSystem.Primitives/4.3.0": {
  993. "type": "package",
  994. "dependencies": {
  995. "System.Runtime": "4.3.0"
  996. },
  997. "compile": {
  998. "ref/netstandard1.3/_._": {}
  999. },
  1000. "runtime": {
  1001. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1002. }
  1003. },
  1004. "System.Linq/4.3.0": {
  1005. "type": "package",
  1006. "dependencies": {
  1007. "System.Collections": "4.3.0",
  1008. "System.Diagnostics.Debug": "4.3.0",
  1009. "System.Resources.ResourceManager": "4.3.0",
  1010. "System.Runtime": "4.3.0",
  1011. "System.Runtime.Extensions": "4.3.0"
  1012. },
  1013. "compile": {
  1014. "ref/netstandard1.6/_._": {}
  1015. },
  1016. "runtime": {
  1017. "lib/netstandard1.6/System.Linq.dll": {}
  1018. }
  1019. },
  1020. "System.Linq.Expressions/4.3.0": {
  1021. "type": "package",
  1022. "dependencies": {
  1023. "System.Collections": "4.3.0",
  1024. "System.Diagnostics.Debug": "4.3.0",
  1025. "System.Globalization": "4.3.0",
  1026. "System.IO": "4.3.0",
  1027. "System.Linq": "4.3.0",
  1028. "System.ObjectModel": "4.3.0",
  1029. "System.Reflection": "4.3.0",
  1030. "System.Reflection.Emit": "4.3.0",
  1031. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1032. "System.Reflection.Emit.Lightweight": "4.3.0",
  1033. "System.Reflection.Extensions": "4.3.0",
  1034. "System.Reflection.Primitives": "4.3.0",
  1035. "System.Reflection.TypeExtensions": "4.3.0",
  1036. "System.Resources.ResourceManager": "4.3.0",
  1037. "System.Runtime": "4.3.0",
  1038. "System.Runtime.Extensions": "4.3.0",
  1039. "System.Threading": "4.3.0"
  1040. },
  1041. "compile": {
  1042. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1043. },
  1044. "runtime": {
  1045. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1046. }
  1047. },
  1048. "System.Memory/4.5.3": {
  1049. "type": "package",
  1050. "dependencies": {
  1051. "System.Buffers": "4.4.0",
  1052. "System.Numerics.Vectors": "4.4.0",
  1053. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  1054. },
  1055. "compile": {
  1056. "lib/netstandard2.0/System.Memory.dll": {}
  1057. },
  1058. "runtime": {
  1059. "lib/netstandard2.0/System.Memory.dll": {}
  1060. }
  1061. },
  1062. "System.Net.Http.WinHttpHandler/4.4.0": {
  1063. "type": "package",
  1064. "dependencies": {
  1065. "System.Buffers": "4.4.0"
  1066. },
  1067. "compile": {
  1068. "ref/netstandard2.0/_._": {}
  1069. },
  1070. "runtime": {
  1071. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  1072. },
  1073. "runtimeTargets": {
  1074. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  1075. "assetType": "runtime",
  1076. "rid": "win"
  1077. }
  1078. }
  1079. },
  1080. "System.Numerics.Vectors/4.5.0": {
  1081. "type": "package",
  1082. "compile": {
  1083. "ref/netstandard2.0/System.Numerics.Vectors.dll": {}
  1084. },
  1085. "runtime": {
  1086. "lib/netstandard2.0/System.Numerics.Vectors.dll": {}
  1087. }
  1088. },
  1089. "System.ObjectModel/4.3.0": {
  1090. "type": "package",
  1091. "dependencies": {
  1092. "System.Collections": "4.3.0",
  1093. "System.Diagnostics.Debug": "4.3.0",
  1094. "System.Resources.ResourceManager": "4.3.0",
  1095. "System.Runtime": "4.3.0",
  1096. "System.Threading": "4.3.0"
  1097. },
  1098. "compile": {
  1099. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1100. },
  1101. "runtime": {
  1102. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1103. }
  1104. },
  1105. "System.Private.ServiceModel/4.4.4": {
  1106. "type": "package",
  1107. "dependencies": {
  1108. "Microsoft.NETCore.Platforms": "2.0.0",
  1109. "System.Net.Http.WinHttpHandler": "4.4.0",
  1110. "System.Reflection.DispatchProxy": "4.4.0",
  1111. "System.Security.Principal.Windows": "4.4.0"
  1112. },
  1113. "compile": {
  1114. "ref/netstandard/_._": {}
  1115. },
  1116. "runtimeTargets": {
  1117. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  1118. "assetType": "runtime",
  1119. "rid": "unix"
  1120. },
  1121. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  1122. "assetType": "runtime",
  1123. "rid": "win7"
  1124. }
  1125. }
  1126. },
  1127. "System.Reflection/4.3.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "Microsoft.NETCore.Platforms": "1.1.0",
  1131. "Microsoft.NETCore.Targets": "1.1.0",
  1132. "System.IO": "4.3.0",
  1133. "System.Reflection.Primitives": "4.3.0",
  1134. "System.Runtime": "4.3.0"
  1135. },
  1136. "compile": {
  1137. "ref/netstandard1.5/System.Reflection.dll": {}
  1138. }
  1139. },
  1140. "System.Reflection.DispatchProxy/4.4.0": {
  1141. "type": "package",
  1142. "compile": {
  1143. "ref/netstandard2.0/_._": {}
  1144. },
  1145. "runtime": {
  1146. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll": {}
  1147. }
  1148. },
  1149. "System.Reflection.Emit/4.3.0": {
  1150. "type": "package",
  1151. "dependencies": {
  1152. "System.IO": "4.3.0",
  1153. "System.Reflection": "4.3.0",
  1154. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1155. "System.Reflection.Primitives": "4.3.0",
  1156. "System.Runtime": "4.3.0"
  1157. },
  1158. "compile": {
  1159. "ref/netstandard1.1/_._": {}
  1160. },
  1161. "runtime": {
  1162. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1163. }
  1164. },
  1165. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1166. "type": "package",
  1167. "dependencies": {
  1168. "System.Reflection": "4.3.0",
  1169. "System.Reflection.Primitives": "4.3.0",
  1170. "System.Runtime": "4.3.0"
  1171. },
  1172. "compile": {
  1173. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  1174. },
  1175. "runtime": {
  1176. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1177. }
  1178. },
  1179. "System.Reflection.Emit.Lightweight/4.3.0": {
  1180. "type": "package",
  1181. "dependencies": {
  1182. "System.Reflection": "4.3.0",
  1183. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1184. "System.Reflection.Primitives": "4.3.0",
  1185. "System.Runtime": "4.3.0"
  1186. },
  1187. "compile": {
  1188. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  1189. },
  1190. "runtime": {
  1191. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1192. }
  1193. },
  1194. "System.Reflection.Extensions/4.3.0": {
  1195. "type": "package",
  1196. "dependencies": {
  1197. "Microsoft.NETCore.Platforms": "1.1.0",
  1198. "Microsoft.NETCore.Targets": "1.1.0",
  1199. "System.Reflection": "4.3.0",
  1200. "System.Runtime": "4.3.0"
  1201. },
  1202. "compile": {
  1203. "ref/netstandard1.0/_._": {}
  1204. }
  1205. },
  1206. "System.Reflection.Primitives/4.3.0": {
  1207. "type": "package",
  1208. "dependencies": {
  1209. "Microsoft.NETCore.Platforms": "1.1.0",
  1210. "Microsoft.NETCore.Targets": "1.1.0",
  1211. "System.Runtime": "4.3.0"
  1212. },
  1213. "compile": {
  1214. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1215. }
  1216. },
  1217. "System.Reflection.TypeExtensions/4.3.0": {
  1218. "type": "package",
  1219. "dependencies": {
  1220. "System.Reflection": "4.3.0",
  1221. "System.Runtime": "4.3.0"
  1222. },
  1223. "compile": {
  1224. "ref/netstandard1.5/_._": {}
  1225. },
  1226. "runtime": {
  1227. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1228. }
  1229. },
  1230. "System.Resources.ResourceManager/4.3.0": {
  1231. "type": "package",
  1232. "dependencies": {
  1233. "Microsoft.NETCore.Platforms": "1.1.0",
  1234. "Microsoft.NETCore.Targets": "1.1.0",
  1235. "System.Globalization": "4.3.0",
  1236. "System.Reflection": "4.3.0",
  1237. "System.Runtime": "4.3.0"
  1238. },
  1239. "compile": {
  1240. "ref/netstandard1.0/_._": {}
  1241. }
  1242. },
  1243. "System.Runtime/4.3.0": {
  1244. "type": "package",
  1245. "dependencies": {
  1246. "Microsoft.NETCore.Platforms": "1.1.0",
  1247. "Microsoft.NETCore.Targets": "1.1.0"
  1248. },
  1249. "compile": {
  1250. "ref/netstandard1.5/System.Runtime.dll": {}
  1251. }
  1252. },
  1253. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  1254. "type": "package",
  1255. "compile": {
  1256. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1257. },
  1258. "runtime": {
  1259. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1260. }
  1261. },
  1262. "System.Runtime.Extensions/4.3.0": {
  1263. "type": "package",
  1264. "dependencies": {
  1265. "Microsoft.NETCore.Platforms": "1.1.0",
  1266. "Microsoft.NETCore.Targets": "1.1.0",
  1267. "System.Runtime": "4.3.0"
  1268. },
  1269. "compile": {
  1270. "ref/netstandard1.5/_._": {}
  1271. }
  1272. },
  1273. "System.Runtime.Handles/4.3.0": {
  1274. "type": "package",
  1275. "dependencies": {
  1276. "Microsoft.NETCore.Platforms": "1.1.0",
  1277. "Microsoft.NETCore.Targets": "1.1.0",
  1278. "System.Runtime": "4.3.0"
  1279. },
  1280. "compile": {
  1281. "ref/netstandard1.3/_._": {}
  1282. }
  1283. },
  1284. "System.Runtime.InteropServices/4.3.0": {
  1285. "type": "package",
  1286. "dependencies": {
  1287. "Microsoft.NETCore.Platforms": "1.1.0",
  1288. "Microsoft.NETCore.Targets": "1.1.0",
  1289. "System.Reflection": "4.3.0",
  1290. "System.Reflection.Primitives": "4.3.0",
  1291. "System.Runtime": "4.3.0",
  1292. "System.Runtime.Handles": "4.3.0"
  1293. },
  1294. "compile": {
  1295. "ref/netstandard1.5/_._": {}
  1296. }
  1297. },
  1298. "System.Runtime.Serialization.Formatters/4.3.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "System.Collections": "4.3.0",
  1302. "System.Reflection": "4.3.0",
  1303. "System.Resources.ResourceManager": "4.3.0",
  1304. "System.Runtime": "4.3.0",
  1305. "System.Runtime.Serialization.Primitives": "4.3.0"
  1306. },
  1307. "compile": {
  1308. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  1309. },
  1310. "runtime": {
  1311. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  1312. }
  1313. },
  1314. "System.Runtime.Serialization.Primitives/4.3.0": {
  1315. "type": "package",
  1316. "dependencies": {
  1317. "System.Resources.ResourceManager": "4.3.0",
  1318. "System.Runtime": "4.3.0"
  1319. },
  1320. "compile": {
  1321. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1322. },
  1323. "runtime": {
  1324. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1325. }
  1326. },
  1327. "System.Security.AccessControl/4.4.0": {
  1328. "type": "package",
  1329. "dependencies": {
  1330. "System.Security.Principal.Windows": "4.4.0"
  1331. },
  1332. "compile": {
  1333. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  1334. },
  1335. "runtime": {
  1336. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  1337. },
  1338. "runtimeTargets": {
  1339. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll": {
  1340. "assetType": "runtime",
  1341. "rid": "win"
  1342. }
  1343. }
  1344. },
  1345. "System.Security.Cryptography.Cng/4.5.0": {
  1346. "type": "package",
  1347. "compile": {
  1348. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll": {}
  1349. },
  1350. "runtime": {
  1351. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll": {}
  1352. },
  1353. "runtimeTargets": {
  1354. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1355. "assetType": "runtime",
  1356. "rid": "win"
  1357. }
  1358. }
  1359. },
  1360. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1361. "type": "package",
  1362. "compile": {
  1363. "ref/netstandard2.0/_._": {}
  1364. },
  1365. "runtime": {
  1366. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  1367. },
  1368. "runtimeTargets": {
  1369. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1370. "assetType": "runtime",
  1371. "rid": "win"
  1372. }
  1373. }
  1374. },
  1375. "System.Security.Permissions/4.4.1": {
  1376. "type": "package",
  1377. "dependencies": {
  1378. "System.Security.AccessControl": "4.4.0"
  1379. },
  1380. "compile": {
  1381. "ref/netstandard2.0/System.Security.Permissions.dll": {}
  1382. },
  1383. "runtime": {
  1384. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  1385. }
  1386. },
  1387. "System.Security.Principal.Windows/4.4.0": {
  1388. "type": "package",
  1389. "compile": {
  1390. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {}
  1391. },
  1392. "runtime": {
  1393. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  1394. },
  1395. "runtimeTargets": {
  1396. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  1397. "assetType": "runtime",
  1398. "rid": "win"
  1399. }
  1400. }
  1401. },
  1402. "System.ServiceModel.Duplex/4.4.4": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "System.Private.ServiceModel": "4.4.4",
  1406. "System.ServiceModel.Primitives": "4.4.4"
  1407. },
  1408. "compile": {
  1409. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  1410. },
  1411. "runtime": {
  1412. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  1413. }
  1414. },
  1415. "System.ServiceModel.Http/4.4.4": {
  1416. "type": "package",
  1417. "dependencies": {
  1418. "System.Private.ServiceModel": "4.4.4",
  1419. "System.ServiceModel.Primitives": "4.4.4"
  1420. },
  1421. "compile": {
  1422. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  1423. },
  1424. "runtime": {
  1425. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  1426. }
  1427. },
  1428. "System.ServiceModel.NetTcp/4.4.4": {
  1429. "type": "package",
  1430. "dependencies": {
  1431. "System.Private.ServiceModel": "4.4.4",
  1432. "System.ServiceModel.Primitives": "4.4.4"
  1433. },
  1434. "compile": {
  1435. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  1436. },
  1437. "runtime": {
  1438. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  1439. }
  1440. },
  1441. "System.ServiceModel.Primitives/4.4.4": {
  1442. "type": "package",
  1443. "dependencies": {
  1444. "System.Private.ServiceModel": "4.4.4"
  1445. },
  1446. "compile": {
  1447. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  1448. "ref/netstandard2.0/System.ServiceModel.dll": {}
  1449. },
  1450. "runtime": {
  1451. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  1452. "lib/netstandard2.0/System.ServiceModel.dll": {}
  1453. }
  1454. },
  1455. "System.ServiceModel.Security/4.4.4": {
  1456. "type": "package",
  1457. "dependencies": {
  1458. "System.Private.ServiceModel": "4.4.4",
  1459. "System.ServiceModel.Primitives": "4.4.4"
  1460. },
  1461. "compile": {
  1462. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  1463. },
  1464. "runtime": {
  1465. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  1466. }
  1467. },
  1468. "System.Text.Encoding/4.3.0": {
  1469. "type": "package",
  1470. "dependencies": {
  1471. "Microsoft.NETCore.Platforms": "1.1.0",
  1472. "Microsoft.NETCore.Targets": "1.1.0",
  1473. "System.Runtime": "4.3.0"
  1474. },
  1475. "compile": {
  1476. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  1477. }
  1478. },
  1479. "System.Text.Encoding.CodePages/4.4.0": {
  1480. "type": "package",
  1481. "compile": {
  1482. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1483. },
  1484. "runtime": {
  1485. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1486. },
  1487. "runtimeTargets": {
  1488. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  1489. "assetType": "runtime",
  1490. "rid": "win"
  1491. }
  1492. }
  1493. },
  1494. "System.Text.Encoding.Extensions/4.3.0": {
  1495. "type": "package",
  1496. "dependencies": {
  1497. "Microsoft.NETCore.Platforms": "1.1.0",
  1498. "Microsoft.NETCore.Targets": "1.1.0",
  1499. "System.Runtime": "4.3.0",
  1500. "System.Text.Encoding": "4.3.0"
  1501. },
  1502. "compile": {
  1503. "ref/netstandard1.3/_._": {}
  1504. }
  1505. },
  1506. "System.Text.Encodings.Web/4.7.0": {
  1507. "type": "package",
  1508. "dependencies": {
  1509. "System.Memory": "4.5.3"
  1510. },
  1511. "compile": {
  1512. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1513. },
  1514. "runtime": {
  1515. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  1516. }
  1517. },
  1518. "System.Text.Json/4.7.1": {
  1519. "type": "package",
  1520. "dependencies": {
  1521. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  1522. "System.Buffers": "4.5.0",
  1523. "System.Memory": "4.5.3",
  1524. "System.Numerics.Vectors": "4.5.0",
  1525. "System.Runtime.CompilerServices.Unsafe": "4.7.0",
  1526. "System.Text.Encodings.Web": "4.7.0",
  1527. "System.Threading.Tasks.Extensions": "4.5.2"
  1528. },
  1529. "compile": {
  1530. "lib/netstandard2.0/System.Text.Json.dll": {}
  1531. },
  1532. "runtime": {
  1533. "lib/netstandard2.0/System.Text.Json.dll": {}
  1534. }
  1535. },
  1536. "System.Text.RegularExpressions/4.3.0": {
  1537. "type": "package",
  1538. "dependencies": {
  1539. "System.Collections": "4.3.0",
  1540. "System.Globalization": "4.3.0",
  1541. "System.Resources.ResourceManager": "4.3.0",
  1542. "System.Runtime": "4.3.0",
  1543. "System.Runtime.Extensions": "4.3.0",
  1544. "System.Threading": "4.3.0"
  1545. },
  1546. "compile": {
  1547. "ref/netstandard1.6/_._": {}
  1548. },
  1549. "runtime": {
  1550. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1551. }
  1552. },
  1553. "System.Threading/4.3.0": {
  1554. "type": "package",
  1555. "dependencies": {
  1556. "System.Runtime": "4.3.0",
  1557. "System.Threading.Tasks": "4.3.0"
  1558. },
  1559. "compile": {
  1560. "ref/netstandard1.3/_._": {}
  1561. },
  1562. "runtime": {
  1563. "lib/netstandard1.3/System.Threading.dll": {}
  1564. }
  1565. },
  1566. "System.Threading.Tasks/4.3.0": {
  1567. "type": "package",
  1568. "dependencies": {
  1569. "Microsoft.NETCore.Platforms": "1.1.0",
  1570. "Microsoft.NETCore.Targets": "1.1.0",
  1571. "System.Runtime": "4.3.0"
  1572. },
  1573. "compile": {
  1574. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  1575. }
  1576. },
  1577. "System.Threading.Tasks.Extensions/4.5.2": {
  1578. "type": "package",
  1579. "dependencies": {
  1580. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  1581. },
  1582. "compile": {
  1583. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
  1584. },
  1585. "runtime": {
  1586. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
  1587. }
  1588. },
  1589. "System.Xml.ReaderWriter/4.3.0": {
  1590. "type": "package",
  1591. "dependencies": {
  1592. "System.Collections": "4.3.0",
  1593. "System.Diagnostics.Debug": "4.3.0",
  1594. "System.Globalization": "4.3.0",
  1595. "System.IO": "4.3.0",
  1596. "System.IO.FileSystem": "4.3.0",
  1597. "System.IO.FileSystem.Primitives": "4.3.0",
  1598. "System.Resources.ResourceManager": "4.3.0",
  1599. "System.Runtime": "4.3.0",
  1600. "System.Runtime.Extensions": "4.3.0",
  1601. "System.Runtime.InteropServices": "4.3.0",
  1602. "System.Text.Encoding": "4.3.0",
  1603. "System.Text.Encoding.Extensions": "4.3.0",
  1604. "System.Text.RegularExpressions": "4.3.0",
  1605. "System.Threading.Tasks": "4.3.0",
  1606. "System.Threading.Tasks.Extensions": "4.3.0"
  1607. },
  1608. "compile": {
  1609. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1610. },
  1611. "runtime": {
  1612. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1613. }
  1614. },
  1615. "System.Xml.XmlDocument/4.3.0": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "System.Collections": "4.3.0",
  1619. "System.Diagnostics.Debug": "4.3.0",
  1620. "System.Globalization": "4.3.0",
  1621. "System.IO": "4.3.0",
  1622. "System.Resources.ResourceManager": "4.3.0",
  1623. "System.Runtime": "4.3.0",
  1624. "System.Runtime.Extensions": "4.3.0",
  1625. "System.Text.Encoding": "4.3.0",
  1626. "System.Threading": "4.3.0",
  1627. "System.Xml.ReaderWriter": "4.3.0"
  1628. },
  1629. "compile": {
  1630. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1631. },
  1632. "runtime": {
  1633. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  1634. }
  1635. },
  1636. "WebAPIBase.NetCore.Enties/1.0.0": {
  1637. "type": "project",
  1638. "framework": ".NETStandard,Version=v2.0",
  1639. "dependencies": {
  1640. "sqlSugarCore": "5.0.0.18"
  1641. },
  1642. "compile": {
  1643. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  1644. },
  1645. "runtime": {
  1646. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  1647. }
  1648. },
  1649. "WebAPIBase.Utils/1.0.0": {
  1650. "type": "project",
  1651. "framework": ".NETStandard,Version=v2.0",
  1652. "dependencies": {
  1653. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  1654. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  1655. "Microsoft.Extensions.Configuration": "3.1.9",
  1656. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  1657. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  1658. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  1659. "NLog": "4.7.5",
  1660. "NLog.Web.AspNetCore": "4.9.3",
  1661. "System.Drawing.Common": "4.7.0",
  1662. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  1663. },
  1664. "compile": {
  1665. "bin/placeholder/WebAPIBase.Utils.dll": {}
  1666. },
  1667. "runtime": {
  1668. "bin/placeholder/WebAPIBase.Utils.dll": {}
  1669. }
  1670. }
  1671. }
  1672. },
  1673. "libraries": {
  1674. "Google.Protobuf/3.5.1": {
  1675. "sha512": "f2k1VNaB9bfvEsvARzzEL1TZiIpL33KKK3JMH7UANlPlJVptuvsk4qpBZEnz0pORWZOdUHlVwMQuUzFqjJYCxA==",
  1676. "type": "package",
  1677. "path": "google.protobuf/3.5.1",
  1678. "files": [
  1679. ".nupkg.metadata",
  1680. ".signature.p7s",
  1681. "google.protobuf.3.5.1.nupkg.sha512",
  1682. "google.protobuf.nuspec",
  1683. "lib/net45/Google.Protobuf.dll",
  1684. "lib/net45/Google.Protobuf.xml",
  1685. "lib/netstandard1.0/Google.Protobuf.dll",
  1686. "lib/netstandard1.0/Google.Protobuf.xml"
  1687. ]
  1688. },
  1689. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  1690. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  1691. "type": "package",
  1692. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  1693. "files": [
  1694. ".nupkg.metadata",
  1695. ".signature.p7s",
  1696. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  1697. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  1698. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  1699. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  1700. ]
  1701. },
  1702. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  1703. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  1704. "type": "package",
  1705. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  1706. "files": [
  1707. ".nupkg.metadata",
  1708. ".signature.p7s",
  1709. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  1710. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  1711. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  1712. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  1713. ]
  1714. },
  1715. "Microsoft.AspNetCore.Http/2.1.0": {
  1716. "sha512": "eAPryjDRH41EYY2sOMHCu+tHXLI6PUN1AsOPKst6GbiIoMi8wJCiPcE4h9418tKje1oUzmMc2Iz8fFPPVamfaw==",
  1717. "type": "package",
  1718. "path": "microsoft.aspnetcore.http/2.1.0",
  1719. "files": [
  1720. ".nupkg.metadata",
  1721. ".signature.p7s",
  1722. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  1723. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  1724. "microsoft.aspnetcore.http.2.1.0.nupkg.sha512",
  1725. "microsoft.aspnetcore.http.nuspec"
  1726. ]
  1727. },
  1728. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1729. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  1730. "type": "package",
  1731. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  1732. "files": [
  1733. ".nupkg.metadata",
  1734. ".signature.p7s",
  1735. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  1736. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  1737. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  1738. "microsoft.aspnetcore.http.abstractions.nuspec"
  1739. ]
  1740. },
  1741. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  1742. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  1743. "type": "package",
  1744. "path": "microsoft.aspnetcore.http.features/2.2.0",
  1745. "files": [
  1746. ".nupkg.metadata",
  1747. ".signature.p7s",
  1748. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  1749. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  1750. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  1751. "microsoft.aspnetcore.http.features.nuspec"
  1752. ]
  1753. },
  1754. "Microsoft.AspNetCore.Routing.Abstractions/2.1.0": {
  1755. "sha512": "LXmnHeb3v+HTfn74M46s+4wLaMkplj1Yl2pRf+2mfDDsQ7PN0+h8AFtgip5jpvBvFHQ/Pei7S+cSVsSTHE67fQ==",
  1756. "type": "package",
  1757. "path": "microsoft.aspnetcore.routing.abstractions/2.1.0",
  1758. "files": [
  1759. ".nupkg.metadata",
  1760. ".signature.p7s",
  1761. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  1762. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  1763. "microsoft.aspnetcore.routing.abstractions.2.1.0.nupkg.sha512",
  1764. "microsoft.aspnetcore.routing.abstractions.nuspec"
  1765. ]
  1766. },
  1767. "Microsoft.AspNetCore.WebUtilities/2.1.0": {
  1768. "sha512": "xBy8JGXQ3tVSYzLl/LtN3c9EeB75khFSB2Kw2HWmF+McU0Ltva7R4JBRH0Rb4LgkcjYyyJdf+09PZalQFwsT+Q==",
  1769. "type": "package",
  1770. "path": "microsoft.aspnetcore.webutilities/2.1.0",
  1771. "files": [
  1772. ".nupkg.metadata",
  1773. ".signature.p7s",
  1774. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  1775. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  1776. "microsoft.aspnetcore.webutilities.2.1.0.nupkg.sha512",
  1777. "microsoft.aspnetcore.webutilities.nuspec"
  1778. ]
  1779. },
  1780. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  1781. "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  1782. "type": "package",
  1783. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  1784. "files": [
  1785. ".nupkg.metadata",
  1786. ".signature.p7s",
  1787. "LICENSE.TXT",
  1788. "THIRD-PARTY-NOTICES.TXT",
  1789. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  1790. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  1791. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  1792. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  1793. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  1794. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  1795. "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
  1796. "microsoft.bcl.asyncinterfaces.nuspec",
  1797. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  1798. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  1799. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  1800. "useSharedDesignerContext.txt",
  1801. "version.txt"
  1802. ]
  1803. },
  1804. "Microsoft.CSharp/4.3.0": {
  1805. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  1806. "type": "package",
  1807. "path": "microsoft.csharp/4.3.0",
  1808. "files": [
  1809. ".nupkg.metadata",
  1810. ".signature.p7s",
  1811. "ThirdPartyNotices.txt",
  1812. "dotnet_library_license.txt",
  1813. "lib/MonoAndroid10/_._",
  1814. "lib/MonoTouch10/_._",
  1815. "lib/net45/_._",
  1816. "lib/netcore50/Microsoft.CSharp.dll",
  1817. "lib/netstandard1.3/Microsoft.CSharp.dll",
  1818. "lib/portable-net45+win8+wp8+wpa81/_._",
  1819. "lib/win8/_._",
  1820. "lib/wp80/_._",
  1821. "lib/wpa81/_._",
  1822. "lib/xamarinios10/_._",
  1823. "lib/xamarinmac20/_._",
  1824. "lib/xamarintvos10/_._",
  1825. "lib/xamarinwatchos10/_._",
  1826. "microsoft.csharp.4.3.0.nupkg.sha512",
  1827. "microsoft.csharp.nuspec",
  1828. "ref/MonoAndroid10/_._",
  1829. "ref/MonoTouch10/_._",
  1830. "ref/net45/_._",
  1831. "ref/netcore50/Microsoft.CSharp.dll",
  1832. "ref/netcore50/Microsoft.CSharp.xml",
  1833. "ref/netcore50/de/Microsoft.CSharp.xml",
  1834. "ref/netcore50/es/Microsoft.CSharp.xml",
  1835. "ref/netcore50/fr/Microsoft.CSharp.xml",
  1836. "ref/netcore50/it/Microsoft.CSharp.xml",
  1837. "ref/netcore50/ja/Microsoft.CSharp.xml",
  1838. "ref/netcore50/ko/Microsoft.CSharp.xml",
  1839. "ref/netcore50/ru/Microsoft.CSharp.xml",
  1840. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  1841. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  1842. "ref/netstandard1.0/Microsoft.CSharp.dll",
  1843. "ref/netstandard1.0/Microsoft.CSharp.xml",
  1844. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  1845. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  1846. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  1847. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  1848. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  1849. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  1850. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  1851. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  1852. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  1853. "ref/portable-net45+win8+wp8+wpa81/_._",
  1854. "ref/win8/_._",
  1855. "ref/wp80/_._",
  1856. "ref/wpa81/_._",
  1857. "ref/xamarinios10/_._",
  1858. "ref/xamarinmac20/_._",
  1859. "ref/xamarintvos10/_._",
  1860. "ref/xamarinwatchos10/_._"
  1861. ]
  1862. },
  1863. "Microsoft.Data.Sqlite/2.2.4": {
  1864. "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  1865. "type": "package",
  1866. "path": "microsoft.data.sqlite/2.2.4",
  1867. "files": [
  1868. ".nupkg.metadata",
  1869. ".signature.p7s",
  1870. "lib/netstandard2.0/_._",
  1871. "microsoft.data.sqlite.2.2.4.nupkg.sha512",
  1872. "microsoft.data.sqlite.nuspec"
  1873. ]
  1874. },
  1875. "Microsoft.Data.Sqlite.Core/2.2.4": {
  1876. "sha512": "69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  1877. "type": "package",
  1878. "path": "microsoft.data.sqlite.core/2.2.4",
  1879. "files": [
  1880. ".nupkg.metadata",
  1881. ".signature.p7s",
  1882. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  1883. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  1884. "microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
  1885. "microsoft.data.sqlite.core.nuspec"
  1886. ]
  1887. },
  1888. "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
  1889. "sha512": "UfMC7L+8ha05PUAfVpmMS0kb7C1BoOrWxN70706D50qWohXLYgkUsu22oS7zkd9amCPTCmhRm2z/LisN8SESgg==",
  1890. "type": "package",
  1891. "path": "microsoft.extensions.caching.abstractions/3.1.2",
  1892. "files": [
  1893. ".nupkg.metadata",
  1894. ".signature.p7s",
  1895. "Icon.png",
  1896. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  1897. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  1898. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  1899. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  1900. "microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512",
  1901. "microsoft.extensions.caching.abstractions.nuspec"
  1902. ]
  1903. },
  1904. "Microsoft.Extensions.Caching.Memory/3.1.2": {
  1905. "sha512": "4O/YgpVhK/ZIYteGy9LyJv+YRcTxLOe7AnMUHBj1m1U40Er1/dbMymFTH1HrRS/fkVB90un24JhG+c1qSWjjjA==",
  1906. "type": "package",
  1907. "path": "microsoft.extensions.caching.memory/3.1.2",
  1908. "files": [
  1909. ".nupkg.metadata",
  1910. ".signature.p7s",
  1911. "Icon.png",
  1912. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  1913. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  1914. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  1915. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  1916. "microsoft.extensions.caching.memory.3.1.2.nupkg.sha512",
  1917. "microsoft.extensions.caching.memory.nuspec"
  1918. ]
  1919. },
  1920. "Microsoft.Extensions.Configuration/3.1.9": {
  1921. "sha512": "lqdkOGNeTMKG981Q7yWGlRiFbIlsRwTlMMiybT+WOzUCFBS/wc25tZgh7Wm/uRoBbWefgvokzmnea7ZjmFedmA==",
  1922. "type": "package",
  1923. "path": "microsoft.extensions.configuration/3.1.9",
  1924. "files": [
  1925. ".nupkg.metadata",
  1926. ".signature.p7s",
  1927. "Icon.png",
  1928. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  1929. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  1930. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  1931. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  1932. "microsoft.extensions.configuration.3.1.9.nupkg.sha512",
  1933. "microsoft.extensions.configuration.nuspec"
  1934. ]
  1935. },
  1936. "Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
  1937. "sha512": "vOJxPKczaHpXeZFrxARxYwsEulhEouXc5aZGgMdkhV/iEXX9/pfjqKk76rTG+4CsJjHV+G/4eMhvOIaQMHENNA==",
  1938. "type": "package",
  1939. "path": "microsoft.extensions.configuration.abstractions/3.1.9",
  1940. "files": [
  1941. ".nupkg.metadata",
  1942. ".signature.p7s",
  1943. "Icon.png",
  1944. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  1945. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  1946. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  1947. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  1948. "microsoft.extensions.configuration.abstractions.3.1.9.nupkg.sha512",
  1949. "microsoft.extensions.configuration.abstractions.nuspec"
  1950. ]
  1951. },
  1952. "Microsoft.Extensions.Configuration.Binder/2.1.0": {
  1953. "sha512": "Fls0O54Ielz1DiVYpcmiUpeizN1iKGGI5yAWAoShfmUvMcQ8jAGOK1a+DaflHA5hN9IOKvmSos0yewDYAIY0ZA==",
  1954. "type": "package",
  1955. "path": "microsoft.extensions.configuration.binder/2.1.0",
  1956. "files": [
  1957. ".nupkg.metadata",
  1958. ".signature.p7s",
  1959. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  1960. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  1961. "microsoft.extensions.configuration.binder.2.1.0.nupkg.sha512",
  1962. "microsoft.extensions.configuration.binder.nuspec"
  1963. ]
  1964. },
  1965. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  1966. "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  1967. "type": "package",
  1968. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  1969. "files": [
  1970. ".nupkg.metadata",
  1971. ".signature.p7s",
  1972. "Icon.png",
  1973. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
  1974. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
  1975. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  1976. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  1977. "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
  1978. "microsoft.extensions.configuration.fileextensions.nuspec"
  1979. ]
  1980. },
  1981. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  1982. "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  1983. "type": "package",
  1984. "path": "microsoft.extensions.configuration.json/3.1.2",
  1985. "files": [
  1986. ".nupkg.metadata",
  1987. ".signature.p7s",
  1988. "Icon.png",
  1989. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
  1990. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
  1991. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  1992. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  1993. "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
  1994. "microsoft.extensions.configuration.json.nuspec"
  1995. ]
  1996. },
  1997. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  1998. "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
  1999. "type": "package",
  2000. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
  2001. "files": [
  2002. ".nupkg.metadata",
  2003. ".signature.p7s",
  2004. "Icon.png",
  2005. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2006. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2007. "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
  2008. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  2009. ]
  2010. },
  2011. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  2012. "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  2013. "type": "package",
  2014. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  2015. "files": [
  2016. ".nupkg.metadata",
  2017. ".signature.p7s",
  2018. "Icon.png",
  2019. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2020. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2021. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2022. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2023. "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
  2024. "microsoft.extensions.fileproviders.abstractions.nuspec"
  2025. ]
  2026. },
  2027. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  2028. "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  2029. "type": "package",
  2030. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  2031. "files": [
  2032. ".nupkg.metadata",
  2033. ".signature.p7s",
  2034. "Icon.png",
  2035. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
  2036. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
  2037. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  2038. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  2039. "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
  2040. "microsoft.extensions.fileproviders.physical.nuspec"
  2041. ]
  2042. },
  2043. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  2044. "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  2045. "type": "package",
  2046. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  2047. "files": [
  2048. ".nupkg.metadata",
  2049. ".signature.p7s",
  2050. "Icon.png",
  2051. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2052. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  2053. "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
  2054. "microsoft.extensions.filesystemglobbing.nuspec"
  2055. ]
  2056. },
  2057. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  2058. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  2059. "type": "package",
  2060. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  2061. "files": [
  2062. ".nupkg.metadata",
  2063. ".signature.p7s",
  2064. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2065. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2066. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  2067. "microsoft.extensions.hosting.abstractions.nuspec"
  2068. ]
  2069. },
  2070. "Microsoft.Extensions.Logging/2.1.0": {
  2071. "sha512": "kuZbZMMHb7ibzhLdn9/R1+PAAFKntlF10tOw4loB8VuQkHvSrBE6IzW1rhBLsEdmLXOgi2zFbwcXFrxzSM6ybA==",
  2072. "type": "package",
  2073. "path": "microsoft.extensions.logging/2.1.0",
  2074. "files": [
  2075. ".nupkg.metadata",
  2076. ".signature.p7s",
  2077. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2078. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2079. "microsoft.extensions.logging.2.1.0.nupkg.sha512",
  2080. "microsoft.extensions.logging.nuspec"
  2081. ]
  2082. },
  2083. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  2084. "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
  2085. "type": "package",
  2086. "path": "microsoft.extensions.logging.abstractions/3.1.2",
  2087. "files": [
  2088. ".nupkg.metadata",
  2089. ".signature.p7s",
  2090. "Icon.png",
  2091. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2092. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2093. "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
  2094. "microsoft.extensions.logging.abstractions.nuspec"
  2095. ]
  2096. },
  2097. "Microsoft.Extensions.ObjectPool/2.1.0": {
  2098. "sha512": "tIbO45cohqexTJPXBubpwluycDT+6OWy2m7PukG37XMrtQ6Zv4AnoLrgUTaCmpWihSs5RZHKvThiAJFcBlR3AA==",
  2099. "type": "package",
  2100. "path": "microsoft.extensions.objectpool/2.1.0",
  2101. "files": [
  2102. ".nupkg.metadata",
  2103. ".signature.p7s",
  2104. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  2105. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  2106. "microsoft.extensions.objectpool.2.1.0.nupkg.sha512",
  2107. "microsoft.extensions.objectpool.nuspec"
  2108. ]
  2109. },
  2110. "Microsoft.Extensions.Options/3.1.2": {
  2111. "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
  2112. "type": "package",
  2113. "path": "microsoft.extensions.options/3.1.2",
  2114. "files": [
  2115. ".nupkg.metadata",
  2116. ".signature.p7s",
  2117. "Icon.png",
  2118. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  2119. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  2120. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2121. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2122. "microsoft.extensions.options.3.1.2.nupkg.sha512",
  2123. "microsoft.extensions.options.nuspec"
  2124. ]
  2125. },
  2126. "Microsoft.Extensions.Primitives/3.1.9": {
  2127. "sha512": "IrHecH0eGG7/XoeEtv++oLg/sJHRNyeCqlA9RhAo6ig4GpOTjtDr32sBMYuuLtUq8ALahneWkrOzoBAwJ4L4iA==",
  2128. "type": "package",
  2129. "path": "microsoft.extensions.primitives/3.1.9",
  2130. "files": [
  2131. ".nupkg.metadata",
  2132. ".signature.p7s",
  2133. "Icon.png",
  2134. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2135. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2136. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2137. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2138. "microsoft.extensions.primitives.3.1.9.nupkg.sha512",
  2139. "microsoft.extensions.primitives.nuspec"
  2140. ]
  2141. },
  2142. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  2143. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  2144. "type": "package",
  2145. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  2146. "files": [
  2147. ".nupkg.metadata",
  2148. ".signature.p7s",
  2149. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2150. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2151. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  2152. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  2153. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  2154. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  2155. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  2156. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  2157. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2158. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2159. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  2160. "microsoft.identitymodel.jsonwebtokens.nuspec"
  2161. ]
  2162. },
  2163. "Microsoft.IdentityModel.Logging/5.6.0": {
  2164. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  2165. "type": "package",
  2166. "path": "microsoft.identitymodel.logging/5.6.0",
  2167. "files": [
  2168. ".nupkg.metadata",
  2169. ".signature.p7s",
  2170. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  2171. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  2172. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  2173. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  2174. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  2175. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  2176. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  2177. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  2178. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  2179. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  2180. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  2181. "microsoft.identitymodel.logging.nuspec"
  2182. ]
  2183. },
  2184. "Microsoft.IdentityModel.Tokens/5.6.0": {
  2185. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  2186. "type": "package",
  2187. "path": "microsoft.identitymodel.tokens/5.6.0",
  2188. "files": [
  2189. ".nupkg.metadata",
  2190. ".signature.p7s",
  2191. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  2192. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  2193. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  2194. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  2195. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  2196. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  2197. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  2198. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  2199. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  2200. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  2201. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  2202. "microsoft.identitymodel.tokens.nuspec"
  2203. ]
  2204. },
  2205. "Microsoft.Net.Http.Headers/2.1.0": {
  2206. "sha512": "c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==",
  2207. "type": "package",
  2208. "path": "microsoft.net.http.headers/2.1.0",
  2209. "files": [
  2210. ".nupkg.metadata",
  2211. ".signature.p7s",
  2212. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  2213. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  2214. "microsoft.net.http.headers.2.1.0.nupkg.sha512",
  2215. "microsoft.net.http.headers.nuspec"
  2216. ]
  2217. },
  2218. "Microsoft.NETCore.Jit/2.0.8": {
  2219. "sha512": "webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  2220. "type": "package",
  2221. "path": "microsoft.netcore.jit/2.0.8",
  2222. "files": [
  2223. ".nupkg.metadata",
  2224. ".signature.p7s",
  2225. "LICENSE.TXT",
  2226. "THIRD-PARTY-NOTICES.TXT",
  2227. "microsoft.netcore.jit.2.0.8.nupkg.sha512",
  2228. "microsoft.netcore.jit.nuspec",
  2229. "runtime.json",
  2230. "version.txt"
  2231. ]
  2232. },
  2233. "Microsoft.NETCore.Platforms/2.0.0": {
  2234. "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
  2235. "type": "package",
  2236. "path": "microsoft.netcore.platforms/2.0.0",
  2237. "files": [
  2238. ".nupkg.metadata",
  2239. ".signature.p7s",
  2240. "LICENSE.TXT",
  2241. "THIRD-PARTY-NOTICES.TXT",
  2242. "lib/netstandard1.0/_._",
  2243. "microsoft.netcore.platforms.2.0.0.nupkg.sha512",
  2244. "microsoft.netcore.platforms.nuspec",
  2245. "runtime.json",
  2246. "useSharedDesignerContext.txt",
  2247. "version.txt"
  2248. ]
  2249. },
  2250. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  2251. "sha512": "F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  2252. "type": "package",
  2253. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  2254. "files": [
  2255. ".nupkg.metadata",
  2256. ".signature.p7s",
  2257. "LICENSE.TXT",
  2258. "THIRD-PARTY-NOTICES.TXT",
  2259. "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512",
  2260. "microsoft.netcore.runtime.coreclr.nuspec",
  2261. "ref/netstandard1.0/_._",
  2262. "runtime.json",
  2263. "version.txt"
  2264. ]
  2265. },
  2266. "Microsoft.NETCore.Targets/1.1.0": {
  2267. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2268. "type": "package",
  2269. "path": "microsoft.netcore.targets/1.1.0",
  2270. "files": [
  2271. ".nupkg.metadata",
  2272. ".signature.p7s",
  2273. "ThirdPartyNotices.txt",
  2274. "dotnet_library_license.txt",
  2275. "lib/netstandard1.0/_._",
  2276. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2277. "microsoft.netcore.targets.nuspec",
  2278. "runtime.json"
  2279. ]
  2280. },
  2281. "Microsoft.Win32.Registry/4.4.0": {
  2282. "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
  2283. "type": "package",
  2284. "path": "microsoft.win32.registry/4.4.0",
  2285. "files": [
  2286. ".nupkg.metadata",
  2287. ".signature.p7s",
  2288. "LICENSE.TXT",
  2289. "THIRD-PARTY-NOTICES.TXT",
  2290. "lib/net46/Microsoft.Win32.Registry.dll",
  2291. "lib/net461/Microsoft.Win32.Registry.dll",
  2292. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  2293. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  2294. "microsoft.win32.registry.4.4.0.nupkg.sha512",
  2295. "microsoft.win32.registry.nuspec",
  2296. "ref/net46/Microsoft.Win32.Registry.dll",
  2297. "ref/net461/Microsoft.Win32.Registry.dll",
  2298. "ref/net461/Microsoft.Win32.Registry.xml",
  2299. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  2300. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  2301. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  2302. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  2303. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  2304. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  2305. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  2306. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  2307. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  2308. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  2309. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  2310. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  2311. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  2312. "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  2313. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  2314. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  2315. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  2316. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  2317. "useSharedDesignerContext.txt",
  2318. "version.txt"
  2319. ]
  2320. },
  2321. "MySql.Data/8.0.15": {
  2322. "sha512": "PnjT2+TzlYUBF5cILcLMD1ux85P5iiRTF9PWx+Mel6/Z/rx+k39aWuA0mozfdgd+0TlJjGKKTyQZfKeYlRXTUA==",
  2323. "type": "package",
  2324. "path": "mysql.data/8.0.15",
  2325. "files": [
  2326. ".nupkg.metadata",
  2327. ".signature.p7s",
  2328. "lib/net452/MySql.Data.dll",
  2329. "lib/net452/MySql.Data.xml",
  2330. "lib/netcoreapp2.0/MySql.Data.dll",
  2331. "lib/netcoreapp2.0/MySql.Data.xml",
  2332. "lib/netstandard1.6/MySql.Data.dll",
  2333. "lib/netstandard1.6/MySql.Data.xml",
  2334. "lib/netstandard2.0/MySql.Data.dll",
  2335. "lib/netstandard2.0/MySql.Data.xml",
  2336. "mysql.data.8.0.15.nupkg.sha512",
  2337. "mysql.data.nuspec"
  2338. ]
  2339. },
  2340. "NETStandard.Library/2.0.3": {
  2341. "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
  2342. "type": "package",
  2343. "path": "netstandard.library/2.0.3",
  2344. "files": [
  2345. ".nupkg.metadata",
  2346. ".signature.p7s",
  2347. "LICENSE.TXT",
  2348. "THIRD-PARTY-NOTICES.TXT",
  2349. "build/netstandard2.0/NETStandard.Library.targets",
  2350. "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
  2351. "build/netstandard2.0/ref/System.AppContext.dll",
  2352. "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
  2353. "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
  2354. "build/netstandard2.0/ref/System.Collections.Specialized.dll",
  2355. "build/netstandard2.0/ref/System.Collections.dll",
  2356. "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
  2357. "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
  2358. "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
  2359. "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
  2360. "build/netstandard2.0/ref/System.ComponentModel.dll",
  2361. "build/netstandard2.0/ref/System.Console.dll",
  2362. "build/netstandard2.0/ref/System.Core.dll",
  2363. "build/netstandard2.0/ref/System.Data.Common.dll",
  2364. "build/netstandard2.0/ref/System.Data.dll",
  2365. "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
  2366. "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
  2367. "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
  2368. "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
  2369. "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
  2370. "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
  2371. "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
  2372. "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
  2373. "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
  2374. "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
  2375. "build/netstandard2.0/ref/System.Drawing.dll",
  2376. "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
  2377. "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
  2378. "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
  2379. "build/netstandard2.0/ref/System.Globalization.dll",
  2380. "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
  2381. "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
  2382. "build/netstandard2.0/ref/System.IO.Compression.dll",
  2383. "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
  2384. "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
  2385. "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
  2386. "build/netstandard2.0/ref/System.IO.FileSystem.dll",
  2387. "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
  2388. "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
  2389. "build/netstandard2.0/ref/System.IO.Pipes.dll",
  2390. "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
  2391. "build/netstandard2.0/ref/System.IO.dll",
  2392. "build/netstandard2.0/ref/System.Linq.Expressions.dll",
  2393. "build/netstandard2.0/ref/System.Linq.Parallel.dll",
  2394. "build/netstandard2.0/ref/System.Linq.Queryable.dll",
  2395. "build/netstandard2.0/ref/System.Linq.dll",
  2396. "build/netstandard2.0/ref/System.Net.Http.dll",
  2397. "build/netstandard2.0/ref/System.Net.NameResolution.dll",
  2398. "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
  2399. "build/netstandard2.0/ref/System.Net.Ping.dll",
  2400. "build/netstandard2.0/ref/System.Net.Primitives.dll",
  2401. "build/netstandard2.0/ref/System.Net.Requests.dll",
  2402. "build/netstandard2.0/ref/System.Net.Security.dll",
  2403. "build/netstandard2.0/ref/System.Net.Sockets.dll",
  2404. "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
  2405. "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
  2406. "build/netstandard2.0/ref/System.Net.WebSockets.dll",
  2407. "build/netstandard2.0/ref/System.Net.dll",
  2408. "build/netstandard2.0/ref/System.Numerics.dll",
  2409. "build/netstandard2.0/ref/System.ObjectModel.dll",
  2410. "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
  2411. "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
  2412. "build/netstandard2.0/ref/System.Reflection.dll",
  2413. "build/netstandard2.0/ref/System.Resources.Reader.dll",
  2414. "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
  2415. "build/netstandard2.0/ref/System.Resources.Writer.dll",
  2416. "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
  2417. "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
  2418. "build/netstandard2.0/ref/System.Runtime.Handles.dll",
  2419. "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
  2420. "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
  2421. "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
  2422. "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
  2423. "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
  2424. "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
  2425. "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
  2426. "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
  2427. "build/netstandard2.0/ref/System.Runtime.dll",
  2428. "build/netstandard2.0/ref/System.Security.Claims.dll",
  2429. "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
  2430. "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
  2431. "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
  2432. "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
  2433. "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
  2434. "build/netstandard2.0/ref/System.Security.Principal.dll",
  2435. "build/netstandard2.0/ref/System.Security.SecureString.dll",
  2436. "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
  2437. "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
  2438. "build/netstandard2.0/ref/System.Text.Encoding.dll",
  2439. "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
  2440. "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
  2441. "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
  2442. "build/netstandard2.0/ref/System.Threading.Tasks.dll",
  2443. "build/netstandard2.0/ref/System.Threading.Thread.dll",
  2444. "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
  2445. "build/netstandard2.0/ref/System.Threading.Timer.dll",
  2446. "build/netstandard2.0/ref/System.Threading.dll",
  2447. "build/netstandard2.0/ref/System.Transactions.dll",
  2448. "build/netstandard2.0/ref/System.ValueTuple.dll",
  2449. "build/netstandard2.0/ref/System.Web.dll",
  2450. "build/netstandard2.0/ref/System.Windows.dll",
  2451. "build/netstandard2.0/ref/System.Xml.Linq.dll",
  2452. "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
  2453. "build/netstandard2.0/ref/System.Xml.Serialization.dll",
  2454. "build/netstandard2.0/ref/System.Xml.XDocument.dll",
  2455. "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
  2456. "build/netstandard2.0/ref/System.Xml.XPath.dll",
  2457. "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
  2458. "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
  2459. "build/netstandard2.0/ref/System.Xml.dll",
  2460. "build/netstandard2.0/ref/System.dll",
  2461. "build/netstandard2.0/ref/mscorlib.dll",
  2462. "build/netstandard2.0/ref/netstandard.dll",
  2463. "build/netstandard2.0/ref/netstandard.xml",
  2464. "lib/netstandard1.0/_._",
  2465. "netstandard.library.2.0.3.nupkg.sha512",
  2466. "netstandard.library.nuspec"
  2467. ]
  2468. },
  2469. "Newtonsoft.Json/10.0.3": {
  2470. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  2471. "type": "package",
  2472. "path": "newtonsoft.json/10.0.3",
  2473. "hasTools": true,
  2474. "files": [
  2475. ".nupkg.metadata",
  2476. ".signature.p7s",
  2477. "LICENSE.md",
  2478. "lib/net20/Newtonsoft.Json.dll",
  2479. "lib/net20/Newtonsoft.Json.xml",
  2480. "lib/net35/Newtonsoft.Json.dll",
  2481. "lib/net35/Newtonsoft.Json.xml",
  2482. "lib/net40/Newtonsoft.Json.dll",
  2483. "lib/net40/Newtonsoft.Json.xml",
  2484. "lib/net45/Newtonsoft.Json.dll",
  2485. "lib/net45/Newtonsoft.Json.xml",
  2486. "lib/netstandard1.0/Newtonsoft.Json.dll",
  2487. "lib/netstandard1.0/Newtonsoft.Json.xml",
  2488. "lib/netstandard1.3/Newtonsoft.Json.dll",
  2489. "lib/netstandard1.3/Newtonsoft.Json.xml",
  2490. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  2491. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  2492. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  2493. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  2494. "newtonsoft.json.10.0.3.nupkg.sha512",
  2495. "newtonsoft.json.nuspec",
  2496. "tools/install.ps1"
  2497. ]
  2498. },
  2499. "NLog/4.7.5": {
  2500. "sha512": "1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  2501. "type": "package",
  2502. "path": "nlog/4.7.5",
  2503. "files": [
  2504. ".nupkg.metadata",
  2505. ".signature.p7s",
  2506. "lib/monoandroid44/NLog.dll",
  2507. "lib/monoandroid44/NLog.xml",
  2508. "lib/net35/NLog.dll",
  2509. "lib/net35/NLog.xml",
  2510. "lib/net40-client/NLog.dll",
  2511. "lib/net40-client/NLog.xml",
  2512. "lib/net45/NLog.dll",
  2513. "lib/net45/NLog.xml",
  2514. "lib/netstandard1.3/NLog.dll",
  2515. "lib/netstandard1.3/NLog.xml",
  2516. "lib/netstandard1.5/NLog.dll",
  2517. "lib/netstandard1.5/NLog.xml",
  2518. "lib/netstandard2.0/NLog.dll",
  2519. "lib/netstandard2.0/NLog.xml",
  2520. "lib/sl4/NLog.dll",
  2521. "lib/sl4/NLog.xml",
  2522. "lib/sl5/NLog.dll",
  2523. "lib/sl5/NLog.xml",
  2524. "lib/wp8/NLog.dll",
  2525. "lib/wp8/NLog.xml",
  2526. "lib/xamarinios10/NLog.dll",
  2527. "lib/xamarinios10/NLog.xml",
  2528. "nlog.4.7.5.nupkg.sha512",
  2529. "nlog.nuspec"
  2530. ]
  2531. },
  2532. "NLog.Extensions.Logging/1.6.4": {
  2533. "sha512": "ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  2534. "type": "package",
  2535. "path": "nlog.extensions.logging/1.6.4",
  2536. "files": [
  2537. ".nupkg.metadata",
  2538. ".signature.p7s",
  2539. "lib/net451/NLog.Extensions.Logging.dll",
  2540. "lib/net451/NLog.Extensions.Logging.xml",
  2541. "lib/net461/NLog.Extensions.Logging.dll",
  2542. "lib/net461/NLog.Extensions.Logging.xml",
  2543. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  2544. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  2545. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  2546. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  2547. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  2548. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  2549. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  2550. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  2551. "nlog.extensions.logging.1.6.4.nupkg.sha512",
  2552. "nlog.extensions.logging.nuspec"
  2553. ]
  2554. },
  2555. "NLog.Web.AspNetCore/4.9.3": {
  2556. "sha512": "v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  2557. "type": "package",
  2558. "path": "nlog.web.aspnetcore/4.9.3",
  2559. "files": [
  2560. ".nupkg.metadata",
  2561. ".signature.p7s",
  2562. "lib/net451/NLog.Web.AspNetCore.dll",
  2563. "lib/net451/NLog.Web.AspNetCore.xml",
  2564. "lib/net461/NLog.Web.AspNetCore.dll",
  2565. "lib/net461/NLog.Web.AspNetCore.xml",
  2566. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  2567. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  2568. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  2569. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  2570. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  2571. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  2572. "nlog.web.aspnetcore.4.9.3.nupkg.sha512",
  2573. "nlog.web.aspnetcore.nuspec"
  2574. ]
  2575. },
  2576. "Npgsql/3.2.7": {
  2577. "sha512": "CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  2578. "type": "package",
  2579. "path": "npgsql/3.2.7",
  2580. "files": [
  2581. ".nupkg.metadata",
  2582. ".signature.p7s",
  2583. "lib/net45/Npgsql.dll",
  2584. "lib/net45/Npgsql.xml",
  2585. "lib/net451/Npgsql.dll",
  2586. "lib/net451/Npgsql.xml",
  2587. "lib/netstandard1.3/Npgsql.dll",
  2588. "lib/netstandard1.3/Npgsql.xml",
  2589. "lib/netstandard2.0/Npgsql.dll",
  2590. "lib/netstandard2.0/Npgsql.xml",
  2591. "npgsql.3.2.7.nupkg.sha512",
  2592. "npgsql.nuspec"
  2593. ]
  2594. },
  2595. "Oracle.ManagedDataAccess.Core/2.18.3": {
  2596. "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  2597. "type": "package",
  2598. "path": "oracle.manageddataaccess.core/2.18.3",
  2599. "files": [
  2600. ".nupkg.metadata",
  2601. ".signature.p7s",
  2602. "info.txt",
  2603. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll",
  2604. "oracle.manageddataaccess.core.2.18.3.nupkg.sha512",
  2605. "oracle.manageddataaccess.core.nuspec",
  2606. "readme.txt"
  2607. ]
  2608. },
  2609. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2610. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  2611. "type": "package",
  2612. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  2613. "files": [
  2614. ".nupkg.metadata",
  2615. ".signature.p7s",
  2616. "LICENSE.TXT",
  2617. "THIRD-PARTY-NOTICES.TXT",
  2618. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  2619. "runtime.native.system.data.sqlclient.sni.nuspec",
  2620. "useSharedDesignerContext.txt",
  2621. "version.txt"
  2622. ]
  2623. },
  2624. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2625. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  2626. "type": "package",
  2627. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2628. "files": [
  2629. ".nupkg.metadata",
  2630. ".signature.p7s",
  2631. "ThirdPartyNotices.txt",
  2632. "dotnet_library_license.txt",
  2633. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  2634. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  2635. "runtimes/win-arm64/native/sni.dll",
  2636. "useSharedDesignerContext.txt",
  2637. "version.txt"
  2638. ]
  2639. },
  2640. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2641. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  2642. "type": "package",
  2643. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2644. "files": [
  2645. ".nupkg.metadata",
  2646. ".signature.p7s",
  2647. "ThirdPartyNotices.txt",
  2648. "dotnet_library_license.txt",
  2649. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  2650. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  2651. "runtimes/win-x64/native/sni.dll",
  2652. "useSharedDesignerContext.txt",
  2653. "version.txt"
  2654. ]
  2655. },
  2656. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2657. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  2658. "type": "package",
  2659. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  2660. "files": [
  2661. ".nupkg.metadata",
  2662. ".signature.p7s",
  2663. "ThirdPartyNotices.txt",
  2664. "dotnet_library_license.txt",
  2665. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  2666. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  2667. "runtimes/win-x86/native/sni.dll",
  2668. "useSharedDesignerContext.txt",
  2669. "version.txt"
  2670. ]
  2671. },
  2672. "SQLitePCLRaw.bundle_green/1.1.12": {
  2673. "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  2674. "type": "package",
  2675. "path": "sqlitepclraw.bundle_green/1.1.12",
  2676. "files": [
  2677. ".nupkg.metadata",
  2678. ".signature.p7s",
  2679. "build/wp8/SQLitePCLRaw.bundle_green.targets",
  2680. "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
  2681. "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
  2682. "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
  2683. "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
  2684. "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
  2685. "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
  2686. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
  2687. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
  2688. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  2689. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  2690. "lib/net35/SQLitePCLRaw.batteries_green.dll",
  2691. "lib/net35/SQLitePCLRaw.batteries_v2.dll",
  2692. "lib/net40/SQLitePCLRaw.batteries_green.dll",
  2693. "lib/net40/SQLitePCLRaw.batteries_v2.dll",
  2694. "lib/net45/SQLitePCLRaw.batteries_green.dll",
  2695. "lib/net45/SQLitePCLRaw.batteries_v2.dll",
  2696. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
  2697. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
  2698. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
  2699. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
  2700. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  2701. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  2702. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  2703. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  2704. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  2705. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  2706. "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
  2707. "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
  2708. "lib/win8/SQLitePCLRaw.batteries_green.dll",
  2709. "lib/win8/SQLitePCLRaw.batteries_v2.dll",
  2710. "lib/win81/SQLitePCLRaw.batteries_green.dll",
  2711. "lib/win81/SQLitePCLRaw.batteries_v2.dll",
  2712. "lib/wp8/_._",
  2713. "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
  2714. "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
  2715. "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
  2716. "sqlitepclraw.bundle_green.nuspec"
  2717. ]
  2718. },
  2719. "SQLitePCLRaw.core/1.1.12": {
  2720. "sha512": "S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  2721. "type": "package",
  2722. "path": "sqlitepclraw.core/1.1.12",
  2723. "files": [
  2724. ".nupkg.metadata",
  2725. ".signature.p7s",
  2726. "lib/MonoAndroid/SQLitePCLRaw.core.dll",
  2727. "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
  2728. "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
  2729. "lib/net35/SQLitePCLRaw.core.dll",
  2730. "lib/net40/SQLitePCLRaw.core.dll",
  2731. "lib/net45/SQLitePCLRaw.core.dll",
  2732. "lib/netstandard1.0/SQLitePCLRaw.core.dll",
  2733. "lib/netstandard1.1/SQLitePCLRaw.core.dll",
  2734. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  2735. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  2736. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  2737. "lib/uap10.0/SQLitePCLRaw.core.dll",
  2738. "lib/win8/SQLitePCLRaw.core.dll",
  2739. "lib/win81/SQLitePCLRaw.core.dll",
  2740. "lib/wpa81/SQLitePCLRaw.core.dll",
  2741. "sqlitepclraw.core.1.1.12.nupkg.sha512",
  2742. "sqlitepclraw.core.nuspec"
  2743. ]
  2744. },
  2745. "sqlSugarCore/5.0.0.18": {
  2746. "sha512": "AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  2747. "type": "package",
  2748. "path": "sqlsugarcore/5.0.0.18",
  2749. "files": [
  2750. ".nupkg.metadata",
  2751. ".signature.p7s",
  2752. "lib/netstandard2.0/SqlSugar.dll",
  2753. "sqlsugarcore.5.0.0.18.nupkg.sha512",
  2754. "sqlsugarcore.nuspec"
  2755. ]
  2756. },
  2757. "System.Buffers/4.5.0": {
  2758. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  2759. "type": "package",
  2760. "path": "system.buffers/4.5.0",
  2761. "files": [
  2762. ".nupkg.metadata",
  2763. ".signature.p7s",
  2764. "LICENSE.TXT",
  2765. "THIRD-PARTY-NOTICES.TXT",
  2766. "lib/netcoreapp2.0/_._",
  2767. "lib/netstandard1.1/System.Buffers.dll",
  2768. "lib/netstandard1.1/System.Buffers.xml",
  2769. "lib/netstandard2.0/System.Buffers.dll",
  2770. "lib/netstandard2.0/System.Buffers.xml",
  2771. "lib/uap10.0.16299/_._",
  2772. "ref/net45/System.Buffers.dll",
  2773. "ref/net45/System.Buffers.xml",
  2774. "ref/netcoreapp2.0/_._",
  2775. "ref/netstandard1.1/System.Buffers.dll",
  2776. "ref/netstandard1.1/System.Buffers.xml",
  2777. "ref/netstandard2.0/System.Buffers.dll",
  2778. "ref/netstandard2.0/System.Buffers.xml",
  2779. "ref/uap10.0.16299/_._",
  2780. "system.buffers.4.5.0.nupkg.sha512",
  2781. "system.buffers.nuspec",
  2782. "useSharedDesignerContext.txt",
  2783. "version.txt"
  2784. ]
  2785. },
  2786. "System.Collections/4.3.0": {
  2787. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2788. "type": "package",
  2789. "path": "system.collections/4.3.0",
  2790. "files": [
  2791. ".nupkg.metadata",
  2792. ".signature.p7s",
  2793. "ThirdPartyNotices.txt",
  2794. "dotnet_library_license.txt",
  2795. "lib/MonoAndroid10/_._",
  2796. "lib/MonoTouch10/_._",
  2797. "lib/net45/_._",
  2798. "lib/portable-net45+win8+wp8+wpa81/_._",
  2799. "lib/win8/_._",
  2800. "lib/wp80/_._",
  2801. "lib/wpa81/_._",
  2802. "lib/xamarinios10/_._",
  2803. "lib/xamarinmac20/_._",
  2804. "lib/xamarintvos10/_._",
  2805. "lib/xamarinwatchos10/_._",
  2806. "ref/MonoAndroid10/_._",
  2807. "ref/MonoTouch10/_._",
  2808. "ref/net45/_._",
  2809. "ref/netcore50/System.Collections.dll",
  2810. "ref/netcore50/System.Collections.xml",
  2811. "ref/netcore50/de/System.Collections.xml",
  2812. "ref/netcore50/es/System.Collections.xml",
  2813. "ref/netcore50/fr/System.Collections.xml",
  2814. "ref/netcore50/it/System.Collections.xml",
  2815. "ref/netcore50/ja/System.Collections.xml",
  2816. "ref/netcore50/ko/System.Collections.xml",
  2817. "ref/netcore50/ru/System.Collections.xml",
  2818. "ref/netcore50/zh-hans/System.Collections.xml",
  2819. "ref/netcore50/zh-hant/System.Collections.xml",
  2820. "ref/netstandard1.0/System.Collections.dll",
  2821. "ref/netstandard1.0/System.Collections.xml",
  2822. "ref/netstandard1.0/de/System.Collections.xml",
  2823. "ref/netstandard1.0/es/System.Collections.xml",
  2824. "ref/netstandard1.0/fr/System.Collections.xml",
  2825. "ref/netstandard1.0/it/System.Collections.xml",
  2826. "ref/netstandard1.0/ja/System.Collections.xml",
  2827. "ref/netstandard1.0/ko/System.Collections.xml",
  2828. "ref/netstandard1.0/ru/System.Collections.xml",
  2829. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  2830. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  2831. "ref/netstandard1.3/System.Collections.dll",
  2832. "ref/netstandard1.3/System.Collections.xml",
  2833. "ref/netstandard1.3/de/System.Collections.xml",
  2834. "ref/netstandard1.3/es/System.Collections.xml",
  2835. "ref/netstandard1.3/fr/System.Collections.xml",
  2836. "ref/netstandard1.3/it/System.Collections.xml",
  2837. "ref/netstandard1.3/ja/System.Collections.xml",
  2838. "ref/netstandard1.3/ko/System.Collections.xml",
  2839. "ref/netstandard1.3/ru/System.Collections.xml",
  2840. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  2841. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  2842. "ref/portable-net45+win8+wp8+wpa81/_._",
  2843. "ref/win8/_._",
  2844. "ref/wp80/_._",
  2845. "ref/wpa81/_._",
  2846. "ref/xamarinios10/_._",
  2847. "ref/xamarinmac20/_._",
  2848. "ref/xamarintvos10/_._",
  2849. "ref/xamarinwatchos10/_._",
  2850. "system.collections.4.3.0.nupkg.sha512",
  2851. "system.collections.nuspec"
  2852. ]
  2853. },
  2854. "System.Collections.NonGeneric/4.3.0": {
  2855. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  2856. "type": "package",
  2857. "path": "system.collections.nongeneric/4.3.0",
  2858. "files": [
  2859. ".nupkg.metadata",
  2860. ".signature.p7s",
  2861. "ThirdPartyNotices.txt",
  2862. "dotnet_library_license.txt",
  2863. "lib/MonoAndroid10/_._",
  2864. "lib/MonoTouch10/_._",
  2865. "lib/net46/System.Collections.NonGeneric.dll",
  2866. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  2867. "lib/xamarinios10/_._",
  2868. "lib/xamarinmac20/_._",
  2869. "lib/xamarintvos10/_._",
  2870. "lib/xamarinwatchos10/_._",
  2871. "ref/MonoAndroid10/_._",
  2872. "ref/MonoTouch10/_._",
  2873. "ref/net46/System.Collections.NonGeneric.dll",
  2874. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  2875. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  2876. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  2877. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  2878. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  2879. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  2880. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  2881. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  2882. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  2883. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  2884. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  2885. "ref/xamarinios10/_._",
  2886. "ref/xamarinmac20/_._",
  2887. "ref/xamarintvos10/_._",
  2888. "ref/xamarinwatchos10/_._",
  2889. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  2890. "system.collections.nongeneric.nuspec"
  2891. ]
  2892. },
  2893. "System.Collections.Specialized/4.3.0": {
  2894. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  2895. "type": "package",
  2896. "path": "system.collections.specialized/4.3.0",
  2897. "files": [
  2898. ".nupkg.metadata",
  2899. ".signature.p7s",
  2900. "ThirdPartyNotices.txt",
  2901. "dotnet_library_license.txt",
  2902. "lib/MonoAndroid10/_._",
  2903. "lib/MonoTouch10/_._",
  2904. "lib/net46/System.Collections.Specialized.dll",
  2905. "lib/netstandard1.3/System.Collections.Specialized.dll",
  2906. "lib/xamarinios10/_._",
  2907. "lib/xamarinmac20/_._",
  2908. "lib/xamarintvos10/_._",
  2909. "lib/xamarinwatchos10/_._",
  2910. "ref/MonoAndroid10/_._",
  2911. "ref/MonoTouch10/_._",
  2912. "ref/net46/System.Collections.Specialized.dll",
  2913. "ref/netstandard1.3/System.Collections.Specialized.dll",
  2914. "ref/netstandard1.3/System.Collections.Specialized.xml",
  2915. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  2916. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  2917. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  2918. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  2919. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  2920. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  2921. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  2922. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  2923. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  2924. "ref/xamarinios10/_._",
  2925. "ref/xamarinmac20/_._",
  2926. "ref/xamarintvos10/_._",
  2927. "ref/xamarinwatchos10/_._",
  2928. "system.collections.specialized.4.3.0.nupkg.sha512",
  2929. "system.collections.specialized.nuspec"
  2930. ]
  2931. },
  2932. "System.ComponentModel/4.3.0": {
  2933. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  2934. "type": "package",
  2935. "path": "system.componentmodel/4.3.0",
  2936. "files": [
  2937. ".nupkg.metadata",
  2938. ".signature.p7s",
  2939. "ThirdPartyNotices.txt",
  2940. "dotnet_library_license.txt",
  2941. "lib/MonoAndroid10/_._",
  2942. "lib/MonoTouch10/_._",
  2943. "lib/net45/_._",
  2944. "lib/netcore50/System.ComponentModel.dll",
  2945. "lib/netstandard1.3/System.ComponentModel.dll",
  2946. "lib/portable-net45+win8+wp8+wpa81/_._",
  2947. "lib/win8/_._",
  2948. "lib/wp80/_._",
  2949. "lib/wpa81/_._",
  2950. "lib/xamarinios10/_._",
  2951. "lib/xamarinmac20/_._",
  2952. "lib/xamarintvos10/_._",
  2953. "lib/xamarinwatchos10/_._",
  2954. "ref/MonoAndroid10/_._",
  2955. "ref/MonoTouch10/_._",
  2956. "ref/net45/_._",
  2957. "ref/netcore50/System.ComponentModel.dll",
  2958. "ref/netcore50/System.ComponentModel.xml",
  2959. "ref/netcore50/de/System.ComponentModel.xml",
  2960. "ref/netcore50/es/System.ComponentModel.xml",
  2961. "ref/netcore50/fr/System.ComponentModel.xml",
  2962. "ref/netcore50/it/System.ComponentModel.xml",
  2963. "ref/netcore50/ja/System.ComponentModel.xml",
  2964. "ref/netcore50/ko/System.ComponentModel.xml",
  2965. "ref/netcore50/ru/System.ComponentModel.xml",
  2966. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  2967. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  2968. "ref/netstandard1.0/System.ComponentModel.dll",
  2969. "ref/netstandard1.0/System.ComponentModel.xml",
  2970. "ref/netstandard1.0/de/System.ComponentModel.xml",
  2971. "ref/netstandard1.0/es/System.ComponentModel.xml",
  2972. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  2973. "ref/netstandard1.0/it/System.ComponentModel.xml",
  2974. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  2975. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  2976. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  2977. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  2978. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  2979. "ref/portable-net45+win8+wp8+wpa81/_._",
  2980. "ref/win8/_._",
  2981. "ref/wp80/_._",
  2982. "ref/wpa81/_._",
  2983. "ref/xamarinios10/_._",
  2984. "ref/xamarinmac20/_._",
  2985. "ref/xamarintvos10/_._",
  2986. "ref/xamarinwatchos10/_._",
  2987. "system.componentmodel.4.3.0.nupkg.sha512",
  2988. "system.componentmodel.nuspec"
  2989. ]
  2990. },
  2991. "System.ComponentModel.Annotations/4.7.0": {
  2992. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  2993. "type": "package",
  2994. "path": "system.componentmodel.annotations/4.7.0",
  2995. "files": [
  2996. ".nupkg.metadata",
  2997. ".signature.p7s",
  2998. "LICENSE.TXT",
  2999. "THIRD-PARTY-NOTICES.TXT",
  3000. "lib/MonoAndroid10/_._",
  3001. "lib/MonoTouch10/_._",
  3002. "lib/net45/_._",
  3003. "lib/net461/System.ComponentModel.Annotations.dll",
  3004. "lib/netcore50/System.ComponentModel.Annotations.dll",
  3005. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  3006. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  3007. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  3008. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  3009. "lib/portable-net45+win8/_._",
  3010. "lib/win8/_._",
  3011. "lib/xamarinios10/_._",
  3012. "lib/xamarinmac20/_._",
  3013. "lib/xamarintvos10/_._",
  3014. "lib/xamarinwatchos10/_._",
  3015. "ref/MonoAndroid10/_._",
  3016. "ref/MonoTouch10/_._",
  3017. "ref/net45/_._",
  3018. "ref/net461/System.ComponentModel.Annotations.dll",
  3019. "ref/net461/System.ComponentModel.Annotations.xml",
  3020. "ref/netcore50/System.ComponentModel.Annotations.dll",
  3021. "ref/netcore50/System.ComponentModel.Annotations.xml",
  3022. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  3023. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  3024. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  3025. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  3026. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  3027. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  3028. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  3029. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  3030. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  3031. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  3032. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  3033. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  3034. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  3035. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  3036. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  3037. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  3038. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  3039. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  3040. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  3041. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  3042. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  3043. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  3044. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  3045. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  3046. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  3047. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  3048. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  3049. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  3050. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  3051. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  3052. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  3053. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  3054. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  3055. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  3056. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  3057. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  3058. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  3059. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  3060. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  3061. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  3062. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  3063. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  3064. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  3065. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  3066. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  3067. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  3068. "ref/portable-net45+win8/_._",
  3069. "ref/win8/_._",
  3070. "ref/xamarinios10/_._",
  3071. "ref/xamarinmac20/_._",
  3072. "ref/xamarintvos10/_._",
  3073. "ref/xamarinwatchos10/_._",
  3074. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  3075. "system.componentmodel.annotations.nuspec",
  3076. "useSharedDesignerContext.txt",
  3077. "version.txt"
  3078. ]
  3079. },
  3080. "System.ComponentModel.Primitives/4.3.0": {
  3081. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  3082. "type": "package",
  3083. "path": "system.componentmodel.primitives/4.3.0",
  3084. "files": [
  3085. ".nupkg.metadata",
  3086. ".signature.p7s",
  3087. "ThirdPartyNotices.txt",
  3088. "dotnet_library_license.txt",
  3089. "lib/MonoAndroid10/_._",
  3090. "lib/MonoTouch10/_._",
  3091. "lib/net45/System.ComponentModel.Primitives.dll",
  3092. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  3093. "lib/xamarinios10/_._",
  3094. "lib/xamarinmac20/_._",
  3095. "lib/xamarintvos10/_._",
  3096. "lib/xamarinwatchos10/_._",
  3097. "ref/MonoAndroid10/_._",
  3098. "ref/MonoTouch10/_._",
  3099. "ref/net45/System.ComponentModel.Primitives.dll",
  3100. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  3101. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  3102. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  3103. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  3104. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  3105. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  3106. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  3107. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  3108. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  3109. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  3110. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  3111. "ref/xamarinios10/_._",
  3112. "ref/xamarinmac20/_._",
  3113. "ref/xamarintvos10/_._",
  3114. "ref/xamarinwatchos10/_._",
  3115. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  3116. "system.componentmodel.primitives.nuspec"
  3117. ]
  3118. },
  3119. "System.ComponentModel.TypeConverter/4.3.0": {
  3120. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  3121. "type": "package",
  3122. "path": "system.componentmodel.typeconverter/4.3.0",
  3123. "files": [
  3124. ".nupkg.metadata",
  3125. ".signature.p7s",
  3126. "ThirdPartyNotices.txt",
  3127. "dotnet_library_license.txt",
  3128. "lib/MonoAndroid10/_._",
  3129. "lib/MonoTouch10/_._",
  3130. "lib/net45/System.ComponentModel.TypeConverter.dll",
  3131. "lib/net462/System.ComponentModel.TypeConverter.dll",
  3132. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  3133. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  3134. "lib/xamarinios10/_._",
  3135. "lib/xamarinmac20/_._",
  3136. "lib/xamarintvos10/_._",
  3137. "lib/xamarinwatchos10/_._",
  3138. "ref/MonoAndroid10/_._",
  3139. "ref/MonoTouch10/_._",
  3140. "ref/net45/System.ComponentModel.TypeConverter.dll",
  3141. "ref/net462/System.ComponentModel.TypeConverter.dll",
  3142. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  3143. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  3144. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  3145. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  3146. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  3147. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  3148. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  3149. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  3150. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  3151. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  3152. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  3153. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  3154. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  3155. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  3156. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  3157. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  3158. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  3159. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  3160. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  3161. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  3162. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  3163. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  3164. "ref/xamarinios10/_._",
  3165. "ref/xamarinmac20/_._",
  3166. "ref/xamarintvos10/_._",
  3167. "ref/xamarinwatchos10/_._",
  3168. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  3169. "system.componentmodel.typeconverter.nuspec"
  3170. ]
  3171. },
  3172. "System.Configuration.ConfigurationManager/4.4.1": {
  3173. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  3174. "type": "package",
  3175. "path": "system.configuration.configurationmanager/4.4.1",
  3176. "files": [
  3177. ".nupkg.metadata",
  3178. ".signature.p7s",
  3179. "LICENSE.TXT",
  3180. "THIRD-PARTY-NOTICES.TXT",
  3181. "lib/net461/System.Configuration.ConfigurationManager.dll",
  3182. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3183. "ref/net461/System.Configuration.ConfigurationManager.dll",
  3184. "ref/net461/System.Configuration.ConfigurationManager.xml",
  3185. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3186. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  3187. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  3188. "system.configuration.configurationmanager.nuspec",
  3189. "useSharedDesignerContext.txt",
  3190. "version.txt"
  3191. ]
  3192. },
  3193. "System.Data.Common/4.3.0": {
  3194. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  3195. "type": "package",
  3196. "path": "system.data.common/4.3.0",
  3197. "files": [
  3198. ".nupkg.metadata",
  3199. ".signature.p7s",
  3200. "ThirdPartyNotices.txt",
  3201. "dotnet_library_license.txt",
  3202. "lib/MonoAndroid10/_._",
  3203. "lib/MonoTouch10/_._",
  3204. "lib/net451/System.Data.Common.dll",
  3205. "lib/netstandard1.2/System.Data.Common.dll",
  3206. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  3207. "lib/xamarinios10/_._",
  3208. "lib/xamarinmac20/_._",
  3209. "lib/xamarintvos10/_._",
  3210. "lib/xamarinwatchos10/_._",
  3211. "ref/MonoAndroid10/_._",
  3212. "ref/MonoTouch10/_._",
  3213. "ref/net451/System.Data.Common.dll",
  3214. "ref/netstandard1.2/System.Data.Common.dll",
  3215. "ref/netstandard1.2/System.Data.Common.xml",
  3216. "ref/netstandard1.2/de/System.Data.Common.xml",
  3217. "ref/netstandard1.2/es/System.Data.Common.xml",
  3218. "ref/netstandard1.2/fr/System.Data.Common.xml",
  3219. "ref/netstandard1.2/it/System.Data.Common.xml",
  3220. "ref/netstandard1.2/ja/System.Data.Common.xml",
  3221. "ref/netstandard1.2/ko/System.Data.Common.xml",
  3222. "ref/netstandard1.2/ru/System.Data.Common.xml",
  3223. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  3224. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  3225. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  3226. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  3227. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  3228. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  3229. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  3230. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  3231. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  3232. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  3233. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  3234. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  3235. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  3236. "ref/xamarinios10/_._",
  3237. "ref/xamarinmac20/_._",
  3238. "ref/xamarintvos10/_._",
  3239. "ref/xamarinwatchos10/_._",
  3240. "system.data.common.4.3.0.nupkg.sha512",
  3241. "system.data.common.nuspec"
  3242. ]
  3243. },
  3244. "System.Data.SqlClient/4.4.0": {
  3245. "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  3246. "type": "package",
  3247. "path": "system.data.sqlclient/4.4.0",
  3248. "files": [
  3249. ".nupkg.metadata",
  3250. ".signature.p7s",
  3251. "LICENSE.TXT",
  3252. "THIRD-PARTY-NOTICES.TXT",
  3253. "lib/MonoAndroid10/_._",
  3254. "lib/MonoTouch10/_._",
  3255. "lib/net451/System.Data.SqlClient.dll",
  3256. "lib/net46/System.Data.SqlClient.dll",
  3257. "lib/net461/System.Data.SqlClient.dll",
  3258. "lib/netstandard1.2/System.Data.SqlClient.dll",
  3259. "lib/netstandard1.3/System.Data.SqlClient.dll",
  3260. "lib/netstandard2.0/System.Data.SqlClient.dll",
  3261. "lib/xamarinios10/_._",
  3262. "lib/xamarinmac20/_._",
  3263. "lib/xamarintvos10/_._",
  3264. "lib/xamarinwatchos10/_._",
  3265. "ref/MonoAndroid10/_._",
  3266. "ref/MonoTouch10/_._",
  3267. "ref/net451/System.Data.SqlClient.dll",
  3268. "ref/net46/System.Data.SqlClient.dll",
  3269. "ref/net461/System.Data.SqlClient.dll",
  3270. "ref/net461/System.Data.SqlClient.xml",
  3271. "ref/netstandard1.2/System.Data.SqlClient.dll",
  3272. "ref/netstandard1.2/System.Data.SqlClient.xml",
  3273. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  3274. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  3275. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  3276. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  3277. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  3278. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  3279. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  3280. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  3281. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  3282. "ref/netstandard1.3/System.Data.SqlClient.dll",
  3283. "ref/netstandard1.3/System.Data.SqlClient.xml",
  3284. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  3285. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  3286. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  3287. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  3288. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  3289. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  3290. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  3291. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  3292. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  3293. "ref/netstandard2.0/System.Data.SqlClient.dll",
  3294. "ref/netstandard2.0/System.Data.SqlClient.xml",
  3295. "ref/xamarinios10/_._",
  3296. "ref/xamarinmac20/_._",
  3297. "ref/xamarintvos10/_._",
  3298. "ref/xamarinwatchos10/_._",
  3299. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  3300. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  3301. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  3302. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  3303. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  3304. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  3305. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  3306. "system.data.sqlclient.4.4.0.nupkg.sha512",
  3307. "system.data.sqlclient.nuspec",
  3308. "useSharedDesignerContext.txt",
  3309. "version.txt"
  3310. ]
  3311. },
  3312. "System.Diagnostics.Debug/4.3.0": {
  3313. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  3314. "type": "package",
  3315. "path": "system.diagnostics.debug/4.3.0",
  3316. "files": [
  3317. ".nupkg.metadata",
  3318. ".signature.p7s",
  3319. "ThirdPartyNotices.txt",
  3320. "dotnet_library_license.txt",
  3321. "lib/MonoAndroid10/_._",
  3322. "lib/MonoTouch10/_._",
  3323. "lib/net45/_._",
  3324. "lib/portable-net45+win8+wp8+wpa81/_._",
  3325. "lib/win8/_._",
  3326. "lib/wp80/_._",
  3327. "lib/wpa81/_._",
  3328. "lib/xamarinios10/_._",
  3329. "lib/xamarinmac20/_._",
  3330. "lib/xamarintvos10/_._",
  3331. "lib/xamarinwatchos10/_._",
  3332. "ref/MonoAndroid10/_._",
  3333. "ref/MonoTouch10/_._",
  3334. "ref/net45/_._",
  3335. "ref/netcore50/System.Diagnostics.Debug.dll",
  3336. "ref/netcore50/System.Diagnostics.Debug.xml",
  3337. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  3338. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  3339. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  3340. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  3341. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  3342. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  3343. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  3344. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  3345. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  3346. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  3347. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  3348. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  3349. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  3350. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  3351. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  3352. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  3353. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  3354. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  3355. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  3356. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  3357. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  3358. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  3359. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  3360. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  3361. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  3362. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  3363. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  3364. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  3365. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  3366. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  3367. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  3368. "ref/portable-net45+win8+wp8+wpa81/_._",
  3369. "ref/win8/_._",
  3370. "ref/wp80/_._",
  3371. "ref/wpa81/_._",
  3372. "ref/xamarinios10/_._",
  3373. "ref/xamarinmac20/_._",
  3374. "ref/xamarintvos10/_._",
  3375. "ref/xamarinwatchos10/_._",
  3376. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  3377. "system.diagnostics.debug.nuspec"
  3378. ]
  3379. },
  3380. "System.Diagnostics.DiagnosticSource/4.4.1": {
  3381. "sha512": "U/KcC19fyLsPN1GLmeU2zQq15MMVcPwMOYPADVo1+WIoJpvMHxrzvl+BLLZwTEZSneGwaPFZ0aWr0nJ7B7LSdA==",
  3382. "type": "package",
  3383. "path": "system.diagnostics.diagnosticsource/4.4.1",
  3384. "files": [
  3385. ".nupkg.metadata",
  3386. ".signature.p7s",
  3387. "LICENSE.TXT",
  3388. "THIRD-PARTY-NOTICES.TXT",
  3389. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  3390. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  3391. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  3392. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  3393. "lib/netcoreapp2.0/_._",
  3394. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  3395. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  3396. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  3397. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  3398. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  3399. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  3400. "ref/netcoreapp2.0/_._",
  3401. "system.diagnostics.diagnosticsource.4.4.1.nupkg.sha512",
  3402. "system.diagnostics.diagnosticsource.nuspec",
  3403. "useSharedDesignerContext.txt",
  3404. "version.txt"
  3405. ]
  3406. },
  3407. "System.Diagnostics.Tracing/4.3.0": {
  3408. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  3409. "type": "package",
  3410. "path": "system.diagnostics.tracing/4.3.0",
  3411. "files": [
  3412. ".nupkg.metadata",
  3413. ".signature.p7s",
  3414. "ThirdPartyNotices.txt",
  3415. "dotnet_library_license.txt",
  3416. "lib/MonoAndroid10/_._",
  3417. "lib/MonoTouch10/_._",
  3418. "lib/net45/_._",
  3419. "lib/net462/System.Diagnostics.Tracing.dll",
  3420. "lib/portable-net45+win8+wpa81/_._",
  3421. "lib/win8/_._",
  3422. "lib/wpa81/_._",
  3423. "lib/xamarinios10/_._",
  3424. "lib/xamarinmac20/_._",
  3425. "lib/xamarintvos10/_._",
  3426. "lib/xamarinwatchos10/_._",
  3427. "ref/MonoAndroid10/_._",
  3428. "ref/MonoTouch10/_._",
  3429. "ref/net45/_._",
  3430. "ref/net462/System.Diagnostics.Tracing.dll",
  3431. "ref/netcore50/System.Diagnostics.Tracing.dll",
  3432. "ref/netcore50/System.Diagnostics.Tracing.xml",
  3433. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  3434. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  3435. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  3436. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  3437. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  3438. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  3439. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  3440. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  3441. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  3442. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  3443. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  3444. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  3445. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  3446. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  3447. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  3448. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  3449. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  3450. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  3451. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  3452. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  3453. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  3454. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  3455. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  3456. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  3457. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  3458. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  3459. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  3460. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  3461. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  3462. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  3463. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  3464. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  3465. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  3466. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  3467. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  3468. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  3469. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  3470. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  3471. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  3472. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  3473. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  3474. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  3475. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  3476. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  3477. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  3478. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  3479. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  3480. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  3481. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  3482. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  3483. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  3484. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  3485. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  3486. "ref/portable-net45+win8+wpa81/_._",
  3487. "ref/win8/_._",
  3488. "ref/wpa81/_._",
  3489. "ref/xamarinios10/_._",
  3490. "ref/xamarinmac20/_._",
  3491. "ref/xamarintvos10/_._",
  3492. "ref/xamarinwatchos10/_._",
  3493. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  3494. "system.diagnostics.tracing.nuspec"
  3495. ]
  3496. },
  3497. "System.Drawing.Common/4.7.0": {
  3498. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  3499. "type": "package",
  3500. "path": "system.drawing.common/4.7.0",
  3501. "files": [
  3502. ".nupkg.metadata",
  3503. ".signature.p7s",
  3504. "LICENSE.TXT",
  3505. "THIRD-PARTY-NOTICES.TXT",
  3506. "lib/MonoAndroid10/_._",
  3507. "lib/MonoTouch10/_._",
  3508. "lib/net461/System.Drawing.Common.dll",
  3509. "lib/netstandard2.0/System.Drawing.Common.dll",
  3510. "lib/xamarinios10/_._",
  3511. "lib/xamarinmac20/_._",
  3512. "lib/xamarintvos10/_._",
  3513. "lib/xamarinwatchos10/_._",
  3514. "ref/MonoAndroid10/_._",
  3515. "ref/MonoTouch10/_._",
  3516. "ref/net461/System.Drawing.Common.dll",
  3517. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  3518. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  3519. "ref/netstandard2.0/System.Drawing.Common.dll",
  3520. "ref/xamarinios10/_._",
  3521. "ref/xamarinmac20/_._",
  3522. "ref/xamarintvos10/_._",
  3523. "ref/xamarinwatchos10/_._",
  3524. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  3525. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  3526. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  3527. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  3528. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  3529. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  3530. "system.drawing.common.4.7.0.nupkg.sha512",
  3531. "system.drawing.common.nuspec",
  3532. "useSharedDesignerContext.txt",
  3533. "version.txt"
  3534. ]
  3535. },
  3536. "System.Dynamic.Runtime/4.3.0": {
  3537. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  3538. "type": "package",
  3539. "path": "system.dynamic.runtime/4.3.0",
  3540. "files": [
  3541. ".nupkg.metadata",
  3542. ".signature.p7s",
  3543. "ThirdPartyNotices.txt",
  3544. "dotnet_library_license.txt",
  3545. "lib/MonoAndroid10/_._",
  3546. "lib/MonoTouch10/_._",
  3547. "lib/net45/_._",
  3548. "lib/netcore50/System.Dynamic.Runtime.dll",
  3549. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  3550. "lib/portable-net45+win8+wp8+wpa81/_._",
  3551. "lib/win8/_._",
  3552. "lib/wp80/_._",
  3553. "lib/wpa81/_._",
  3554. "lib/xamarinios10/_._",
  3555. "lib/xamarinmac20/_._",
  3556. "lib/xamarintvos10/_._",
  3557. "lib/xamarinwatchos10/_._",
  3558. "ref/MonoAndroid10/_._",
  3559. "ref/MonoTouch10/_._",
  3560. "ref/net45/_._",
  3561. "ref/netcore50/System.Dynamic.Runtime.dll",
  3562. "ref/netcore50/System.Dynamic.Runtime.xml",
  3563. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  3564. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  3565. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  3566. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  3567. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  3568. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  3569. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  3570. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  3571. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  3572. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  3573. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  3574. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  3575. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  3576. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  3577. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  3578. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  3579. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  3580. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  3581. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  3582. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  3583. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  3584. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  3585. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  3586. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  3587. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  3588. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  3589. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  3590. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  3591. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  3592. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  3593. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  3594. "ref/portable-net45+win8+wp8+wpa81/_._",
  3595. "ref/win8/_._",
  3596. "ref/wp80/_._",
  3597. "ref/wpa81/_._",
  3598. "ref/xamarinios10/_._",
  3599. "ref/xamarinmac20/_._",
  3600. "ref/xamarintvos10/_._",
  3601. "ref/xamarinwatchos10/_._",
  3602. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  3603. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  3604. "system.dynamic.runtime.nuspec"
  3605. ]
  3606. },
  3607. "System.Globalization/4.3.0": {
  3608. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  3609. "type": "package",
  3610. "path": "system.globalization/4.3.0",
  3611. "files": [
  3612. ".nupkg.metadata",
  3613. ".signature.p7s",
  3614. "ThirdPartyNotices.txt",
  3615. "dotnet_library_license.txt",
  3616. "lib/MonoAndroid10/_._",
  3617. "lib/MonoTouch10/_._",
  3618. "lib/net45/_._",
  3619. "lib/portable-net45+win8+wp8+wpa81/_._",
  3620. "lib/win8/_._",
  3621. "lib/wp80/_._",
  3622. "lib/wpa81/_._",
  3623. "lib/xamarinios10/_._",
  3624. "lib/xamarinmac20/_._",
  3625. "lib/xamarintvos10/_._",
  3626. "lib/xamarinwatchos10/_._",
  3627. "ref/MonoAndroid10/_._",
  3628. "ref/MonoTouch10/_._",
  3629. "ref/net45/_._",
  3630. "ref/netcore50/System.Globalization.dll",
  3631. "ref/netcore50/System.Globalization.xml",
  3632. "ref/netcore50/de/System.Globalization.xml",
  3633. "ref/netcore50/es/System.Globalization.xml",
  3634. "ref/netcore50/fr/System.Globalization.xml",
  3635. "ref/netcore50/it/System.Globalization.xml",
  3636. "ref/netcore50/ja/System.Globalization.xml",
  3637. "ref/netcore50/ko/System.Globalization.xml",
  3638. "ref/netcore50/ru/System.Globalization.xml",
  3639. "ref/netcore50/zh-hans/System.Globalization.xml",
  3640. "ref/netcore50/zh-hant/System.Globalization.xml",
  3641. "ref/netstandard1.0/System.Globalization.dll",
  3642. "ref/netstandard1.0/System.Globalization.xml",
  3643. "ref/netstandard1.0/de/System.Globalization.xml",
  3644. "ref/netstandard1.0/es/System.Globalization.xml",
  3645. "ref/netstandard1.0/fr/System.Globalization.xml",
  3646. "ref/netstandard1.0/it/System.Globalization.xml",
  3647. "ref/netstandard1.0/ja/System.Globalization.xml",
  3648. "ref/netstandard1.0/ko/System.Globalization.xml",
  3649. "ref/netstandard1.0/ru/System.Globalization.xml",
  3650. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  3651. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  3652. "ref/netstandard1.3/System.Globalization.dll",
  3653. "ref/netstandard1.3/System.Globalization.xml",
  3654. "ref/netstandard1.3/de/System.Globalization.xml",
  3655. "ref/netstandard1.3/es/System.Globalization.xml",
  3656. "ref/netstandard1.3/fr/System.Globalization.xml",
  3657. "ref/netstandard1.3/it/System.Globalization.xml",
  3658. "ref/netstandard1.3/ja/System.Globalization.xml",
  3659. "ref/netstandard1.3/ko/System.Globalization.xml",
  3660. "ref/netstandard1.3/ru/System.Globalization.xml",
  3661. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  3662. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  3663. "ref/portable-net45+win8+wp8+wpa81/_._",
  3664. "ref/win8/_._",
  3665. "ref/wp80/_._",
  3666. "ref/wpa81/_._",
  3667. "ref/xamarinios10/_._",
  3668. "ref/xamarinmac20/_._",
  3669. "ref/xamarintvos10/_._",
  3670. "ref/xamarinwatchos10/_._",
  3671. "system.globalization.4.3.0.nupkg.sha512",
  3672. "system.globalization.nuspec"
  3673. ]
  3674. },
  3675. "System.Globalization.Extensions/4.3.0": {
  3676. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  3677. "type": "package",
  3678. "path": "system.globalization.extensions/4.3.0",
  3679. "files": [
  3680. ".nupkg.metadata",
  3681. ".signature.p7s",
  3682. "ThirdPartyNotices.txt",
  3683. "dotnet_library_license.txt",
  3684. "lib/MonoAndroid10/_._",
  3685. "lib/MonoTouch10/_._",
  3686. "lib/net46/System.Globalization.Extensions.dll",
  3687. "lib/xamarinios10/_._",
  3688. "lib/xamarinmac20/_._",
  3689. "lib/xamarintvos10/_._",
  3690. "lib/xamarinwatchos10/_._",
  3691. "ref/MonoAndroid10/_._",
  3692. "ref/MonoTouch10/_._",
  3693. "ref/net46/System.Globalization.Extensions.dll",
  3694. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  3695. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  3696. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  3697. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  3698. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  3699. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  3700. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  3701. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  3702. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  3703. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  3704. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  3705. "ref/xamarinios10/_._",
  3706. "ref/xamarinmac20/_._",
  3707. "ref/xamarintvos10/_._",
  3708. "ref/xamarinwatchos10/_._",
  3709. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  3710. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  3711. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  3712. "system.globalization.extensions.4.3.0.nupkg.sha512",
  3713. "system.globalization.extensions.nuspec"
  3714. ]
  3715. },
  3716. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  3717. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  3718. "type": "package",
  3719. "path": "system.identitymodel.tokens.jwt/5.6.0",
  3720. "files": [
  3721. ".nupkg.metadata",
  3722. ".signature.p7s",
  3723. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  3724. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  3725. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  3726. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  3727. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  3728. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  3729. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  3730. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  3731. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  3732. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  3733. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  3734. "system.identitymodel.tokens.jwt.nuspec"
  3735. ]
  3736. },
  3737. "System.IO/4.3.0": {
  3738. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  3739. "type": "package",
  3740. "path": "system.io/4.3.0",
  3741. "files": [
  3742. ".nupkg.metadata",
  3743. ".signature.p7s",
  3744. "ThirdPartyNotices.txt",
  3745. "dotnet_library_license.txt",
  3746. "lib/MonoAndroid10/_._",
  3747. "lib/MonoTouch10/_._",
  3748. "lib/net45/_._",
  3749. "lib/net462/System.IO.dll",
  3750. "lib/portable-net45+win8+wp8+wpa81/_._",
  3751. "lib/win8/_._",
  3752. "lib/wp80/_._",
  3753. "lib/wpa81/_._",
  3754. "lib/xamarinios10/_._",
  3755. "lib/xamarinmac20/_._",
  3756. "lib/xamarintvos10/_._",
  3757. "lib/xamarinwatchos10/_._",
  3758. "ref/MonoAndroid10/_._",
  3759. "ref/MonoTouch10/_._",
  3760. "ref/net45/_._",
  3761. "ref/net462/System.IO.dll",
  3762. "ref/netcore50/System.IO.dll",
  3763. "ref/netcore50/System.IO.xml",
  3764. "ref/netcore50/de/System.IO.xml",
  3765. "ref/netcore50/es/System.IO.xml",
  3766. "ref/netcore50/fr/System.IO.xml",
  3767. "ref/netcore50/it/System.IO.xml",
  3768. "ref/netcore50/ja/System.IO.xml",
  3769. "ref/netcore50/ko/System.IO.xml",
  3770. "ref/netcore50/ru/System.IO.xml",
  3771. "ref/netcore50/zh-hans/System.IO.xml",
  3772. "ref/netcore50/zh-hant/System.IO.xml",
  3773. "ref/netstandard1.0/System.IO.dll",
  3774. "ref/netstandard1.0/System.IO.xml",
  3775. "ref/netstandard1.0/de/System.IO.xml",
  3776. "ref/netstandard1.0/es/System.IO.xml",
  3777. "ref/netstandard1.0/fr/System.IO.xml",
  3778. "ref/netstandard1.0/it/System.IO.xml",
  3779. "ref/netstandard1.0/ja/System.IO.xml",
  3780. "ref/netstandard1.0/ko/System.IO.xml",
  3781. "ref/netstandard1.0/ru/System.IO.xml",
  3782. "ref/netstandard1.0/zh-hans/System.IO.xml",
  3783. "ref/netstandard1.0/zh-hant/System.IO.xml",
  3784. "ref/netstandard1.3/System.IO.dll",
  3785. "ref/netstandard1.3/System.IO.xml",
  3786. "ref/netstandard1.3/de/System.IO.xml",
  3787. "ref/netstandard1.3/es/System.IO.xml",
  3788. "ref/netstandard1.3/fr/System.IO.xml",
  3789. "ref/netstandard1.3/it/System.IO.xml",
  3790. "ref/netstandard1.3/ja/System.IO.xml",
  3791. "ref/netstandard1.3/ko/System.IO.xml",
  3792. "ref/netstandard1.3/ru/System.IO.xml",
  3793. "ref/netstandard1.3/zh-hans/System.IO.xml",
  3794. "ref/netstandard1.3/zh-hant/System.IO.xml",
  3795. "ref/netstandard1.5/System.IO.dll",
  3796. "ref/netstandard1.5/System.IO.xml",
  3797. "ref/netstandard1.5/de/System.IO.xml",
  3798. "ref/netstandard1.5/es/System.IO.xml",
  3799. "ref/netstandard1.5/fr/System.IO.xml",
  3800. "ref/netstandard1.5/it/System.IO.xml",
  3801. "ref/netstandard1.5/ja/System.IO.xml",
  3802. "ref/netstandard1.5/ko/System.IO.xml",
  3803. "ref/netstandard1.5/ru/System.IO.xml",
  3804. "ref/netstandard1.5/zh-hans/System.IO.xml",
  3805. "ref/netstandard1.5/zh-hant/System.IO.xml",
  3806. "ref/portable-net45+win8+wp8+wpa81/_._",
  3807. "ref/win8/_._",
  3808. "ref/wp80/_._",
  3809. "ref/wpa81/_._",
  3810. "ref/xamarinios10/_._",
  3811. "ref/xamarinmac20/_._",
  3812. "ref/xamarintvos10/_._",
  3813. "ref/xamarinwatchos10/_._",
  3814. "system.io.4.3.0.nupkg.sha512",
  3815. "system.io.nuspec"
  3816. ]
  3817. },
  3818. "System.IO.FileSystem/4.3.0": {
  3819. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  3820. "type": "package",
  3821. "path": "system.io.filesystem/4.3.0",
  3822. "files": [
  3823. ".nupkg.metadata",
  3824. ".signature.p7s",
  3825. "ThirdPartyNotices.txt",
  3826. "dotnet_library_license.txt",
  3827. "lib/MonoAndroid10/_._",
  3828. "lib/MonoTouch10/_._",
  3829. "lib/net46/System.IO.FileSystem.dll",
  3830. "lib/xamarinios10/_._",
  3831. "lib/xamarinmac20/_._",
  3832. "lib/xamarintvos10/_._",
  3833. "lib/xamarinwatchos10/_._",
  3834. "ref/MonoAndroid10/_._",
  3835. "ref/MonoTouch10/_._",
  3836. "ref/net46/System.IO.FileSystem.dll",
  3837. "ref/netstandard1.3/System.IO.FileSystem.dll",
  3838. "ref/netstandard1.3/System.IO.FileSystem.xml",
  3839. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  3840. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  3841. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  3842. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  3843. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  3844. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  3845. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  3846. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  3847. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  3848. "ref/xamarinios10/_._",
  3849. "ref/xamarinmac20/_._",
  3850. "ref/xamarintvos10/_._",
  3851. "ref/xamarinwatchos10/_._",
  3852. "system.io.filesystem.4.3.0.nupkg.sha512",
  3853. "system.io.filesystem.nuspec"
  3854. ]
  3855. },
  3856. "System.IO.FileSystem.Primitives/4.3.0": {
  3857. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  3858. "type": "package",
  3859. "path": "system.io.filesystem.primitives/4.3.0",
  3860. "files": [
  3861. ".nupkg.metadata",
  3862. ".signature.p7s",
  3863. "ThirdPartyNotices.txt",
  3864. "dotnet_library_license.txt",
  3865. "lib/MonoAndroid10/_._",
  3866. "lib/MonoTouch10/_._",
  3867. "lib/net46/System.IO.FileSystem.Primitives.dll",
  3868. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  3869. "lib/xamarinios10/_._",
  3870. "lib/xamarinmac20/_._",
  3871. "lib/xamarintvos10/_._",
  3872. "lib/xamarinwatchos10/_._",
  3873. "ref/MonoAndroid10/_._",
  3874. "ref/MonoTouch10/_._",
  3875. "ref/net46/System.IO.FileSystem.Primitives.dll",
  3876. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  3877. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  3878. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  3879. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  3880. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  3881. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  3882. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  3883. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  3884. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  3885. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  3886. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  3887. "ref/xamarinios10/_._",
  3888. "ref/xamarinmac20/_._",
  3889. "ref/xamarintvos10/_._",
  3890. "ref/xamarinwatchos10/_._",
  3891. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  3892. "system.io.filesystem.primitives.nuspec"
  3893. ]
  3894. },
  3895. "System.Linq/4.3.0": {
  3896. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  3897. "type": "package",
  3898. "path": "system.linq/4.3.0",
  3899. "files": [
  3900. ".nupkg.metadata",
  3901. ".signature.p7s",
  3902. "ThirdPartyNotices.txt",
  3903. "dotnet_library_license.txt",
  3904. "lib/MonoAndroid10/_._",
  3905. "lib/MonoTouch10/_._",
  3906. "lib/net45/_._",
  3907. "lib/net463/System.Linq.dll",
  3908. "lib/netcore50/System.Linq.dll",
  3909. "lib/netstandard1.6/System.Linq.dll",
  3910. "lib/portable-net45+win8+wp8+wpa81/_._",
  3911. "lib/win8/_._",
  3912. "lib/wp80/_._",
  3913. "lib/wpa81/_._",
  3914. "lib/xamarinios10/_._",
  3915. "lib/xamarinmac20/_._",
  3916. "lib/xamarintvos10/_._",
  3917. "lib/xamarinwatchos10/_._",
  3918. "ref/MonoAndroid10/_._",
  3919. "ref/MonoTouch10/_._",
  3920. "ref/net45/_._",
  3921. "ref/net463/System.Linq.dll",
  3922. "ref/netcore50/System.Linq.dll",
  3923. "ref/netcore50/System.Linq.xml",
  3924. "ref/netcore50/de/System.Linq.xml",
  3925. "ref/netcore50/es/System.Linq.xml",
  3926. "ref/netcore50/fr/System.Linq.xml",
  3927. "ref/netcore50/it/System.Linq.xml",
  3928. "ref/netcore50/ja/System.Linq.xml",
  3929. "ref/netcore50/ko/System.Linq.xml",
  3930. "ref/netcore50/ru/System.Linq.xml",
  3931. "ref/netcore50/zh-hans/System.Linq.xml",
  3932. "ref/netcore50/zh-hant/System.Linq.xml",
  3933. "ref/netstandard1.0/System.Linq.dll",
  3934. "ref/netstandard1.0/System.Linq.xml",
  3935. "ref/netstandard1.0/de/System.Linq.xml",
  3936. "ref/netstandard1.0/es/System.Linq.xml",
  3937. "ref/netstandard1.0/fr/System.Linq.xml",
  3938. "ref/netstandard1.0/it/System.Linq.xml",
  3939. "ref/netstandard1.0/ja/System.Linq.xml",
  3940. "ref/netstandard1.0/ko/System.Linq.xml",
  3941. "ref/netstandard1.0/ru/System.Linq.xml",
  3942. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  3943. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  3944. "ref/netstandard1.6/System.Linq.dll",
  3945. "ref/netstandard1.6/System.Linq.xml",
  3946. "ref/netstandard1.6/de/System.Linq.xml",
  3947. "ref/netstandard1.6/es/System.Linq.xml",
  3948. "ref/netstandard1.6/fr/System.Linq.xml",
  3949. "ref/netstandard1.6/it/System.Linq.xml",
  3950. "ref/netstandard1.6/ja/System.Linq.xml",
  3951. "ref/netstandard1.6/ko/System.Linq.xml",
  3952. "ref/netstandard1.6/ru/System.Linq.xml",
  3953. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  3954. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  3955. "ref/portable-net45+win8+wp8+wpa81/_._",
  3956. "ref/win8/_._",
  3957. "ref/wp80/_._",
  3958. "ref/wpa81/_._",
  3959. "ref/xamarinios10/_._",
  3960. "ref/xamarinmac20/_._",
  3961. "ref/xamarintvos10/_._",
  3962. "ref/xamarinwatchos10/_._",
  3963. "system.linq.4.3.0.nupkg.sha512",
  3964. "system.linq.nuspec"
  3965. ]
  3966. },
  3967. "System.Linq.Expressions/4.3.0": {
  3968. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  3969. "type": "package",
  3970. "path": "system.linq.expressions/4.3.0",
  3971. "files": [
  3972. ".nupkg.metadata",
  3973. ".signature.p7s",
  3974. "ThirdPartyNotices.txt",
  3975. "dotnet_library_license.txt",
  3976. "lib/MonoAndroid10/_._",
  3977. "lib/MonoTouch10/_._",
  3978. "lib/net45/_._",
  3979. "lib/net463/System.Linq.Expressions.dll",
  3980. "lib/netcore50/System.Linq.Expressions.dll",
  3981. "lib/netstandard1.6/System.Linq.Expressions.dll",
  3982. "lib/portable-net45+win8+wp8+wpa81/_._",
  3983. "lib/win8/_._",
  3984. "lib/wp80/_._",
  3985. "lib/wpa81/_._",
  3986. "lib/xamarinios10/_._",
  3987. "lib/xamarinmac20/_._",
  3988. "lib/xamarintvos10/_._",
  3989. "lib/xamarinwatchos10/_._",
  3990. "ref/MonoAndroid10/_._",
  3991. "ref/MonoTouch10/_._",
  3992. "ref/net45/_._",
  3993. "ref/net463/System.Linq.Expressions.dll",
  3994. "ref/netcore50/System.Linq.Expressions.dll",
  3995. "ref/netcore50/System.Linq.Expressions.xml",
  3996. "ref/netcore50/de/System.Linq.Expressions.xml",
  3997. "ref/netcore50/es/System.Linq.Expressions.xml",
  3998. "ref/netcore50/fr/System.Linq.Expressions.xml",
  3999. "ref/netcore50/it/System.Linq.Expressions.xml",
  4000. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4001. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4002. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4003. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4004. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4005. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4006. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4007. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4008. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4009. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4010. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4011. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4012. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4013. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4014. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4015. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4016. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4017. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4018. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4019. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4020. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4021. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4022. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4023. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4024. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4025. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4026. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4027. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4028. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4029. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4030. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4031. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4032. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4033. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4034. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4035. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4036. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4037. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4038. "ref/portable-net45+win8+wp8+wpa81/_._",
  4039. "ref/win8/_._",
  4040. "ref/wp80/_._",
  4041. "ref/wpa81/_._",
  4042. "ref/xamarinios10/_._",
  4043. "ref/xamarinmac20/_._",
  4044. "ref/xamarintvos10/_._",
  4045. "ref/xamarinwatchos10/_._",
  4046. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4047. "system.linq.expressions.4.3.0.nupkg.sha512",
  4048. "system.linq.expressions.nuspec"
  4049. ]
  4050. },
  4051. "System.Memory/4.5.3": {
  4052. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  4053. "type": "package",
  4054. "path": "system.memory/4.5.3",
  4055. "files": [
  4056. ".nupkg.metadata",
  4057. ".signature.p7s",
  4058. "LICENSE.TXT",
  4059. "THIRD-PARTY-NOTICES.TXT",
  4060. "lib/netcoreapp2.1/_._",
  4061. "lib/netstandard1.1/System.Memory.dll",
  4062. "lib/netstandard1.1/System.Memory.xml",
  4063. "lib/netstandard2.0/System.Memory.dll",
  4064. "lib/netstandard2.0/System.Memory.xml",
  4065. "ref/netcoreapp2.1/_._",
  4066. "system.memory.4.5.3.nupkg.sha512",
  4067. "system.memory.nuspec",
  4068. "useSharedDesignerContext.txt",
  4069. "version.txt"
  4070. ]
  4071. },
  4072. "System.Net.Http.WinHttpHandler/4.4.0": {
  4073. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  4074. "type": "package",
  4075. "path": "system.net.http.winhttphandler/4.4.0",
  4076. "files": [
  4077. ".nupkg.metadata",
  4078. ".signature.p7s",
  4079. "LICENSE.TXT",
  4080. "THIRD-PARTY-NOTICES.TXT",
  4081. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  4082. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  4083. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  4084. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  4085. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  4086. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  4087. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  4088. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  4089. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  4090. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  4091. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  4092. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  4093. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  4094. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  4095. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  4096. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  4097. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  4098. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  4099. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  4100. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  4101. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  4102. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  4103. "system.net.http.winhttphandler.nuspec",
  4104. "useSharedDesignerContext.txt",
  4105. "version.txt"
  4106. ]
  4107. },
  4108. "System.Numerics.Vectors/4.5.0": {
  4109. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  4110. "type": "package",
  4111. "path": "system.numerics.vectors/4.5.0",
  4112. "files": [
  4113. ".nupkg.metadata",
  4114. ".signature.p7s",
  4115. "LICENSE.TXT",
  4116. "THIRD-PARTY-NOTICES.TXT",
  4117. "lib/MonoAndroid10/_._",
  4118. "lib/MonoTouch10/_._",
  4119. "lib/net46/System.Numerics.Vectors.dll",
  4120. "lib/net46/System.Numerics.Vectors.xml",
  4121. "lib/netcoreapp2.0/_._",
  4122. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  4123. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  4124. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  4125. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  4126. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  4127. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  4128. "lib/uap10.0.16299/_._",
  4129. "lib/xamarinios10/_._",
  4130. "lib/xamarinmac20/_._",
  4131. "lib/xamarintvos10/_._",
  4132. "lib/xamarinwatchos10/_._",
  4133. "ref/MonoAndroid10/_._",
  4134. "ref/MonoTouch10/_._",
  4135. "ref/net45/System.Numerics.Vectors.dll",
  4136. "ref/net45/System.Numerics.Vectors.xml",
  4137. "ref/net46/System.Numerics.Vectors.dll",
  4138. "ref/net46/System.Numerics.Vectors.xml",
  4139. "ref/netcoreapp2.0/_._",
  4140. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  4141. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  4142. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  4143. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  4144. "ref/uap10.0.16299/_._",
  4145. "ref/xamarinios10/_._",
  4146. "ref/xamarinmac20/_._",
  4147. "ref/xamarintvos10/_._",
  4148. "ref/xamarinwatchos10/_._",
  4149. "system.numerics.vectors.4.5.0.nupkg.sha512",
  4150. "system.numerics.vectors.nuspec",
  4151. "useSharedDesignerContext.txt",
  4152. "version.txt"
  4153. ]
  4154. },
  4155. "System.ObjectModel/4.3.0": {
  4156. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4157. "type": "package",
  4158. "path": "system.objectmodel/4.3.0",
  4159. "files": [
  4160. ".nupkg.metadata",
  4161. ".signature.p7s",
  4162. "ThirdPartyNotices.txt",
  4163. "dotnet_library_license.txt",
  4164. "lib/MonoAndroid10/_._",
  4165. "lib/MonoTouch10/_._",
  4166. "lib/net45/_._",
  4167. "lib/netcore50/System.ObjectModel.dll",
  4168. "lib/netstandard1.3/System.ObjectModel.dll",
  4169. "lib/portable-net45+win8+wp8+wpa81/_._",
  4170. "lib/win8/_._",
  4171. "lib/wp80/_._",
  4172. "lib/wpa81/_._",
  4173. "lib/xamarinios10/_._",
  4174. "lib/xamarinmac20/_._",
  4175. "lib/xamarintvos10/_._",
  4176. "lib/xamarinwatchos10/_._",
  4177. "ref/MonoAndroid10/_._",
  4178. "ref/MonoTouch10/_._",
  4179. "ref/net45/_._",
  4180. "ref/netcore50/System.ObjectModel.dll",
  4181. "ref/netcore50/System.ObjectModel.xml",
  4182. "ref/netcore50/de/System.ObjectModel.xml",
  4183. "ref/netcore50/es/System.ObjectModel.xml",
  4184. "ref/netcore50/fr/System.ObjectModel.xml",
  4185. "ref/netcore50/it/System.ObjectModel.xml",
  4186. "ref/netcore50/ja/System.ObjectModel.xml",
  4187. "ref/netcore50/ko/System.ObjectModel.xml",
  4188. "ref/netcore50/ru/System.ObjectModel.xml",
  4189. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4190. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4191. "ref/netstandard1.0/System.ObjectModel.dll",
  4192. "ref/netstandard1.0/System.ObjectModel.xml",
  4193. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4194. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4195. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4196. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4197. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4198. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4199. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4200. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4201. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  4202. "ref/netstandard1.3/System.ObjectModel.dll",
  4203. "ref/netstandard1.3/System.ObjectModel.xml",
  4204. "ref/netstandard1.3/de/System.ObjectModel.xml",
  4205. "ref/netstandard1.3/es/System.ObjectModel.xml",
  4206. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  4207. "ref/netstandard1.3/it/System.ObjectModel.xml",
  4208. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  4209. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  4210. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  4211. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  4212. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  4213. "ref/portable-net45+win8+wp8+wpa81/_._",
  4214. "ref/win8/_._",
  4215. "ref/wp80/_._",
  4216. "ref/wpa81/_._",
  4217. "ref/xamarinios10/_._",
  4218. "ref/xamarinmac20/_._",
  4219. "ref/xamarintvos10/_._",
  4220. "ref/xamarinwatchos10/_._",
  4221. "system.objectmodel.4.3.0.nupkg.sha512",
  4222. "system.objectmodel.nuspec"
  4223. ]
  4224. },
  4225. "System.Private.ServiceModel/4.4.4": {
  4226. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  4227. "type": "package",
  4228. "path": "system.private.servicemodel/4.4.4",
  4229. "files": [
  4230. ".nupkg.metadata",
  4231. ".signature.p7s",
  4232. "LICENSE.TXT",
  4233. "THIRD-PARTY-NOTICES.TXT",
  4234. "ref/netstandard/_._",
  4235. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  4236. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  4237. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  4238. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  4239. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  4240. "system.private.servicemodel.4.4.4.nupkg.sha512",
  4241. "system.private.servicemodel.nuspec",
  4242. "version.txt"
  4243. ]
  4244. },
  4245. "System.Reflection/4.3.0": {
  4246. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4247. "type": "package",
  4248. "path": "system.reflection/4.3.0",
  4249. "files": [
  4250. ".nupkg.metadata",
  4251. ".signature.p7s",
  4252. "ThirdPartyNotices.txt",
  4253. "dotnet_library_license.txt",
  4254. "lib/MonoAndroid10/_._",
  4255. "lib/MonoTouch10/_._",
  4256. "lib/net45/_._",
  4257. "lib/net462/System.Reflection.dll",
  4258. "lib/portable-net45+win8+wp8+wpa81/_._",
  4259. "lib/win8/_._",
  4260. "lib/wp80/_._",
  4261. "lib/wpa81/_._",
  4262. "lib/xamarinios10/_._",
  4263. "lib/xamarinmac20/_._",
  4264. "lib/xamarintvos10/_._",
  4265. "lib/xamarinwatchos10/_._",
  4266. "ref/MonoAndroid10/_._",
  4267. "ref/MonoTouch10/_._",
  4268. "ref/net45/_._",
  4269. "ref/net462/System.Reflection.dll",
  4270. "ref/netcore50/System.Reflection.dll",
  4271. "ref/netcore50/System.Reflection.xml",
  4272. "ref/netcore50/de/System.Reflection.xml",
  4273. "ref/netcore50/es/System.Reflection.xml",
  4274. "ref/netcore50/fr/System.Reflection.xml",
  4275. "ref/netcore50/it/System.Reflection.xml",
  4276. "ref/netcore50/ja/System.Reflection.xml",
  4277. "ref/netcore50/ko/System.Reflection.xml",
  4278. "ref/netcore50/ru/System.Reflection.xml",
  4279. "ref/netcore50/zh-hans/System.Reflection.xml",
  4280. "ref/netcore50/zh-hant/System.Reflection.xml",
  4281. "ref/netstandard1.0/System.Reflection.dll",
  4282. "ref/netstandard1.0/System.Reflection.xml",
  4283. "ref/netstandard1.0/de/System.Reflection.xml",
  4284. "ref/netstandard1.0/es/System.Reflection.xml",
  4285. "ref/netstandard1.0/fr/System.Reflection.xml",
  4286. "ref/netstandard1.0/it/System.Reflection.xml",
  4287. "ref/netstandard1.0/ja/System.Reflection.xml",
  4288. "ref/netstandard1.0/ko/System.Reflection.xml",
  4289. "ref/netstandard1.0/ru/System.Reflection.xml",
  4290. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  4291. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  4292. "ref/netstandard1.3/System.Reflection.dll",
  4293. "ref/netstandard1.3/System.Reflection.xml",
  4294. "ref/netstandard1.3/de/System.Reflection.xml",
  4295. "ref/netstandard1.3/es/System.Reflection.xml",
  4296. "ref/netstandard1.3/fr/System.Reflection.xml",
  4297. "ref/netstandard1.3/it/System.Reflection.xml",
  4298. "ref/netstandard1.3/ja/System.Reflection.xml",
  4299. "ref/netstandard1.3/ko/System.Reflection.xml",
  4300. "ref/netstandard1.3/ru/System.Reflection.xml",
  4301. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  4302. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  4303. "ref/netstandard1.5/System.Reflection.dll",
  4304. "ref/netstandard1.5/System.Reflection.xml",
  4305. "ref/netstandard1.5/de/System.Reflection.xml",
  4306. "ref/netstandard1.5/es/System.Reflection.xml",
  4307. "ref/netstandard1.5/fr/System.Reflection.xml",
  4308. "ref/netstandard1.5/it/System.Reflection.xml",
  4309. "ref/netstandard1.5/ja/System.Reflection.xml",
  4310. "ref/netstandard1.5/ko/System.Reflection.xml",
  4311. "ref/netstandard1.5/ru/System.Reflection.xml",
  4312. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  4313. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  4314. "ref/portable-net45+win8+wp8+wpa81/_._",
  4315. "ref/win8/_._",
  4316. "ref/wp80/_._",
  4317. "ref/wpa81/_._",
  4318. "ref/xamarinios10/_._",
  4319. "ref/xamarinmac20/_._",
  4320. "ref/xamarintvos10/_._",
  4321. "ref/xamarinwatchos10/_._",
  4322. "system.reflection.4.3.0.nupkg.sha512",
  4323. "system.reflection.nuspec"
  4324. ]
  4325. },
  4326. "System.Reflection.DispatchProxy/4.4.0": {
  4327. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  4328. "type": "package",
  4329. "path": "system.reflection.dispatchproxy/4.4.0",
  4330. "files": [
  4331. ".nupkg.metadata",
  4332. ".signature.p7s",
  4333. "LICENSE.TXT",
  4334. "THIRD-PARTY-NOTICES.TXT",
  4335. "lib/MonoAndroid10/_._",
  4336. "lib/MonoTouch10/_._",
  4337. "lib/net461/System.Reflection.DispatchProxy.dll",
  4338. "lib/netcoreapp2.0/_._",
  4339. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  4340. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  4341. "lib/xamarinios10/_._",
  4342. "lib/xamarinmac20/_._",
  4343. "lib/xamarintvos10/_._",
  4344. "lib/xamarinwatchos10/_._",
  4345. "ref/MonoAndroid10/_._",
  4346. "ref/MonoTouch10/_._",
  4347. "ref/netcoreapp2.0/_._",
  4348. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  4349. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  4350. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  4351. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  4352. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  4353. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  4354. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  4355. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  4356. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  4357. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  4358. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  4359. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  4360. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  4361. "ref/xamarinios10/_._",
  4362. "ref/xamarinmac20/_._",
  4363. "ref/xamarintvos10/_._",
  4364. "ref/xamarinwatchos10/_._",
  4365. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  4366. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  4367. "system.reflection.dispatchproxy.nuspec",
  4368. "useSharedDesignerContext.txt",
  4369. "version.txt"
  4370. ]
  4371. },
  4372. "System.Reflection.Emit/4.3.0": {
  4373. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  4374. "type": "package",
  4375. "path": "system.reflection.emit/4.3.0",
  4376. "files": [
  4377. ".nupkg.metadata",
  4378. ".signature.p7s",
  4379. "ThirdPartyNotices.txt",
  4380. "dotnet_library_license.txt",
  4381. "lib/MonoAndroid10/_._",
  4382. "lib/monotouch10/_._",
  4383. "lib/net45/_._",
  4384. "lib/netcore50/System.Reflection.Emit.dll",
  4385. "lib/netstandard1.3/System.Reflection.Emit.dll",
  4386. "lib/xamarinios10/_._",
  4387. "lib/xamarinmac20/_._",
  4388. "lib/xamarintvos10/_._",
  4389. "lib/xamarinwatchos10/_._",
  4390. "ref/MonoAndroid10/_._",
  4391. "ref/net45/_._",
  4392. "ref/netstandard1.1/System.Reflection.Emit.dll",
  4393. "ref/netstandard1.1/System.Reflection.Emit.xml",
  4394. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  4395. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  4396. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  4397. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  4398. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  4399. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  4400. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  4401. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  4402. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  4403. "ref/xamarinmac20/_._",
  4404. "system.reflection.emit.4.3.0.nupkg.sha512",
  4405. "system.reflection.emit.nuspec"
  4406. ]
  4407. },
  4408. "System.Reflection.Emit.ILGeneration/4.3.0": {
  4409. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  4410. "type": "package",
  4411. "path": "system.reflection.emit.ilgeneration/4.3.0",
  4412. "files": [
  4413. ".nupkg.metadata",
  4414. ".signature.p7s",
  4415. "ThirdPartyNotices.txt",
  4416. "dotnet_library_license.txt",
  4417. "lib/MonoAndroid10/_._",
  4418. "lib/MonoTouch10/_._",
  4419. "lib/net45/_._",
  4420. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  4421. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  4422. "lib/portable-net45+wp8/_._",
  4423. "lib/wp80/_._",
  4424. "lib/xamarinios10/_._",
  4425. "lib/xamarinmac20/_._",
  4426. "lib/xamarintvos10/_._",
  4427. "lib/xamarinwatchos10/_._",
  4428. "ref/MonoAndroid10/_._",
  4429. "ref/MonoTouch10/_._",
  4430. "ref/net45/_._",
  4431. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  4432. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  4433. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  4434. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  4435. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  4436. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  4437. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  4438. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  4439. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  4440. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  4441. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  4442. "ref/portable-net45+wp8/_._",
  4443. "ref/wp80/_._",
  4444. "ref/xamarinios10/_._",
  4445. "ref/xamarinmac20/_._",
  4446. "ref/xamarintvos10/_._",
  4447. "ref/xamarinwatchos10/_._",
  4448. "runtimes/aot/lib/netcore50/_._",
  4449. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  4450. "system.reflection.emit.ilgeneration.nuspec"
  4451. ]
  4452. },
  4453. "System.Reflection.Emit.Lightweight/4.3.0": {
  4454. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  4455. "type": "package",
  4456. "path": "system.reflection.emit.lightweight/4.3.0",
  4457. "files": [
  4458. ".nupkg.metadata",
  4459. ".signature.p7s",
  4460. "ThirdPartyNotices.txt",
  4461. "dotnet_library_license.txt",
  4462. "lib/MonoAndroid10/_._",
  4463. "lib/MonoTouch10/_._",
  4464. "lib/net45/_._",
  4465. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  4466. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  4467. "lib/portable-net45+wp8/_._",
  4468. "lib/wp80/_._",
  4469. "lib/xamarinios10/_._",
  4470. "lib/xamarinmac20/_._",
  4471. "lib/xamarintvos10/_._",
  4472. "lib/xamarinwatchos10/_._",
  4473. "ref/MonoAndroid10/_._",
  4474. "ref/MonoTouch10/_._",
  4475. "ref/net45/_._",
  4476. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  4477. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  4478. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  4479. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  4480. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  4481. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  4482. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  4483. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  4484. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  4485. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  4486. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  4487. "ref/portable-net45+wp8/_._",
  4488. "ref/wp80/_._",
  4489. "ref/xamarinios10/_._",
  4490. "ref/xamarinmac20/_._",
  4491. "ref/xamarintvos10/_._",
  4492. "ref/xamarinwatchos10/_._",
  4493. "runtimes/aot/lib/netcore50/_._",
  4494. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  4495. "system.reflection.emit.lightweight.nuspec"
  4496. ]
  4497. },
  4498. "System.Reflection.Extensions/4.3.0": {
  4499. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  4500. "type": "package",
  4501. "path": "system.reflection.extensions/4.3.0",
  4502. "files": [
  4503. ".nupkg.metadata",
  4504. ".signature.p7s",
  4505. "ThirdPartyNotices.txt",
  4506. "dotnet_library_license.txt",
  4507. "lib/MonoAndroid10/_._",
  4508. "lib/MonoTouch10/_._",
  4509. "lib/net45/_._",
  4510. "lib/portable-net45+win8+wp8+wpa81/_._",
  4511. "lib/win8/_._",
  4512. "lib/wp80/_._",
  4513. "lib/wpa81/_._",
  4514. "lib/xamarinios10/_._",
  4515. "lib/xamarinmac20/_._",
  4516. "lib/xamarintvos10/_._",
  4517. "lib/xamarinwatchos10/_._",
  4518. "ref/MonoAndroid10/_._",
  4519. "ref/MonoTouch10/_._",
  4520. "ref/net45/_._",
  4521. "ref/netcore50/System.Reflection.Extensions.dll",
  4522. "ref/netcore50/System.Reflection.Extensions.xml",
  4523. "ref/netcore50/de/System.Reflection.Extensions.xml",
  4524. "ref/netcore50/es/System.Reflection.Extensions.xml",
  4525. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  4526. "ref/netcore50/it/System.Reflection.Extensions.xml",
  4527. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  4528. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  4529. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  4530. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  4531. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  4532. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  4533. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  4534. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  4535. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  4536. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  4537. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  4538. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  4539. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  4540. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  4541. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  4542. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  4543. "ref/portable-net45+win8+wp8+wpa81/_._",
  4544. "ref/win8/_._",
  4545. "ref/wp80/_._",
  4546. "ref/wpa81/_._",
  4547. "ref/xamarinios10/_._",
  4548. "ref/xamarinmac20/_._",
  4549. "ref/xamarintvos10/_._",
  4550. "ref/xamarinwatchos10/_._",
  4551. "system.reflection.extensions.4.3.0.nupkg.sha512",
  4552. "system.reflection.extensions.nuspec"
  4553. ]
  4554. },
  4555. "System.Reflection.Primitives/4.3.0": {
  4556. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  4557. "type": "package",
  4558. "path": "system.reflection.primitives/4.3.0",
  4559. "files": [
  4560. ".nupkg.metadata",
  4561. ".signature.p7s",
  4562. "ThirdPartyNotices.txt",
  4563. "dotnet_library_license.txt",
  4564. "lib/MonoAndroid10/_._",
  4565. "lib/MonoTouch10/_._",
  4566. "lib/net45/_._",
  4567. "lib/portable-net45+win8+wp8+wpa81/_._",
  4568. "lib/win8/_._",
  4569. "lib/wp80/_._",
  4570. "lib/wpa81/_._",
  4571. "lib/xamarinios10/_._",
  4572. "lib/xamarinmac20/_._",
  4573. "lib/xamarintvos10/_._",
  4574. "lib/xamarinwatchos10/_._",
  4575. "ref/MonoAndroid10/_._",
  4576. "ref/MonoTouch10/_._",
  4577. "ref/net45/_._",
  4578. "ref/netcore50/System.Reflection.Primitives.dll",
  4579. "ref/netcore50/System.Reflection.Primitives.xml",
  4580. "ref/netcore50/de/System.Reflection.Primitives.xml",
  4581. "ref/netcore50/es/System.Reflection.Primitives.xml",
  4582. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  4583. "ref/netcore50/it/System.Reflection.Primitives.xml",
  4584. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  4585. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  4586. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  4587. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  4588. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  4589. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  4590. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  4591. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  4592. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  4593. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  4594. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  4595. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  4596. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  4597. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  4598. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  4599. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  4600. "ref/portable-net45+win8+wp8+wpa81/_._",
  4601. "ref/win8/_._",
  4602. "ref/wp80/_._",
  4603. "ref/wpa81/_._",
  4604. "ref/xamarinios10/_._",
  4605. "ref/xamarinmac20/_._",
  4606. "ref/xamarintvos10/_._",
  4607. "ref/xamarinwatchos10/_._",
  4608. "system.reflection.primitives.4.3.0.nupkg.sha512",
  4609. "system.reflection.primitives.nuspec"
  4610. ]
  4611. },
  4612. "System.Reflection.TypeExtensions/4.3.0": {
  4613. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  4614. "type": "package",
  4615. "path": "system.reflection.typeextensions/4.3.0",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "ThirdPartyNotices.txt",
  4620. "dotnet_library_license.txt",
  4621. "lib/MonoAndroid10/_._",
  4622. "lib/MonoTouch10/_._",
  4623. "lib/net46/System.Reflection.TypeExtensions.dll",
  4624. "lib/net462/System.Reflection.TypeExtensions.dll",
  4625. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  4626. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  4627. "lib/xamarinios10/_._",
  4628. "lib/xamarinmac20/_._",
  4629. "lib/xamarintvos10/_._",
  4630. "lib/xamarinwatchos10/_._",
  4631. "ref/MonoAndroid10/_._",
  4632. "ref/MonoTouch10/_._",
  4633. "ref/net46/System.Reflection.TypeExtensions.dll",
  4634. "ref/net462/System.Reflection.TypeExtensions.dll",
  4635. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  4636. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  4637. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  4638. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  4639. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  4640. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  4641. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  4642. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  4643. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  4644. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  4645. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  4646. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  4647. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  4648. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  4649. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  4650. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  4651. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  4652. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  4653. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  4654. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  4655. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  4656. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  4657. "ref/xamarinios10/_._",
  4658. "ref/xamarinmac20/_._",
  4659. "ref/xamarintvos10/_._",
  4660. "ref/xamarinwatchos10/_._",
  4661. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  4662. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  4663. "system.reflection.typeextensions.nuspec"
  4664. ]
  4665. },
  4666. "System.Resources.ResourceManager/4.3.0": {
  4667. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  4668. "type": "package",
  4669. "path": "system.resources.resourcemanager/4.3.0",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "ThirdPartyNotices.txt",
  4674. "dotnet_library_license.txt",
  4675. "lib/MonoAndroid10/_._",
  4676. "lib/MonoTouch10/_._",
  4677. "lib/net45/_._",
  4678. "lib/portable-net45+win8+wp8+wpa81/_._",
  4679. "lib/win8/_._",
  4680. "lib/wp80/_._",
  4681. "lib/wpa81/_._",
  4682. "lib/xamarinios10/_._",
  4683. "lib/xamarinmac20/_._",
  4684. "lib/xamarintvos10/_._",
  4685. "lib/xamarinwatchos10/_._",
  4686. "ref/MonoAndroid10/_._",
  4687. "ref/MonoTouch10/_._",
  4688. "ref/net45/_._",
  4689. "ref/netcore50/System.Resources.ResourceManager.dll",
  4690. "ref/netcore50/System.Resources.ResourceManager.xml",
  4691. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  4692. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  4693. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  4694. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  4695. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  4696. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  4697. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  4698. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  4699. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  4700. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  4701. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  4702. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  4703. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  4704. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  4705. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  4706. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  4707. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  4708. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  4709. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  4710. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  4711. "ref/portable-net45+win8+wp8+wpa81/_._",
  4712. "ref/win8/_._",
  4713. "ref/wp80/_._",
  4714. "ref/wpa81/_._",
  4715. "ref/xamarinios10/_._",
  4716. "ref/xamarinmac20/_._",
  4717. "ref/xamarintvos10/_._",
  4718. "ref/xamarinwatchos10/_._",
  4719. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  4720. "system.resources.resourcemanager.nuspec"
  4721. ]
  4722. },
  4723. "System.Runtime/4.3.0": {
  4724. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  4725. "type": "package",
  4726. "path": "system.runtime/4.3.0",
  4727. "files": [
  4728. ".nupkg.metadata",
  4729. ".signature.p7s",
  4730. "ThirdPartyNotices.txt",
  4731. "dotnet_library_license.txt",
  4732. "lib/MonoAndroid10/_._",
  4733. "lib/MonoTouch10/_._",
  4734. "lib/net45/_._",
  4735. "lib/net462/System.Runtime.dll",
  4736. "lib/portable-net45+win8+wp80+wpa81/_._",
  4737. "lib/win8/_._",
  4738. "lib/wp80/_._",
  4739. "lib/wpa81/_._",
  4740. "lib/xamarinios10/_._",
  4741. "lib/xamarinmac20/_._",
  4742. "lib/xamarintvos10/_._",
  4743. "lib/xamarinwatchos10/_._",
  4744. "ref/MonoAndroid10/_._",
  4745. "ref/MonoTouch10/_._",
  4746. "ref/net45/_._",
  4747. "ref/net462/System.Runtime.dll",
  4748. "ref/netcore50/System.Runtime.dll",
  4749. "ref/netcore50/System.Runtime.xml",
  4750. "ref/netcore50/de/System.Runtime.xml",
  4751. "ref/netcore50/es/System.Runtime.xml",
  4752. "ref/netcore50/fr/System.Runtime.xml",
  4753. "ref/netcore50/it/System.Runtime.xml",
  4754. "ref/netcore50/ja/System.Runtime.xml",
  4755. "ref/netcore50/ko/System.Runtime.xml",
  4756. "ref/netcore50/ru/System.Runtime.xml",
  4757. "ref/netcore50/zh-hans/System.Runtime.xml",
  4758. "ref/netcore50/zh-hant/System.Runtime.xml",
  4759. "ref/netstandard1.0/System.Runtime.dll",
  4760. "ref/netstandard1.0/System.Runtime.xml",
  4761. "ref/netstandard1.0/de/System.Runtime.xml",
  4762. "ref/netstandard1.0/es/System.Runtime.xml",
  4763. "ref/netstandard1.0/fr/System.Runtime.xml",
  4764. "ref/netstandard1.0/it/System.Runtime.xml",
  4765. "ref/netstandard1.0/ja/System.Runtime.xml",
  4766. "ref/netstandard1.0/ko/System.Runtime.xml",
  4767. "ref/netstandard1.0/ru/System.Runtime.xml",
  4768. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  4769. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  4770. "ref/netstandard1.2/System.Runtime.dll",
  4771. "ref/netstandard1.2/System.Runtime.xml",
  4772. "ref/netstandard1.2/de/System.Runtime.xml",
  4773. "ref/netstandard1.2/es/System.Runtime.xml",
  4774. "ref/netstandard1.2/fr/System.Runtime.xml",
  4775. "ref/netstandard1.2/it/System.Runtime.xml",
  4776. "ref/netstandard1.2/ja/System.Runtime.xml",
  4777. "ref/netstandard1.2/ko/System.Runtime.xml",
  4778. "ref/netstandard1.2/ru/System.Runtime.xml",
  4779. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  4780. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  4781. "ref/netstandard1.3/System.Runtime.dll",
  4782. "ref/netstandard1.3/System.Runtime.xml",
  4783. "ref/netstandard1.3/de/System.Runtime.xml",
  4784. "ref/netstandard1.3/es/System.Runtime.xml",
  4785. "ref/netstandard1.3/fr/System.Runtime.xml",
  4786. "ref/netstandard1.3/it/System.Runtime.xml",
  4787. "ref/netstandard1.3/ja/System.Runtime.xml",
  4788. "ref/netstandard1.3/ko/System.Runtime.xml",
  4789. "ref/netstandard1.3/ru/System.Runtime.xml",
  4790. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  4791. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  4792. "ref/netstandard1.5/System.Runtime.dll",
  4793. "ref/netstandard1.5/System.Runtime.xml",
  4794. "ref/netstandard1.5/de/System.Runtime.xml",
  4795. "ref/netstandard1.5/es/System.Runtime.xml",
  4796. "ref/netstandard1.5/fr/System.Runtime.xml",
  4797. "ref/netstandard1.5/it/System.Runtime.xml",
  4798. "ref/netstandard1.5/ja/System.Runtime.xml",
  4799. "ref/netstandard1.5/ko/System.Runtime.xml",
  4800. "ref/netstandard1.5/ru/System.Runtime.xml",
  4801. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  4802. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  4803. "ref/portable-net45+win8+wp80+wpa81/_._",
  4804. "ref/win8/_._",
  4805. "ref/wp80/_._",
  4806. "ref/wpa81/_._",
  4807. "ref/xamarinios10/_._",
  4808. "ref/xamarinmac20/_._",
  4809. "ref/xamarintvos10/_._",
  4810. "ref/xamarinwatchos10/_._",
  4811. "system.runtime.4.3.0.nupkg.sha512",
  4812. "system.runtime.nuspec"
  4813. ]
  4814. },
  4815. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  4816. "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  4817. "type": "package",
  4818. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  4819. "files": [
  4820. ".nupkg.metadata",
  4821. ".signature.p7s",
  4822. "Icon.png",
  4823. "LICENSE.TXT",
  4824. "THIRD-PARTY-NOTICES.TXT",
  4825. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  4826. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  4827. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  4828. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  4829. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  4830. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  4831. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  4832. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  4833. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  4834. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  4835. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  4836. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  4837. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  4838. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  4839. "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
  4840. "system.runtime.compilerservices.unsafe.nuspec",
  4841. "useSharedDesignerContext.txt",
  4842. "version.txt"
  4843. ]
  4844. },
  4845. "System.Runtime.Extensions/4.3.0": {
  4846. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  4847. "type": "package",
  4848. "path": "system.runtime.extensions/4.3.0",
  4849. "files": [
  4850. ".nupkg.metadata",
  4851. ".signature.p7s",
  4852. "ThirdPartyNotices.txt",
  4853. "dotnet_library_license.txt",
  4854. "lib/MonoAndroid10/_._",
  4855. "lib/MonoTouch10/_._",
  4856. "lib/net45/_._",
  4857. "lib/net462/System.Runtime.Extensions.dll",
  4858. "lib/portable-net45+win8+wp8+wpa81/_._",
  4859. "lib/win8/_._",
  4860. "lib/wp80/_._",
  4861. "lib/wpa81/_._",
  4862. "lib/xamarinios10/_._",
  4863. "lib/xamarinmac20/_._",
  4864. "lib/xamarintvos10/_._",
  4865. "lib/xamarinwatchos10/_._",
  4866. "ref/MonoAndroid10/_._",
  4867. "ref/MonoTouch10/_._",
  4868. "ref/net45/_._",
  4869. "ref/net462/System.Runtime.Extensions.dll",
  4870. "ref/netcore50/System.Runtime.Extensions.dll",
  4871. "ref/netcore50/System.Runtime.Extensions.xml",
  4872. "ref/netcore50/de/System.Runtime.Extensions.xml",
  4873. "ref/netcore50/es/System.Runtime.Extensions.xml",
  4874. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  4875. "ref/netcore50/it/System.Runtime.Extensions.xml",
  4876. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  4877. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  4878. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  4879. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  4880. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  4881. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  4882. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  4883. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  4884. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  4885. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  4886. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  4887. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  4888. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  4889. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  4890. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  4891. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  4892. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  4893. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  4894. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  4895. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  4896. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  4897. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  4898. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  4899. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  4900. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  4901. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  4902. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  4903. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  4904. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  4905. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  4906. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  4907. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  4908. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  4909. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  4910. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  4911. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  4912. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  4913. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  4914. "ref/portable-net45+win8+wp8+wpa81/_._",
  4915. "ref/win8/_._",
  4916. "ref/wp80/_._",
  4917. "ref/wpa81/_._",
  4918. "ref/xamarinios10/_._",
  4919. "ref/xamarinmac20/_._",
  4920. "ref/xamarintvos10/_._",
  4921. "ref/xamarinwatchos10/_._",
  4922. "system.runtime.extensions.4.3.0.nupkg.sha512",
  4923. "system.runtime.extensions.nuspec"
  4924. ]
  4925. },
  4926. "System.Runtime.Handles/4.3.0": {
  4927. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  4928. "type": "package",
  4929. "path": "system.runtime.handles/4.3.0",
  4930. "files": [
  4931. ".nupkg.metadata",
  4932. ".signature.p7s",
  4933. "ThirdPartyNotices.txt",
  4934. "dotnet_library_license.txt",
  4935. "lib/MonoAndroid10/_._",
  4936. "lib/MonoTouch10/_._",
  4937. "lib/net46/_._",
  4938. "lib/xamarinios10/_._",
  4939. "lib/xamarinmac20/_._",
  4940. "lib/xamarintvos10/_._",
  4941. "lib/xamarinwatchos10/_._",
  4942. "ref/MonoAndroid10/_._",
  4943. "ref/MonoTouch10/_._",
  4944. "ref/net46/_._",
  4945. "ref/netstandard1.3/System.Runtime.Handles.dll",
  4946. "ref/netstandard1.3/System.Runtime.Handles.xml",
  4947. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  4948. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  4949. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  4950. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  4951. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  4952. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  4953. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  4954. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  4955. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  4956. "ref/xamarinios10/_._",
  4957. "ref/xamarinmac20/_._",
  4958. "ref/xamarintvos10/_._",
  4959. "ref/xamarinwatchos10/_._",
  4960. "system.runtime.handles.4.3.0.nupkg.sha512",
  4961. "system.runtime.handles.nuspec"
  4962. ]
  4963. },
  4964. "System.Runtime.InteropServices/4.3.0": {
  4965. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  4966. "type": "package",
  4967. "path": "system.runtime.interopservices/4.3.0",
  4968. "files": [
  4969. ".nupkg.metadata",
  4970. ".signature.p7s",
  4971. "ThirdPartyNotices.txt",
  4972. "dotnet_library_license.txt",
  4973. "lib/MonoAndroid10/_._",
  4974. "lib/MonoTouch10/_._",
  4975. "lib/net45/_._",
  4976. "lib/net462/System.Runtime.InteropServices.dll",
  4977. "lib/net463/System.Runtime.InteropServices.dll",
  4978. "lib/portable-net45+win8+wpa81/_._",
  4979. "lib/win8/_._",
  4980. "lib/wpa81/_._",
  4981. "lib/xamarinios10/_._",
  4982. "lib/xamarinmac20/_._",
  4983. "lib/xamarintvos10/_._",
  4984. "lib/xamarinwatchos10/_._",
  4985. "ref/MonoAndroid10/_._",
  4986. "ref/MonoTouch10/_._",
  4987. "ref/net45/_._",
  4988. "ref/net462/System.Runtime.InteropServices.dll",
  4989. "ref/net463/System.Runtime.InteropServices.dll",
  4990. "ref/netcore50/System.Runtime.InteropServices.dll",
  4991. "ref/netcore50/System.Runtime.InteropServices.xml",
  4992. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  4993. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  4994. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  4995. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  4996. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  4997. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  4998. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  4999. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  5000. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  5001. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  5002. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  5003. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  5004. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  5005. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  5006. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  5007. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  5008. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  5009. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  5010. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  5011. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  5012. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  5013. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  5014. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  5015. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  5016. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  5017. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  5018. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  5019. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  5020. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  5021. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  5022. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  5023. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  5024. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  5025. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  5026. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  5027. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  5028. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  5029. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  5030. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  5031. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  5032. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  5033. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  5034. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  5035. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  5036. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  5037. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  5038. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  5039. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  5040. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  5041. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  5042. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  5043. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  5044. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  5045. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  5046. "ref/portable-net45+win8+wpa81/_._",
  5047. "ref/win8/_._",
  5048. "ref/wpa81/_._",
  5049. "ref/xamarinios10/_._",
  5050. "ref/xamarinmac20/_._",
  5051. "ref/xamarintvos10/_._",
  5052. "ref/xamarinwatchos10/_._",
  5053. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  5054. "system.runtime.interopservices.nuspec"
  5055. ]
  5056. },
  5057. "System.Runtime.Serialization.Formatters/4.3.0": {
  5058. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  5059. "type": "package",
  5060. "path": "system.runtime.serialization.formatters/4.3.0",
  5061. "files": [
  5062. ".nupkg.metadata",
  5063. ".signature.p7s",
  5064. "ThirdPartyNotices.txt",
  5065. "dotnet_library_license.txt",
  5066. "lib/MonoAndroid10/_._",
  5067. "lib/MonoTouch10/_._",
  5068. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  5069. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  5070. "lib/xamarinios10/_._",
  5071. "lib/xamarinmac20/_._",
  5072. "lib/xamarintvos10/_._",
  5073. "lib/xamarinwatchos10/_._",
  5074. "ref/MonoAndroid10/_._",
  5075. "ref/MonoTouch10/_._",
  5076. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  5077. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  5078. "ref/xamarinios10/_._",
  5079. "ref/xamarinmac20/_._",
  5080. "ref/xamarintvos10/_._",
  5081. "ref/xamarinwatchos10/_._",
  5082. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  5083. "system.runtime.serialization.formatters.nuspec"
  5084. ]
  5085. },
  5086. "System.Runtime.Serialization.Primitives/4.3.0": {
  5087. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  5088. "type": "package",
  5089. "path": "system.runtime.serialization.primitives/4.3.0",
  5090. "files": [
  5091. ".nupkg.metadata",
  5092. ".signature.p7s",
  5093. "ThirdPartyNotices.txt",
  5094. "dotnet_library_license.txt",
  5095. "lib/MonoAndroid10/_._",
  5096. "lib/MonoTouch10/_._",
  5097. "lib/net45/_._",
  5098. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  5099. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5100. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5101. "lib/portable-net45+win8+wp8+wpa81/_._",
  5102. "lib/win8/_._",
  5103. "lib/wp80/_._",
  5104. "lib/wpa81/_._",
  5105. "lib/xamarinios10/_._",
  5106. "lib/xamarinmac20/_._",
  5107. "lib/xamarintvos10/_._",
  5108. "lib/xamarinwatchos10/_._",
  5109. "ref/MonoAndroid10/_._",
  5110. "ref/MonoTouch10/_._",
  5111. "ref/net45/_._",
  5112. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  5113. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  5114. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  5115. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  5116. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  5117. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  5118. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  5119. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  5120. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  5121. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  5122. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5123. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5124. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  5125. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  5126. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  5127. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  5128. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  5129. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  5130. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  5131. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  5132. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  5133. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5134. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5135. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5136. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  5137. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  5138. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  5139. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  5140. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  5141. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  5142. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  5143. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  5144. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5145. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5146. "ref/portable-net45+win8+wp8+wpa81/_._",
  5147. "ref/win8/_._",
  5148. "ref/wp80/_._",
  5149. "ref/wpa81/_._",
  5150. "ref/xamarinios10/_._",
  5151. "ref/xamarinmac20/_._",
  5152. "ref/xamarintvos10/_._",
  5153. "ref/xamarinwatchos10/_._",
  5154. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5155. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  5156. "system.runtime.serialization.primitives.nuspec"
  5157. ]
  5158. },
  5159. "System.Security.AccessControl/4.4.0": {
  5160. "sha512": "2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
  5161. "type": "package",
  5162. "path": "system.security.accesscontrol/4.4.0",
  5163. "files": [
  5164. ".nupkg.metadata",
  5165. ".signature.p7s",
  5166. "LICENSE.TXT",
  5167. "THIRD-PARTY-NOTICES.TXT",
  5168. "lib/net46/System.Security.AccessControl.dll",
  5169. "lib/net461/System.Security.AccessControl.dll",
  5170. "lib/netstandard1.3/System.Security.AccessControl.dll",
  5171. "lib/netstandard2.0/System.Security.AccessControl.dll",
  5172. "ref/net46/System.Security.AccessControl.dll",
  5173. "ref/net461/System.Security.AccessControl.dll",
  5174. "ref/net461/System.Security.AccessControl.xml",
  5175. "ref/netstandard1.3/System.Security.AccessControl.dll",
  5176. "ref/netstandard1.3/System.Security.AccessControl.xml",
  5177. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  5178. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  5179. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  5180. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  5181. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  5182. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  5183. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  5184. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  5185. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  5186. "ref/netstandard2.0/System.Security.AccessControl.dll",
  5187. "ref/netstandard2.0/System.Security.AccessControl.xml",
  5188. "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  5189. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  5190. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  5191. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  5192. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  5193. "system.security.accesscontrol.4.4.0.nupkg.sha512",
  5194. "system.security.accesscontrol.nuspec",
  5195. "useSharedDesignerContext.txt",
  5196. "version.txt"
  5197. ]
  5198. },
  5199. "System.Security.Cryptography.Cng/4.5.0": {
  5200. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  5201. "type": "package",
  5202. "path": "system.security.cryptography.cng/4.5.0",
  5203. "files": [
  5204. ".nupkg.metadata",
  5205. ".signature.p7s",
  5206. "LICENSE.TXT",
  5207. "THIRD-PARTY-NOTICES.TXT",
  5208. "lib/MonoAndroid10/_._",
  5209. "lib/MonoTouch10/_._",
  5210. "lib/net46/System.Security.Cryptography.Cng.dll",
  5211. "lib/net461/System.Security.Cryptography.Cng.dll",
  5212. "lib/net462/System.Security.Cryptography.Cng.dll",
  5213. "lib/net47/System.Security.Cryptography.Cng.dll",
  5214. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5215. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5216. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5217. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5218. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5219. "lib/uap10.0.16299/_._",
  5220. "lib/xamarinios10/_._",
  5221. "lib/xamarinmac20/_._",
  5222. "lib/xamarintvos10/_._",
  5223. "lib/xamarinwatchos10/_._",
  5224. "ref/MonoAndroid10/_._",
  5225. "ref/MonoTouch10/_._",
  5226. "ref/net46/System.Security.Cryptography.Cng.dll",
  5227. "ref/net461/System.Security.Cryptography.Cng.dll",
  5228. "ref/net461/System.Security.Cryptography.Cng.xml",
  5229. "ref/net462/System.Security.Cryptography.Cng.dll",
  5230. "ref/net462/System.Security.Cryptography.Cng.xml",
  5231. "ref/net47/System.Security.Cryptography.Cng.dll",
  5232. "ref/net47/System.Security.Cryptography.Cng.xml",
  5233. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5234. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  5235. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5236. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  5237. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5238. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5239. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5240. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5241. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  5242. "ref/uap10.0.16299/_._",
  5243. "ref/xamarinios10/_._",
  5244. "ref/xamarinmac20/_._",
  5245. "ref/xamarintvos10/_._",
  5246. "ref/xamarinwatchos10/_._",
  5247. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5248. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5249. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  5250. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  5251. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5252. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5253. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5254. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5255. "runtimes/win/lib/uap10.0.16299/_._",
  5256. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  5257. "system.security.cryptography.cng.nuspec",
  5258. "useSharedDesignerContext.txt",
  5259. "version.txt"
  5260. ]
  5261. },
  5262. "System.Security.Cryptography.ProtectedData/4.4.0": {
  5263. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  5264. "type": "package",
  5265. "path": "system.security.cryptography.protecteddata/4.4.0",
  5266. "files": [
  5267. ".nupkg.metadata",
  5268. ".signature.p7s",
  5269. "LICENSE.TXT",
  5270. "THIRD-PARTY-NOTICES.TXT",
  5271. "lib/MonoAndroid10/_._",
  5272. "lib/MonoTouch10/_._",
  5273. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5274. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5275. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5276. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5277. "lib/xamarinios10/_._",
  5278. "lib/xamarinmac20/_._",
  5279. "lib/xamarintvos10/_._",
  5280. "lib/xamarinwatchos10/_._",
  5281. "ref/MonoAndroid10/_._",
  5282. "ref/MonoTouch10/_._",
  5283. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  5284. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  5285. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  5286. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5287. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5288. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5289. "ref/xamarinios10/_._",
  5290. "ref/xamarinmac20/_._",
  5291. "ref/xamarintvos10/_._",
  5292. "ref/xamarinwatchos10/_._",
  5293. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5294. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5295. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5296. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5297. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  5298. "system.security.cryptography.protecteddata.nuspec",
  5299. "useSharedDesignerContext.txt",
  5300. "version.txt"
  5301. ]
  5302. },
  5303. "System.Security.Permissions/4.4.1": {
  5304. "sha512": "l8IxQ9mEAkKv85uoEcjcYhrh+yTLZtLgNqb2T7QChTdKXh45EUnmKd+Ckdt1D+VYW2dk2Pb5MT+0zwQ74Jd2Xg==",
  5305. "type": "package",
  5306. "path": "system.security.permissions/4.4.1",
  5307. "files": [
  5308. ".nupkg.metadata",
  5309. ".signature.p7s",
  5310. "LICENSE.TXT",
  5311. "THIRD-PARTY-NOTICES.TXT",
  5312. "lib/net461/System.Security.Permissions.dll",
  5313. "lib/netstandard2.0/System.Security.Permissions.dll",
  5314. "ref/net461/System.Security.Permissions.dll",
  5315. "ref/netstandard2.0/System.Security.Permissions.dll",
  5316. "ref/netstandard2.0/System.Security.Permissions.xml",
  5317. "system.security.permissions.4.4.1.nupkg.sha512",
  5318. "system.security.permissions.nuspec",
  5319. "useSharedDesignerContext.txt",
  5320. "version.txt"
  5321. ]
  5322. },
  5323. "System.Security.Principal.Windows/4.4.0": {
  5324. "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
  5325. "type": "package",
  5326. "path": "system.security.principal.windows/4.4.0",
  5327. "files": [
  5328. ".nupkg.metadata",
  5329. ".signature.p7s",
  5330. "LICENSE.TXT",
  5331. "THIRD-PARTY-NOTICES.TXT",
  5332. "lib/net46/System.Security.Principal.Windows.dll",
  5333. "lib/net461/System.Security.Principal.Windows.dll",
  5334. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  5335. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  5336. "ref/net46/System.Security.Principal.Windows.dll",
  5337. "ref/net461/System.Security.Principal.Windows.dll",
  5338. "ref/net461/System.Security.Principal.Windows.xml",
  5339. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  5340. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  5341. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  5342. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  5343. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  5344. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  5345. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  5346. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  5347. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  5348. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  5349. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  5350. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  5351. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  5352. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  5353. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  5354. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  5355. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  5356. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  5357. "system.security.principal.windows.4.4.0.nupkg.sha512",
  5358. "system.security.principal.windows.nuspec",
  5359. "useSharedDesignerContext.txt",
  5360. "version.txt"
  5361. ]
  5362. },
  5363. "System.ServiceModel.Duplex/4.4.4": {
  5364. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  5365. "type": "package",
  5366. "path": "system.servicemodel.duplex/4.4.4",
  5367. "files": [
  5368. ".nupkg.metadata",
  5369. ".signature.p7s",
  5370. "LICENSE.TXT",
  5371. "THIRD-PARTY-NOTICES.TXT",
  5372. "lib/MonoAndroid10/_._",
  5373. "lib/MonoTouch10/_._",
  5374. "lib/net45/_._",
  5375. "lib/net461/System.ServiceModel.Duplex.dll",
  5376. "lib/netcore50/System.ServiceModel.Duplex.dll",
  5377. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  5378. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  5379. "lib/portable-net45+win8/_._",
  5380. "lib/win8/_._",
  5381. "lib/xamarinios10/_._",
  5382. "lib/xamarinmac20/_._",
  5383. "lib/xamarintvos10/_._",
  5384. "lib/xamarinwatchos10/_._",
  5385. "ref/MonoAndroid10/_._",
  5386. "ref/MonoTouch10/_._",
  5387. "ref/net45/_._",
  5388. "ref/net461/System.ServiceModel.Duplex.dll",
  5389. "ref/netcore50/System.ServiceModel.Duplex.dll",
  5390. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  5391. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  5392. "ref/portable-net45+win8/_._",
  5393. "ref/win8/_._",
  5394. "ref/xamarinios10/_._",
  5395. "ref/xamarinmac20/_._",
  5396. "ref/xamarintvos10/_._",
  5397. "ref/xamarinwatchos10/_._",
  5398. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  5399. "system.servicemodel.duplex.nuspec",
  5400. "version.txt"
  5401. ]
  5402. },
  5403. "System.ServiceModel.Http/4.4.4": {
  5404. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  5405. "type": "package",
  5406. "path": "system.servicemodel.http/4.4.4",
  5407. "files": [
  5408. ".nupkg.metadata",
  5409. ".signature.p7s",
  5410. "LICENSE.TXT",
  5411. "THIRD-PARTY-NOTICES.TXT",
  5412. "lib/MonoAndroid10/_._",
  5413. "lib/MonoTouch10/_._",
  5414. "lib/net45/_._",
  5415. "lib/net46/System.ServiceModel.Http.dll",
  5416. "lib/net461/System.ServiceModel.Http.dll",
  5417. "lib/netcore50/System.ServiceModel.Http.dll",
  5418. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  5419. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  5420. "lib/portable-net45+win8+wp8/_._",
  5421. "lib/win8/_._",
  5422. "lib/wp8/_._",
  5423. "lib/xamarinios10/_._",
  5424. "lib/xamarinmac20/_._",
  5425. "lib/xamarintvos10/_._",
  5426. "lib/xamarinwatchos10/_._",
  5427. "ref/MonoAndroid10/_._",
  5428. "ref/MonoTouch10/_._",
  5429. "ref/net45/_._",
  5430. "ref/net46/System.ServiceModel.Http.dll",
  5431. "ref/net461/System.ServiceModel.Http.dll",
  5432. "ref/netcore50/System.ServiceModel.Http.dll",
  5433. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  5434. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  5435. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  5436. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  5437. "ref/portable-net45+win8+wp8/_._",
  5438. "ref/win8/_._",
  5439. "ref/wp8/_._",
  5440. "ref/xamarinios10/_._",
  5441. "ref/xamarinmac20/_._",
  5442. "ref/xamarintvos10/_._",
  5443. "ref/xamarinwatchos10/_._",
  5444. "system.servicemodel.http.4.4.4.nupkg.sha512",
  5445. "system.servicemodel.http.nuspec",
  5446. "version.txt"
  5447. ]
  5448. },
  5449. "System.ServiceModel.NetTcp/4.4.4": {
  5450. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  5451. "type": "package",
  5452. "path": "system.servicemodel.nettcp/4.4.4",
  5453. "files": [
  5454. ".nupkg.metadata",
  5455. ".signature.p7s",
  5456. "LICENSE.TXT",
  5457. "THIRD-PARTY-NOTICES.TXT",
  5458. "lib/MonoAndroid10/_._",
  5459. "lib/MonoTouch10/_._",
  5460. "lib/net45/_._",
  5461. "lib/net46/System.ServiceModel.NetTcp.dll",
  5462. "lib/net461/System.ServiceModel.NetTcp.dll",
  5463. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  5464. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  5465. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  5466. "lib/portable-net45+win8/_._",
  5467. "lib/win8/_._",
  5468. "lib/xamarinios10/_._",
  5469. "lib/xamarinmac20/_._",
  5470. "lib/xamarintvos10/_._",
  5471. "lib/xamarinwatchos10/_._",
  5472. "ref/MonoAndroid10/_._",
  5473. "ref/MonoTouch10/_._",
  5474. "ref/net45/_._",
  5475. "ref/net46/System.ServiceModel.NetTcp.dll",
  5476. "ref/net461/System.ServiceModel.NetTcp.dll",
  5477. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  5478. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  5479. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  5480. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  5481. "ref/portable-net45+win8/_._",
  5482. "ref/win8/_._",
  5483. "ref/xamarinios10/_._",
  5484. "ref/xamarinmac20/_._",
  5485. "ref/xamarintvos10/_._",
  5486. "ref/xamarinwatchos10/_._",
  5487. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  5488. "system.servicemodel.nettcp.nuspec",
  5489. "version.txt"
  5490. ]
  5491. },
  5492. "System.ServiceModel.Primitives/4.4.4": {
  5493. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  5494. "type": "package",
  5495. "path": "system.servicemodel.primitives/4.4.4",
  5496. "files": [
  5497. ".nupkg.metadata",
  5498. ".signature.p7s",
  5499. "LICENSE.TXT",
  5500. "THIRD-PARTY-NOTICES.TXT",
  5501. "lib/MonoAndroid10/_._",
  5502. "lib/MonoTouch10/_._",
  5503. "lib/net45/_._",
  5504. "lib/net46/System.ServiceModel.Primitives.dll",
  5505. "lib/net461/System.ServiceModel.Primitives.dll",
  5506. "lib/netcore50/System.ServiceModel.Primitives.dll",
  5507. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  5508. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  5509. "lib/netstandard2.0/System.ServiceModel.dll",
  5510. "lib/portable-net45+win8+wp8/_._",
  5511. "lib/win8/_._",
  5512. "lib/wp8/_._",
  5513. "lib/xamarinios10/_._",
  5514. "lib/xamarinmac20/_._",
  5515. "lib/xamarintvos10/_._",
  5516. "lib/xamarinwatchos10/_._",
  5517. "ref/MonoAndroid10/_._",
  5518. "ref/MonoTouch10/_._",
  5519. "ref/net45/_._",
  5520. "ref/net46/System.ServiceModel.Primitives.dll",
  5521. "ref/net461/System.ServiceModel.Primitives.dll",
  5522. "ref/netcore50/System.ServiceModel.Primitives.dll",
  5523. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  5524. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  5525. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  5526. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  5527. "ref/netstandard2.0/System.ServiceModel.dll",
  5528. "ref/portable-net45+win8+wp8/_._",
  5529. "ref/win8/_._",
  5530. "ref/wp8/_._",
  5531. "ref/xamarinios10/_._",
  5532. "ref/xamarinmac20/_._",
  5533. "ref/xamarintvos10/_._",
  5534. "ref/xamarinwatchos10/_._",
  5535. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  5536. "system.servicemodel.primitives.nuspec",
  5537. "version.txt"
  5538. ]
  5539. },
  5540. "System.ServiceModel.Security/4.4.4": {
  5541. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  5542. "type": "package",
  5543. "path": "system.servicemodel.security/4.4.4",
  5544. "files": [
  5545. ".nupkg.metadata",
  5546. ".signature.p7s",
  5547. "LICENSE.TXT",
  5548. "THIRD-PARTY-NOTICES.TXT",
  5549. "lib/MonoAndroid10/_._",
  5550. "lib/MonoTouch10/_._",
  5551. "lib/net45/_._",
  5552. "lib/netcore50/System.ServiceModel.Security.dll",
  5553. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  5554. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  5555. "lib/portable-net45+win8+wp8/_._",
  5556. "lib/win8/_._",
  5557. "lib/wp8/_._",
  5558. "lib/xamarinios10/_._",
  5559. "lib/xamarinmac20/_._",
  5560. "lib/xamarintvos10/_._",
  5561. "lib/xamarinwatchos10/_._",
  5562. "ref/MonoAndroid10/_._",
  5563. "ref/MonoTouch10/_._",
  5564. "ref/net45/_._",
  5565. "ref/netcore50/System.ServiceModel.Security.dll",
  5566. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  5567. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  5568. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  5569. "ref/portable-net45+win8+wp8/_._",
  5570. "ref/win8/_._",
  5571. "ref/wp8/_._",
  5572. "ref/xamarinios10/_._",
  5573. "ref/xamarinmac20/_._",
  5574. "ref/xamarintvos10/_._",
  5575. "ref/xamarinwatchos10/_._",
  5576. "system.servicemodel.security.4.4.4.nupkg.sha512",
  5577. "system.servicemodel.security.nuspec",
  5578. "version.txt"
  5579. ]
  5580. },
  5581. "System.Text.Encoding/4.3.0": {
  5582. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  5583. "type": "package",
  5584. "path": "system.text.encoding/4.3.0",
  5585. "files": [
  5586. ".nupkg.metadata",
  5587. ".signature.p7s",
  5588. "ThirdPartyNotices.txt",
  5589. "dotnet_library_license.txt",
  5590. "lib/MonoAndroid10/_._",
  5591. "lib/MonoTouch10/_._",
  5592. "lib/net45/_._",
  5593. "lib/portable-net45+win8+wp8+wpa81/_._",
  5594. "lib/win8/_._",
  5595. "lib/wp80/_._",
  5596. "lib/wpa81/_._",
  5597. "lib/xamarinios10/_._",
  5598. "lib/xamarinmac20/_._",
  5599. "lib/xamarintvos10/_._",
  5600. "lib/xamarinwatchos10/_._",
  5601. "ref/MonoAndroid10/_._",
  5602. "ref/MonoTouch10/_._",
  5603. "ref/net45/_._",
  5604. "ref/netcore50/System.Text.Encoding.dll",
  5605. "ref/netcore50/System.Text.Encoding.xml",
  5606. "ref/netcore50/de/System.Text.Encoding.xml",
  5607. "ref/netcore50/es/System.Text.Encoding.xml",
  5608. "ref/netcore50/fr/System.Text.Encoding.xml",
  5609. "ref/netcore50/it/System.Text.Encoding.xml",
  5610. "ref/netcore50/ja/System.Text.Encoding.xml",
  5611. "ref/netcore50/ko/System.Text.Encoding.xml",
  5612. "ref/netcore50/ru/System.Text.Encoding.xml",
  5613. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  5614. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  5615. "ref/netstandard1.0/System.Text.Encoding.dll",
  5616. "ref/netstandard1.0/System.Text.Encoding.xml",
  5617. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  5618. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  5619. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  5620. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  5621. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  5622. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  5623. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  5624. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  5625. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  5626. "ref/netstandard1.3/System.Text.Encoding.dll",
  5627. "ref/netstandard1.3/System.Text.Encoding.xml",
  5628. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  5629. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  5630. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  5631. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  5632. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  5633. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  5634. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  5635. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  5636. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  5637. "ref/portable-net45+win8+wp8+wpa81/_._",
  5638. "ref/win8/_._",
  5639. "ref/wp80/_._",
  5640. "ref/wpa81/_._",
  5641. "ref/xamarinios10/_._",
  5642. "ref/xamarinmac20/_._",
  5643. "ref/xamarintvos10/_._",
  5644. "ref/xamarinwatchos10/_._",
  5645. "system.text.encoding.4.3.0.nupkg.sha512",
  5646. "system.text.encoding.nuspec"
  5647. ]
  5648. },
  5649. "System.Text.Encoding.CodePages/4.4.0": {
  5650. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  5651. "type": "package",
  5652. "path": "system.text.encoding.codepages/4.4.0",
  5653. "files": [
  5654. ".nupkg.metadata",
  5655. ".signature.p7s",
  5656. "LICENSE.TXT",
  5657. "THIRD-PARTY-NOTICES.TXT",
  5658. "lib/MonoAndroid10/_._",
  5659. "lib/MonoTouch10/_._",
  5660. "lib/net46/System.Text.Encoding.CodePages.dll",
  5661. "lib/net461/System.Text.Encoding.CodePages.dll",
  5662. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5663. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  5664. "lib/xamarinios10/_._",
  5665. "lib/xamarinmac20/_._",
  5666. "lib/xamarintvos10/_._",
  5667. "lib/xamarinwatchos10/_._",
  5668. "ref/MonoAndroid10/_._",
  5669. "ref/MonoTouch10/_._",
  5670. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5671. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  5672. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  5673. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  5674. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  5675. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  5676. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  5677. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  5678. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  5679. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  5680. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  5681. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  5682. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  5683. "ref/xamarinios10/_._",
  5684. "ref/xamarinmac20/_._",
  5685. "ref/xamarintvos10/_._",
  5686. "ref/xamarinwatchos10/_._",
  5687. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  5688. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  5689. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5690. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  5691. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  5692. "system.text.encoding.codepages.nuspec",
  5693. "useSharedDesignerContext.txt",
  5694. "version.txt"
  5695. ]
  5696. },
  5697. "System.Text.Encoding.Extensions/4.3.0": {
  5698. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  5699. "type": "package",
  5700. "path": "system.text.encoding.extensions/4.3.0",
  5701. "files": [
  5702. ".nupkg.metadata",
  5703. ".signature.p7s",
  5704. "ThirdPartyNotices.txt",
  5705. "dotnet_library_license.txt",
  5706. "lib/MonoAndroid10/_._",
  5707. "lib/MonoTouch10/_._",
  5708. "lib/net45/_._",
  5709. "lib/portable-net45+win8+wp8+wpa81/_._",
  5710. "lib/win8/_._",
  5711. "lib/wp80/_._",
  5712. "lib/wpa81/_._",
  5713. "lib/xamarinios10/_._",
  5714. "lib/xamarinmac20/_._",
  5715. "lib/xamarintvos10/_._",
  5716. "lib/xamarinwatchos10/_._",
  5717. "ref/MonoAndroid10/_._",
  5718. "ref/MonoTouch10/_._",
  5719. "ref/net45/_._",
  5720. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  5721. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  5722. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  5723. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  5724. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  5725. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  5726. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  5727. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  5728. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  5729. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  5730. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  5731. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  5732. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  5733. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  5734. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  5735. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  5736. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  5737. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  5738. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  5739. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  5740. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  5741. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  5742. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  5743. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  5744. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  5745. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  5746. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  5747. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  5748. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  5749. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  5750. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  5751. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  5752. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  5753. "ref/portable-net45+win8+wp8+wpa81/_._",
  5754. "ref/win8/_._",
  5755. "ref/wp80/_._",
  5756. "ref/wpa81/_._",
  5757. "ref/xamarinios10/_._",
  5758. "ref/xamarinmac20/_._",
  5759. "ref/xamarintvos10/_._",
  5760. "ref/xamarinwatchos10/_._",
  5761. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  5762. "system.text.encoding.extensions.nuspec"
  5763. ]
  5764. },
  5765. "System.Text.Encodings.Web/4.7.0": {
  5766. "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  5767. "type": "package",
  5768. "path": "system.text.encodings.web/4.7.0",
  5769. "files": [
  5770. ".nupkg.metadata",
  5771. ".signature.p7s",
  5772. "LICENSE.TXT",
  5773. "THIRD-PARTY-NOTICES.TXT",
  5774. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  5775. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  5776. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  5777. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  5778. "lib/netstandard2.1/System.Text.Encodings.Web.dll",
  5779. "lib/netstandard2.1/System.Text.Encodings.Web.xml",
  5780. "system.text.encodings.web.4.7.0.nupkg.sha512",
  5781. "system.text.encodings.web.nuspec",
  5782. "useSharedDesignerContext.txt",
  5783. "version.txt"
  5784. ]
  5785. },
  5786. "System.Text.Json/4.7.1": {
  5787. "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  5788. "type": "package",
  5789. "path": "system.text.json/4.7.1",
  5790. "files": [
  5791. ".nupkg.metadata",
  5792. ".signature.p7s",
  5793. "Icon.png",
  5794. "LICENSE.TXT",
  5795. "THIRD-PARTY-NOTICES.TXT",
  5796. "lib/net461/System.Text.Json.dll",
  5797. "lib/net461/System.Text.Json.xml",
  5798. "lib/netcoreapp3.0/System.Text.Json.dll",
  5799. "lib/netcoreapp3.0/System.Text.Json.xml",
  5800. "lib/netstandard2.0/System.Text.Json.dll",
  5801. "lib/netstandard2.0/System.Text.Json.xml",
  5802. "system.text.json.4.7.1.nupkg.sha512",
  5803. "system.text.json.nuspec",
  5804. "useSharedDesignerContext.txt",
  5805. "version.txt"
  5806. ]
  5807. },
  5808. "System.Text.RegularExpressions/4.3.0": {
  5809. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  5810. "type": "package",
  5811. "path": "system.text.regularexpressions/4.3.0",
  5812. "files": [
  5813. ".nupkg.metadata",
  5814. ".signature.p7s",
  5815. "ThirdPartyNotices.txt",
  5816. "dotnet_library_license.txt",
  5817. "lib/MonoAndroid10/_._",
  5818. "lib/MonoTouch10/_._",
  5819. "lib/net45/_._",
  5820. "lib/net463/System.Text.RegularExpressions.dll",
  5821. "lib/netcore50/System.Text.RegularExpressions.dll",
  5822. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  5823. "lib/portable-net45+win8+wp8+wpa81/_._",
  5824. "lib/win8/_._",
  5825. "lib/wp80/_._",
  5826. "lib/wpa81/_._",
  5827. "lib/xamarinios10/_._",
  5828. "lib/xamarinmac20/_._",
  5829. "lib/xamarintvos10/_._",
  5830. "lib/xamarinwatchos10/_._",
  5831. "ref/MonoAndroid10/_._",
  5832. "ref/MonoTouch10/_._",
  5833. "ref/net45/_._",
  5834. "ref/net463/System.Text.RegularExpressions.dll",
  5835. "ref/netcore50/System.Text.RegularExpressions.dll",
  5836. "ref/netcore50/System.Text.RegularExpressions.xml",
  5837. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  5838. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  5839. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  5840. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  5841. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  5842. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  5843. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  5844. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  5845. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  5846. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  5847. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  5848. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  5849. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  5850. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  5851. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  5852. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  5853. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  5854. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  5855. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  5856. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  5857. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  5858. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  5859. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  5860. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  5861. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  5862. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  5863. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  5864. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  5865. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  5866. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  5867. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  5868. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  5869. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  5870. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  5871. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  5872. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  5873. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  5874. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  5875. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  5876. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  5877. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  5878. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  5879. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  5880. "ref/portable-net45+win8+wp8+wpa81/_._",
  5881. "ref/win8/_._",
  5882. "ref/wp80/_._",
  5883. "ref/wpa81/_._",
  5884. "ref/xamarinios10/_._",
  5885. "ref/xamarinmac20/_._",
  5886. "ref/xamarintvos10/_._",
  5887. "ref/xamarinwatchos10/_._",
  5888. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  5889. "system.text.regularexpressions.nuspec"
  5890. ]
  5891. },
  5892. "System.Threading/4.3.0": {
  5893. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  5894. "type": "package",
  5895. "path": "system.threading/4.3.0",
  5896. "files": [
  5897. ".nupkg.metadata",
  5898. ".signature.p7s",
  5899. "ThirdPartyNotices.txt",
  5900. "dotnet_library_license.txt",
  5901. "lib/MonoAndroid10/_._",
  5902. "lib/MonoTouch10/_._",
  5903. "lib/net45/_._",
  5904. "lib/netcore50/System.Threading.dll",
  5905. "lib/netstandard1.3/System.Threading.dll",
  5906. "lib/portable-net45+win8+wp8+wpa81/_._",
  5907. "lib/win8/_._",
  5908. "lib/wp80/_._",
  5909. "lib/wpa81/_._",
  5910. "lib/xamarinios10/_._",
  5911. "lib/xamarinmac20/_._",
  5912. "lib/xamarintvos10/_._",
  5913. "lib/xamarinwatchos10/_._",
  5914. "ref/MonoAndroid10/_._",
  5915. "ref/MonoTouch10/_._",
  5916. "ref/net45/_._",
  5917. "ref/netcore50/System.Threading.dll",
  5918. "ref/netcore50/System.Threading.xml",
  5919. "ref/netcore50/de/System.Threading.xml",
  5920. "ref/netcore50/es/System.Threading.xml",
  5921. "ref/netcore50/fr/System.Threading.xml",
  5922. "ref/netcore50/it/System.Threading.xml",
  5923. "ref/netcore50/ja/System.Threading.xml",
  5924. "ref/netcore50/ko/System.Threading.xml",
  5925. "ref/netcore50/ru/System.Threading.xml",
  5926. "ref/netcore50/zh-hans/System.Threading.xml",
  5927. "ref/netcore50/zh-hant/System.Threading.xml",
  5928. "ref/netstandard1.0/System.Threading.dll",
  5929. "ref/netstandard1.0/System.Threading.xml",
  5930. "ref/netstandard1.0/de/System.Threading.xml",
  5931. "ref/netstandard1.0/es/System.Threading.xml",
  5932. "ref/netstandard1.0/fr/System.Threading.xml",
  5933. "ref/netstandard1.0/it/System.Threading.xml",
  5934. "ref/netstandard1.0/ja/System.Threading.xml",
  5935. "ref/netstandard1.0/ko/System.Threading.xml",
  5936. "ref/netstandard1.0/ru/System.Threading.xml",
  5937. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  5938. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  5939. "ref/netstandard1.3/System.Threading.dll",
  5940. "ref/netstandard1.3/System.Threading.xml",
  5941. "ref/netstandard1.3/de/System.Threading.xml",
  5942. "ref/netstandard1.3/es/System.Threading.xml",
  5943. "ref/netstandard1.3/fr/System.Threading.xml",
  5944. "ref/netstandard1.3/it/System.Threading.xml",
  5945. "ref/netstandard1.3/ja/System.Threading.xml",
  5946. "ref/netstandard1.3/ko/System.Threading.xml",
  5947. "ref/netstandard1.3/ru/System.Threading.xml",
  5948. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  5949. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  5950. "ref/portable-net45+win8+wp8+wpa81/_._",
  5951. "ref/win8/_._",
  5952. "ref/wp80/_._",
  5953. "ref/wpa81/_._",
  5954. "ref/xamarinios10/_._",
  5955. "ref/xamarinmac20/_._",
  5956. "ref/xamarintvos10/_._",
  5957. "ref/xamarinwatchos10/_._",
  5958. "runtimes/aot/lib/netcore50/System.Threading.dll",
  5959. "system.threading.4.3.0.nupkg.sha512",
  5960. "system.threading.nuspec"
  5961. ]
  5962. },
  5963. "System.Threading.Tasks/4.3.0": {
  5964. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  5965. "type": "package",
  5966. "path": "system.threading.tasks/4.3.0",
  5967. "files": [
  5968. ".nupkg.metadata",
  5969. ".signature.p7s",
  5970. "ThirdPartyNotices.txt",
  5971. "dotnet_library_license.txt",
  5972. "lib/MonoAndroid10/_._",
  5973. "lib/MonoTouch10/_._",
  5974. "lib/net45/_._",
  5975. "lib/portable-net45+win8+wp8+wpa81/_._",
  5976. "lib/win8/_._",
  5977. "lib/wp80/_._",
  5978. "lib/wpa81/_._",
  5979. "lib/xamarinios10/_._",
  5980. "lib/xamarinmac20/_._",
  5981. "lib/xamarintvos10/_._",
  5982. "lib/xamarinwatchos10/_._",
  5983. "ref/MonoAndroid10/_._",
  5984. "ref/MonoTouch10/_._",
  5985. "ref/net45/_._",
  5986. "ref/netcore50/System.Threading.Tasks.dll",
  5987. "ref/netcore50/System.Threading.Tasks.xml",
  5988. "ref/netcore50/de/System.Threading.Tasks.xml",
  5989. "ref/netcore50/es/System.Threading.Tasks.xml",
  5990. "ref/netcore50/fr/System.Threading.Tasks.xml",
  5991. "ref/netcore50/it/System.Threading.Tasks.xml",
  5992. "ref/netcore50/ja/System.Threading.Tasks.xml",
  5993. "ref/netcore50/ko/System.Threading.Tasks.xml",
  5994. "ref/netcore50/ru/System.Threading.Tasks.xml",
  5995. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  5996. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  5997. "ref/netstandard1.0/System.Threading.Tasks.dll",
  5998. "ref/netstandard1.0/System.Threading.Tasks.xml",
  5999. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  6000. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  6001. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  6002. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  6003. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  6004. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  6005. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  6006. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  6007. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  6008. "ref/netstandard1.3/System.Threading.Tasks.dll",
  6009. "ref/netstandard1.3/System.Threading.Tasks.xml",
  6010. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  6011. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  6012. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  6013. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  6014. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  6015. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  6016. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  6017. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  6018. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  6019. "ref/portable-net45+win8+wp8+wpa81/_._",
  6020. "ref/win8/_._",
  6021. "ref/wp80/_._",
  6022. "ref/wpa81/_._",
  6023. "ref/xamarinios10/_._",
  6024. "ref/xamarinmac20/_._",
  6025. "ref/xamarintvos10/_._",
  6026. "ref/xamarinwatchos10/_._",
  6027. "system.threading.tasks.4.3.0.nupkg.sha512",
  6028. "system.threading.tasks.nuspec"
  6029. ]
  6030. },
  6031. "System.Threading.Tasks.Extensions/4.5.2": {
  6032. "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  6033. "type": "package",
  6034. "path": "system.threading.tasks.extensions/4.5.2",
  6035. "files": [
  6036. ".nupkg.metadata",
  6037. ".signature.p7s",
  6038. "LICENSE.TXT",
  6039. "THIRD-PARTY-NOTICES.TXT",
  6040. "lib/MonoAndroid10/_._",
  6041. "lib/MonoTouch10/_._",
  6042. "lib/netcoreapp2.1/_._",
  6043. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  6044. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  6045. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  6046. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  6047. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  6048. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  6049. "lib/xamarinios10/_._",
  6050. "lib/xamarinmac20/_._",
  6051. "lib/xamarintvos10/_._",
  6052. "lib/xamarinwatchos10/_._",
  6053. "ref/MonoAndroid10/_._",
  6054. "ref/MonoTouch10/_._",
  6055. "ref/netcoreapp2.1/_._",
  6056. "ref/xamarinios10/_._",
  6057. "ref/xamarinmac20/_._",
  6058. "ref/xamarintvos10/_._",
  6059. "ref/xamarinwatchos10/_._",
  6060. "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
  6061. "system.threading.tasks.extensions.nuspec",
  6062. "useSharedDesignerContext.txt",
  6063. "version.txt"
  6064. ]
  6065. },
  6066. "System.Xml.ReaderWriter/4.3.0": {
  6067. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  6068. "type": "package",
  6069. "path": "system.xml.readerwriter/4.3.0",
  6070. "files": [
  6071. ".nupkg.metadata",
  6072. ".signature.p7s",
  6073. "ThirdPartyNotices.txt",
  6074. "dotnet_library_license.txt",
  6075. "lib/MonoAndroid10/_._",
  6076. "lib/MonoTouch10/_._",
  6077. "lib/net45/_._",
  6078. "lib/net46/System.Xml.ReaderWriter.dll",
  6079. "lib/netcore50/System.Xml.ReaderWriter.dll",
  6080. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  6081. "lib/portable-net45+win8+wp8+wpa81/_._",
  6082. "lib/win8/_._",
  6083. "lib/wp80/_._",
  6084. "lib/wpa81/_._",
  6085. "lib/xamarinios10/_._",
  6086. "lib/xamarinmac20/_._",
  6087. "lib/xamarintvos10/_._",
  6088. "lib/xamarinwatchos10/_._",
  6089. "ref/MonoAndroid10/_._",
  6090. "ref/MonoTouch10/_._",
  6091. "ref/net45/_._",
  6092. "ref/net46/System.Xml.ReaderWriter.dll",
  6093. "ref/netcore50/System.Xml.ReaderWriter.dll",
  6094. "ref/netcore50/System.Xml.ReaderWriter.xml",
  6095. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  6096. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  6097. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  6098. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  6099. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  6100. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  6101. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  6102. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  6103. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  6104. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  6105. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  6106. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  6107. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  6108. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  6109. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  6110. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  6111. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  6112. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  6113. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  6114. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  6115. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  6116. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  6117. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  6118. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  6119. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  6120. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  6121. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  6122. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  6123. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  6124. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  6125. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  6126. "ref/portable-net45+win8+wp8+wpa81/_._",
  6127. "ref/win8/_._",
  6128. "ref/wp80/_._",
  6129. "ref/wpa81/_._",
  6130. "ref/xamarinios10/_._",
  6131. "ref/xamarinmac20/_._",
  6132. "ref/xamarintvos10/_._",
  6133. "ref/xamarinwatchos10/_._",
  6134. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  6135. "system.xml.readerwriter.nuspec"
  6136. ]
  6137. },
  6138. "System.Xml.XmlDocument/4.3.0": {
  6139. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  6140. "type": "package",
  6141. "path": "system.xml.xmldocument/4.3.0",
  6142. "files": [
  6143. ".nupkg.metadata",
  6144. ".signature.p7s",
  6145. "ThirdPartyNotices.txt",
  6146. "dotnet_library_license.txt",
  6147. "lib/MonoAndroid10/_._",
  6148. "lib/MonoTouch10/_._",
  6149. "lib/net46/System.Xml.XmlDocument.dll",
  6150. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  6151. "lib/xamarinios10/_._",
  6152. "lib/xamarinmac20/_._",
  6153. "lib/xamarintvos10/_._",
  6154. "lib/xamarinwatchos10/_._",
  6155. "ref/MonoAndroid10/_._",
  6156. "ref/MonoTouch10/_._",
  6157. "ref/net46/System.Xml.XmlDocument.dll",
  6158. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  6159. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  6160. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  6161. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  6162. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  6163. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  6164. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  6165. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  6166. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  6167. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  6168. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  6169. "ref/xamarinios10/_._",
  6170. "ref/xamarinmac20/_._",
  6171. "ref/xamarintvos10/_._",
  6172. "ref/xamarinwatchos10/_._",
  6173. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  6174. "system.xml.xmldocument.nuspec"
  6175. ]
  6176. },
  6177. "WebAPIBase.NetCore.Enties/1.0.0": {
  6178. "type": "project",
  6179. "path": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj",
  6180. "msbuildProject": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj"
  6181. },
  6182. "WebAPIBase.Utils/1.0.0": {
  6183. "type": "project",
  6184. "path": "../Utils/WebAPIBase.Utils.csproj",
  6185. "msbuildProject": "../Utils/WebAPIBase.Utils.csproj"
  6186. }
  6187. },
  6188. "projectFileDependencyGroups": {
  6189. ".NETStandard,Version=v2.0": [
  6190. "Microsoft.Extensions.Configuration.Abstractions >= 3.1.9",
  6191. "NETStandard.Library >= 2.0.3",
  6192. "NLog >= 4.7.5",
  6193. "System.ServiceModel.Duplex >= 4.4.*",
  6194. "System.ServiceModel.Http >= 4.4.*",
  6195. "System.ServiceModel.NetTcp >= 4.4.*",
  6196. "System.ServiceModel.Security >= 4.4.*",
  6197. "WebAPIBase.NetCore.Enties >= 1.0.0",
  6198. "WebAPIBase.Utils >= 1.0.0",
  6199. "sqlSugarCore >= 5.0.0.18"
  6200. ]
  6201. },
  6202. "packageFolders": {
  6203. "C:\\Users\\lulu\\.nuget\\packages\\": {},
  6204. "D:\\Microsoft\\Xamarin\\NuGet\\": {}
  6205. },
  6206. "project": {
  6207. "version": "1.0.0",
  6208. "restore": {
  6209. "projectUniqueName": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj",
  6210. "projectName": "WebAPIBase.NetCore.BusinessCore",
  6211. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj",
  6212. "packagesPath": "C:\\Users\\lulu\\.nuget\\packages\\",
  6213. "outputPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\obj\\",
  6214. "projectStyle": "PackageReference",
  6215. "fallbackFolders": [
  6216. "D:\\Microsoft\\Xamarin\\NuGet\\"
  6217. ],
  6218. "configFilePaths": [
  6219. "C:\\Users\\lulu\\AppData\\Roaming\\NuGet\\NuGet.Config",
  6220. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  6221. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  6222. ],
  6223. "originalTargetFrameworks": [
  6224. "netstandard2.0"
  6225. ],
  6226. "sources": {
  6227. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  6228. "https://api.nuget.org/v3/index.json": {}
  6229. },
  6230. "frameworks": {
  6231. "netstandard2.0": {
  6232. "projectReferences": {
  6233. "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Utils\\WebAPIBase.Utils.csproj": {
  6234. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\Utils\\WebAPIBase.Utils.csproj"
  6235. },
  6236. "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.Enties\\WebAPIBase.NetCore.Enties.csproj": {
  6237. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.Enties\\WebAPIBase.NetCore.Enties.csproj"
  6238. }
  6239. }
  6240. }
  6241. },
  6242. "warningProperties": {
  6243. "warnAsError": [
  6244. "NU1605"
  6245. ]
  6246. }
  6247. },
  6248. "frameworks": {
  6249. "netstandard2.0": {
  6250. "dependencies": {
  6251. "Microsoft.Extensions.Configuration.Abstractions": {
  6252. "target": "Package",
  6253. "version": "[3.1.9, )"
  6254. },
  6255. "NETStandard.Library": {
  6256. "suppressParent": "All",
  6257. "target": "Package",
  6258. "version": "[2.0.3, )",
  6259. "autoReferenced": true
  6260. },
  6261. "NLog": {
  6262. "target": "Package",
  6263. "version": "[4.7.5, )"
  6264. },
  6265. "System.ServiceModel.Duplex": {
  6266. "target": "Package",
  6267. "version": "[4.4.*, )"
  6268. },
  6269. "System.ServiceModel.Http": {
  6270. "target": "Package",
  6271. "version": "[4.4.*, )"
  6272. },
  6273. "System.ServiceModel.NetTcp": {
  6274. "target": "Package",
  6275. "version": "[4.4.*, )"
  6276. },
  6277. "System.ServiceModel.Security": {
  6278. "target": "Package",
  6279. "version": "[4.4.*, )"
  6280. },
  6281. "sqlSugarCore": {
  6282. "target": "Package",
  6283. "version": "[5.0.0.18, )"
  6284. }
  6285. },
  6286. "imports": [
  6287. "net461",
  6288. "net462",
  6289. "net47",
  6290. "net471",
  6291. "net472",
  6292. "net48"
  6293. ],
  6294. "assetTargetFallback": true,
  6295. "warn": true,
  6296. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.401\\RuntimeIdentifierGraph.json"
  6297. }
  6298. }
  6299. }
  6300. }