You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.assets.json 242KB

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