Skip to content

Commit 0c60e2e

Browse files
committed
Set up CI with Azure Pipelines
1 parent 5201b42 commit 0c60e2e

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

azure-pipelines.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
pool:
7+
vmImage: 'VS2017-Win2016'
8+
9+
variables:
10+
solution: '**/source/*.sln'
11+
buildPlatform: 'Any CPU'
12+
buildConfiguration: 'Release'
13+
14+
steps:
15+
- task: NuGetToolInstaller@0
16+
17+
- task: NuGetCommand@2
18+
inputs:
19+
restoreSolution: '$(solution)'
20+
21+
- task: VSBuild@1
22+
inputs:
23+
solution: '$(solution)'
24+
platform: '$(buildPlatform)'
25+
configuration: '$(buildConfiguration)'
26+
27+
- task: VSTest@2
28+
inputs:
29+
platform: '$(buildPlatform)'
30+
configuration: '$(buildConfiguration)'

0 commit comments

Comments
 (0)