Created
February 13, 2025 18:56
-
-
Save timheuer/785f0516cf2850104985c11eb2af7f8c to your computer and use it in GitHub Desktop.
.NET 10 Devcontainer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"name": ".NET 10 SDK", | |
"image": "mcr.microsoft.com/dotnet/nightly/sdk:10.0-preview", | |
"features": { | |
"ghcr.io/devcontainers/features/docker-in-docker:2": {}, | |
"ghcr.io/devcontainers/features/common-utils:2": {}, | |
"ghcr.io/devcontainers/features/powershell:1": { | |
"version": "latest" | |
}, | |
"ghcr.io/azure/azure-dev/azd:0": { | |
"version": "latest" | |
}, | |
"ghcr.io/devcontainers/features/dotnet:2": { | |
"version": "none", | |
"dotnetRuntimeVersions": "9.0", | |
"aspNetCoreRuntimeVersions": "9.0" | |
} | |
}, | |
"customizations": { | |
"vscode": { | |
"extensions": [ | |
"ms-dotnettools.vscode-dotnet-runtime", | |
"ms-dotnettools.csdevkit" | |
] | |
} | |
}, | |
"postCreateCommand": "dotnet dev-certs https" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment