diff options
Diffstat (limited to 'test/dotnet/scenarios.json')
-rw-r--r-- | test/dotnet/scenarios.json | 83 |
1 files changed, 42 insertions, 41 deletions
diff --git a/test/dotnet/scenarios.json b/test/dotnet/scenarios.json index afee26f..f07aaa5 100644 --- a/test/dotnet/scenarios.json +++ b/test/dotnet/scenarios.json @@ -1,83 +1,84 @@ { - "install_additional_dotnet": { - "image": "ubuntu:focal", + "install_dotnet_lts": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "remoteUser": "vscode", "features": { "dotnet": { - "version": "6.0.301", - "additionalVersions": "5.0,3.1.420" + "version": "lts" } } }, - "install_dotnet_3": { - "image": "ubuntu:focal", + "install_dotnet_specific_release": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu-20.04", + "remoteUser": "vscode", "features": { "dotnet": { - "version": "3" + "version": "3.1" } } }, - "install_dotnet_6_bullseye": { - "image": "debian:bullseye", + "install_dotnet_specific_release_and_feature_band": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu-20.04", + "remoteUser": "vscode", "features": { "dotnet": { - "version": "6" + "version": "5.0.3xx" } } }, - "install_dotnet_6_focal": { - "image": "ubuntu:focal", + "install_dotnet_exact_version": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "remoteUser": "vscode", "features": { "dotnet": { - "version": "6" + "version": "8.0.100-preview.6.23330.14" } } }, - "install_dotnet_7_bullseye": { - "image": "debian:bullseye", + "install_dotnet_multiple_versions": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "remoteUser": "vscode", "features": { "dotnet": { - "version": "7" + "version": "8.0.100-preview.6.23330.14", + "additionalVersions": [ + "7.0", + "6.0" + ] } } }, - "install_dotnet_7_jammy": { - "image": "ubuntu:jammy", + "install_dotnet_global_tool": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "remoteUser": "vscode", "features": { - "dotnet": { - "version": "7" - } + "dotnet": {} } }, - "install_dotnet_6_jammy": { - "image": "mcr.microsoft.com/devcontainers/base:jammy", + "install_dotnet_latest_when_version_is_empty": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "remoteUser": "vscode", "features": { - "dotnet": { - "version": "6" - } + "dotnet": "" } }, - "install_dotnet_latest": { - "image": "ubuntu:jammy", + "install_dotnet_runtime_only": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "remoteUser": "vscode", "features": { "dotnet": { - "version": "latest" - } - } - }, - "install_dotnet_lts": { - "image": "ubuntu:focal", - "features": { - "dotnet": { - "version": "lts" + "version": "none", + "dotnetRuntimeVersions": "latest" } } }, - "install_wo_apt": { - "image": "ubuntu:jammy", + "install_aspnetcore_runtime_only": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "remoteUser": "vscode", "features": { "dotnet": { - "version": "7", - "installUsingApt": false + "version": "none", + "aspnetcoreRuntimeVersions": "latest" } } } |