79767605

Date: 2025-09-17 16:54:21
Score: 2.5
Natty:
Report link

@sppc42 has the right answer, but some details that took me a minute to find:

- task: DotNetCoreCLI@2
  displayName: 'dotnet build lib project only'
  inputs:
    projects: '**/*.csproj'
    arguments: '/p:ContinuousIntegrationBuild=true -c $(BuildConfig)'
    workingDirectory: '$(System.DefaultWorkingDirectory)'  <<< I had a sub-dir here, AND in classic GUI pipelines, this is auto-collapsed and easy to miss!
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @sppc42
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: seljo