-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdevcontainer.json
More file actions
30 lines (30 loc) · 844 Bytes
/
devcontainer.json
File metadata and controls
30 lines (30 loc) · 844 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
{
"name": "Codespaces .NET Core Starter",
"extensions": [
"cschleiden.vscode-github-actions",
"donjayamanne.githistory",
"eamodio.gitlens",
"editorconfig.editorconfig",
"github.vscode-pull-request-github",
"jongrant.csharpsortusings",
"k--kato.docomment",
"kreativ-software.csharpextensions",
"mhutchie.git-graph",
"ms-azuretools.vscode-azurefunctions",
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp",
"ms-vscode.powershell",
"ms-vsliveshare.vsliveshare",
"visualstudioexptteam.vscodeintellicode",
"yzhang.markdown-all-in-one"
],
"dockerFile": "Dockerfile",
"forwardPorts": [5000, 5001, 7071],
"settings": {
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"files.exclude": {
"**/CODE_OF_CONDUCT.md": true,
"**/LICENSE": true
}
}
}