@@ -9,7 +9,7 @@ variables:
9
9
solutionUITests : " **/UITests.sln"
10
10
buildPlatform : " x64"
11
11
buildConfiguration : " Debug"
12
- appxPackageDir : ' $(build.artifactStagingDirectory )\AppxPackages\\'
12
+ appxPackageDir : ' $(Build.ArtifactStagingDirectory )\AppxPackages\\'
13
13
14
14
steps :
15
15
- task : NuGetToolInstaller@1
37
37
command : ' publish'
38
38
publishWebProjects : false
39
39
projects : ' $(solutionGallery)'
40
- arguments : ' /p:AppxPackageDir="D:\a\1\a\AppxPackages\\ " /p:platform="$(buildPlatform)" /p:configuration="$(buildConfiguration)" /p:PublishProfile="./WinUIGallery/Properties/PublishProfiles/win-$(buildPlatform).pubxml"'
40
+ arguments : ' /p:AppxPackageDir="$(appxPackageDir) " /p:platform="$(buildPlatform)" /p:configuration="$(buildConfiguration)" /p:PublishProfile="./WinUIGallery/Properties/PublishProfiles/win-$(buildPlatform).pubxml"'
41
41
zipAfterPublish : false
42
42
modifyOutputPath : false
43
43
@@ -55,7 +55,17 @@ steps:
55
55
**\WinUIGalleryUnitTests.build.appxrecipe
56
56
57
57
- task : PowerShell@2
58
- displayName : Install WinUI Gallery Package
58
+ displayName : Uninstall existing WinUI Gallery packages
59
+ inputs :
60
+ targetType : " inline"
61
+ script : |
62
+ Get-AppxPackage Microsoft.WinUI3ControlsGallery* | ForEach-Object { Remove-AppxPackage $_.PackageFullName }
63
+ errorActionPreference : " continue"
64
+ failOnStderr : true
65
+ workingDirectory : " $(System.DefaultWorkingDirectory)"
66
+
67
+ - task : PowerShell@2
68
+ displayName : Install WinUI Gallery package
59
69
inputs :
60
70
targetType : " inline"
61
71
script : |
@@ -96,8 +106,18 @@ steps:
96
106
!**\obj\**
97
107
!**\ref\**
98
108
searchFolder : " $(System.DefaultWorkingDirectory)"
109
+ resultsFolder : " $(Build.ArtifactStagingDirectory)\\ TestResults"
110
+ overrideTestrunParameters : ' -ArtifactStagingDirectory "$(Build.ArtifactStagingDirectory)"'
99
111
100
112
- task : Windows Application Driver@0
101
113
displayName : Stop Windows Application Driver
102
114
inputs :
103
115
OperationType : " Stop"
116
+ condition : always()
117
+
118
+ - task : PublishBuildArtifacts@1
119
+ displayName : " Publish build artifacts"
120
+ inputs :
121
+ PathToPublish : " $(Build.ArtifactStagingDirectory)"
122
+ ArtifactName : " drop"
123
+ condition : always()
0 commit comments