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 {