diff --git a/Directory.Build.props b/Directory.Build.props index a7f95ab3bd..3a2a538285 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -87,7 +87,7 @@ - true + true 10.0.18362.0 10.0.18362.0 diff --git a/e2e/Uno/.gitignore b/e2e/Uno/.gitignore new file mode 100644 index 0000000000..ac20afc195 --- /dev/null +++ b/e2e/Uno/.gitignore @@ -0,0 +1 @@ +!*.pubxml diff --git a/e2e/Uno/Directory.Build.props b/e2e/Uno/Directory.Build.props index 042177fedd..03a051974a 100644 --- a/e2e/Uno/Directory.Build.props +++ b/e2e/Uno/Directory.Build.props @@ -56,6 +56,7 @@ true + true 10.0.18362.0 10.0.18362.0 diff --git a/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-arm64.pubxml b/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-arm64.pubxml new file mode 100644 index 0000000000..b7fca9626f --- /dev/null +++ b/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-arm64.pubxml @@ -0,0 +1,22 @@ + + + + + FileSystem + arm64 + win-arm64 + bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ + true + False + False + True + + + + diff --git a/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-x64.pubxml b/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-x64.pubxml new file mode 100644 index 0000000000..ff05b4be2e --- /dev/null +++ b/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-x64.pubxml @@ -0,0 +1,22 @@ + + + + + FileSystem + x64 + win-x64 + bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ + true + False + False + True + + + + diff --git a/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-x86.pubxml b/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-x86.pubxml new file mode 100644 index 0000000000..5fcb63e6a4 --- /dev/null +++ b/e2e/Uno/HelloWorld.Windows/Properties/PublishProfiles/win-x86.pubxml @@ -0,0 +1,22 @@ + + + + + FileSystem + x86 + win-x86 + bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\ + true + False + False + True + + + + diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 4728a36de9..487a76756e 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -11,7 +11,7 @@ - + $(DefineConstants);__WASM__ @@ -25,7 +25,8 @@ net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst;net8.0-macos - $(UnoTargetFrameworks);net7.0-windows10.0.19041 + $(UnoTargetFrameworks);net8.0-windows10.0.19041 + win-x64;win-x86;win-arm64 diff --git a/src/Uno/Prism.Uno/Prism.Uno.WinUI.csproj b/src/Uno/Prism.Uno/Prism.Uno.WinUI.csproj old mode 100755 new mode 100644 index 3589cbb4b3..9be3d6224c --- a/src/Uno/Prism.Uno/Prism.Uno.WinUI.csproj +++ b/src/Uno/Prism.Uno/Prism.Uno.WinUI.csproj @@ -8,7 +8,6 @@ $(DefineConstants);HAS_WINUI $(NoWarn);1591 Prism.Uno.WinUI - true true Prism provides an implementation of a collection of design patterns that are helpful in writing well structured, maintainable, and testable XAML applications, including MVVM, dependency injection, commanding, event aggregation, and more. Prism's core functionality is a shared library targeting the .NET Framework and .NET. Features that need to be platform specific are implemented in the respective libraries for the target platform (WPF, Uno Platform, .NET MAUI and Xamarin Forms).