Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
bump to xcode 16
  • Loading branch information
bitsandfoxes committed Sep 27, 2024
commit ea57a7a3bf77c2d7df8d4b1138ca936936f6823a
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- "**.md"

env:
XCODE_VERSION: 15.4
XCODE_VERSION: 16.0

jobs:
build-sentry-native:
Expand Down
5 changes: 5 additions & 0 deletions samples/Sentry.Samples.Ios/Sentry.Samples.Ios.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<PublishAot>true</PublishAot>
</PropertyGroup>

<PropertyGroup>
<Optimize>false</Optimize>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>

<PropertyGroup>
<SentryOrg>sentry-sdks</SentryOrg>
<SentryProject>sentry-dotnet</SentryProject>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<SelfContained>true</SelfContained>
</PropertyGroup>

<PropertyGroup>
<Optimize>false</Optimize>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>

<PropertyGroup>
<SentryOrg>sentry-sdks</SentryOrg>
<SentryProject>sentry-dotnet</SentryProject>
Expand Down
5 changes: 5 additions & 0 deletions samples/Sentry.Samples.MacOS/Sentry.Samples.MacOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<RuntimeIdentifier>osx-arm64</RuntimeIdentifier>
</PropertyGroup>

<PropertyGroup>
<Optimize>false</Optimize>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>

<!--
For this demo app, let's upload sources and symbols to Sentry on every build, regardless of configuration.
In a real app, you probably only want to do this on Release builds.
Expand Down
5 changes: 5 additions & 0 deletions samples/Sentry.Samples.Maui/Sentry.Samples.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
<DefineConstants>$(DefineConstants);DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION</DefineConstants>
</PropertyGroup>

<PropertyGroup>
<Optimize>false</Optimize>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>

<PropertyGroup>
<SentryOrg>sentry-sdks</SentryOrg>
<SentryProject>sentry-dotnet</SentryProject>
Expand Down