Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.47 KB

README.md

File metadata and controls

41 lines (32 loc) · 1.47 KB


ContribSentry.UWP

Enhanced experience for Legacy UWP Projects.

Integrations Downloads NuGet Stable NuGet Preview
ContribSentry.UWP Downloads NuGet NuGet

How to use

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

NOTE

V1.0.1 is not compatible with Sentry SDK 3.0.0, there'll be a specific release to support 3.0.0