From 5fbdaab2d0df1190b940c1ef6f7b7dc07b6c01b0 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 12:33:55 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20resolve=20build=20errors=20=E2=80=94=20A?= =?UTF-8?q?ppSettings,=20GlobalUsings,=20namespace=20aliases?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- windows/GlobalUsings.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 windows/GlobalUsings.cs diff --git a/windows/GlobalUsings.cs b/windows/GlobalUsings.cs new file mode 100644 index 0000000..e181f0c --- /dev/null +++ b/windows/GlobalUsings.cs @@ -0,0 +1,9 @@ +// Global aliases to resolve ambiguities between System.Windows.* and System.Drawing.* +global using Application = System.Windows.Application; +global using Brushes = System.Windows.Media.Brushes; +global using Color = System.Windows.Media.Color; +global using FlowDirection = System.Windows.FlowDirection; +global using FontFamily = System.Windows.Media.FontFamily; +global using Orientation = System.Windows.Controls.Orientation; +global using ProgressBar = System.Windows.Controls.ProgressBar; +global using Size = System.Windows.Size;