mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
# .NET Desktop
|
|
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
|
|
# Add steps that publish symbols, save build artifacts, and more:
|
|
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
|
|
|
|
trigger:
|
|
- master
|
|
|
|
pr:
|
|
- master
|
|
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
variables:
|
|
solution: '**/*.sln'
|
|
buildPlatform: 'Any CPU'
|
|
buildConfiguration: 'Release'
|
|
|
|
steps:
|
|
- task: NuGetToolInstaller@1
|
|
|
|
- task: NuGetCommand@2
|
|
inputs:
|
|
restoreSolution: '$(solution)'
|
|
|
|
- task: VSBuild@1
|
|
inputs:
|
|
solution: '$(solution)'
|
|
platform: '$(buildPlatform)'
|
|
configuration: '$(buildConfiguration)'
|
|
|
|
- task: DotNetCoreCLI@2
|
|
inputs:
|
|
command: 'pack'
|
|
packagesToPack: '**/UglyToad.PdfPig.csproj'
|
|
includesymbols: true
|
|
versioningScheme: 'off'
|
|
|
|
- script: |
|
|
dotnet test ./src/UglyToad.PdfPig.Tests/UglyToad.PdfPig.Tests.csproj -c Debug --logger trx /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
|
|
cd ./src/UglyToad.PdfPig.Tests
|
|
dir
|
|
displayName: 'Build source, tests and run tests with coverage'
|
|
|
|
- task: PublishTestResults@2
|
|
inputs:
|
|
testResultsFormat: 'VSTest'
|
|
testResultsFiles: '**/*.trx'
|
|
failTaskOnFailedTests: true
|
|
testRunTitle: 'Gather test results'
|
|
|
|
# Upload coverage to codecov.io
|
|
- script: |
|
|
%USERPROFILE%\.nuget\packages\codecov\1.9.0\tools\codecov.exe -f "./src/UglyToad.PdfPig.Tests/coverage.opencover.xml" -t $(codecov)
|
|
displayName: Upload coverage to codecov.io
|