From 8d46be6b01ae864c26ec7fbc38bad83beec2c8b1 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sun, 10 Aug 2025 01:31:34 +1000 Subject: [PATCH] build when running --- src/SharpIDE.Application/Features/Run/RunService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SharpIDE.Application/Features/Run/RunService.cs b/src/SharpIDE.Application/Features/Run/RunService.cs index c8c5912..b52d87b 100644 --- a/src/SharpIDE.Application/Features/Run/RunService.cs +++ b/src/SharpIDE.Application/Features/Run/RunService.cs @@ -27,7 +27,7 @@ public class RunService var processStartInfo = new ProcessStartInfo2 { FileName = "dotnet", - Arguments = $"run --project \"{project.FilePath}\" --no-build", + Arguments = $"run --project \"{project.FilePath}\" --no-restore", RedirectStandardOutput = true, RedirectStandardError = true };