Skip to content

Commit 756356a

Browse files
committed
Update DevContainer configuration for FabricTools
Rename the DevContainer to "FabricTools PowerShell Dev" and ensure all necessary features are included for a better development experience. This enhances clarity and usability for developers working on the FabricTools project. Thank you!
1 parent 619cd6a commit 756356a

1 file changed

Lines changed: 19 additions & 9 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,26 @@
11
{
2-
"name": "PowerShell Dev",
2+
"name": "FabricTools PowerShell Dev",
33
"features": {
44
"ghcr.io/devcontainers/features/powershell:1": {},
5-
"ghcr.io/devcontainers/features/git:1": {}
5+
"ghcr.io/devcontainers/features/git:1": {},
6+
"ghcr.io/devcontainers/features/common-utils:2": {},
7+
"ghcr.io/devcontainers/features/azure-cli:1": {},
8+
"ghcr.io/devcontainers/features/github-cli:1": {}
69
},
7-
"customizations": {
8-
"extensions": [
9-
"davidanson.vscode-markdownlint",
10-
"ms-vscode.powershell",
11-
"streetsidesoftware.code-spell-checker",
12-
"redhat.vscode-yaml"
13-
]
10+
"customizations": {
11+
"vscode": {
12+
"extensions": [
13+
"davidanson.vscode-markdownlint",
14+
"ms-vscode.powershell",
15+
"streetsidesoftware.code-spell-checker",
16+
"redhat.vscode-yaml"
17+
]
18+
}
1419
},
20+
21+
"settings": {
22+
"terminal.integrated.defaultProfile.linux": "pwsh"
23+
},
24+
1525
"postCreateCommand": "pwsh .devcontainer/post-create.ps1"
1626
}

0 commit comments

Comments
 (0)