Set up CI with Azure Pipelines

[skip ci]
This commit is contained in:
Manoj Kadam 2019-10-23 13:40:14 -07:00
Родитель 0638f02411
Коммит cf6229f648
1 изменённых файлов: 27 добавлений и 0 удалений

27
azure-pipelines.yml Normal file
Просмотреть файл

@ -0,0 +1,27 @@
trigger:
- master
pool:
name: 'Hosted VS2017' # name of the pool to run this job in
demands:
- msbuild
- visualstudio
- vstest
variables:
solution: '**/*.sln'
buildPlatform: 'x86|x64|ARM'
buildConfiguration: 'Release'
steps:
- task: VSBuild@1
inputs:
platform: 'x64'
solution: '$(solution)'
configuration: '$(buildConfiguration)'
- task: ComponentGovernanceComponentDetection@0
inputs:
scanType: 'LogOnly'
verbosity: 'Verbose'
alertWarningLevel: 'High'