Futher renaming work
1. SKIP_KVM_INSTALL => SKIP_DNX_INSTALL 2. Update k test
This commit is contained in:
parent
197ef48120
commit
e46896b7cd
|
|
@ -19,7 +19,7 @@ IF EXIST packages\KoreBuild goto run
|
||||||
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
|
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
|
||||||
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
|
.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 upgrade -runtime CLR -x86
|
||||||
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -x86
|
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -x86
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,11 +30,11 @@ projectFile=''
|
||||||
? (Dictionary<string, object>)configsObject
|
? (Dictionary<string, object>)configsObject
|
||||||
: new Dictionary<string, object>
|
: new Dictionary<string, object>
|
||||||
{
|
{
|
||||||
{ "aspnet50", new Dictionary<string, object>() } // Assume aspnet50 only if none specified
|
{ "dnx451", new Dictionary<string, object>() } // Assume dnx451 only if none specified
|
||||||
};
|
};
|
||||||
|
|
||||||
// Currently only aspnet* targets are supported. See aspnet/Universe#53
|
// Currently only dnx* targets are supported. See aspnet/Universe#53
|
||||||
var targetFrameworks = configs.Keys.Where(k => k.StartsWith("aspnet", StringComparison.OrdinalIgnoreCase));
|
var targetFrameworks = configs.Keys.Where(k => k.StartsWith("dnx", StringComparison.OrdinalIgnoreCase));
|
||||||
|
|
||||||
foreach (var framework in targetFrameworks)
|
foreach (var framework in targetFrameworks)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue