Skip to content

Commit d346d13

Browse files
committed
Fix QuickstartClient path
1 parent befa31d commit d346d13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/QuickstartClient/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@ static void PromptForInput()
8989
[var script] when script.EndsWith(".py") => ("python", args),
9090
[var script] when script.EndsWith(".js") => ("node", args),
9191
[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"])
92+
_ => ("dotnet", ["run", "--project", "../../../../../samples/QuickstartWeatherServer/QuickstartWeatherServer.csproj", "--no-build"])
9393
};
9494
}

0 commit comments

Comments
 (0)