Enhanced experience for Legacy UWP Projects.
Integrations | Downloads | NuGet Stable | NuGet Preview |
---|---|---|---|
ContribSentry.UWP |
All you need to do is to include UWPSentryIntegration on SentryOptions
sealed partial class App : Application
{
public App()
{
InitializeComponent();
//You must initialize after the InitializeComponent();
SentrySdk.Init(o =>
{
o.Dsn = new Dsn("your DSN");
o.AddIntegration(new UwpSentryIntegration());
});
...
}
...
And that's all that you need to setup :D
V1.0.1 is not compatible with Sentry SDK 3.0.0, there'll be a specific release to support 3.0.0