Fix DNX naming issue for 'k test'.

- This re-enables CoreCLR testing when running build.cmd.
This commit is contained in:
N. Taylor Mullen 2015-03-18 13:35:32 -07:00
parent a14b35ca6c
commit bd14c064e9
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ projectFile=''
{
var testArgs = IsMono ? " -parallel none" : "";
if (!framework.StartsWith("aspnetcore", StringComparison.OrdinalIgnoreCase))
if (!framework.StartsWith("dnxcore", StringComparison.OrdinalIgnoreCase))
{
K(("test" + testArgs), projectFolder, "");
}