Skip to content

Commit 88084e8

Browse files
authored
Merge pull request #143 from saucepleez/master
back merge into DEV
2 parents f6dce5e + 38af575 commit 88084e8

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

azure-pipelines.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# .NET Desktop
2+
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
3+
# Add steps that publish symbols, save build artifacts, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'windows-latest'
11+
12+
variables:
13+
solution: '**/*.sln'
14+
buildPlatform: 'Any CPU'
15+
buildConfiguration: 'Release'
16+
17+
steps:
18+
- task: NuGetToolInstaller@1
19+
20+
- task: NuGetCommand@2
21+
inputs:
22+
restoreSolution: '$(solution)'
23+
24+
- task: VSBuild@1
25+
inputs:
26+
solution: '$(solution)'
27+
platform: '$(buildPlatform)'
28+
configuration: '$(buildConfiguration)'
29+
30+
- task: VSTest@2
31+
inputs:
32+
platform: '$(buildPlatform)'
33+
configuration: '$(buildConfiguration)'

0 commit comments

Comments
 (0)