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