aboutsummaryrefslogtreecommitdiff
path: root/test/dotnet/scenarios.json
blob: f07aaa5084c1c5eb44d9040e148e62de5589cb12 (plain) (blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
    "install_dotnet_lts": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {
                "version": "lts"
            }
        }
    },
    "install_dotnet_specific_release": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu-20.04",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {
                "version": "3.1"
            }
        }
    },
    "install_dotnet_specific_release_and_feature_band": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu-20.04",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {
                "version": "5.0.3xx"
            }
        }
    },
    "install_dotnet_exact_version": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {
                "version": "8.0.100-preview.6.23330.14"
            }
        }
    },
    "install_dotnet_multiple_versions": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {
                "version": "8.0.100-preview.6.23330.14",
                "additionalVersions": [
                    "7.0",
                    "6.0"
                ]
            }
        }
    },
    "install_dotnet_global_tool": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {}
        }
    },
    "install_dotnet_latest_when_version_is_empty": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
        "remoteUser": "vscode",
        "features": {
            "dotnet": ""
        }
    },
    "install_dotnet_runtime_only": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {
                "version": "none",
                "dotnetRuntimeVersions": "latest"
            }
        }
    },
    "install_aspnetcore_runtime_only": {
        "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
        "remoteUser": "vscode",
        "features": {
            "dotnet": {
                "version": "none",
                "aspnetcoreRuntimeVersions": "latest"
            }
        }
    }
}