Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions src/Sentry/Sentry.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

<ItemGroup Condition="'$(SolutionName)' == 'Sentry.Unity'">
<InternalsVisibleTo Include="Sentry.Unity" />
<InternalsVisibleTo Include="Sentry.Unity.Tests" />
</ItemGroup>

<!-- Platform-specific props included here -->
Expand Down
7 changes: 0 additions & 7 deletions src/Sentry/SentrySdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,6 @@ internal static IDisposable UseHub(IHub hub)
return new DisposeHandle(hub);
}

/// <summary>
/// Allows to set the trace
/// </summary>
internal static void SetTrace(SentryId traceId, SpanId parentSpanId) =>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: was added in #4026

CurrentHub.ConfigureScope(scope =>
scope.SetPropagationContext(new SentryPropagationContext(traceId, parentSpanId)));

/// <summary>
/// Flushes the queue of captured events until the timeout set in <see cref="SentryOptions.FlushTimeout"/>
/// is reached.
Expand Down
Loading