project.assets.json 250 KB

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