Fix deadlock in GetDotNetSdkVersion (#2622)

* Fix deadlock in GetDotNetSdkVersion

* Remove newline at the end of file
This commit is contained in:
Korexio 2024-08-22 20:09:16 +02:00 коммит произвёл GitHub
Родитель a739e2cc9a
Коммит c8105aab56
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -56,7 +56,7 @@ namespace BenchmarkDotNet.Toolchains.DotNetCli
internal static string? GetDotNetSdkVersion()
{
using (var process = new Process { StartInfo = BuildStartInfo(customDotNetCliPath: null, workingDirectory: string.Empty, arguments: "--version") })
using (var process = new Process { StartInfo = BuildStartInfo(customDotNetCliPath: null, workingDirectory: string.Empty, arguments: "--version", redirectStandardError: false) })
using (new ConsoleExitHandler(process, NullLogger.Instance))
{
try