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 0f99fe5 commit acdf690Copy full SHA for acdf690
GenerateSingleSolution.ps1
@@ -74,6 +74,9 @@ if ($null -eq $componentPath -or $componentPath -eq '')
74
$componentPath = $pwd
75
}
76
77
+# Remove trailing slash
78
+$componentPath = $componentPath.TrimEnd('\').TrimEnd('/')
79
+
80
# Component check
81
# -----------------
82
@@ -163,7 +166,7 @@ $projects = [System.Collections.ArrayList]::new()
163
166
# Install slgnen
164
167
dotnet tool restore
165
168
-$generatedSolutionFilePath = "$componentPath/$componentName.sln"
169
+$generatedSolutionFilePath = "$componentPath\$componentName.sln"
170
$platforms = '"Any CPU;x64;x86;ARM64"'
171
$slngenConfig = "--folders true --collapsefolders true --ignoreMainProject"
172
0 commit comments