We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4b4eda commit 521bb7bCopy full SHA for 521bb7b
1 file changed
samples/QuickstartClient/Program.cs
@@ -88,7 +88,7 @@ static void PromptForInput()
88
{
89
[var script] when script.EndsWith(".py") => ("python", args),
90
[var script] when script.EndsWith(".js") => ("node", args),
91
- [var script] when Directory.Exists(script) || (File.Exists(script) && script.EndsWith(".csproj")) => ("dotnet", ["run", "--project", script, "--no-build"]),
92
- _ => ("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"])
93
};
94
}
0 commit comments