forked from microsoft/XamlBehaviorsWpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
59 lines (49 loc) · 1.14 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
trigger:
- master
- rel/*
pr:
- master
- rel/*
pool:
vmImage: windows-latest
variables:
buildConfiguration: Release
steps:
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
displayName: Install NBGV tool
- script: nbgv cloud
displayName: Set Version
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 5.0'
inputs:
packageType: sdk
version: 5.0.100
- task: DotNetCoreCLI@2
displayName: Build Solution
inputs:
command: build
projects: src/*.sln
arguments: '--configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: Pack Behaviors
inputs:
command: pack
packagesToPack: src/**/Microsoft.Xaml.Behaviors.csproj
arguments: '--configuration $(buildConfiguration)'
- task: VSTest@2
displayName: Run Tests
inputs:
testAssemblyVer2: |
Test\**\$(BuildConfiguration)\*test*.dll
!**\obj\**
configuration: $(buildConfiguration)
- task: PublishBuildArtifacts@1
displayName: Publish Artifacts
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)
artifactType: container
artifactName: artifacts