File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 5555 artifactType : container
5656 artifactName : Package
5757
58+ - job : Windows_Tests
59+ pool :
60+ vmImage : windows-2019
61+
62+ variables :
63+ BuildConfiguration : Release
64+ TMPDIR : $(Build.ArtifactStagingDirectory)
65+ DisableNerdBank : true
66+ PackageVersion : 42.42.42
67+
68+ steps :
69+ - powershell : |
70+ mkdir $(Build.ArtifactStagingDirectory)\Packages -Force
71+ displayName: Create packages temp folder
72+
73+ - task : DotNetCoreCLI@2
74+ inputs :
75+ command : pack
76+ packagesToPack : Source/MSBuild.Sdk.Extras/MSBuild.Sdk.Extras.csproj
77+ configuration : $(BuildConfiguration)
78+ packDirectory : $(Build.ArtifactStagingDirectory)\Packages
79+ verbosityPack : Minimal
80+ displayName : Build Package
81+
82+ - task : MSBuild@1
83+ inputs :
84+ solution : ' $(build.sourcesdirectory)\TestProjects\Windows-Desktop-C#\Windows-Desktop.sln'
85+ msbuildArguments : /r /p:SignManifests=false
86+ configution : $(BuildConfiguration)
87+ displayName : MSBuild Test Projects 1
88+
89+ - task : MSBuild@1
90+ inputs :
91+ solution : ' $(build.sourcesdirectory)\TestProjects\Linux-C#\netstd2Library\netstd2Library.csproj'
92+ msbuildArguments : /r
93+ configution : $(BuildConfiguration)
94+ displayName : MSBuild Test Projects 2
5895
5996- job : Linux
6097 container : nventive/wasm-build:1.4.1
You can’t perform that action at this time.
0 commit comments