Fix build

This commit is contained in:
Matt Stevens
2025-12-11 16:34:04 +00:00
parent 744cb42baf
commit 1c547b62aa

View File

@@ -158,7 +158,11 @@ public partial class Project
{
if ( !project.Active ) continue;
if ( project.Config.Ident == "menu" && Current.Config.Ident != "menu" ) 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;
}
await project.GenerateProject( generator );
}