diff --git a/src/BenchmarkDotNet/Toolchains/Toolchain.cs b/src/BenchmarkDotNet/Toolchains/Toolchain.cs index 8c5d1596a7..bbe5f1d94f 100644 --- a/src/BenchmarkDotNet/Toolchains/Toolchain.cs +++ b/src/BenchmarkDotNet/Toolchains/Toolchain.cs @@ -64,7 +64,7 @@ internal static bool IsCliPathInvalid(string customDotNetCliPath, BenchmarkCase if (string.IsNullOrEmpty(customDotNetCliPath) && !HostEnvironmentInfo.GetCurrent().IsDotNetCliInstalled()) { validationError = new ValidationError(true, - $"BenchmarkDotNet requires dotnet cli to be installed or path to local dotnet cli provided in explicit way using `--cli` argument, benchmark '{benchmarkCase.DisplayInfo}' will not be executed", + $"BenchmarkDotNet requires dotnet SDK to be installed or path to local dotnet cli provided in explicit way using `--cli` argument, benchmark '{benchmarkCase.DisplayInfo}' will not be executed", benchmarkCase); return true; @@ -84,4 +84,4 @@ internal static bool IsCliPathInvalid(string customDotNetCliPath, BenchmarkCase public override string ToString() => Name; } -} \ No newline at end of file +}