aboutsummaryrefslogtreecommitdiff
path: root/src/powershell/devcontainer-feature.json
diff options
context:
space:
mode:
authorRoss Smith <ross-p-smith@users.noreply.github.com>2023-01-30 22:29:13 +0300
committerGitHub <noreply@github.com>2023-01-30 22:29:13 +0300
commit7763e0b7db6a16f2efececb6ffa9bd917a9eb5de (patch)
tree1a31f1916744b6e40d9a741838aa29a584f666f8 /src/powershell/devcontainer-feature.json
parentfbdc4556d519512736a8e2abfb3e03fcb2c9e0c7 (diff)
Install PowerShell Modules (#427)feature_powershell_1.1.0
* InstallBicep * Add test for InstallBicep * Install pwsh Modules * Script rename * Add -Command to test * Check version * Install the module for all users * Adding terminating lines to scripts * Update src/powershell/install.sh Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com> * Update src/powershell/install.sh Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com> * Removed comments in Readme * Remove Bicep from PowerShell install * Increased version number * Update Minor version rather than patch --------- Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Diffstat (limited to 'src/powershell/devcontainer-feature.json')
-rw-r--r--src/powershell/devcontainer-feature.json11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/powershell/devcontainer-feature.json b/src/powershell/devcontainer-feature.json
index ef967a6..dce0575 100644
--- a/src/powershell/devcontainer-feature.json
+++ b/src/powershell/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "powershell",
- "version": "1.0.6",
+ "version": "1.1.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.",
@@ -14,8 +14,13 @@
],
"default": "latest",
"description": "Select or enter a version of PowerShell."
- }
- },
+ },
+ "modules": {
+ "type": "string",
+ "default": "",
+ "description": "Optional comma separated list of PowerShell modules to install."
+ }
+ },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]