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 243KB

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