This tutorial teaches you the basics of building an ASP.NET Core MVC web app using [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/). [!INCLUDE[consider RP](../../includes/razor.md)]
This tutorial requires the [.NET Core 2.0.0 SDK](https://dot.net/core) or later. See [the pdf](https://github.com/aspnet/Docs/tree/master/aspnetcore/tutorials/first-mvc-app-mac/start-mvc/8-23-17.pdf) for the ASP.NET Core 1.1 version.
- [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/)
## Create a web app
From Visual Studio, select **File > New Solution**.
![macOS New solution](../first-web-api-mac/_static/sln.png)
Select **.NET Core App > ASP.NET Core > Web App > Next**.
![macOS New project dialog](start-mvc/1.png)
Name the project **MvcMovie**, and then select **Create**.
![macOS New project dialog](start-mvc/2.png)
### Launch the app
In Visual Studio, select **Run > Start Without Debugging** to launch the app. Visual Studio starts [IIS Express](http://www.iis.net/learn/extensions/introduction-to-iis-express/iis-express-overview), launches a browser, and navigates to `http://localhost:port`, where *port* is a randomly chosen port number.
![Browser with new project](start-mvc/b1.png)
* The address bar shows `localhost:port#` and not something like `example.com`. That's because `localhost` is the standard hostname for your local computer. When Visual Studio creates a web project, a random port is used for the web server. When you run the app, you'll see a different port number.
* You can launch the app in debug or non-debug mode from the **Run** menu.
The default template gives you **Home, About** and **Contact** links. The browser image above doesn't show these links. Depending on the size of your browser, you might need to click the navigation icon to show them.
![Browser with New project](start-mvc/b2.png)
In the next part of this tutorial, you learn about MVC and start writing some code.