You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Build-Toolkit-Gallery.ps1
+12-7Lines changed: 12 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
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.
13
13
14
14
.PARAMETERHeads
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'.
16
16
17
17
.PARAMETERExcludeHeads
18
18
The heads to exclude from the build. Default is none.
Copy file name to clipboardExpand all lines: GenerateAllSolution.ps1
+89-23Lines changed: 89 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -1,35 +1,73 @@
1
1
<#
2
2
.SYNOPSIS
3
3
Generates the solution file comprising of platform heads for samples, individual component projects, and tests.
4
+
4
5
.DESCRIPTION
5
6
Used mostly for CI building of everything and testing end-to-end scenarios involving the full
6
7
sample app experience.
7
8
8
9
Otherwise it is recommended to focus on an individual component's solution instead.
9
-
.PARAMETERIncludeHeads
10
-
List of TFM based projects to include. This can be 'all', 'uwp', or 'winappsdk'.
11
10
12
-
Defaults to 'all' for local-use.
11
+
.PARAMETERMultiTargets
12
+
Specifies the MultiTarget TFM(s) to include for building the components. The default value is 'all'.
13
+
14
+
.PARAMETERExcludeMultiTargets
15
+
Specifies the MultiTarget TFM(s) to exclude for building the components. The default value excludes targets that require additional tooling or workloads to build. Run uno-check to install the required workloads.
16
+
17
+
.PARAMETERComponents
18
+
The names of the components to generate project and solution references for. Defaults to all components.
19
+
20
+
.PARAMETERExcludeComponents
21
+
The names of the components to exclude when generating solution and project references. Defaults to none.
22
+
23
+
.PARAMETERWinUIMajorVersion
24
+
Specifies the WinUI major version to use when building an Uno head. Also decides the package id and dependency variant. The default value is '2'.
25
+
13
26
.PARAMETERUseDiagnostics
14
27
Add extra diagnostic output to running slngen, such as a binlog, etc...
0 commit comments