From 995449c6d1888e51daa9d281193604033f41c092 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Fri, 8 Aug 2025 00:16:16 +1000 Subject: [PATCH] Update RunService.cs --- src/SharpIDE.Application/Features/Run/RunService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpIDE.Application/Features/Run/RunService.cs b/src/SharpIDE.Application/Features/Run/RunService.cs index 4661557..e8a7d8a 100644 --- a/src/SharpIDE.Application/Features/Run/RunService.cs +++ b/src/SharpIDE.Application/Features/Run/RunService.cs @@ -15,6 +15,7 @@ public class RunService { Guard.Against.Null(project, nameof(project)); Guard.Against.NullOrWhiteSpace(project.FilePath, nameof(project.FilePath), "Project file path cannot be null or empty."); + await Task.CompletedTask.ConfigureAwait(ConfigureAwaitOptions.ForceYielding); var processStartInfo = new ProcessStartInfo2 {