-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdevcontainer.json
More file actions
43 lines (43 loc) · 1.13 KB
/
devcontainer.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "C# (.NET) - Linux with Mono",
"image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0-bookworm",
"onCreateCommand": "git submodule update --init --recursive",
"postAttachCommand": "bash .devcontainer/install-dependencies.sh",
"customizations": {
"vscode": {
"extensions": [
"ms-dotnettools.csdevkit"
],
"settings": {
"dotnet.server.useOmnisharp": false,
"files.watcherExclude": {
"**/bin/**": true,
"**/obj/**": true,
"**/.git/**": true,
"**/node_modules/**": true,
"**/.vs/**": true
},
"search.exclude": {
"**/bin": true,
"**/obj": true,
"**/node_modules": true
},
"files.eol": "\n"
}
}
},
"containerEnv": {
"DOTNET_CLI_TELEMETRY_OPTOUT": "1",
"DOTNET_SKIP_FIRST_TIME_EXPERIENCE": "1",
"DOTNET_NOLOGO": "1",
"NUGET_XMLDOC_MODE": "skip",
"DOTNET_CLI_UI_LANGUAGE": "en",
"NUGET_PACKAGES": "${containerWorkspaceFolder}/.nuget/packages"
},
"remoteEnv": {
"PATH": "${containerEnv:PATH}:${containerWorkspaceFolder}/.dotnet/tools"
},
"mounts": [
"source=ably-dotnet-nuget-cache,target=${containerWorkspaceFolder}/.nuget/packages,type=volume"
]
}