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 };