diff --git a/build-template/build.cmd b/build-template/build.cmd index c74ef945ca..68a732c182 100644 --- a/build-template/build.cmd +++ b/build-template/build.cmd @@ -19,7 +19,7 @@ IF EXIST packages\KoreBuild goto run .nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre .nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion -IF "%SKIP_KRE_INSTALL%"=="1" goto run +IF "%SKIP_DNX_INSTALL%"=="1" goto run CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -x86 CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -x86 diff --git a/build/_k-test.shade b/build/_k-test.shade index c5cfaf5563..870cf8480c 100644 --- a/build/_k-test.shade +++ b/build/_k-test.shade @@ -30,11 +30,11 @@ projectFile='' ? (Dictionary)configsObject : new Dictionary { - { "aspnet50", new Dictionary() } // Assume aspnet50 only if none specified + { "dnx451", new Dictionary() } // Assume dnx451 only if none specified }; - // Currently only aspnet* targets are supported. See aspnet/Universe#53 - var targetFrameworks = configs.Keys.Where(k => k.StartsWith("aspnet", StringComparison.OrdinalIgnoreCase)); + // Currently only dnx* targets are supported. See aspnet/Universe#53 + var targetFrameworks = configs.Keys.Where(k => k.StartsWith("dnx", StringComparison.OrdinalIgnoreCase)); foreach (var framework in targetFrameworks) {