features/test/dotnet/scenarios.json
Samruddhi Khandale 300814be97
Dotnet: Fix Feature failures on ubuntu:jammy (when installing using apt) (#590)
* fix several bugs

* fix test: .NET is now installed from ubuntu feeds

* add comment ; use dev containers image

* address comments

* revert debugging cmd

* fix test for bookworm
2023-06-29 15:14:11 -07:00

84 lines
1.8 KiB
JSON

{
"install_additional_dotnet": {
"image": "ubuntu:focal",
"features": {
"dotnet": {
"version": "6.0.301",
"additionalVersions": "5.0,3.1.420"
}
}
},
"install_dotnet_3": {
"image": "ubuntu:focal",
"features": {
"dotnet": {
"version": "3"
}
}
},
"install_dotnet_6_bullseye": {
"image": "debian:bullseye",
"features": {
"dotnet": {
"version": "6"
}
}
},
"install_dotnet_6_focal": {
"image": "ubuntu:focal",
"features": {
"dotnet": {
"version": "6"
}
}
},
"install_dotnet_7_bullseye": {
"image": "debian:bullseye",
"features": {
"dotnet": {
"version": "7"
}
}
},
"install_dotnet_7_jammy": {
"image": "ubuntu:jammy",
"features": {
"dotnet": {
"version": "7"
}
}
},
"install_dotnet_6_jammy": {
"image": "mcr.microsoft.com/devcontainers/base:jammy",
"features": {
"dotnet": {
"version": "6"
}
}
},
"install_dotnet_latest": {
"image": "ubuntu:jammy",
"features": {
"dotnet": {
"version": "latest"
}
}
},
"install_dotnet_lts": {
"image": "ubuntu:focal",
"features": {
"dotnet": {
"version": "lts"
}
}
},
"install_wo_apt": {
"image": "ubuntu:jammy",
"features": {
"dotnet": {
"version": "7",
"installUsingApt": false
}
}
}
}