diff --git a/samples/QuickstartClient/Program.cs b/samples/QuickstartClient/Program.cs index e3ee4fe8..aa25db70 100644 --- a/samples/QuickstartClient/Program.cs +++ b/samples/QuickstartClient/Program.cs @@ -88,7 +88,7 @@ static void PromptForInput() { [var script] when script.EndsWith(".py") => ("python", args), [var script] when script.EndsWith(".js") => ("node", args), - [var script] when Directory.Exists(script) || (File.Exists(script) && script.EndsWith(".csproj")) => ("dotnet", ["run", "--project", script, "--no-build"]), - _ => ("dotnet", ["run", "--project", "../../../../QuickstartWeatherServer", "--no-build"]) + [var script] when Directory.Exists(script) || (File.Exists(script) && script.EndsWith(".csproj")) => ("dotnet", ["run", "--project", script]), + _ => ("dotnet", ["run", "--project", "../QuickstartWeatherServer"]) }; } \ No newline at end of file