From c27ba5f00fbaa378ba0cfa36a4444eda18e2add3 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Sun, 13 Jul 2014 22:24:47 -0700 Subject: [PATCH] Made some tweaks to k test - Change to look in frameworks instead of configurations when running tests - Assume net45 if nothing specified --- build/_k-test.shade | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/_k-test.shade b/build/_k-test.shade index 86b119782a..331c5347d7 100644 --- a/build/_k-test.shade +++ b/build/_k-test.shade @@ -26,12 +26,11 @@ projectFile='' var projectFolder = Path.GetDirectoryName(projectFile); object configsObject; - var configs = project.TryGetValue("configurations", out configsObject) + var configs = project.TryGetValue("frameworks", out configsObject) ? (Dictionary)configsObject : new Dictionary { - { "net45", new Dictionary() }, - { "k10", new Dictionary() } + { "net45", new Dictionary() } // Assume net45 only if none specified }; // Currently only net* and k* targets are supported. See aspnet/Universe#53