Skip to content

Commit a7d5d46

Browse files
committed
Fix head names in gallery build script
1 parent a5b2f7a commit a7d5d46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Build-Toolkit-Gallery.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Specifies the MultiTarget TFM(s) to exclude for building the components. The default value excludes targets that require additional tooling or workloads to build: 'wpf', 'linuxgtk', 'macos', 'ios', and 'android'. Run uno-check to install the required workloads.
1313
1414
.PARAMETER Heads
15-
The heads to include in the build. Default is 'Uwp', 'WinAppSdk', 'Wasm'.
15+
The heads to include in the build. Default is 'Uwp', 'Wasdk', 'Wasm'.
1616
1717
.PARAMETER ExcludeHeads
1818
The heads to exclude from the build. Default is none.
@@ -52,10 +52,10 @@ Param (
5252
[ValidateSet('wasm', 'uwp', 'wasdk', 'wpf', 'linuxgtk', 'macos', 'ios', 'android', 'netstandard')]
5353
[string[]]$ExcludeMultiTargets = @('wpf', 'linuxgtk', 'macos', 'ios', 'android'),
5454

55-
[ValidateSet('all', 'Uwp', 'WinAppSdk', 'Wasm', 'Tests.Uwp', 'Tests.WinAppSdk')]
56-
[string[]]$Heads = @('Uwp', 'WinAppSdk', 'Wasm'),
55+
[ValidateSet('all', 'Uwp', 'Wasdk', 'Wasm', 'Tests.Uwp', 'Tests.Wasdk')]
56+
[string[]]$Heads = @('Uwp', 'Wasdk', 'Wasm'),
5757

58-
[ValidateSet('Uwp', 'WinAppSdk', 'Wasm', 'Tests.Uwp', 'Tests.WinAppSdk')]
58+
[ValidateSet('Uwp', 'Wasdk', 'Wasm', 'Tests.Uwp', 'Tests.Wasdk')]
5959
[string[]]$ExcludeHeads,
6060

6161
[Alias("bl")]
@@ -113,7 +113,7 @@ if ($Components -notcontains 'Converters') {
113113
& $PSScriptRoot\MultiTarget\GenerateAllProjectReferences.ps1 -MultiTarget $MultiTargets -Components $Components
114114

115115
if ($Heads -eq 'all') {
116-
$Heads = @('Uwp', 'WinAppSdk', 'Wasm', 'Tests.Uwp', 'Tests.WinAppSdk')
116+
$Heads = @('Uwp', 'Wasdk', 'Wasm', 'Tests.Uwp', 'Tests.Wasdk')
117117
}
118118

119119
function Invoke-MSBuildWithBinlog {

0 commit comments

Comments
 (0)