Skip to content

Commit

Permalink
HwndHost Example - Disable arm64
Browse files Browse the repository at this point in the history
Example will be removed shortly, so it doesn't matter too much now.
It will be moved to MinimalExample and the Wpf Example expanded
  • Loading branch information
amaitland committed Dec 4, 2024
1 parent d66c637 commit d605d6e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ApplicationManifest>app.manifest</ApplicationManifest>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Platforms>x86;x64;arm64</Platforms>
<!-- Builds failing for arm64 on appveyor for some reason-->
<!--<Platforms>x86;x64;arm64</Platforms>-->
<Platforms>x86;x64</Platforms>
<!-- Explicitly set the PlatformTarget for arm64, see: https://github.com/dotnet/sdk/issues/15434 -->
<PlatformTarget Condition="'$(Platform)' == 'arm64'">arm64</PlatformTarget>
<StartupObject>CefSharp.Wpf.HwndHost.Example.App</StartupObject>
Expand Down

0 comments on commit d605d6e

Please sign in to comment.