Set up CI with Azure Pipelines [skip ci]

Updated azure-pipelines.yml

Updated azure-pipelines.yml

Updated azure-pipelines.yml
This commit is contained in:
Nomango 2019-04-04 05:45:33 +00:00
parent 446a77231c
commit 5d1dc46988
1 changed files with 21 additions and 0 deletions

21
azure-pipelines.yml Normal file
View File

@ -0,0 +1,21 @@
# .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
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'x86'
buildConfiguration: 'Release'
- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'