-
-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Adjust ASP.NET Core installation steps for .NET 6 #1381
Comments
Is there a new doc for .net 6 ? I don't see how to configure sentry with this version ... Where to call UseSentry in Program.cs ? [edit]: ok it may be that : builder.WebHost.UseSentry(); but for performance log I'm not sure as it is mention in this ticket... |
Relates to: #1453 |
builder.WebHost.UseSentry(); var app = builder.Build(); app.UseSentryTracing(); |
current plan is to update https://github.com/getsentry/sentry-docs/blob/master/src/wizard/dotnet/aspnetcore.md to target the current stable. ie net6 |
Parts of this have been addressed in #2726 and our documentation regarding a limitation when calling |
Migration docs from .NET 5 to 6 state:
Our current docs point out users must add our
UseSentryTracing
middleware afterUseRouting
. This can be confusing to users when they are no longer there.Install steps must account for framework version: https://github.com/getsentry/sentry-docs/blob/master/src/wizard/dotnet/aspnetcore.md
The text was updated successfully, but these errors were encountered: