Do not fail at attaching developer tools

This commit is contained in:
Paul Schneider 2026-08-25 21:15:04 +01:00
commit d78e3ab860

View file

@ -33,7 +33,14 @@ public partial class App : Application
{
AvaloniaXamlLoader.Load(this);
#if DEBUG
try {
this.AttachDeveloperTools();
}
catch (Exception ex)
{
Console.Error.WriteLine(
$"Could not attache developer tools : {ex.Message}");
}
#endif
}