-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (31 loc) · 887 Bytes
/
devcontainer.json
File metadata and controls
32 lines (31 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "MIEngine Codespace",
"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",
"ms-azure-devops.azure-pipelines",
"bierner.markdown-preview-github-styles",
"ban.spellright",
// .NET specific
"ms-dotnettools.csharp",
"VisualStudioExptTeam.vscodeintellicode",
"ms-vscode.powershell",
"jmrog.vscode-nuget-package-manager"
],
"image":"mcr.microsoft.com/vscode/devcontainers/dotnet:6.0-focal",
"remoteUser": "root"
// "postCreateCommand": "",
// "build": {
// "dockerfile": "Dockerfile"
// }
}
// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation)