Reverse the xunit arguments. The assembly comes first

This commit is contained in:
Victor Hurdugaci 2015-12-21 11:05:41 -08:00
parent 50999bb876
commit c2b7e415a9
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ projectFile=''
var targetTestDll = projectName + ".dll";
var runnerExe = Path.GetFullPath(Path.Combine(publishFolder, "xunit.console.exe"));
ExecClr(runnerExe, testArgs + " " + targetTestDll, publishFolder);
ExecClr(runnerExe, targetTestDll + " " + testArgs, publishFolder);
}
}
}