Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 744 Bytes

File metadata and controls

18 lines (16 loc) · 744 Bytes
ms.topic include
ms.service azure-devops-pipelines
ms.manager wiwagn
ms.author rabououn
author ramiMSFT
ms.date 12/01/2023

If you don't have a .NET project to work with, create a new one on your local machine as follows:

  1. Install the .NET 8.0 SDK, or make sure it's installed.
  2. Open a terminal window on your local machine.
  3. Create a project directory and navigate to it.
  4. Create a new .NET 8 web app by running dotnet new webapp -f net8.0.
  5. Build and run the application locally by using dotnet run.
  6. When the application starts, press Ctrl+C to shut it down.
  7. Upload or connect the local project to your GitHub repository.