forked from sentry-demos/dotnet-maui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMauiProgram.cs
33 lines (29 loc) · 900 Bytes
/
MauiProgram.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using Microsoft.Extensions.Logging;
namespace DotNetMaui;
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
// This adds Sentry to your Maui application
.UseSentry(options =>
{
// The DSN is the only required option.
options.Dsn = "https://[email protected]/5428537";
options.Debug = true;
// Attach screenshots on errors
options.AttachScreenshot = true;
})
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
});
#if DEBUG
builder.Logging.AddDebug();
#endif
return builder.Build();
}
}