You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Evan Schallerer edited this page Dec 1, 2016
·
1 revision
Visual Studio is a powerful development tool, but .NET Core allows you to develop applications without it if necessary. We are going to walk through how to run your application on the command prompt. To do this, you will need to have the application in a runnable state.
##Getting Started
Open up a command prompt and change directories to the src directory of your project and run dotnet restore.
Change directories to Web and run dotnet run.
Your application should now be running. To access it, open a browser and navigate to http://localhost:5000. You can watch on the command prompt as your application receives requests.
To stop your application, press ctrl + c in the command prompt.