We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8063220 commit 7bedd29Copy full SHA for 7bedd29
build.cake
@@ -96,7 +96,10 @@ Task("Run-NUnit-Tests")
96
.IsDependentOn("Build")
97
.Does(() =>
98
{
99
- NUnit3("src/*.Tests/bin/" + configuration + "/*.Tests.dll");
+ NUnit3(new [] {
100
+ "src/GitVersionCore.Tests/bin/" + configuration + "/GitVersionCore.Tests.dll",
101
+ "src/GitVersionExe.Tests/bin/" + configuration + "/GitVersionExe.Tests.dll",
102
+ "src/GitVersionTask.Tests/bin/" + configuration + "/GitVersionTask.Tests.dll" });
103
});
104
105
Task("Zip-Files")
0 commit comments