az-400-devops-engineer-expert video for your team has defined the below Azure pipeline # ASP.NET Core (.NET Framework) # Build and test ASP.NET Core projects
Your team has defined the below Azure pipeline # ASP.NET Core (.NET Framework) # Build and test ASP.NET Core projects targeting the full .NET Framework. # Add steps that publish symbols, save build artifacts, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core trigger : - main pool : name : Default variables : solution : '**/*.sln' buildPlatform : 'Any CPU' buildConfiguration : 'Release' steps : - task : UseDotNet@2 displayName : Install . NET 6 inputs : packageType : 'sdk' version : 6.x - task : DotNetCoreCLI@2 displayName : Build inputs : command : build projects : '**/*.csproj' arguments : '--configuration $(buildConfiguration)' Your team has discovered that it is taking time to download the NuGet packages for each pipeline run. You have to ensure that the pipeline execution time is reduced. Which of the following can be implemented for this requirement?