This commit is contained in:
Wiesław Šoltés 2017-10-31 07:30:38 +01:00 коммит произвёл GitHub
Родитель d4d85f017c
Коммит c5d639b925
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -299,9 +299,9 @@ Task("Run-Unit-Tests")
.Does(() =>
{
string pattern = "./tests/**/bin/" + dirSuffix + "/*.UnitTests.dll";
string toolPath = (isPlatformAnyCPU || isPlatformX86) ?
"./tools/xunit.runner.console/tools/xunit.console.x86.exe" :
"./tools/xunit.runner.console/tools/xunit.console.exe";
string toolPath = (isPlatformAnyCPU || isPlatformX86) ?
Context.Tools.Resolve("xunit.console.x86.exe") :
Context.Tools.Resolve("xunit.console.exe");
XUnit2(pattern, new XUnit2Settings {
ToolPath = toolPath,