update project runnable condition

This commit is contained in:
Matt Parker
2025-08-09 02:17:49 +10:00
parent a0f59bab48
commit 776907d496
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@
[Parameter, EditorRequired]
public SharpIdeSolutionModel SolutionModel { get; set; } = null!;
private IEnumerable<SharpIdeProjectModel> RunnableProjects => SolutionModel.AllProjects.Where(p => p.MsBuildEvaluationProject.GetPropertyValue("OutputType") is "Exe" or "WinExe");
private IEnumerable<SharpIdeProjectModel> RunnableProjects => SolutionModel.AllProjects.Where(p => p.IsRunnable);
private bool _open = false;
private bool _ready = false;