We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 660f1b8 + 8dbe164 commit 43df33aCopy full SHA for 43df33a
GenerateAllSolution.ps1
@@ -26,6 +26,9 @@
26
.PARAMETER UseDiagnostics
27
Add extra diagnostic output to running slngen, such as a binlog, etc...
28
29
+.PARAMETER Launch
30
+ Specifies whether to launch the solution after generation. Default is $true.
31
+
32
.EXAMPLE
33
C:\PS> .\GenerateAllSolution -MultiTargets wasdk
34
Build a solution that doesn't contain UWP projects.
@@ -50,7 +53,9 @@ Param (
50
53
51
54
[string[]]$ExcludeComponents,
52
55
- [switch]$UseDiagnostics = $false
56
+ [switch]$UseDiagnostics = $false,
57
58
+ [bool]$Launch = $true
59
)
60
61
if ($MultiTargets.Contains('all')) {
@@ -187,6 +192,7 @@ $arguments = @(
187
192
'--platform'
188
193
$platforms
189
194
$projects
195
+ "--launch $launch"
190
196
191
197
198
&$cmd @arguments
0 commit comments