File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " PnP PowerShell" ,
3
+ "image" : " mcr.microsoft.com/devcontainers/dotnet:0-6.0" ,
4
+ "features" : {
5
+ "ghcr.io/devcontainers/features/git:1" : {
6
+ "ppa" : true ,
7
+ "version" : " os-provided"
8
+ },
9
+ "ghcr.io/devcontainers/features/powershell:1" : {
10
+ "version" : " latest"
11
+ }
12
+ },
13
+ "workspaceFolder" : " /workspaces/powershell" ,
14
+ "postCreateCommand" : " bash ./build/postCreateCommand.sh" ,
15
+ "customizations" : {
16
+ "vscode" : {
17
+ "settings" : {
18
+ "terminal.integrated.defaultProfile.linux" : " pwsh"
19
+ },
20
+ "extensions" : [
21
+ " ms-vscode.powershell" ,
22
+ " ms-dotnettools.csdevkit" ,
23
+ " ms-vsliveshare.vsliveshare" ,
24
+ " shd101wyy.markdown-preview-enhanced" ,
25
+ " GitHub.copilot" ,
26
+ " GitHub.copilot-chat" ,
27
+ " eamodio.gitlens" ,
28
+ " github.vscode-pull-request-github"
29
+ ]
30
+ }
31
+ },
32
+ "remoteUser" : " root" ,
33
+ "shutdownAction" : " stopCompose"
34
+ }
Original file line number Diff line number Diff line change
1
+ # Build the project
2
+ /usr/bin/pwsh -c ' /workspaces/powershell/build/Build-Debug.ps1'
3
+
4
+ # Install optional modules
5
+ /usr/bin/pwsh -c ' Install-Module Microsoft.PowerShell.SecretStore,Microsoft.Powershell.SecretManagement -Force'
You can’t perform that action at this time.
0 commit comments