Skip to content

Commit 6fa7a91

Browse files
authored
change dotnet "cli" to "SDK" in error message (#2379)
1 parent 60c3029 commit 6fa7a91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BenchmarkDotNet/Toolchains/Toolchain.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ internal static bool IsCliPathInvalid(string customDotNetCliPath, BenchmarkCase
6464
if (string.IsNullOrEmpty(customDotNetCliPath) && !HostEnvironmentInfo.GetCurrent().IsDotNetCliInstalled())
6565
{
6666
validationError = new ValidationError(true,
67-
$"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",
67+
$"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",
6868
benchmarkCase);
6969

7070
return true;
@@ -84,4 +84,4 @@ internal static bool IsCliPathInvalid(string customDotNetCliPath, BenchmarkCase
8484

8585
public override string ToString() => Name;
8686
}
87-
}
87+
}

0 commit comments

Comments
 (0)