We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a26174 commit 2bba305Copy full SHA for 2bba305
1 file changed
azure-pipelines.yml
@@ -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: 'VS2017-Win2016'
11
12
+variables:
13
+ solution: '**/*.sln'
14
+ buildPlatform: 'Any CPU'
15
+ buildConfiguration: 'Release'
16
17
+steps:
18
+- task: NuGetToolInstaller@0
19
20
+- task: NuGetCommand@2
21
+ inputs:
22
+ restoreSolution: '$(solution)'
23
24
+- task: VSBuild@1
25
26
+ solution: '$(solution)'
27
+ platform: '$(buildPlatform)'
28
+ configuration: '$(buildConfiguration)'
29
30
+- task: VSTest@2
31
32
33
0 commit comments