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
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageVersion Include="MSTest" Version="4.0.2"/>
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0"/>
<PackageVersion Include="prometheus-net.AspNetCore" Version="8.2.1"/>
<PackageVersion Include="Sentry.AspNetCore" Version="5.16.2"/>
<PackageVersion Include="Sentry.AspNetCore" Version="6.0.0"/>
<PackageVersion Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="3.119.1"/>
<PackageVersion Include="StackExchange.Redis" Version="2.10.1"/>
<PackageVersion Include="Telegram.Bot" Version="22.7.6"/>
Expand Down
17 changes: 9 additions & 8 deletions lib/Quizitor.Logging/WebHostBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,7 @@ public SentryId CaptureEvent(SentryEvent evt, Scope? scope = null, SentryHint? h
throw new NotImplementedException();
}

public void CaptureFeedback(SentryFeedback feedback, Scope? scope = null, SentryHint? hint = null)
{
throw new NotImplementedException();
}

[Obsolete("Obsolete")]
public void CaptureUserFeedback(UserFeedback userFeedback)
public SentryId CaptureFeedback(SentryFeedback feedback, out CaptureFeedbackResult result, Scope? scope = null, SentryHint? hint = null)
{
throw new NotImplementedException();
}
Expand Down Expand Up @@ -153,6 +147,11 @@ public BaggageHeader GetBaggage()
throw new NotImplementedException();
}

public W3CTraceparentHeader GetTraceparentHeader()
{
throw new NotImplementedException();
}

public TransactionContext ContinueTrace(string? traceHeader, string? baggageHeader, string? name = null, string? operation = null)
{
throw new NotImplementedException();
Expand Down Expand Up @@ -194,7 +193,7 @@ public SentryId CaptureEvent(SentryEvent evt, SentryHint? hint, Action<Scope> co
throw new NotImplementedException();
}

public void CaptureFeedback(SentryFeedback feedback, Action<Scope> configureScope, SentryHint? hint = null)
public SentryId CaptureFeedback(SentryFeedback feedback, out CaptureFeedbackResult result, Action<Scope> configureScope, SentryHint? hint = null)
{
throw new NotImplementedException();
}
Expand All @@ -204,5 +203,7 @@ public void CaptureFeedback(SentryFeedback feedback, Action<Scope> configureScop

[Experimental("SENTRY0001")]
public SentryStructuredLogger Logger => throw new NotImplementedException();

public bool IsSessionActive => false;
}
}