feature: add .NET installation (#90)

* file: add .NET installation script dotnet.sh

* feat: add dotnet installation to custom image

* feat: add dotnet to build matrix

* Prepend `PATH` correctly
This commit is contained in:
Christian Helmich
2023-04-25 13:00:17 +02:00
committed by GitHub
parent efcaf8c96c
commit 15f9808a68
4 changed files with 35 additions and 1 deletions
@@ -26,7 +26,8 @@ function replaceEtcEnvironmentVariable {
variable_value="$2"
# modify /etc/environemnt in place by replacing a string that begins with variable_name
sudo sed -i -e "s%^${variable_name}=.*$%${variable_name}=\"${variable_value}\"%" /etc/environment
# removed quotes for the docker env metadata reader
sudo sed -i -e "s%^${variable_name}=.*$%${variable_name}=${variable_value}%" /etc/environment
}
function setEtcEnvironmentVariable {