run panel v1

This commit is contained in:
Matt Parker
2025-08-09 02:09:06 +10:00
parent 4ceaafd75e
commit 4ba04c3082
3 changed files with 59 additions and 8 deletions

View File

@@ -34,4 +34,7 @@ public class SharpIdeProjectModel : ISharpIdeNode
public Project MsBuildEvaluationProject => MsBuildEvaluationProjectTask.IsCompletedSuccessfully
? MsBuildEvaluationProjectTask.Result
: throw new InvalidOperationException("Do not attempt to access the MsBuildEvaluationProject before it has been loaded");
public bool IsRunnable => MsBuildEvaluationProject.GetPropertyValue("OutputType") is "Exe" or "WinExe";
public bool OpenInRunPanel { get; set; }
}