Skip to content

Commit

Permalink
Add the option for 32 apps in the sample
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Feb 10, 2022
1 parent 98d43f8 commit 7303667
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<ApplicationId>com.microsoft.maui.sample</ApplicationId>
<ApplicationVersion>1</ApplicationVersion>
<_FastDeploymentDiagnosticLogging>True</_FastDeploymentDiagnosticLogging>
<Platforms>AnyCPU;x86</Platforms>
</PropertyGroup>

<ItemGroup Condition=" $(TargetFramework.Contains('-windows')) ">
Expand Down Expand Up @@ -42,7 +43,8 @@

<PropertyGroup Condition="$(TargetFramework.Contains('-windows'))">
<OutputType>WinExe</OutputType>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(Platform)' == 'x86'">win10-x86</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(Platform)' != 'x86'">win10-x64</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 7303667

Please sign in to comment.