Merge pull request #2 from xwizard/fix/macos-arm64-platform-target

Fix build on Apple Silicon by switching PlatformTarget from x64 to AnyCPU
This commit is contained in:
2026-06-26 22:11:52 +02:00
committed by GitHub

View File

@@ -15,10 +15,10 @@
<Company>eu07.pl</Company>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>