-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-dotnet.json
More file actions
79 lines (73 loc) · 2.05 KB
/
devcontainer-dotnet.json
File metadata and controls
79 lines (73 loc) · 2.05 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": ".NET Development Container",
"image": "mcr.microsoft.com/devcontainers/dotnet:8.0",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
"configureZshAsDefaultShell": true,
"installOhMyZsh": true
},
"ghcr.io/devcontainers/features/git:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "8.0",
"additionalVersions": "9.0"
}
},
"customizations": {
"vscode": {
"extensions": [
"editorconfig.editorconfig",
"streetsidesoftware.code-spell-checker",
"davidanson.vscode-markdownlint",
"eamodio.gitlens",
"github.vscode-github-actions",
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-dotnettools.vscode-dotnet-runtime",
"formulahendry.dotnet-test-explorer",
"kreativ-software.csharpextensions",
"patcx.vscode-nuget-gallery"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnSave": true,
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp",
"editor.formatOnSave": true,
"editor.tabSize": 4
},
"[fsharp]": {
"editor.tabSize": 4
},
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.enableEditorConfigSupport": true,
"dotnet.defaultSolution": "disable",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true
}
}
},
"postCreateCommand": "dotnet restore",
"remoteUser": "vscode",
"forwardPorts": [5000, 5001, 7000],
"portsAttributes": {
"5000": {
"label": "Application (HTTP)",
"onAutoForward": "notify"
},
"5001": {
"label": "Application (HTTPS)",
"onAutoForward": "notify"
},
"7000": {
"label": "Kestrel Alt",
"onAutoForward": "silent"
}
}
}