Step 2 - dotnet restore - Build
  • 18 Nov 2019
  • 1 Minute to read
  • Contributors
  • Comment
  • Dark
    Light
  • PDF

Step 2 - dotnet restore - Build

  • Comment
  • Dark
    Light
  • PDF

Article Summary

In this step we will use the .net core restore task. This will install any packages used by the solution.

The task configuration is shown below:

image.png

YAML

The yaml for this task is below:

steps:
- task: DotNetCoreCLI@2
  displayName: 'dotnet restore'
  inputs:
    command: restore
    projects: '**/*.csproj'


Was this article helpful?