diff options
Diffstat (limited to 'src/dotnet')
-rw-r--r-- | src/dotnet/devcontainer-feature.json | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/dotnet/devcontainer-feature.json b/src/dotnet/devcontainer-feature.json index 5e11f11..4c6f9d5 100644 --- a/src/dotnet/devcontainer-feature.json +++ b/src/dotnet/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "dotnet", - "version": "1.0.1", + "version": "1.0.2", "name": "Dotnet CLI", "description": "Installs the .NET CLI. Provides option of installing sdk or runtime, and option of versions to install. Uses latest version of .NET sdk as defaults to install.", "options": { @@ -30,7 +30,11 @@ "DOTNET_ROOT": "/usr/local/dotnet/current", "PATH": "${PATH}:${DOTNET_ROOT}" }, - "extensions": [ - "ms-dotnettools.csharp" - ] + "customizations": { + "vscode": { + "extensions": [ + "ms-dotnettools.csharp" + ] + } + } } |