Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions eng/pipelines/jobs/build-signed-csproj-package-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,21 @@ jobs:
# Install the .NET SDK.
- template: /eng/pipelines/steps/install-dotnet.yml@self

# Perform Roslyn analysis before building, since this step will clobber build output.
- task: securedevelopmentteam.vss-secure-development-tools.build-task-roslynanalyzers.RoslynAnalyzers@3
displayName: Roslyn Analyzers
inputs:
msBuildArchitecture: x64
msBuildCommandLine: >-
msbuild
$(REPO_ROOT)/build.proj
-t:$(buildTarget)
-p:Configuration=${{ parameters.buildConfiguration }}
-p:ReferenceType=Package
${{ parameters.versionProperties }}
msBuildVersion: 17.0
setupCommandLinePicker: vs2022

# Build the package, producing DLLs only (no NuGet package yet).
- template: /eng/pipelines/steps/compound-build-csproj-step.yml@self
parameters:
Expand Down
Loading