Skip to content

Commit

Permalink
Merge pull request #373 from nventive/dev/lapr/fix-M1-iOS-Simulator
Browse files Browse the repository at this point in the history
fix: M1 mac crash on simulator
  • Loading branch information
LProulx86 authored Oct 31, 2023
2 parents e69d66e + 207b671 commit c37ccd0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Prefix your items with `(Template)` if the change is about the template and not
- Add `Microsoft.VisualStudio.Threading.Analyzers` to check for async void usages and fix async void usages.
- Enable `TreatWarningsAsErrors` for the Access, Business, and Presentation projects.
- Update analyzers packages and severity of rules.
- Fix crash from ARM base mac on net7.0-iOS. Add `ForceSimulatorX64ArchitectureInIDE` property to mobile head.

## 2.0.X
- Renamed the classes providing data to use the `Repository` suffix instead of `Endpoint` or `Service`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@
<!-- See https://github.com/xamarin/xamarin-macios/issues/14812 for more details. -->
<MtouchExtraArgs>$(MtouchExtraArgs) --marshal-objectivec-exceptions:disable</MtouchExtraArgs>
<CodesignEntitlements>iOS\Entitlements.plist</CodesignEntitlements>
<!-- Workaround for clang++ error on iOS simulator on ARM base macOS system. See "https://github.com/dotnet/maui/issues/16778#issuecomment-1683343255" for more detail. -->
<ForceSimulatorX64ArchitectureInIDE>true</ForceSimulatorX64ArchitectureInIDE>
</PropertyGroup>
<Choose>
<When Condition="'$(Configuration)'=='Debug'">
Expand Down

0 comments on commit c37ccd0

Please sign in to comment.