Really fix build

This commit is contained in:
Matt Stevens
2025-12-11 16:53:19 +00:00
parent 1c547b62aa
commit 57d29e6f67

View File

@@ -159,10 +159,7 @@ public partial class Project
if ( !project.Active ) continue;
// Don't put menu project in everyone's slns
if ( Current is not null )
{
if ( project.Config.Ident == "menu" && Current.Config.Ident != "menu" ) continue;
}
if ( project.Config.Ident == "menu" && Current?.Config?.Ident != "menu" ) continue;
await project.GenerateProject( generator );
}