File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-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+ 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)'
You can’t perform that action at this time.
0 commit comments