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.
1 parent 9f2cd67 commit 078ac72Copy full SHA for 078ac72
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')) {
@@ -183,6 +188,7 @@ $arguments = @(
183
188
'--platform'
184
189
$platforms
185
190
$projects
191
+ "--launch $launch"
186
192
187
193
194
&$cmd @arguments
0 commit comments