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.
dotnet
1 parent a47d170 commit 506e815Copy full SHA for 506e815
common/GenerateAllSolution.ps1
@@ -84,14 +84,16 @@ if ($IncludeHeads -ne 'uwp')
84
85
if ($UseDiagnostics.IsPresent)
86
{
87
+ $sdkoptions = " -d"
88
$diagnostics = '-bl:slngen.binlog --consolelogger:"ShowEventId;Summary;Verbosity=Detailed" --filelogger:"LogFile=slngen.log;Append;Verbosity=Diagnostic;Encoding=UTF-8" '
89
}
90
else
91
92
+ $sdkoptions = ""
93
$diagnostics = ""
94
95
-$cmd = "dotnet slngen -o $generatedSolutionFilePath $slngenConfig $diagnostics--platform $platforms $($projects -Join ' ')"
96
+$cmd = "dotnet$sdkoptions slngen -o $generatedSolutionFilePath $slngenConfig $diagnostics--platform $platforms $($projects -Join ' ')"
97
98
Write-Output "Running Command: $cmd"
99
0 commit comments