-
Notifications
You must be signed in to change notification settings - Fork 522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Redstone 5 #804
Conversation
Didn't see the tests, will implement that later |
cc @philliphoff |
@@ -36,8 +36,10 @@ const DotNetCoreSdkImageFormat = "microsoft/dotnet:{0}.{1}-sdk{2}"; | |||
|
|||
function GetWindowsImageTag(): string { | |||
// The host OS version needs to match the version of .NET core images being created | |||
if (!isWindows() || isWindows10RS4OrNewer()) { | |||
if (!isWindows() || isWindows10RS5OrNewer()) { | |||
// If we're not on Windows (and therefore can't detect the version), assume a Windows RS4 host |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, thanks
Thanks, will await the tests. We have a release of the extension going out in a about a week. |
@StephenWeatherford Test now seems fine. Did I miss anything? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this contribution!
In Ulm, um Ulm, und um Ulm herum… :-) |
Add support for Redstone 5 which should generate Dockerfiles referencing -1809 images
Fixes #805