From 283e312e81191075738f735730e35558b1fa8ebb Mon Sep 17 00:00:00 2001 From: David Date: Tue, 10 Oct 2023 12:01:12 -0400 Subject: [PATCH] chore: Update uno and upgrade sample app to net7.0 --- src/Directory.Build.props | 1 + src/TestApp/Directory.Build.props | 8 ++++ .../Uno.UI.RuntimeTests.Engine.Mobile.csproj | 32 ++++++++-------- .../Program.cs | 1 + ...Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj | 14 ++++--- ...Tests.Engine.Skia.Linux.FrameBuffer.csproj | 7 ++-- .../App.xaml | 12 +++--- .../App.xaml.cs | 17 ++++----- .../MainWindow.xaml | 10 ----- .../MainWindow.xaml.cs | 30 --------------- ...Uno.UI.RuntimeTests.Engine.Skia.WPF.csproj | 20 +++++++--- .../Uno.UI.RuntimeTests.Engine.Wasm.csproj | 2 +- .../Uno.UI.RuntimeTests.Engine.Mobile.csproj | 30 +++++++-------- .../Program.cs | 31 ++++++++-------- ...Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj | 12 +++--- .../test/PullDevServer.csproj | 9 +++++ ...Tests.Engine.Skia.Linux.FrameBuffer.csproj | 5 ++- .../App.xaml | 3 +- .../App.xaml.cs | 37 +++++++++++++------ .../MainWindow.xaml | 10 ----- .../MainWindow.xaml.cs | 30 --------------- ...Uno.UI.RuntimeTests.Engine.Skia.Wpf.csproj | 12 +++--- .../Uno.UI.RuntimeTests.Engine.Wasm.csproj | 2 +- .../Uno.UI.RuntimeTests.Engine.Package.csproj | 2 +- 24 files changed, 149 insertions(+), 188 deletions(-) create mode 100644 src/TestApp/Directory.Build.props delete mode 100644 src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml delete mode 100644 src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml.cs create mode 100644 src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/test/PullDevServer.csproj delete mode 100644 src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml delete mode 100644 src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml.cs diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 4abf556..6cc682a 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -15,6 +15,7 @@ enable true + $(NoWarn);CS1998 diff --git a/src/TestApp/Directory.Build.props b/src/TestApp/Directory.Build.props new file mode 100644 index 0000000..d6d3a01 --- /dev/null +++ b/src/TestApp/Directory.Build.props @@ -0,0 +1,8 @@ + + + + + $(DefineConstants);IS_UNO_RUNTIMETEST_PROJECT + + + \ No newline at end of file diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj index 06a60fc..da0a191 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj @@ -1,25 +1,25 @@ - net6.0-android;net6.0-ios;net6.0-maccatalyst + net7.0-android;net7.0-ios;net7.0-maccatalyst - + true Exe - + - True + True true - 14.2 - 14.0 - 21.0 - 10.14 + 14.2 + 14.0 + 21.0 + 10.14 - iossimulator-x64 - maccatalyst-x64 - osx-x64 + iossimulator-x64 + maccatalyst-x64 + osx-x64 @@ -31,7 +31,7 @@ - + @@ -40,8 +40,8 @@ - - + + $(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep $(MtouchExtraArgs) --registrar:static @@ -52,7 +52,7 @@ - + $(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep @@ -67,7 +67,7 @@ - + link diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs index 48726c7..95a7f7a 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs @@ -1,6 +1,7 @@ using System; using GLib; using Uno.UI.Runtime.Skia; +using Uno.UI.Runtime.Skia.Gtk; namespace Uno.UI.RuntimeTests.Engine.Skia.Gtk { diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj index 21801e9..a83d392 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj @@ -1,8 +1,10 @@ - + WinExe Exe - net6.0 + net7.0 + $(WarningsNotAsErrors);Uno0001 + $(DefineConstants);__SKIA__ @@ -14,12 +16,12 @@ - - - + + + - + diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj index dd53b5f..f105242 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj @@ -1,9 +1,10 @@ - + WinExe Exe - net6.0 - $(NoWarn);Uno0001 + net7.0 + $(WarningsNotAsErrors);Uno0001 + $(DefineConstants);__SKIA__;IS_UNO_RUNTIMETEST_PROJECT diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml index 0ef813e..0606217 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml @@ -1,9 +1,7 @@ - - - + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:local="clr-namespace:Uno.UI.RuntimeTests.Engine.WPF"> + + diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml.cs b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml.cs index 596521a..cdfad1e 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml.cs +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/App.xaml.cs @@ -1,17 +1,14 @@ using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; using System.Linq; -using System.Threading.Tasks; using System.Windows; +using Uno.UI.Runtime.Skia.Wpf; -namespace Uno.UI.RuntimeTests.Engine.WPF +namespace Uno.UI.RuntimeTests.Engine.WPF; + +public partial class App : Application { - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application + public App() { + new WpfHost(Dispatcher, () => new Uno.UI.RuntimeTests.Engine.App()).Run(); } -} +} \ No newline at end of file diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml deleted file mode 100644 index 14553fb..0000000 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml +++ /dev/null @@ -1,10 +0,0 @@ - - - diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml.cs b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml.cs deleted file mode 100644 index 6a250d1..0000000 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/MainWindow.xaml.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; -using System.Windows.Shapes; - -namespace Uno.UI.RuntimeTests.Engine.WPF -{ - /// - /// Interaction logic for MainWindow.xaml - /// - public partial class MainWindow : Window - { - public MainWindow() - { - InitializeComponent(); - - root.Content = new global::Uno.UI.Skia.Platform.WpfHost(Dispatcher, () => new Uno.UI.RuntimeTests.Engine.App()); - } - } -} diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/Uno.UI.RuntimeTests.Engine.Skia.WPF.csproj b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/Uno.UI.RuntimeTests.Engine.Skia.WPF.csproj index 64d7674..52c70d9 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/Uno.UI.RuntimeTests.Engine.Skia.WPF.csproj +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Skia.WPF/Uno.UI.RuntimeTests.Engine.Skia.WPF.csproj @@ -1,9 +1,11 @@ - + WinExe Exe - net6.0-windows + net7.0-windows true + $(WarningsNotAsErrors);Uno0001 + $(DefineConstants);__SKIA__;IS_UNO_RUNTIMETEST_PROJECT @@ -18,12 +20,12 @@ - - - + + + - + @@ -32,6 +34,12 @@ + + + <_Parameter1>$(MSBuildProjectFullPath) + + + \ No newline at end of file diff --git a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj index c375aeb..5c9cf9e 100644 --- a/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj +++ b/src/TestApp/uwp/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj @@ -1,7 +1,7 @@ Exe - net6.0 + net7.0 NU1701;Uno0001 true diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj index 35b871e..37a85c9 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Mobile/Uno.UI.RuntimeTests.Engine.Mobile.csproj @@ -1,21 +1,21 @@ - net6.0-android;net6.0-ios;net6.0-maccatalyst;net6.0-macos + net7.0-android;net7.0-ios;net7.0-maccatalyst;net7.0-macos true Exe - iossimulator-x64 - maccatalyst-x64 - osx-x64 + iossimulator-x64 + maccatalyst-x64 + osx-x64 - + - + true - 14.2 - 14.0 - 21.0 - 10.14 + 14.2 + 14.0 + 21.0 + 10.14 @@ -27,7 +27,7 @@ - + @@ -36,8 +36,8 @@ - - + + $(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep $(MtouchExtraArgs) --registrar:static @@ -48,7 +48,7 @@ - + $(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep @@ -63,7 +63,7 @@ - + diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs index 5cd2ed5..ef5f735 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Program.cs @@ -1,22 +1,21 @@ using GLib; using System; -using Uno.UI.Runtime.Skia; +using Uno.UI.Runtime.Skia.Gtk; -namespace Uno.UI.RuntimeTests.Engine.Skia.Gtk +namespace Uno.UI.RuntimeTests.Engine.Skia.Gtk; + +internal class Program { - internal class Program - { - static void Main(string[] args) - { - ExceptionManager.UnhandledException += delegate (UnhandledExceptionArgs expArgs) - { - Console.WriteLine("GLIB UNHANDLED EXCEPTION" + expArgs.ExceptionObject.ToString()); - expArgs.ExitApplication = true; - }; + static void Main(string[] args) + { + ExceptionManager.UnhandledException += delegate (UnhandledExceptionArgs expArgs) + { + Console.WriteLine("GLIB UNHANDLED EXCEPTION" + expArgs.ExceptionObject.ToString()); + expArgs.ExitApplication = true; + }; - var host = new GtkHost(() => new App()); + var host = new GtkHost(() => new App()); - host.Run(); - } - } -} + host.Run(); + } +} \ No newline at end of file diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj index 69273d1..f3da05f 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/Uno.UI.RuntimeTests.Engine.Skia.Gtk.csproj @@ -2,7 +2,9 @@ WinExe Exe - net6.0 + net7.0 + $(WarningsNotAsErrors);Uno0001 + $(DefineConstants);__SKIA__ @@ -14,12 +16,12 @@ - - - + + + - + diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/test/PullDevServer.csproj b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/test/PullDevServer.csproj new file mode 100644 index 0000000..f7a2947 --- /dev/null +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Gtk/test/PullDevServer.csproj @@ -0,0 +1,9 @@ + + + Exe + net7.0 + + + + + \ No newline at end of file diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj index e2a993d..6208d5d 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer/Uno.UI.RuntimeTests.Engine.Skia.Linux.FrameBuffer.csproj @@ -2,8 +2,9 @@ WinExe Exe - net6.0 - $(NoWarn);Uno0001 + net7.0 + $(WarningsNotAsErrors);Uno0001 + $(DefineConstants);__SKIA__ diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml index 6aeb858..f554ee9 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml @@ -1,8 +1,7 @@  + xmlns:local="clr-namespace:Uno.UI.RuntimeTests.Engine.WPF"> diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml.cs b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml.cs index eb1519c..a43ee5b 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml.cs +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/App.xaml.cs @@ -1,17 +1,30 @@ using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; using System.Linq; -using System.Threading.Tasks; using System.Windows; +using Uno.UI.RemoteControl; +using Uno.UI.Runtime.Skia.Wpf; -namespace Uno.UI.RuntimeTests.Engine.WPF +namespace Uno.UI.RuntimeTests.Engine.WPF; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application { - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application - { - } -} + public App() + { + var host = new WpfHost(Dispatcher, () => new Uno.UI.RuntimeTests.Engine.App()); + host.Run(); + + if (Environment.CommandLine.Contains("--remoteControlServer")) + { + + } + + + if (RemoteControlClient.Instance is null) + { + RemoteControlClient.Initialize(typeof(App), new ServerEndpointAttribute("127.0.0.1", 443)); + } + } +} \ No newline at end of file diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml deleted file mode 100644 index ffbd31e..0000000 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml +++ /dev/null @@ -1,10 +0,0 @@ - - - diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml.cs b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml.cs deleted file mode 100644 index cd07619..0000000 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/MainWindow.xaml.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; -using System.Windows.Shapes; - -namespace Uno.UI.RuntimeTests.Engine.WPF -{ - /// - /// Interaction logic for MainWindow.xaml - /// - public partial class MainWindow : Window - { - public MainWindow() - { - InitializeComponent(); - - root.Content = new global::Uno.UI.Skia.Platform.WpfHost(Dispatcher, () => new Uno.UI.RuntimeTests.Engine.App()); - } - } -} diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/Uno.UI.RuntimeTests.Engine.Skia.Wpf.csproj b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/Uno.UI.RuntimeTests.Engine.Skia.Wpf.csproj index 2d3b373..cc53124 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/Uno.UI.RuntimeTests.Engine.Skia.Wpf.csproj +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Skia.Wpf/Uno.UI.RuntimeTests.Engine.Skia.Wpf.csproj @@ -2,8 +2,10 @@ WinExe Exe - net6.0-windows + net7.0-windows true + $(WarningsNotAsErrors);Uno0001 + $(DefineConstants);__SKIA__ @@ -18,12 +20,12 @@ - - - + + + - + diff --git a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj index 2bf367d..ed09a6c 100644 --- a/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj +++ b/src/TestApp/winui/Uno.UI.RuntimeTests.Engine.Wasm/Uno.UI.RuntimeTests.Engine.Wasm.csproj @@ -1,7 +1,7 @@ Exe - net6.0 + net7.0 NU1701;Uno0001 true diff --git a/src/Uno.UI.RuntimeTests.Engine.Package/Uno.UI.RuntimeTests.Engine.Package.csproj b/src/Uno.UI.RuntimeTests.Engine.Package/Uno.UI.RuntimeTests.Engine.Package.csproj index 6b97d37..561075d 100644 --- a/src/Uno.UI.RuntimeTests.Engine.Package/Uno.UI.RuntimeTests.Engine.Package.csproj +++ b/src/Uno.UI.RuntimeTests.Engine.Package/Uno.UI.RuntimeTests.Engine.Package.csproj @@ -14,7 +14,7 @@ - +