release/1.0.8-rc3 #43

Merged
notazof merged 98 commits from release/1.0.8-rc3 into main 2026-08-26 22:49:51 +01:00
Showing only changes of commit 50a07102cb - Show all commits

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

Paul Schneider 2026-08-25 21:15:04 +01:00
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
}