forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer.json
More file actions
41 lines (35 loc) · 949 Bytes
/
devcontainer.json
File metadata and controls
41 lines (35 loc) · 949 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
33
34
35
36
37
38
39
40
41
{
"name": "Npgsql dev environment (.NET)",
"dockerComposeFile": "docker-compose.yml",
"service": "npgsql-dev",
"workspaceFolder": "/workspace",
"features": {
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "10.0",
"dotnetRuntimeVersions": "8.0,9.0"
}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash",
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
}
},
"extensions": [
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-azuretools.vscode-docker",
"mutantdino.resourcemonitor"
]
}
},
"forwardPorts": [5432, 5050],
"postCreateCommand": "dotnet restore Npgsql.slnx"
}