forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
38 lines (32 loc) · 870 Bytes
/
devcontainer.json
File metadata and controls
38 lines (32 loc) · 870 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
{
"name": "Npgsql dev environment (.NET)",
"dockerComposeFile": "docker-compose.yml",
"service": "npgsql-dev",
"workspaceFolder": "/workspace",
"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",
"formulahendry.dotnet-test-explorer",
"ms-azuretools.vscode-docker",
"mutantdino.resourcemonitor"
]
}
},
"forwardPorts": [5432, 5050],
"remoteEnv": {
"DeveloperBuild": "True"
},
"postCreateCommand": "dotnet restore Npgsql.sln"
}