AspNetCore.Docs/aspnetcore/getting-started.md

1.8 KiB

title author description manager ms.author ms.date ms.prod ms.technology ms.topic uid
Get Started with ASP.NET Core rick-anderson A quick tutorial that creates and runs a simple Hello World app using ASP.NET Core. wpickett riande 10/18/2017 asp.net-core aspnet get-started-article getting-started

Get Started with ASP.NET Core

[!NOTE] These instructions are for the latest version of ASP.NET Core. See Getting Started with ASP.NET Core 1.1 for the 1.1 version of this document.

  1. Install the [!INCLUDE].

  2. Create a new .NET Core project.

    On macOS and Linux, open a terminal window. On Windows, open a command prompt. Enter the following command:

    dotnet new razor -o aspnetcoreapp
    
  3. Run the app.

    Use the following commands to run the app:

    cd aspnetcoreapp
    dotnet run
    
  4. Browse to http://localhost:5000

  5. Open Pages/About.cshtml and modify the page to display the message "Hello, world! The time on the server is @DateTime.Now ":

    [!code-html]

  6. Browse to http://localhost:5000/About and verify the changes.

Next steps

For 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 Base Class Library and runtime. For more information, see Choosing between .NET Core and .NET Framework.