Back to Aspnetcore

Visual Studio

aspnetcore/includes/run-the-app9.0.md

latest1023 B
Original Source

Visual Studio

  • Press Ctrl+F5 to run without the debugger.

    [!INCLUDE]

    Visual Studio:

    • Starts 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

[!INCLUDE]

  • Press Ctrl-F5 to run without the debugger.

    Visual Studio Code:

    • Starts 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.