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: startvs.ps1
+19-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,17 @@ Param(
14
14
[Parameter(
15
15
Mandatory=$false,
16
16
HelpMessage="If specified, Roslyn dependencies will be included in the Razor extension when deployed.")]
17
-
[Switch]$includeRoslynDeps
17
+
[Switch]$includeRoslynDeps,
18
+
19
+
[Parameter(
20
+
Mandatory=$false,
21
+
HelpMessage="If specified, bin logs will be enabled for VS. See https://github.com/dotnet/msbuild/blob/main/documentation/wiki/Providing-Binary-Logs.md#capturing-binary-logs-through-visual-studio .")]
22
+
[Switch]$captureBinLogs,
23
+
24
+
[Parameter(
25
+
Mandatory=$false,
26
+
HelpMessage="If captureBinLogs is specified, this determines the output folder for them. Ignored if captureBinLogs is false.")]
0 commit comments