add pwsh as default terminal

This commit is contained in:
Aleksandar Ivanov
2021-06-15 15:13:40 +03:00
committed by GitHub
parent 6ee48f51ce
commit a366e57e08

View File

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