Reverse the xunit arguments. The assembly comes first
This commit is contained in:
parent
50999bb876
commit
c2b7e415a9
|
|
@ -54,7 +54,7 @@ projectFile=''
|
||||||
var targetTestDll = projectName + ".dll";
|
var targetTestDll = projectName + ".dll";
|
||||||
|
|
||||||
var runnerExe = Path.GetFullPath(Path.Combine(publishFolder, "xunit.console.exe"));
|
var runnerExe = Path.GetFullPath(Path.Combine(publishFolder, "xunit.console.exe"));
|
||||||
ExecClr(runnerExe, testArgs + " " + targetTestDll, publishFolder);
|
ExecClr(runnerExe, targetTestDll + " " + testArgs, publishFolder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue