forked from dotnet/AspNetCore.Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New run-the-app include & trustCert updates (dotnet#15619)
* New run-the-app include & trustcert updates * Removed moniker from metadata since include has monikers * removed moniker from metadata * added VS context to run-the-app for alt-cmd-enter * moved run app section to include run-the-app.md * corrected date on metadata for razor-pages-start.md * added bold for Run-Start without debugging to run-the-app.md
- Loading branch information
1 parent
c74fc1a
commit 1c2c9d2
Showing
5 changed files
with
50 additions
and
47 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,28 @@ | ||
# [Visual Studio](#tab/visual-studio) | ||
|
||
* Press Ctrl+F5 to run without the debugger. | ||
|
||
[!INCLUDE[](~/includes/trustCertVS.md)] | ||
|
||
Visual Studio starts [IIS Express](/iis/extensions/introduction-to-iis-express/iis-express-overview) and runs the app. The address bar shows `localhost:port#` and not something like `example.com`. That's because `localhost` is the standard hostname for the local computer. Localhost only serves web requests from the local computer. When Visual Studio creates a web project, a random port is used for the web server. | ||
|
||
# [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/kestrel), launches a browser, and navigates to `http://localhost:5001`. The address bar shows `localhost:port#` and not something like `example.com`. That's because `localhost` is the standard hostname for local computer. Localhost only serves web requests from the local computer. | ||
|
||
|
||
# [Visual Studio for Mac](#tab/visual-studio-mac) | ||
|
||
[!INCLUDE[](~/includes/trustCertMac.md)] | ||
|
||
* From Visual Studio, press **Alt-Cmd-Enter** to run without the debugger. Alternatively, navigate to the menu bar and go to **Run>Start Without Debugging**. | ||
|
||
Visual Studio starts [Kestrel](xref:fundamentals/servers/kestrel), launches a browser, and navigates to `http://localhost:5001`. | ||
|
||
<!-- End of VS tabs --> | ||
|
||
--- |
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
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
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