Skip to content

Commit 51161a7

Browse files
committed
Update install script for .NET 8
1 parent 7da4562 commit 51161a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DnsTube.Service/install-service.bat

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ set SERVICE_NAME="DnsTube Service"
44
rem abort if we're not running in an elevated command prompt
55
net.exe session 1>NUL 2>NUL || goto :not_admin
66

7-
rem check that .NET 7 SDK is installed
8-
dotnet --list-sdks | findstr /C:7. /B
7+
rem check that .NET 8 SDK is installed
8+
dotnet --list-sdks | findstr /C:8. /B
99
if %ErrorLevel% equ 0 (
10-
echo Found .NET 7 SDK
10+
echo Found .NET 8 SDK
1111
) else (
12-
echo .NET 7 SDK not installed, please download and install from https://dotnet.microsoft.com/en-us/download/dotnet/7.0
12+
echo .NET 8 SDK not installed, please download and install from https://dotnet.microsoft.com/en-us/download/dotnet/8.0
1313
echo Exiting
1414
goto :eof
1515
)

0 commit comments

Comments
 (0)