{ "id": "dotnet", "version": "2.0", "name": ".NET CLI", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet", "description": "Installs the .NET CLI. Offers options to install a specific version of the .NET CLI, additional versions of the CLI, or just the .NET runtime.", "options": { "version": { "type": "string", "proposals": [ "latest", "7", "6", "3.1" ], "default": "latest", "description": "Version of the .NET CLI to install." }, "additionalVersions": { "type": "string", "default": "", "description": "Comma-separated list of additional .NET CLI versions to install." }, "runtimeOnly": { "type": "boolean", "default": false, "description": "Only install the .NET runtime. If true, then the .NET SDK is not installed." } }, "containerEnv": { "DOTNET_ROOT": "/usr/local/dotnet/current", "PATH": "/usr/local/dotnet/current:${PATH}" }, "installsAfter": [ "ghcr.io/devcontainers/features/common-utils" ] }