From 90430b425d029c8e5df705b77003938cc5d30bf3 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 6 Mar 2014 23:29:14 -0800 Subject: [PATCH] If there's a contract folder then use it in the nuget package for compilation. --- build/_k-generate-projects.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/_k-generate-projects.shade b/build/_k-generate-projects.shade index 0df62232cf..07b9048535 100644 --- a/build/_k-generate-projects.shade +++ b/build/_k-generate-projects.shade @@ -625,7 +625,7 @@ functions return new[] { "net45", "net40", "net35", "35", "net20" }; } // If it's k10 then look for netcore45 as well - return new[] { config, "netcore45" }; + return new[] { "contract", config, "netcore45" }; } private static string BuildReferences(IDictionary references, List gacReferences, string packagesDir, string configName, string[] candidates)