- Print
- Comment
- DarkLight
- PDF
Step 2 - dotnet restore - Build
Article summary
Did you find this summary helpful?
Thank you for your feedback!
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:
YAML
The yaml for this task is below:
steps:
- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
inputs:
command: restore
projects: '**/*.csproj'
Was this article helpful?