mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 23:56:05 +02:00
Fixed multi-project deletion, adding project with implicitly-loaded deps
This commit is contained in:
parent
0eea8eeef6
commit
a62a995472
4 changed files with 11 additions and 4 deletions
|
@ -366,7 +366,9 @@ namespace IDE.Compiler
|
|||
|
||||
if (command is SetupProjectSettingsCommand)
|
||||
{
|
||||
var setupProjectSettingsCommand = (SetupProjectSettingsCommand)command;
|
||||
var setupProjectSettingsCommand = (SetupProjectSettingsCommand)command;
|
||||
if (setupProjectSettingsCommand.mProject.mDeleted)
|
||||
continue;
|
||||
gApp.SetupBeefProjectSettings(mBfSystem, this, setupProjectSettingsCommand.mProject);
|
||||
}
|
||||
|
||||
|
@ -381,6 +383,8 @@ namespace IDE.Compiler
|
|||
ProjectSourceCommandBlock:
|
||||
{
|
||||
var projectSourceCommand = (ProjectSourceCommand)command;
|
||||
if (projectSourceCommand.mProjectSource.mProject.mDeleted)
|
||||
continue;
|
||||
bool worked = true;
|
||||
String sourceFilePath = scope String();
|
||||
var projectSource = projectSourceCommand.mProjectSource;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue