-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update grpc-start to .NET 9 (#34603)
* archive grpc-start .NET 8 * update grpc-start article to .NET 9 * add grpc-start .NET 9 sample * correct code highlighting lines * Update aspnetcore/tutorials/grpc/grpc-start.md Updated to 9.0 for framework selection in VS * Update gRPC tutorial ms.date * Update tutorial date in grpc-start.md --------- Co-authored-by: Wade Pickett <[email protected]>
- Loading branch information
1 parent
42c465a
commit cee85cb
Showing
13 changed files
with
536 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# [Visual Studio](#tab/visual-studio) | ||
|
||
* Press Ctrl+F5 to run without the debugger. | ||
|
||
[!INCLUDE[](~/includes/trustCertVS.md)] | ||
|
||
Visual Studio: | ||
|
||
* Starts [Kestrel](xref:fundamentals/servers/index#kestrel) server. | ||
* Launches a browser. | ||
* Navigates to `http://localhost:port`, such as `http://localhost:7042`. | ||
* *port*: A randomly assigned port number for the app. | ||
* `localhost`: The standard hostname for the local computer. Localhost only serves web requests from the local computer. | ||
|
||
# [Visual Studio Code](#tab/visual-studio-code) | ||
|
||
[!INCLUDE[](~/includes/trustCertVSC.md)] | ||
|
||
* Press **Ctrl-F5** to run without the debugger. | ||
|
||
Visual Studio Code: | ||
|
||
* Starts [Kestrel](xref:fundamentals/servers/index#kestrel) server. | ||
* Launches a browser. | ||
* Navigates to `http://localhost:port`, such as `http://localhost:7042`. | ||
* *port*: A randomly assigned port number for the app. | ||
* `localhost`: The standard hostname for the local computer. Localhost only serves web requests from the local computer. | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.