Skip to content

Commit

Permalink
Add initial pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigel Sampson committed Nov 7, 2018
1 parent 217982f commit 382bbd2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions azure-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Continuous Integration
trigger:
- dev/4.0.0

pool:
vmImage: vs2017-win2016

variables:
buildConfiguration: Release
solution: './src/Caliburn.Micro.sln'

steps:
- task: NugetRestore@2
displayName: Nuget Restore
inputs:
command: restore
solution: '$(solution)'

- task: VSBuild@1
displayName: Build Solution
inputs:
solution: '$(solution)'
configuration: '$(buildConfiguration)'

0 comments on commit 382bbd2

Please sign in to comment.