mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fixed custom command rebuild issues after cleaning
This commit is contained in:
parent
ce1dbd88ed
commit
b662b2ac48
1 changed files with 28 additions and 0 deletions
|
@ -279,6 +279,12 @@ namespace IDE
|
||||||
|
|
||||||
project.mLastDidBuild = true;
|
project.mLastDidBuild = true;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
|
||||||
|
tagetCompletedCmd.mOnlyIfNotFailed = true;
|
||||||
|
gApp.mExecutionQueue.Add(tagetCompletedCmd);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -546,6 +552,12 @@ namespace IDE
|
||||||
project.mLastDidBuild = true;
|
project.mLastDidBuild = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
|
||||||
|
tagetCompletedCmd.mOnlyIfNotFailed = true;
|
||||||
|
gApp.mExecutionQueue.Add(tagetCompletedCmd);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -646,6 +658,12 @@ namespace IDE
|
||||||
project.mLastDidBuild = true;
|
project.mLastDidBuild = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
|
||||||
|
tagetCompletedCmd.mOnlyIfNotFailed = true;
|
||||||
|
gApp.mExecutionQueue.Add(tagetCompletedCmd);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1155,6 +1173,12 @@ namespace IDE
|
||||||
project.mLastDidBuild = true;
|
project.mLastDidBuild = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
|
||||||
|
tagetCompletedCmd.mOnlyIfNotFailed = true;
|
||||||
|
gApp.mExecutionQueue.Add(tagetCompletedCmd);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1266,6 +1290,10 @@ namespace IDE
|
||||||
|
|
||||||
if (project.mGeneralOptions.mTargetType == .CustomBuild)
|
if (project.mGeneralOptions.mTargetType == .CustomBuild)
|
||||||
{
|
{
|
||||||
|
var tagetCompletedCmd = new IDEApp.TargetCompletedCmd(project);
|
||||||
|
tagetCompletedCmd.mOnlyIfNotFailed = true;
|
||||||
|
gApp.mExecutionQueue.Add(tagetCompletedCmd);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue