1
0
Fork 0
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:
Brian Fiete 2020-09-06 06:14:39 -07:00
parent 0eea8eeef6
commit a62a995472
4 changed files with 11 additions and 4 deletions

View file

@ -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;