diff --git a/docs/pipelines/packages/nuget-restore.md b/docs/pipelines/packages/nuget-restore.md index 3b62c8a684d..f6d2e468e60 100644 --- a/docs/pipelines/packages/nuget-restore.md +++ b/docs/pipelines/packages/nuget-restore.md @@ -48,6 +48,13 @@ With NuGet Package Restore you can install all your project's dependency without checkLatest: true - script: nuget restore + + # For Ubuntu 24.04 or higher without mono installed (use this task instead of `script` line above) + - task: DotNetCoreCLI@2 + inputs: + command: restore + projects: + feedsToUse: select ``` ### [Classic](#tab/classic/)