-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
52 lines (52 loc) · 1.73 KB
/
Copy pathdevcontainer.json
File metadata and controls
52 lines (52 loc) · 1.73 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "PSSymantecSEPM Dev",
"build": {
"dockerfile": "../dockerfile"
},
"workspaceFolder": "/workspaces/PSSymantecSEPM",
"postCreateCommand": "pwsh -NoProfile -Command 'if (Test-Path /workspaces/PSSymantecSEPM/Source/PSSymantecSEPM.psd1) { Import-Module ModuleBuilder -Force; Build-Module -SourcePath /workspaces/PSSymantecSEPM/Source/PSSymantecSEPM.psd1 -SemVer 0.0.1 -OutputDirectory /workspaces/PSSymantecSEPM/Output; Write-Host \"Module built.\" -ForegroundColor Green } else { Write-Warning \"Source manifest not found.\" }'",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "pwsh",
"terminal.integrated.profiles.linux": {
"pwsh": {
"path": "/usr/bin/pwsh",
"args": ["-Login"]
}
},
"powershell.powerShellDefaultVersion": "pwsh",
"powershell.powerShellAdditionalExePaths": {
"PowerShell Core 7+": "/usr/bin/pwsh"
},
"files.exclude": {
"Output/": false
},
"editor.formatOnSave": true,
"powershell.codeFormatting.preset": "Stroustrup",
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.useCorrectCasing": true
},
"extensions": [
"ms-vscode.powershell",
"pspester.pester-test",
"ms-vscode.powershell-preview",
"oderwat.indent-rainbow",
"Gruntfuggly.todo-tree",
"vscode-icons-team.vscode-icons",
"eamodio.gitlens",
"mhutchie.git-graph"
]
}
},
"remoteUser": "root",
"runArgs": [
"--add-host", "host.docker.internal:host-gateway"
],
"containerEnv": {
"SEPM_SERVER": "${localEnv:SEPM_SERVER:host.docker.internal}",
"SEPM_PORT": "${localEnv:SEPM_PORT:8446}",
"WINRM_USER": "${localEnv:WINRM_USER:}",
"WINRM_PASS": "${localEnv:WINRM_PASS:}"
}
}