.NET Standard
Overview
BugSplatDotNetStandard lets you capture and track exceptions on all .NET Standard 2.0 platforms. This includes:
.NET 5+
.NET Framework
Maui
Mono
Unity
๐ Installation
Install the BugSplatDotNetStandard NuGet package.
Install-Package BugSplatDotNetStandardโ๏ธ Configuration
After you've installed the NuGet package, add a using statement for the BugSplatDotNetStandard namespace.
using BugSplatDotNetStandard;Create a new instance of BugSplat, providing it with your database, application, and version. It's best to do this at the entry point of your application. Several defaults can be provided to BugSplat. You can provide default values for various fields, including description, email, key, notes, user, file attachments, and attributes.
The Post method can be used to send Exception objects to BugSplat.
Additionally, Post can be used to upload minidumps to BugSplat.
The default values for description, email, key, and user can be overridden in the call to Post. Additional attachments can also be specified in the call to the Post method. If BugSplat can't read an attachment (e.g., the file is in use), it will be skipped. Please note that the total size of the Post body and all attachments is limited to 100MB by default.
โ
Verification
Once you've generated an error, navigate to the BugSplat Dashboard and ensure you have the correct database selected in the dropdown menu. You should see a new crash report under the Recent Crashes section:
Click the link in the ID column to see details about the crash:


Thatโs it! Your application is now configured to post crash reports to BugSplat.
๐ท Support
If you have any additional questions, please email our support team, join us on Discord, or reach out via the chat in our web application.
Last updated
Was this helpful?
