1 changed file
PowerShellPipeline
azure-pipelines.yml | ||
Add comment 15
Add comment 16 steps:
Add comment 17 - powershell: |
Add comment 18 Minus .\Build\build.ps1 -ResolveDependency -TaskList 'Test'
Add comment 18 Plus .\Build\build.ps1 -ResolveDependency -TaskList 'Release'
Add comment 19 displayName: 'Run Unit Tests'
Add comment 20
Add comment 21 - task: PublishTestResults@2
Add comment 22 Plus displayName: 'Publish Unit Tests'
Add comment 22 23 inputs:
Add comment 23 24 testRunner: 'NUnit'
Add comment 24 25 testResultsFiles: '**UnitTestResults.xml'
Add comment 25 26 testRunTitle: 'UnitTests'
Add comment 26 27 condition: always()
Add comment 28 Plus
Add comment 29 Plus - task: PublishBuildArtifacts@1
Add comment 30 Plus displayName: 'Publish Artifact: Module'
Add comment 31 Plus inputs:
Add comment 32 Plus PathtoPublish: Artifacts
Add comment 33 Plus ArtifactName: Artifacts
Add comment 34 Plus condition: always()
Add comment 27 35