Getting Started with ASP.NET Core
Install .NET Core
Create a new .NET Core project:
mkdir aspnetcoreapp cd aspnetcoreapp dotnet new -t webRestore the packages:
dotnet restoreRun the app (the
dotnet runcommand will build the app when it's out of date):dotnet runBrowse to
http://localhost:5000
Next steps
For more getting-started tutorials, see ASP.NET Core Tutorials
For an introduction to ASP.NET Core concepts and architecture, see ASP.NET Core Introduction and ASP.NET Core Fundamentals.
An ASP.NET Core app can use the .NET Core or .NET Framework runtime. For more information, see Choosing between .NET Core and .NET Framework.






