Skip to content

Commit ea30e36

Browse files
authored
Resolves: Add GitHub Codespaces configuration (#3009)
* Create GitHub Codespaces configuration
1 parent 0ef7425 commit ea30e36

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.devcontainer/devcontainer.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "vstest Codespace",
3+
"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:0.201.9-5.0",
4+
"settings": {
5+
"workbench.colorTheme": "Default Dark+",
6+
"terminal.integrated.defaultProfile.linux": "pwsh"
7+
},
8+
"extensions": [
9+
// VS Code specific
10+
"coenraads.bracket-pair-colorizer",
11+
"vscode-icons-team.vscode-icons",
12+
"editorconfig.editorconfig",
13+
// GitHub specific
14+
"eamodio.gitlens",
15+
"cschleiden.vscode-github-actions",
16+
"redhat.vscode-yaml",
17+
"bierner.markdown-preview-github-styles",
18+
"ban.spellright",
19+
// .NET specific
20+
"ms-dotnettools.csharp",
21+
"VisualStudioExptTeam.vscodeintellicode",
22+
"ms-vscode.powershell",
23+
"jmrog.vscode-nuget-package-manager",
24+
],
25+
"postCreateCommand": "./build.sh"
26+
}
27+
28+
// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation)

0 commit comments

Comments
 (0)