Fix build on Apple Silicon by switching PlatformTarget from x64 to AnyCPU

This commit is contained in:
Mateusz Włodarczyk
2026-06-26 19:10:58 +02:00
parent 34758bb21d
commit 92c698b890

View File

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