Skip to content

Commit 932aba3

Browse files
authored
Basic devcontainer (#907)
* Basic devcontainer * Update devcontainer.json
1 parent 6d3784f commit 932aba3

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.devcontainer/devcontainer.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet
3+
{
4+
"name": "C# (.NET)",
5+
"image": "mcr.microsoft.com/devcontainers/dotnet:1-7.0-jammy",
6+
"onCreateCommand": "./scripts/load_submodule.sh",
7+
"customizations": {
8+
"vscode": {
9+
"extensions": [
10+
"ms-dotnettools.csdevkit"
11+
]
12+
}
13+
}
14+
}

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dotnet.defaultSolution": "neo-devpack-dotnet.sln"
3+
}

0 commit comments

Comments
 (0)