{ "id": "powershell", "version": "1.5.1", "name": "PowerShell", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/powershell", "description": "Installs PowerShell along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "options": { "version": { "type": "string", "proposals": [ "latest", "none", "7.4", "7.3", "7.2" ], "default": "latest", "description": "Select or enter a version of PowerShell." }, "modules": { "type": "string", "default": "", "description": "Optional comma separated list of PowerShell modules to install. If you need to install a specific version of a module, use '==' to specify the version (e.g. 'az.resources==2.5.0')" }, "powershellProfileURL": { "type": "string", "default": "", "description": "Optional (publicly accessible) URL to download PowerShell profile." } }, "customizations": { "vscode": { "extensions": [ "ms-vscode.powershell" ] }, "settings": { "github.copilot.chat.codeGeneration.instructions": [ { "text": "This dev container includes PowerShell along with needed dependencies pre-installed and available on the `PATH`, along with the PowerShell extension." } ] } }, "installsAfter": [ "ghcr.io/devcontainers/features/common-utils" ] }