-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
269 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,71 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net7.0-ios;net7.0-android;net7.0-maccatalyst</TargetFrameworks> | ||
<SingleProject>true</SingleProject> | ||
<OutputType>Exe</OutputType> | ||
<!-- Display name --> | ||
<ApplicationTitle>HelloWorld</ApplicationTitle> | ||
<!-- App Identifier --> | ||
<ApplicationId>com.prismlibrary.unoe2e</ApplicationId> | ||
<ApplicationIdGuid>99E7FC0B-E6B5-4000-B84D-21FBA59E0E45</ApplicationIdGuid> | ||
<!-- Versions --> | ||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>1</ApplicationVersion> | ||
<PropertyGroup> | ||
<TargetFrameworks>net7.0-ios;net7.0-android;net7.0-maccatalyst</TargetFrameworks> | ||
<SingleProject>true</SingleProject> | ||
<OutputType>Exe</OutputType> | ||
<!-- Display name --> | ||
<ApplicationTitle>HelloWorld</ApplicationTitle> | ||
<!-- App Identifier --> | ||
<ApplicationId>com.prismlibrary.unoe2e</ApplicationId> | ||
<ApplicationIdGuid>99E7FC0B-E6B5-4000-B84D-21FBA59E0E45</ApplicationIdGuid> | ||
<!-- Versions --> | ||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>1</ApplicationVersion> | ||
|
||
<!-- Debugger workaround https://github.com/dotnet/maui-samples/blob/8aa6b8780b12e97b157514c3bdc54bb4a13001cd/HelloMacCatalyst/HelloMacCatalyst.csproj#L7 --> | ||
<!-- <MtouchExtraArgs Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">$(MtouchExtraArgs) -setenv:MONO_THREADS_SUSPEND=preemptive</MtouchExtraArgs> --> | ||
<!-- Required for C# Hot Reload --> | ||
<UseInterpreter Condition="'$(Configuration)' == 'Debug' and $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) != 'maccatalyst'">True</UseInterpreter> | ||
<IsUnoHead>true</IsUnoHead> | ||
</PropertyGroup> | ||
<!-- Debugger workaround https://github.com/dotnet/maui-samples/blob/8aa6b8780b12e97b157514c3bdc54bb4a13001cd/HelloMacCatalyst/HelloMacCatalyst.csproj#L7 --> | ||
<!-- <MtouchExtraArgs Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">$(MtouchExtraArgs) -setenv:MONO_THREADS_SUSPEND=preemptive</MtouchExtraArgs> --> | ||
<!-- Required for C# Hot Reload --> | ||
<UseInterpreter Condition="'$(Configuration)' == 'Debug' and $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) != 'maccatalyst'">True</UseInterpreter> | ||
<IsUnoHead>true</IsUnoHead> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Uno.WinUI" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.OSLog" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<Choose> | ||
<When Condition="$(IsAndroid)"> | ||
<ItemGroup> | ||
<PackageReference Include="Xamarin.Google.Android.Material" /> | ||
<PackageReference Include="Uno.UniversalImageLoader" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AndroidEnvironment Include="Android/environment.conf" /> | ||
</ItemGroup> | ||
</When> | ||
<When Condition="$(IsIOS)"> | ||
<PropertyGroup> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep</MtouchExtraArgs> | ||
<!-- See https://github.com/unoplatform/uno/issues/9430 for more details. --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --registrar:static</MtouchExtraArgs> | ||
<!-- https://github.com/xamarin/xamarin-macios/issues/14812 --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --marshal-objectivec-exceptions:disable</MtouchExtraArgs> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(IsMacCatalyst)"> | ||
<PropertyGroup> | ||
<!-- Configure the GC --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep</MtouchExtraArgs> | ||
<!-- Required for unknown crash as of .NET 6 Mobile Preview 13 --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --registrar:static</MtouchExtraArgs> | ||
<!-- https://github.com/xamarin/xamarin-macios/issues/14812 --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --marshal-objectivec-exceptions:disable</MtouchExtraArgs> | ||
<!-- Full globalization is required for Uno --> | ||
<InvariantGlobalization>false</InvariantGlobalization> | ||
</PropertyGroup> | ||
</When> | ||
</Choose> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
<ItemGroup> | ||
<PackageReference Include="Uno.WinUI" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.OSLog" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<Choose> | ||
<When Condition="$(IsAndroid)"> | ||
<ItemGroup> | ||
<PackageReference Include="Xamarin.Google.Android.Material" /> | ||
<PackageReference Include="Uno.UniversalImageLoader" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AndroidEnvironment Include="Android/environment.conf" /> | ||
</ItemGroup> | ||
</When> | ||
<When Condition="$(IsIOS)"> | ||
<PropertyGroup> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep</MtouchExtraArgs> | ||
<!-- See https://github.com/unoplatform/uno/issues/9430 for more details. --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --registrar:static</MtouchExtraArgs> | ||
<!-- https://github.com/xamarin/xamarin-macios/issues/14812 --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --marshal-objectivec-exceptions:disable</MtouchExtraArgs> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(IsMacCatalyst)"> | ||
<PropertyGroup> | ||
<!-- Configure the GC --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep</MtouchExtraArgs> | ||
<!-- Required for unknown crash as of .NET 6 Mobile Preview 13 --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --registrar:static</MtouchExtraArgs> | ||
<!-- https://github.com/xamarin/xamarin-macios/issues/14812 --> | ||
<MtouchExtraArgs>$(MtouchExtraArgs) --marshal-objectivec-exceptions:disable</MtouchExtraArgs> | ||
<!-- Full globalization is required for Uno --> | ||
<InvariantGlobalization>false</InvariantGlobalization> | ||
</PropertyGroup> | ||
</When> | ||
</Choose> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType> | ||
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup Condition="exists('Platforms\Windows')"> | ||
<EmbeddedResource Include="Platforms\Windows\Package.appxmanifest" LogicalName="Package.appxmanifest" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType> | ||
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup Condition="exists('Platforms\Windows')"> | ||
<EmbeddedResource Include="Platforms\Windows\Package.appxmanifest" LogicalName="Package.appxmanifest" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" /> | ||
<PackageReference Include="SkiaSharp.Skottie" /> | ||
<PackageReference Include="Uno.WinUI.Skia.Gtk" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" /> | ||
<PackageReference Include="SkiaSharp.Skottie" /> | ||
<PackageReference Include="Uno.WinUI.Skia.Gtk" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
</Project> |
52 changes: 26 additions & 26 deletions
52
e2e/Uno/HelloWorld.Skia.Linux.FrameBuffer/HelloWorld.Skia.Linux.FrameBuffer.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType> | ||
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup Condition="exists('Platforms\Windows')"> | ||
<EmbeddedResource Include="Platforms\Windows\Package.appxmanifest" LogicalName="Package.appxmanifest" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType> | ||
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup Condition="exists('Platforms\Windows')"> | ||
<EmbeddedResource Include="Platforms\Windows\Package.appxmanifest" LogicalName="Package.appxmanifest" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" /> | ||
<PackageReference Include="SkiaSharp.Skottie" /> | ||
<PackageReference Include="Uno.WinUI.Skia.Linux.FrameBuffer" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" /> | ||
<PackageReference Include="SkiaSharp.Skottie" /> | ||
<PackageReference Include="Uno.WinUI.Skia.Linux.FrameBuffer" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType> | ||
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType> | ||
<TargetFramework>net7.0-windows</TargetFramework> | ||
<UseWPF>true</UseWPF> | ||
</PropertyGroup> | ||
<ItemGroup Label="AssemblyInfo"> | ||
<AssemblyAttribute Include="System.Runtime.InteropServices.ComVisibleAttribute"> | ||
<_Parameter1>false</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Windows.ThemeInfo"> | ||
<_Parameter1>System.Windows.ResourceDictionaryLocation.None</_Parameter1> | ||
<_Parameter1_IsLiteral>true</_Parameter1_IsLiteral> | ||
<_Parameter2>System.Windows.ResourceDictionaryLocation.SourceAssembly</_Parameter2> | ||
<_Parameter2_IsLiteral>true</_Parameter2_IsLiteral> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType> | ||
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType> | ||
<TargetFramework>net7.0-windows</TargetFramework> | ||
<UseWPF>true</UseWPF> | ||
</PropertyGroup> | ||
<ItemGroup Label="AssemblyInfo"> | ||
<AssemblyAttribute Include="System.Runtime.InteropServices.ComVisibleAttribute"> | ||
<_Parameter1>false</_Parameter1> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Windows.ThemeInfo"> | ||
<_Parameter1>System.Windows.ResourceDictionaryLocation.None</_Parameter1> | ||
<_Parameter1_IsLiteral>true</_Parameter1_IsLiteral> | ||
<_Parameter2>System.Windows.ResourceDictionaryLocation.SourceAssembly</_Parameter2> | ||
<_Parameter2_IsLiteral>true</_Parameter2_IsLiteral> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" /> | ||
<PackageReference Include="SkiaSharp.Skottie" /> | ||
<PackageReference Include="Uno.WinUI.Skia.Wpf" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ApplicationDefinition Include="Wpf\App.xaml" XamlRuntime="Wpf" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" /> | ||
<PackageReference Include="SkiaSharp.Skottie" /> | ||
<PackageReference Include="Uno.WinUI.Skia.Wpf" /> | ||
<PackageReference Include="Uno.WinUI.DevServer" /> | ||
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" /> | ||
<PackageReference Include="Uno.Material.WinUI" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI.Material" /> | ||
<PackageReference Include="Uno.Toolkit.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Hosting.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.WinUI" /> | ||
<PackageReference Include="Uno.Extensions.Logging.Serilog" /> | ||
<PackageReference Include="Uno.Extensions.Core" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ApplicationDefinition Include="Wpf\App.xaml" XamlRuntime="Wpf" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\HelloWorld\HelloWorld.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\HelloWorld.Base\base.props" /> | ||
</Project> |
Oops, something went wrong.