Updating to CLI 1290 build on Windows
This commit is contained in:
parent
0556a2c291
commit
a192f79905
|
|
@ -14,7 +14,7 @@ IF "%KOREBUILD_DOTNET_CHANNEL%"=="" (
|
|||
)
|
||||
|
||||
IF "%KOREBUILD_DOTNET_VERSION%"=="" (
|
||||
SET KOREBUILD_DOTNET_VERSION=1.0.0.001248
|
||||
SET KOREBUILD_DOTNET_VERSION=1.0.0.001290
|
||||
)
|
||||
|
||||
IF NOT EXIST Sake (
|
||||
|
|
|
|||
|
|
@ -19,7 +19,12 @@ default pack_options=' ${E("KOREBUILD_DOTNET_PACK_OPTIONS")}'
|
|||
@{
|
||||
var projectFolder=Path.GetDirectoryName(projectFile);
|
||||
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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue