Skip to content

Commit

Permalink
fix: Fix support of UWP vs. WinUI
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Nov 2, 2023
1 parent 8fd173e commit cf74f0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TestApp/shared/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ private static void InitializeLogging()
builder.AddFilter("Uno.UI.RuntimeTests.HotReload", LogLevel.Debug);

// Hot reload testing
builder.AddFilter("Uno.UI.RemoteControl", LogLevel.Debug);
builder.AddFilter("Uno.UI.RemoteControl", LogLevel.Trace);
builder.AddFilter("Uno.UI.RuntimeTests.Internal.Helpers", LogLevel.Debug); // DevServer and SecondaryApp
builder.AddFilter("Uno.UI.RuntimeTests.HotReloadHelper", LogLevel.Trace); // Helper used by tests in secondary app instances (non debuggable)
builder.AddFilter("Uno.UI.RuntimeTests.UnitTestsControl", LogLevel.Information); // Dumps the runner status
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@
using System.Threading.Tasks;
using System.Threading;
using Windows.UI.Core;
using Windows.UI.Xaml;

#if HAS_UNO_WINUI || WINDOWS_WINUI
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
#else
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
#endif

namespace Uno.UI.RuntimeTests.Engine;

Expand Down

0 comments on commit cf74f0b

Please sign in to comment.