-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves: Add GitHub Codespaces configuration (#3009)
* Create GitHub Codespaces configuration
- Loading branch information
1 parent
0ef7425
commit ea30e36
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "vstest Codespace", | ||
"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:0.201.9-5.0", | ||
"settings": { | ||
"workbench.colorTheme": "Default Dark+", | ||
"terminal.integrated.defaultProfile.linux": "pwsh" | ||
}, | ||
"extensions": [ | ||
// VS Code specific | ||
"coenraads.bracket-pair-colorizer", | ||
"vscode-icons-team.vscode-icons", | ||
"editorconfig.editorconfig", | ||
// GitHub specific | ||
"eamodio.gitlens", | ||
"cschleiden.vscode-github-actions", | ||
"redhat.vscode-yaml", | ||
"bierner.markdown-preview-github-styles", | ||
"ban.spellright", | ||
// .NET specific | ||
"ms-dotnettools.csharp", | ||
"VisualStudioExptTeam.vscodeintellicode", | ||
"ms-vscode.powershell", | ||
"jmrog.vscode-nuget-package-manager", | ||
], | ||
"postCreateCommand": "./build.sh" | ||
} | ||
|
||
// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation) |