File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
OpenBullet2.Native.Updater/Helpers
OpenBullet2.Web.Updater/Helpers Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,12 @@ public static async Task EnsureDotNetInstalledAsync()
58
58
}
59
59
60
60
var installRuntime = AnsiConsole . Prompt (
61
- new ConfirmationPrompt ( $ "The .NET Windows Desktop Runtime version { _dotnetVersion } or higher is required to run OpenBullet 2. " +
61
+ new ConfirmationPrompt ( $ "The .NET Windows Desktop Runtime version { _dotnetVersion } is required to run OpenBullet 2. " +
62
62
"Do you want to download and install it now?" ) ) ;
63
63
64
64
if ( ! installRuntime )
65
65
{
66
- Utils . ExitWithError ( $ "The .NET Windows Desktop Runtime version { _dotnetVersion } or higher is required to run OpenBullet 2. " +
66
+ Utils . ExitWithError ( $ "The .NET Windows Desktop Runtime version { _dotnetVersion } is required to run OpenBullet 2. " +
67
67
$ "Please install it from https://dotnet.microsoft.com/en-us/download/dotnet/{ _dotnetVersion } " +
68
68
"and relaunch the Updater" ) ;
69
69
}
Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ public static async Task EnsureDotNetInstalledAsync()
59
59
60
60
var installRuntime = RuntimeInformation . IsOSPlatform ( OSPlatform . Windows )
61
61
&& AnsiConsole . Prompt (
62
- new ConfirmationPrompt ( $ "The .NET Runtime and ASP.NET Core Runtime version { _dotnetVersion } or higher are required to run OpenBullet 2. " +
62
+ new ConfirmationPrompt ( $ "The .NET Runtime and ASP.NET Core Runtime version { _dotnetVersion } are required to run OpenBullet 2. " +
63
63
"Do you want to download and install them now?" ) ) ;
64
64
65
65
if ( ! installRuntime )
66
66
{
67
- Utils . ExitWithError ( $ "The .NET Runtime and ASP.NET Core Runtime version { _dotnetVersion } or higher are required to run OpenBullet 2. " +
67
+ Utils . ExitWithError ( $ "The .NET Runtime and ASP.NET Core Runtime version { _dotnetVersion } are required to run OpenBullet 2. " +
68
68
$ "Please install them from https://dotnet.microsoft.com/en-us/download/dotnet/{ _dotnetVersion } " +
69
69
"and relaunch the Updater" ) ;
70
70
}
You can’t perform that action at this time.
0 commit comments