Skip to content

Commit 5dc3703

Browse files
committed
Fixed issue with pipeline not running UnitTests.NetCore tests.
1 parent 0ff1745 commit 5dc3703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ Task("Test")
249249
};
250250

251251
VSTest(baseDir + "/**/Release/**/UnitTests.*.appxrecipe", testSettings);
252-
}).DoesForEach(GetFiles(baseDir + "/**/UnitTests.*.NetCore.csproj"), (file) =>
252+
}).DoesForEach(GetFiles(baseDir + "/**/UnitTests.*NetCore.csproj"), (file) =>
253253
{
254254
Information("\nRunning NetCore Unit Tests");
255255
var testSettings = new DotNetCoreTestSettings

0 commit comments

Comments
 (0)