From e82cf19f407acd8c16d2cbf6bb8200e5f3cd8336 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Fri, 22 Feb 2019 09:18:00 -1000 Subject: [PATCH] Update start-mvc.md (#11059) * Update start-mvc.md * Update start-mvc.md --- aspnetcore/tutorials/first-mvc-app/start-mvc.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc.md b/aspnetcore/tutorials/first-mvc-app/start-mvc.md index 237785445f..0050ad76cb 100644 --- a/aspnetcore/tutorials/first-mvc-app/start-mvc.md +++ b/aspnetcore/tutorials/first-mvc-app/start-mvc.md @@ -12,8 +12,6 @@ By [Rick Anderson](https://twitter.com/RickAndMSFT) [!INCLUDE [consider RP](~/includes/razor.md)] -https://docs.microsoft.com/en-us/visualstudio/ide/visual-studio-ide?view=vs-2017 - This tutorial teaches the basics of building an ASP.NET Core MVC web app. The app manages a database of movie titles. You learn how to: @@ -93,7 +91,7 @@ The tutorial assumes familarity with VS Code. See [Getting started with VS Code] * Press **Ctrl-F5** to run without the debugger. - Visual Studio Code starts starts [Kestrel](xref:fundamentals/servers/kestrel), launches a browser, and navigates to `http://localhost:5001`. The address bar shows `localhost:port:5001` 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 Code starts starts [Kestrel](xref:fundamentals/servers/kestrel), launches a browser, and navigates to `https://localhost:5001`. The address bar shows `localhost:port:5001` 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. Launching the app with **Ctrl+F5** (non-debug mode) allows you to make code changes, save the file, refresh the browser, and see the code changes. Many developers prefer to use non-debug mode to refresh the page and view changes.