29 lines
570 B
YAML
29 lines
570 B
YAML
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
# Licensed under the MIT License.
|
||
|
|
||
|
trigger:
|
||
|
- master
|
||
|
|
||
|
pool:
|
||
|
vmImage: 'windows-2019'
|
||
|
|
||
|
variables:
|
||
|
solution: '**/*.sln'
|
||
|
|
||
|
steps:
|
||
|
- task: NuGetToolInstaller@0
|
||
|
|
||
|
# NuGet Restore Task
|
||
|
- task: 333b11bd-d341-40d9-afcf-b32d5ce6f23b@2
|
||
|
inputs:
|
||
|
restoreSolution: '$(solution)'
|
||
|
|
||
|
# The build output exceeds the maximum size of build machine.
|
||
|
# Temporarily disable the auto build check until we figure out a way to prune the build results.
|
||
|
#- task: VSBuild@1
|
||
|
# inputs:
|
||
|
# solution: '$(solution)'
|
||
|
|
||
|
- task: VSTest@2
|
||
|
|