We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7da4562 commit 51161a7Copy full SHA for 51161a7
DnsTube.Service/install-service.bat
@@ -4,12 +4,12 @@ set SERVICE_NAME="DnsTube Service"
4
rem abort if we're not running in an elevated command prompt
5
net.exe session 1>NUL 2>NUL || goto :not_admin
6
7
-rem check that .NET 7 SDK is installed
8
-dotnet --list-sdks | findstr /C:7. /B
+rem check that .NET 8 SDK is installed
+dotnet --list-sdks | findstr /C:8. /B
9
if %ErrorLevel% equ 0 (
10
- echo Found .NET 7 SDK
+ echo Found .NET 8 SDK
11
) else (
12
- echo .NET 7 SDK not installed, please download and install from https://dotnet.microsoft.com/en-us/download/dotnet/7.0
+ echo .NET 8 SDK not installed, please download and install from https://dotnet.microsoft.com/en-us/download/dotnet/8.0
13
echo Exiting
14
goto :eof
15
)
0 commit comments