aboutsummaryrefslogtreecommitdiff
path: root/src/powershell/devcontainer-feature.json
blob: c72923fdca0e02452eea4b2030e45cda35a17f4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
    "id": "powershell",
    "version": "1.2.0",
    "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.1"
            ],
            "default": "latest",
            "description": "Select or enter a version of PowerShell."
        },
        "modules": {
            "type": "string",
            "default": "",
            "description": "Optional comma separated list of PowerShell modules to install."
        }
    },
    "customizations": {
        "vscode": {
            "extensions": [
                "ms-vscode.powershell"
            ]
        }
    },
    "installsAfter": [
        "ghcr.io/devcontainers/features/common-utils"
    ]
}