Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 4973a33

Browse files
authored
Bump .NET default to 6.0 now that it is GA, trigger image update (#1156)
1 parent 7ba6006 commit 4973a33

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/smoke-dotnet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ jobs:
2828
uses: ./.github/actions/smoke-test
2929
with:
3030
definition: dotnet
31-
image: mcr.microsoft.com/vscode/devcontainers/dotnet:dev-5.0
31+
image: mcr.microsoft.com/vscode/devcontainers/dotnet:dev-6.0
3232
user: vscode

containers/dotnet/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [Choice] .NET version: 6.0, 5.0, 3.1, 6.0-bullseye, 5.0-bullseye, 3.1-bullseye, 6.0-focal, 5.0-focal, 3.1-focal
2-
ARG VARIANT=5.0-bullseye
2+
ARG VARIANT=6.0-bullseye
33
FROM mcr.microsoft.com/vscode/devcontainers/dotnet:0-${VARIANT}
44

55
# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10

containers/dotnet/.devcontainer/base.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [Choice] .NET version: 6.0-bullseye, 5.0-bullseye, 3.1-bullseye, 6.0-focal, 5.0-focal, 3.1-focal
2-
ARG VARIANT="5.0-bullseye"
2+
ARG VARIANT=6.0-bullseye-slim
33
FROM mcr.microsoft.com/dotnet/sdk:${VARIANT}
44

55
# Copy library scripts to execute

containers/dotnet/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"args": {
66
// Update 'VARIANT' to pick a .NET Core version: 3.1, 5.0, 6.0
77
// Append -bullseye or -focal to pin to an OS version.
8-
"VARIANT": "5.0",
8+
"VARIANT": "6.0",
99
// Options
1010
"NODE_VERSION": "lts/*"
1111
}

containers/dotnet/definition-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"variants": ["6.0-bullseye-slim", "6.0-focal", "5.0-bullseye-slim", "5.0-focal", "3.1-bullseye", "3.1-focal"],
3-
"definitionVersion": "0.201.12",
3+
"definitionVersion": "0.202.0",
44
"build": {
5-
"latest": "5.0-focal",
5+
"latest": "6.0-bullseye-slim",
66
"rootDistro": "debian",
77
"tags": [
88
"dotnet:${VERSION}-${VARIANT}"

0 commit comments

Comments
 (0)