File tree 1 file changed +3
-3
lines changed
src/linux/Packaging.Linux
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ ensure_dotnet_installed() {
83
83
if [ -z " $( verify_existing_dotnet_installation) " ]; then
84
84
curl -LO https://dot.net/v1/dotnet-install.sh
85
85
chmod +x ./dotnet-install.sh
86
- bash -c " ./dotnet-install.sh --channel 7 .0"
86
+ bash -c " ./dotnet-install.sh --channel 8 .0"
87
87
88
88
# Since we have to run the dotnet install script with bash, dotnet isn't
89
89
# added to the process PATH, so we manually add it here.
@@ -98,7 +98,7 @@ verify_existing_dotnet_installation() {
98
98
sdks=$( dotnet --list-sdks | cut -c 1-3)
99
99
100
100
# If we have a supported version installed, return.
101
- supported_dotnet_versions=" 7 .0"
101
+ supported_dotnet_versions=" 8 .0"
102
102
for v in $supported_dotnet_versions ; do
103
103
if [ $( echo $sdks | grep " $v " ) ]; then
104
104
echo $sdks
@@ -173,7 +173,7 @@ case "$distribution" in
173
173
$sudo_cmd apt update
174
174
$sudo_cmd apt install apt-transport-https -y
175
175
$sudo_cmd apt update
176
- $sudo_cmd apt install dotnet-sdk-7 .0 dpkg-dev -y
176
+ $sudo_cmd apt install dotnet-sdk-8 .0 dpkg-dev -y
177
177
fi
178
178
fi
179
179
;;
You can’t perform that action at this time.
0 commit comments