RDTClient Remove .NET 8.0 | Add .NET 9.0 (#413)

* Update rdtclient-install.sh

* Update rdtclient.sh / Remove Dotnet 8.0
This commit is contained in:
CanbiZ
2024-11-21 22:29:46 +01:00
committed by GitHub
parent 119bf4e183
commit a38ddef8b2
2 changed files with 24 additions and 8 deletions

View File

@@ -14,10 +14,10 @@ network_check
update_os
msg_info "Installing Dependencies"
$STD apt-get install -y curl
$STD apt-get install -y sudo
$STD apt-get install -y mc
$STD apt-get install -y unzip
$STD apt-get install -y \
mc \
curl \
sudo
msg_ok "Installed Dependencies"
msg_info "Installing ASP.NET Core Runtime"
@@ -25,7 +25,7 @@ wget -q https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.
$STD dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
$STD apt-get update
$STD apt-get install -y dotnet-sdk-8.0
$STD apt-get install -y dotnet-sdk-9.0
msg_ok "Installed ASP.NET Core Runtime"
msg_info "Installing rdtclient"