perf: Enable XAML trimming for reactive

This commit is contained in:
Jerome Laban 2022-11-24 11:50:01 -05:00
Родитель ae2d2db934
Коммит bbb32e9bff
3 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,4 +1,6 @@
using System.Runtime.CompilerServices;
using System.Reflection;
using System.Runtime.CompilerServices;
using Uno.Extensions.Equality;
[assembly: ImplicitKeys(IsEnabled = false)]
[assembly: AssemblyMetadata("IsTrimmable", "True")]

Просмотреть файл

@ -10,6 +10,8 @@
<EnableDefaultPageItems>false</EnableDefaultPageItems>
<DefineConstants>$(DefineConstants);WINUI</DefineConstants>
<PackageId>Uno.Extensions.Reactive.WinUI</PackageId>
<UnoXamlResourcesTrimming Condition="'$(MSBuildRuntimeType)'=='Core' and '$(Configuration)'=='Release'">true</UnoXamlResourcesTrimming>
</PropertyGroup>
<Import Project="common.props" />

Просмотреть файл

@ -8,6 +8,8 @@
<PropertyGroup>
<Description>Reactive Extensions for the Uno Platform (UWP)</Description>
<PackageId>Uno.Extensions.Reactive.UI</PackageId>
<UnoXamlResourcesTrimming Condition="'$(MSBuildRuntimeType)'=='Core' and '$(Configuration)'=='Release'">true</UnoXamlResourcesTrimming>
</PropertyGroup>
<Import Project="common.props" />