File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-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+ - master
8+ - dev
9+
10+ pool :
11+ vmImage : ' vs2017-win2016' # 'windows-latest'
12+
13+ variables :
14+ solution : ' **/*.sln'
15+ buildPlatform : ' Any CPU'
16+ buildConfiguration : ' Release'
17+
18+ steps :
19+ - task : NuGetToolInstaller@1
20+
21+ - task : NuGetCommand@2
22+ inputs :
23+ restoreSolution : ' $(solution)'
24+
25+ - task : VSBuild@1
26+ inputs :
27+ solution : ' $(solution)'
28+ platform : ' $(buildPlatform)'
29+ configuration : ' $(buildConfiguration)'
30+
31+ - task : VSTest@2
32+ inputs :
33+ platform : ' $(buildPlatform)'
34+ configuration : ' $(buildConfiguration)'
You can’t perform that action at this time.
0 commit comments