Skip to content

Commit

Permalink
Build to x86
Browse files Browse the repository at this point in the history
This fixes some architecture build warnings
  • Loading branch information
josephmyers committed Aug 29, 2024
1 parent 28b7262 commit a606955
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Build
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So gitversion can set environment vars during the build
run: msbuild src/WeSay.sln /p:Configuration=Release
run: msbuild src/WeSay.sln /p:Configuration=Release /p:Platform=x86

- name: Build Installer
run: msbuild build/Installer.targets /p:Configuration=Release /p:Platform=x86 /t:BuildRelease
Expand Down
2 changes: 1 addition & 1 deletion src/LiftWordList2Json/LiftWordList2Json.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\output\Release</OutputPath>
Expand Down

0 comments on commit a606955

Please sign in to comment.