We're having a problem with our .net maui app – Sentry isn't sending the release tag value correctly – it's always null. This has been happening for a while now. It was working fine a month ago.
We set it like this:
builder.UseSentry(options =>
{
// The DSN is the only required setting.
options.Dsn = "XXXXXXXXXXXXXXX";
options.Release = "3.0.4";
// Use debug mode if you want to see what the SDK is doing.
// Debug messages are written to stdout with Console.Writeline,
// and are viewable in your IDE's debug console or with 'adb logcat', etc.
// This option is not recommended when deploying your application.
options.Debug = false;
// Set TracesSampleRate to 1.0 to capture 100% of transactions for tracing.
// We recommend adjusting this value in production.
options.TracesSampleRate = 1.0;
});
In json file in Sentry is null now:
"release":null