From bd14c064e914762642c023b07a44b96ab4274c4d Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Wed, 18 Mar 2015 13:35:32 -0700 Subject: [PATCH] Fix DNX naming issue for 'k test'. - This re-enables CoreCLR testing when running build.cmd. --- build/_k-test.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/_k-test.shade b/build/_k-test.shade index 870cf8480c..dc24d1fde3 100644 --- a/build/_k-test.shade +++ b/build/_k-test.shade @@ -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, ""); }