diff --git a/CHANGELOG.md b/CHANGELOG.md index 33cb492..0907ad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,6 +75,10 @@ ``` +### Dependencies + +- Bump Sentry.NET 4.5.0 ([#154](https://github.com/getsentry/sentry-xamarin/pull/154)) + ## 2.0.0 ### Sentry Self-hosted Compatibility diff --git a/Samples/Sample.Xamarin.Droid/Sample.Xamarin.Droid.csproj b/Samples/Sample.Xamarin.Droid/Sample.Xamarin.Droid.csproj index 33523bb..d6a86cf 100644 --- a/Samples/Sample.Xamarin.Droid/Sample.Xamarin.Droid.csproj +++ b/Samples/Sample.Xamarin.Droid/Sample.Xamarin.Droid.csproj @@ -61,6 +61,7 @@ true --wait + false diff --git a/Samples/Sample.Xamarin.iOS/Sample.Xamarin.iOS.csproj b/Samples/Sample.Xamarin.iOS/Sample.Xamarin.iOS.csproj index 2a0531d..3988d70 100644 --- a/Samples/Sample.Xamarin.iOS/Sample.Xamarin.iOS.csproj +++ b/Samples/Sample.Xamarin.iOS/Sample.Xamarin.iOS.csproj @@ -42,6 +42,7 @@ true --wait + false none true bin\iPhoneSimulator\Release @@ -80,6 +81,8 @@ true true + --wait + false none true bin\iPhone\Release diff --git a/Src/Sentry.Xamarin/Sentry.Xamarin.csproj b/Src/Sentry.Xamarin/Sentry.Xamarin.csproj index bfcfc46..0340daa 100644 --- a/Src/Sentry.Xamarin/Sentry.Xamarin.csproj +++ b/Src/Sentry.Xamarin/Sentry.Xamarin.csproj @@ -46,13 +46,13 @@ - + - + @@ -70,7 +70,7 @@ - + diff --git a/Tests/Sentry.Xamarin.Forms.Testing/Mock/MockHub.cs b/Tests/Sentry.Xamarin.Forms.Testing/Mock/MockHub.cs index 57170d8..b19b37e 100644 --- a/Tests/Sentry.Xamarin.Forms.Testing/Mock/MockHub.cs +++ b/Tests/Sentry.Xamarin.Forms.Testing/Mock/MockHub.cs @@ -96,5 +96,7 @@ public SentryId CaptureEvent(SentryEvent evt, Scope scope = null, SentryHint hin public void CaptureTransaction(SentryTransaction transaction, Scope scope, SentryHint hint) { } public bool CaptureEnvelope(Envelope envelope) => true; + + public SentryId CaptureCheckIn(string monitorSlug, CheckInStatus status, SentryId? sentryId = null, TimeSpan? duration = null, Scope scope = null) => SentryId.Empty; } }