Browse Source

add pwsh as default terminal

Aleksandar Ivanov 4 years ago
parent
commit
a366e57e08
1 changed files with 4 additions and 1 deletions
  1. 4 1
      .devcontainer/devcontainer.json

+ 4 - 1
.devcontainer/devcontainer.json

@@ -1,6 +1,9 @@
 {
 	"name": "Terminal.Gui Codespace",
 	"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:0.201.7-5.0",
+	"settings": {
+		"terminal.integrated.defaultProfile.linux": "pwsh"
+	},
 	"extensions": [
 		"eamodio.gitlens",
 		"ms-dotnettools.csharp",
@@ -16,4 +19,4 @@
 		"editorconfig.editorconfig"
 	],
 	"postCreateCommand": "dotnet restore && dotnet build --configuration Release --no-restore && dotnet test --no-restore --verbosity normal --collect:'XPlat Code Coverage' --settings UnitTests/coverlet.runsettings",
-}
+}