Updating to CLI 1290 build on Windows

This commit is contained in:
Pranav K 2016-02-11 10:36:25 -08:00
parent 0556a2c291
commit a192f79905
2 changed files with 7 additions and 2 deletions

View File

@ -14,7 +14,7 @@ IF "%KOREBUILD_DOTNET_CHANNEL%"=="" (
) )
IF "%KOREBUILD_DOTNET_VERSION%"=="" ( IF "%KOREBUILD_DOTNET_VERSION%"=="" (
SET KOREBUILD_DOTNET_VERSION=1.0.0.001248 SET KOREBUILD_DOTNET_VERSION=1.0.0.001290
) )
IF NOT EXIST Sake ( IF NOT EXIST Sake (

View File

@ -19,7 +19,12 @@ default pack_options=' ${E("KOREBUILD_DOTNET_PACK_OPTIONS")}'
@{ @{
var projectFolder=Path.GetDirectoryName(projectFile); var projectFolder=Path.GetDirectoryName(projectFile);
var projectName=Path.GetFileName(projectFolder); var projectName=Path.GetFileName(projectFolder);
var projectBin=Path.Combine(projectFolder, "bin", configuration); var projectBin=Path.Combine(projectFolder, "bin");
if (IsLinux)
{
projectBin = Path.Combine(projectBin, configuration);
}
DeleteFolder(projectBin); DeleteFolder(projectBin);