Do not fail at attaching developer tools
Some checks failed
Dotnet build and test / build (pull_request) Failing after 10m48s

This commit is contained in:
Paul Schneider 2026-08-25 21:15:04 +01:00
commit 50a07102cb
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

View file

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