From ed3c74873febeb21526ab3938e818fb553e249dd Mon Sep 17 00:00:00 2001 From: Alex Shovlin Date: Tue, 5 Dec 2023 17:03:14 -0500 Subject: [PATCH] fix: Enable selecting the '.NET 6 on AL2023' platform when deploying to Elastic Beanstalk on Linux --- src/AWS.Deploy.Constants/ElasticBeanstalk.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AWS.Deploy.Constants/ElasticBeanstalk.cs b/src/AWS.Deploy.Constants/ElasticBeanstalk.cs index 7b4a0a5ab..a9bc57dc6 100644 --- a/src/AWS.Deploy.Constants/ElasticBeanstalk.cs +++ b/src/AWS.Deploy.Constants/ElasticBeanstalk.cs @@ -22,7 +22,7 @@ internal static class ElasticBeanstalk public const string HealthCheckURLOptionNameSpace = "aws:elasticbeanstalk:application"; public const string HealthCheckURLOptionName = "Application Healthcheck URL"; - public const string LinuxPlatformType = ".NET Core"; + public const string LinuxPlatformType = ".NET"; public const string WindowsPlatformType = "Windows Server"; public const string IISAppPathOptionId = "IISAppPath";