File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+ - 19.2.6+
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)'
You can’t perform that action at this time.
0 commit comments