forked from jbjakobs/Postman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
34 lines (31 loc) · 934 Bytes
/
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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
- main
pool:
vmImage: 'windows-2019'
steps:
- task: NuGetCommand@2
displayName: 'NuGet restore'
- task: MSBuild@1
displayName: 'Build solution **/*.sln'
inputs:
configuration: Release
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: PostmanWrapper.Common drop'
inputs:
PathtoPublish: PostmanWrapper/Common
ArtifactName: 'PostmanWrapper.Common drop'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: PostmanWrapper.Wrapper drop'
inputs:
PathtoPublish: PostmanWrapper/Wrapper
ArtifactName: 'PostmanWrapper.Wrapper drop'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: PostmanDrop'
inputs:
PathtoPublish: PostmanTest
ArtifactName: PostmanDrop