@@ -58,22 +58,22 @@ git clone https://github.com/sillsdev/liblcm.git Localizations/LCM
5858### Full Build (Recommended)
5959
6060``` powershell
61- # Open VS Developer Command Prompt (x64) or run:
61+ # Open VS Developer Command Prompt or run:
6262# & "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Tools\Launch-VsDevShell.ps1" -Arch amd64
6363
6464# Restore packages
65- msbuild Build/InstallerBuild.proj /t:RestorePackages /p:Configuration=Debug /p:Platform=x64
65+ msbuild Build/InstallerBuild.proj /t:RestorePackages /p:Configuration=Debug
6666
67- # Build base installer (x64 only)
68- msbuild Build/InstallerBuild.proj /t:BuildInstaller /p:Configuration=Release /p:Platform=x64 /p: config=release /m /v:n
67+ # Build base installer
68+ msbuild Build/InstallerBuild.proj /t:BuildInstaller /p:Configuration=Release /p:config=release /m /v:n
6969```
7070
7171### Output Location
7272
7373After successful build, artifacts are produced in one of these locations (bundle outputs are culture-specific under ` en-US/ ` ):
7474
75- - WiX 3 default: ` FLExInstaller/bin/<platform> /<configuration>/ `
76- - WiX 6 opt-in: ` FLExInstaller/wix6/bin/<platform> /<configuration>/ `
75+ - WiX 3 default: ` FLExInstaller/bin/x64 /<configuration>/ `
76+ - WiX 6 opt-in: ` FLExInstaller/wix6/bin/x64 /<configuration>/ `
7777
7878## Building a Patch Installer
7979
@@ -89,10 +89,10 @@ These can be downloaded from GitHub Releases (e.g., `build-1188`).
8989
9090``` powershell
9191# Restore packages
92- msbuild Build/InstallerBuild.proj /t:RestorePackages /p:Configuration=Debug /p:Platform=x64
92+ msbuild Build/InstallerBuild.proj /t:RestorePackages /p:Configuration=Debug
9393
94- # Build patch installer (x64 only)
95- msbuild Build/InstallerBuild.proj /t:BuildPatchInstaller /p:Configuration=Release /p:Platform=x64 /p: config=release /m /v:n
94+ # Build patch installer
95+ msbuild Build/InstallerBuild.proj /t:BuildPatchInstaller /p:Configuration=Release /p:config=release /m /v:n
9696```
9797
9898### Output Location
@@ -157,7 +157,7 @@ Workflows should use **WiX Toolset v6** via `WixToolset.Sdk` restored from NuGet
157157** Cause** : NuGet restore/build tools not fully restored, or missing VS build prerequisites.
158158
159159** Fix** :
160- 1 . Ensure ` msbuild Build/InstallerBuild.proj /t:RestorePackages /p:Configuration=Debug /p:Platform=x64 ` succeeds.
160+ 1 . Ensure ` msbuild Build/InstallerBuild.proj /t:RestorePackages /p:Configuration=Debug ` succeeds.
1611612 . Re-run ` \Build\Agent\Setup-InstallerBuild.ps1 -ValidateOnly ` and resolve any reported issues.
1621622 . Add WiX bin directory to PATH: ` C:\Program Files (x86)\WiX Toolset v3.14\bin `
163163
0 commit comments