point test runner at the dotnet sdk that the build uses (#91)

This commit is contained in:
Adam Yoblick 2018-11-28 11:39:31 -06:00 коммит произвёл GitHub
Родитель ab7915c4af
Коммит f04eb68702
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -113,6 +113,11 @@ $pinfo.RedirectStandardError = $true
$pinfo.RedirectStandardOutput = $true
$pinfo.UseShellExecute = $false
$pinfo.Arguments = ""
# Set the dotnet root to the .dotnet folder that the build installed so we don't use the machine-wide installed one
# TODO: Change this to a script parameter instead of being hardcoded here
$pinfo.EnvironmentVariables['DOTNET_ROOT'] = '..\..\..\..\..\.dotnet'
$p = New-Object System.Diagnostics.Process
$p.StartInfo = $pinfo