We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f99299 commit f331a69Copy full SHA for f331a69
.devcontainer/devcontainer.json
@@ -0,0 +1,22 @@
1
+{
2
+ "name": "C# (.NET SDK)",
3
+ "image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0-jammy",
4
+ "features": {
5
+ "ghcr.io/devcontainers/features/dotnet:2": {
6
+ "version": "9.0"
7
+ },
8
+ "ghcr.io/devcontainers/features/node:1": {}
9
10
+ "customizations": {
11
+ "vscode": {
12
+ "extensions": [
13
+ "ms-dotnettools.csharp",
14
+ "ms-dotnettools.csdevkit"
15
+ ],
16
+ "settings": {
17
+ "dotnet.defaultSolution": "ModelContextProtocol.slnx"
18
+ }
19
20
21
+ "postCreateCommand": "dotnet --list-sdks && echo 'Available .NET SDKs installed successfully!'"
22
+}
0 commit comments