Skip to content
LucasZF edited this page Nov 19, 2020 · 19 revisions

ContribSentry V3.1.7

Unnoficial addons for Sentry-dotnet.

Status [BETA]

Nuget:

Main SDK: https://www.nuget.org/packages/ContribSentry/3.1.7

AspNetCore Integration: https://www.nuget.org/packages/ContribSentry.AspNetCore/

Current Addons

Configuration

To initialize the addon you'll need to add the ContribSentrySdkIntegration to your SentryOptions integration.

var option = new SentryOptions();
option.AddIntegration(new ContribSentrySdkIntegration());            
SentrySdk.Init(option);

Debug

If you need additional debug information, ContribSentry will respect the Debug flag in SentrySDK so if you set it to True you'll also receive debug information from ContribSentrySdk.

Xamarin

For transactions to be registered you may have to add a linker rule for your Android/IOS project

  <assembly fullname="ContribSentry">
	  <type fullname="*" preserve="all"/>
  </assembly>	
Clone this wiki locally