-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathdevcontainer-template.json
39 lines (39 loc) · 1.1 KB
/
devcontainer-template.json
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
39
{
"id": "dotnet",
"version": "3.2.1",
"name": "C# (.NET)",
"description": "Develop C# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": ".NET version:",
"proposals": [
"8.0",
"7.0",
"6.0",
"8.0-bookworm",
"7.0-bookworm",
"6.0-bookworm",
"7.0-bullseye",
"6.0-bullseye",
"8.0-noble",
"8.0-jammy",
"7.0-jammy",
"6.0-jammy",
"6.0-focal"
],
"default": "8.0-bookworm"
}
},
"platforms": [
".NET",
".NET Core",
"C#"
],
"optionalPaths": [
".github/*"
]
}