From 2e29651fce4da9598f103a0a12915267bb6af061 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Fri, 9 Jan 2026 11:02:59 -0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20update=20.NET=20version=20proposals?= =?UTF-8?q?=20in=20devcontainer=20template=20=F0=9F=9B=A0=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dotnet/devcontainer-template.json | 69 +++++++++++++-------------- 1 file changed, 34 insertions(+), 35 deletions(-) diff --git a/src/dotnet/devcontainer-template.json b/src/dotnet/devcontainer-template.json index 769f1e2b..6b4eb941 100644 --- a/src/dotnet/devcontainer-template.json +++ b/src/dotnet/devcontainer-template.json @@ -1,36 +1,35 @@ { - "id": "dotnet", - "version": "3.5.0", - "name": "C# (.NET)", - "description": "Develop C# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", - "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet", - "publisher": "Dev Container Spec Maintainers", - "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "options": { - "imageVariant": { - "type": "string", - "description": ".NET version:", - "proposals": [ - "10.0-preview", - "9.0", - "8.0", - "10.0-preview-trixie", - "9.0-bookworm", - "8.0-bookworm", - "10.0-preview-noble", - "9.0-noble", - "8.0-noble", - "8.0-jammy" - ], - "default": "9.0-bookworm" - } - }, - "platforms": [ - ".NET", - ".NET Core", - "C#" - ], - "optionalPaths": [ - ".github/*" - ] -} + "id": "dotnet", + "version": "3.5.0", + "name": "C# (.NET)", + "description": "Develop C# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", + "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet", + "publisher": "Dev Container Spec Maintainers", + "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", + "options": { + "imageVariant": { + "type": "string", + "description": ".NET version:", + "proposals": [ + "10.0", + "9.0", + "8.0", + "9.0-bookworm", + "8.0-bookworm", + "10.0-noble", + "9.0-noble", + "8.0-noble", + "8.0-jammy" + ], + "default": "10.0" + } + }, + "platforms": [ + ".NET", + ".NET Core", + "C#" + ], + "optionalPaths": [ + ".github/*" + ] +} \ No newline at end of file From 05924d6d8322c456349011f141f9b2c8e2c67257 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Fri, 9 Jan 2026 11:02:59 -0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20update=20.NET=20version=20proposals?= =?UTF-8?q?=20in=20dotnet-mssql=20and=20dotnet-postgres=20templates=20?= =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dotnet-mssql/devcontainer-template.json | 65 +++++++++-------- .../devcontainer-template.json | 65 +++++++++-------- src/dotnet/devcontainer-template.json | 69 +++++++++---------- 3 files changed, 98 insertions(+), 101 deletions(-) diff --git a/src/dotnet-mssql/devcontainer-template.json b/src/dotnet-mssql/devcontainer-template.json index 517a96af..219a25f9 100644 --- a/src/dotnet-mssql/devcontainer-template.json +++ b/src/dotnet-mssql/devcontainer-template.json @@ -1,37 +1,36 @@ { - "id": "dotnet-mssql", - "version": "3.6.0", - "name": "C# (.NET) and MS SQL", - "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and an MS SQL container for parallel database development. Adds an additional MS SQL container to the C# (.NET Core) container definition and deploys any .dacpac files from the mssql .devcontainer folder.", - "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-mssql", - "publisher": "Dev Container Spec Maintainers", - "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "options": { - "imageVariant": { - "type": "string", - "description": ".NET version:", - "proposals": [ - "10.0-preview", + "id": "dotnet-mssql", + "version": "3.6.0", + "name": "C# (.NET) and MS SQL", + "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and an MS SQL container for parallel database development. Adds an additional MS SQL container to the C# (.NET Core) container definition and deploys any .dacpac files from the mssql .devcontainer folder.", + "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-mssql", + "publisher": "Dev Container Spec Maintainers", + "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", + "options": { + "imageVariant": { + "type": "string", + "description": ".NET version:", + "proposals": [ + "10.0", "9.0", - "8.0", - "10.0-preview-trixie", + "8.0", "9.0-bookworm", - "8.0-bookworm", - "10.0-preview-noble", - "9.0-noble", + "8.0-bookworm", + "10.0-noble", + "9.0-noble", "8.0-noble", - "8.0-jammy" - ], - "default": "9.0-bookworm" - } - }, - "platforms": [ - ".NET", - ".NET Core", - "C#", - "Microsoft SQL" - ], - "optionalPaths": [ - ".github/*" - ] -} + "8.0-jammy" + ], + "default": "10.0" + } + }, + "platforms": [ + ".NET", + ".NET Core", + "C#", + "Microsoft SQL" + ], + "optionalPaths": [ + ".github/*" + ] +} \ No newline at end of file diff --git a/src/dotnet-postgres/devcontainer-template.json b/src/dotnet-postgres/devcontainer-template.json index e5435b92..bb1e354b 100644 --- a/src/dotnet-postgres/devcontainer-template.json +++ b/src/dotnet-postgres/devcontainer-template.json @@ -1,37 +1,36 @@ { - "id": "dotnet-postgres", - "version": "3.5.0", - "name": "C# (.NET) and PostgreSQL", - "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and a PostgreSQL container for parallel database development. Adds an additional PostgreSQL container to the C# (.NET Core) container definition.", - "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-postgres", - "publisher": "Dev Container Spec Maintainers", - "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "options": { - "imageVariant": { - "type": "string", - "description": ".NET version:", - "proposals": [ - "10.0-preview", + "id": "dotnet-postgres", + "version": "3.5.0", + "name": "C# (.NET) and PostgreSQL", + "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and a PostgreSQL container for parallel database development. Adds an additional PostgreSQL container to the C# (.NET Core) container definition.", + "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-postgres", + "publisher": "Dev Container Spec Maintainers", + "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", + "options": { + "imageVariant": { + "type": "string", + "description": ".NET version:", + "proposals": [ + "10.0", "9.0", - "8.0", - "10.0-preview-trixie", + "8.0", "9.0-bookworm", - "8.0-bookworm", - "10.0-preview-noble", - "9.0-noble", + "8.0-bookworm", + "10.0-noble", + "9.0-noble", "8.0-noble", - "8.0-jammy" - ], - "default": "9.0-bookworm" - } - }, - "platforms": [ - ".NET", - ".NET Core", - "C#", - "PostgreSQL" - ], - "optionalPaths": [ - ".github/*" - ] -} + "8.0-jammy" + ], + "default": "10.0" + } + }, + "platforms": [ + ".NET", + ".NET Core", + "C#", + "PostgreSQL" + ], + "optionalPaths": [ + ".github/*" + ] +} \ No newline at end of file diff --git a/src/dotnet/devcontainer-template.json b/src/dotnet/devcontainer-template.json index 769f1e2b..6b4eb941 100644 --- a/src/dotnet/devcontainer-template.json +++ b/src/dotnet/devcontainer-template.json @@ -1,36 +1,35 @@ { - "id": "dotnet", - "version": "3.5.0", - "name": "C# (.NET)", - "description": "Develop C# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", - "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet", - "publisher": "Dev Container Spec Maintainers", - "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", - "options": { - "imageVariant": { - "type": "string", - "description": ".NET version:", - "proposals": [ - "10.0-preview", - "9.0", - "8.0", - "10.0-preview-trixie", - "9.0-bookworm", - "8.0-bookworm", - "10.0-preview-noble", - "9.0-noble", - "8.0-noble", - "8.0-jammy" - ], - "default": "9.0-bookworm" - } - }, - "platforms": [ - ".NET", - ".NET Core", - "C#" - ], - "optionalPaths": [ - ".github/*" - ] -} + "id": "dotnet", + "version": "3.5.0", + "name": "C# (.NET)", + "description": "Develop C# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", + "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet", + "publisher": "Dev Container Spec Maintainers", + "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE", + "options": { + "imageVariant": { + "type": "string", + "description": ".NET version:", + "proposals": [ + "10.0", + "9.0", + "8.0", + "9.0-bookworm", + "8.0-bookworm", + "10.0-noble", + "9.0-noble", + "8.0-noble", + "8.0-jammy" + ], + "default": "10.0" + } + }, + "platforms": [ + ".NET", + ".NET Core", + "C#" + ], + "optionalPaths": [ + ".github/*" + ] +} \ No newline at end of file