We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d414f4 commit bad262eCopy full SHA for bad262e
src/linux/Packaging.Linux/install-from-source.sh
@@ -83,7 +83,7 @@ verify_existing_dotnet_installation() {
83
sdks=$(dotnet --list-sdks | cut -c 1-3)
84
85
# If we have a supported version installed, return.
86
- supported_dotnet_versions="6.0"
+ supported_dotnet_versions="7.0"
87
for v in $supported_dotnet_versions; do
88
if [ $(echo $sdks | grep "$v") ]; then
89
echo $sdks
@@ -150,7 +150,7 @@ case "$distribution" in
150
$sudo_cmd apt update
151
$sudo_cmd apt install apt-transport-https -y
152
153
- $sudo_cmd apt install dotnet-sdk-6.0 dpkg-dev -y
+ $sudo_cmd apt install dotnet-sdk-7.0 dpkg-dev -y
154
fi
155
156
;;
0 commit comments