Skip to content

Commit dc5a00b

Browse files
authored
Merge pull request #3844 from windows-toolkit/enableNetCoreTests
Fixed issue with pipeline not running UnitTests.NetCore tests.
2 parents 0ff1745 + 5dc3703 commit dc5a00b

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)