Skip to content

Commit 1ae0da8

Browse files
Copilotericstj
andauthored
Add C# Dev Kit extension to all devcontainer configurations (#119602)
* Initial plan * Add C# Dev Kit extension to all devcontainer configurations This change ensures that when creating a new codespace from a PR, the C# Dev Kit extension (ms-dotnettools.csdevkit) is automatically installed alongside the basic C# extension, providing a better development experience with enhanced IntelliSense, debugging, and project management capabilities. Co-authored-by: ericstj <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: ericstj <[email protected]>
1 parent 5878338 commit 1ae0da8

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.devcontainer/android/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"vscode": {
3030
// Add the IDs of extensions you want installed when the container is created.
3131
"extensions": [
32-
"ms-dotnettools.csharp"
32+
"ms-dotnettools.csharp",
33+
"ms-dotnettools.csdevkit"
3334
],
3435
"settings": {
3536
// Loading projects on demand is better for larger codebases

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"vscode": {
2424
// Add the IDs of extensions you want installed when the container is created.
2525
"extensions": [
26-
"ms-dotnettools.csharp"
26+
"ms-dotnettools.csharp",
27+
"ms-dotnettools.csdevkit"
2728
],
2829
"settings": {
2930
// Loading projects on demand is better for larger codebases

.devcontainer/libraries/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"vscode": {
2424
// Add the IDs of extensions you want installed when the container is created.
2525
"extensions": [
26-
"ms-dotnettools.csharp"
26+
"ms-dotnettools.csharp",
27+
"ms-dotnettools.csdevkit"
2728
],
2829
"settings": {
2930
// Loading projects on demand is better for larger codebases

.devcontainer/wasm-multiThreaded/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"vscode": {
2424
// Add the IDs of extensions you want installed when the container is created.
2525
"extensions": [
26-
"ms-dotnettools.csharp"
26+
"ms-dotnettools.csharp",
27+
"ms-dotnettools.csdevkit"
2728
],
2829
"settings": {
2930
// Loading projects on demand is better for larger codebases

.devcontainer/wasm/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"vscode": {
2424
// Add the IDs of extensions you want installed when the container is created.
2525
"extensions": [
26-
"ms-dotnettools.csharp"
26+
"ms-dotnettools.csharp",
27+
"ms-dotnettools.csdevkit"
2728
],
2829
"settings": {
2930
// Loading projects on demand is better for larger codebases

0 commit comments

Comments
 (0)