project.assets.json 230 KB

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