diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-11 21:37:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 21:37:10 +0300 |
commit | 44694d699fd715edeeb9fcea9271b09c39b5ac35 (patch) | |
tree | 3a89d5c06276b9721661d2b13fc37a2e87aa85a7 /src/dotnet/devcontainer-feature.json | |
parent | aecf2ad152a75663211a2ac0926e6122c2b0b07f (diff) |
Options: Follow camelCase (#89)
rename Options
Diffstat (limited to 'src/dotnet/devcontainer-feature.json')
-rw-r--r-- | src/dotnet/devcontainer-feature.json | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/dotnet/devcontainer-feature.json b/src/dotnet/devcontainer-feature.json index b5ca2e8..156d1f0 100644 --- a/src/dotnet/devcontainer-feature.json +++ b/src/dotnet/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "dotnet", - "version": "1.0.0", + "version": "1.0.1", "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": { @@ -15,17 +15,12 @@ "default": "latest", "description": "Select or enter a dotnet CLI version. (Available versions may vary by Linux distribution.)" }, - "runtime_only": { + "runtimeOnly": { "type": "boolean", "default": false, "description": "Install just the dotnet runtime if true, and sdk if false." }, - "override_default_version": { - "type": "boolean", - "default": "true", - "description": "If true, overrides existing version (if any) of dotnet on the PATH" - }, - "install_using_apt": { + "installUsingApt": { "type": "boolean", "default": "true", "description": "If true, it installs using apt instead of the release URL" |