build when running

This commit is contained in:
Matt Parker
2025-08-10 01:31:34 +10:00
parent 36a21969f9
commit 8d46be6b01

View File

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