BugSplatUwp 0.0.0.4

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package BugSplatUwp --version 0.0.0.4
NuGet\Install-Package BugSplatUwp -Version 0.0.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BugSplatUwp" Version="0.0.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BugSplatUwp --version 0.0.0.4
#r "nuget: BugSplatUwp, 0.0.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BugSplatUwp as a Cake Addin
#addin nuget:?package=BugSplatUwp&version=0.0.0.4

// Install BugSplatUwp as a Cake Tool
#tool nuget:?package=BugSplatUwp&version=0.0.0.4

BugSplat

Introduction

BugSplatUWP allows you to capture and track exceptions in your Universal Windows Platform application. Before continuing with the tutorial please make sure you have completed the following checklist:

Configuration

After you've installed the BugSplatUWP NuGet package add a using statement for the BugSplatUWP namespace.

using BugSplatUwp;

Create a new instance of BugSplat providing it your application's name, version and the corresponding BugSplat database:

 var bugsplat = new BugSplat(appName, appVersion, database);

We recommend you allow your application to exit after an unhandled exception. If you would like to keep your application running after an unhandled exception set the property SetExceptionHandled to true.

bugsplat.SetExceptionHandled = true;

Add BugSplat's OnUnhandledException event handler to your application's UnhandledException event. It's best to do this at the entry point of your application which is usually App.xaml.cs.

Application.Current.UnhandledException += bugsplat.OnUnhandledException;

Throw a new Exception outside of a try catch block.

throw new Exception("BugSplat rocks!");

Navigate to the All Crashes page in BugSplat and you should see a new crash report for the application you just configured. Click the link in the Id column to see details about your crash on the Individual Crash page:

AllCrash IndividualCrash

That’s it! Your application is now configured to post crash reports to BugSplat.

Product Compatible and additional computed target framework versions.
Universal Windows Platform uap10.0.10240 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

Initial support.