diff --git a/src/Sentry/Sentry.csproj b/src/Sentry/Sentry.csproj index 49632a39aa..a1b36eec9b 100644 --- a/src/Sentry/Sentry.csproj +++ b/src/Sentry/Sentry.csproj @@ -22,6 +22,7 @@ + diff --git a/src/Sentry/SentrySdk.cs b/src/Sentry/SentrySdk.cs index 8c5efbd967..401a0fa6f0 100644 --- a/src/Sentry/SentrySdk.cs +++ b/src/Sentry/SentrySdk.cs @@ -209,13 +209,6 @@ internal static IDisposable UseHub(IHub hub) return new DisposeHandle(hub); } - /// - /// Allows to set the trace - /// - internal static void SetTrace(SentryId traceId, SpanId parentSpanId) => - CurrentHub.ConfigureScope(scope => - scope.SetPropagationContext(new SentryPropagationContext(traceId, parentSpanId))); - /// /// Flushes the queue of captured events until the timeout set in /// is reached.