Skip to content

Commit 0f13a9b

Browse files
authored
Fix nesting of settings (devcontainers#1380)
1 parent f6820c2 commit 0f13a9b

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

src/dotnet/.devcontainer/devcontainer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
},
2222
// Configure tool-specific properties.
2323
"customizations": {
24-
// Set *default* container specific settings.json values on container create.
25-
"settings": {
26-
"github.copilot.chat.codeGeneration.instructions": [
27-
{
28-
"text": "This dev container includes the .NET SDK, which includes the .NET CLI and the shared runtime, pre-installed and available on the `PATH`, along with the C# language extension for .NET development."
29-
}
30-
]
31-
},
3224
// Configure properties specific to VS Code.
3325
"vscode": {
26+
// Set *default* container specific settings.json values on container create.
27+
"settings": {
28+
"github.copilot.chat.codeGeneration.instructions": [
29+
{
30+
"text": "This dev container includes the .NET SDK, which includes the .NET CLI and the shared runtime, pre-installed and available on the `PATH`, along with the C# language extension for .NET development."
31+
}
32+
]
33+
},
3434
// Add the IDs of extensions you want installed when the container is created.
3535
"extensions": [
3636
"ms-dotnettools.csharp"

src/dotnet/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.4.1",
2+
"version": "1.4.2",
33
"variants": [
44
"10.0-preview-trixie-slim",
55
"10.0-preview-noble",

src/jekyll/.devcontainer/devcontainer.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@
1414
},
1515
// Configure tool-specific properties.
1616
"customizations": {
17-
// Set *default* container specific settings.json values on container create.
18-
"settings": {
19-
"github.copilot.chat.codeGeneration.instructions": [
20-
{
21-
"text": "This dev container includes `jekyll` (with `github-pages` and `jekyll-sass-converter`) and bundler (`bundle`) pre-installed and available on the `PATH`."
22-
}
23-
]
17+
// Configure properties specific to VS Code.
18+
"vscode": {
19+
// Set *default* container specific settings.json values on container create.
20+
"settings": {
21+
"github.copilot.chat.codeGeneration.instructions": [
22+
{
23+
"text": "This dev container includes `jekyll` (with `github-pages` and `jekyll-sass-converter`) and bundler (`bundle`) pre-installed and available on the `PATH`."
24+
}
25+
]
26+
}
2427
}
2528
},
2629
// Use 'forwardPorts' to make a list of ports inside the container available locally.

src/jekyll/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.1.13",
2+
"version": "2.1.14",
33
"variants": [
44
"3.3-bookworm",
55
"3.3-bullseye"

0 commit comments

Comments
 (0)