diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-17 22:48:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 22:48:38 +0300 |
commit | a630e92c468c241fa029f278e4d7a0ac96142c76 (patch) | |
tree | ebc96705a0dd8be842fb097dcb494155020fd110 /src/dotnet | |
parent | 4ecc275a8d199cdce98cd462fee612d7f687efe4 (diff) |
Move extensions and settings under customizations.vscode (#97)
* move extensions and settings under customizations
* nit
* bump versions
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" + ] + } + } } |