Skip to content

Commit 09bb814

Browse files
authored
Fix syntax of the build script
1 parent 3150b9d commit 09bb814

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/scripts/Build-AppSolution.ps1

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
param(
55
[string]$ReleaseBranch = "Debug", # This has to correspond with one of the AppEnvironment enum values
6-
[string]$SolutionPath = "Files.slnx"
7-
[string]$StartupProjectPath = ""
8-
[string]$Platform = "x64"
9-
[string]$Configuration = "Debug"
10-
[string]$AppxBundlePlatforms = "x64|arm64"
11-
[string]$AppxPackageDir = ""
12-
[string]$AppInstallerUrl = "" # Sideload only
6+
[string]$SolutionPath = "Files.slnx",
7+
[string]$StartupProjectPath = "",
8+
[string]$Platform = "x64",
9+
[string]$Configuration = "Debug",
10+
[string]$AppxBundlePlatforms = "x64|arm64",
11+
[string]$AppxPackageDir = "",
12+
[string]$AppInstallerUrl = "", # Sideload only
1313
[string]$AppxPackageCertKeyFile = "" # Debug only
1414
)
1515

0 commit comments

Comments
 (0)