-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
27 lines (26 loc) · 892 Bytes
/
devcontainer.json
File metadata and controls
27 lines (26 loc) · 892 Bytes
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
{
"name": "PowerShell",
"dockerFile": "Dockerfile",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "usr/bin/bash",
"icon": "terminal-bash"
},
"zsh": {
"path": "usr/bin/zsh"
},
"pwsh": {
"path": "/usr/bin/pwsh",
"icon": "terminal-powershell"
}
},
"terminal.integrated.defaultProfile.linux": "pwsh"
},
"extensions": ["ms-vscode.powershell", "davidanson.vscode-markdownlint"]
}
},
"postCreateCommand": "pwsh -c './build.ps1 -Task Init -Bootstrap'"
}