File tree Expand file tree Collapse file tree 2 files changed +45
-21
lines changed
Expand file tree Collapse file tree 2 files changed +45
-21
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ jobs :
2+ - job : Windows
3+ displayName : Windows
4+ continueOnError : true
5+ strategy :
6+ matrix :
7+ Debug :
8+ buildConfiguration : " Debug"
9+ Release :
10+ buildConfiguration : " Release"
11+ pool :
12+ vmImage : ' windows-2019'
13+ steps :
14+ - script : dotnet msbuild build.proj /p:Configuration=$(buildConfiguration)
15+ displayName : ' Run Build'
16+
17+ - job : macOS
18+ displayName : macOS
19+ continueOnError : true
20+ strategy :
21+ matrix :
22+ Debug :
23+ buildConfiguration : " Debug"
24+ Release :
25+ buildConfiguration : " Release"
26+ pool :
27+ vmImage : ' macOS-10.14'
28+ steps :
29+ - script : dotnet msbuild build.proj /p:Configuration=$(buildConfiguration)
30+ displayName : ' Run Build'
31+
32+ - job : Linux
33+ displayName : Linux
34+ continueOnError : true
35+ strategy :
36+ matrix :
37+ Debug :
38+ buildConfiguration : " Debug"
39+ Release :
40+ buildConfiguration : " Release"
41+ pool :
42+ vmImage : ' ubuntu-16.04'
43+ steps :
44+ - script : dotnet msbuild build.proj /p:Configuration=$(buildConfiguration)
45+ displayName : ' Run Build'
You can’t perform that action at this time.
0 commit comments