Uno.XamlMerge.Task 1.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Uno.XamlMerge.Task --version 1.0.0
NuGet\Install-Package Uno.XamlMerge.Task -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Uno.XamlMerge.Task" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Uno.XamlMerge.Task --version 1.0.0
#r "nuget: Uno.XamlMerge.Task, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Uno.XamlMerge.Task as a Cake Addin
#addin nuget:?package=Uno.XamlMerge.Task&version=1.0.0

// Install Uno.XamlMerge.Task as a Cake Tool
#tool nuget:?package=Uno.XamlMerge.Task&version=1.0.0

Uno.XamlMerge.Task

An msbuild task which enables the merging of WinUI XAML resource dictionaries into a single flat ResourceDictionary.

This code is derived from WinUI's BatchMergeXaml class, to be reused in any WinUI and Uno Platform Controls library.

Why merge ResourceDictionary instances ?

This task is generally used to allow for separate resource dictionary authoring (which makes them easier to load and read) to avoid impacting resources lookup runtime performance. In WinUI, ResourceDictionary resolution is performed through a graph traversal of MergedDictionaries, which generally implies that a worse case resolution can require as many lookups as there are dictionaries.

To limit the impact of the traversal, this task task takes all resource dictionaries found in a specific MSBuild item group, and merges them into a single file. This file is then generally either named Themes\Generic.xaml or referenced as a merged dictionary from another Themes\Generic.xaml file.

Using the task

Include the following block:

<PropertyGroup>
    <_Uno_XamlMerge_Task_Version>1.0.0</_Uno_XamlMerge_Task_Version>
</PropertyGroup>
<ItemGroup>
    <PackageReference Include="Uno.XamlMerge.Task" Version="$(_Uno_XamlMerge_Task_Version)" />
</ItemGroup>

Then select the resource dictionaries to be merged:

<ItemGroup>
    <XamlMergeInput Include="Styles\**\*.xaml" Exclude="Styles\Generic.xaml" />
</ItemGroup>

Note: The Exclude portion is only needed if some of your dictionaries still need to be referenced explicitly as some libraries require valid full path, such as Uno.Themes.

Then add the following block at the end your project library or app:

<Import Project="$(NuGetPackageRoot)uno.xamlmerge.task\$(_Uno_XamlMerge_Task_Version)\build\Uno.XamlMerge.Task.targets"
        Condition="'$(TargetFramework)' == '' and '$(TargetFrameworks)'!='' and exists('$(NuGetPackageRoot)\uno.xamlmerge.task\$(_Uno_XamlMerge_Task_Version)')" />

The generated file is called Generated\mergedpages.xaml by default, but can be overriden as follows:

<PropertyGroup>
    <XamlMergeOutputFile>Themes\Generic.xaml</XamlMergeOutputFile>
</PropertyGroup>

Otherwise, the generated file can be referenced as follows:

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:TestLibrary">

	<ResourceDictionary.MergedDictionaries>
		<ResourceDictionary Source="ms-appx:///REPLACE_ME/Generated/mergedpages.xaml" />
	</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

Troubleshooting

  • Make sure that all namespaces definitions across files are of the same values. (e.g. xlmns:ns1="http://site1" and xlmns:ns1="http://site2" in two different files will fail)
  • If you include the same resource dictionary (e.g. Colors.xaml) file in multiple merged files (generally used to have a file for custom brushes and colors), you can remove those multiple inclusions.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Uno.XamlMerge.Task:

Package Downloads
Nventive.View.Uno The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Nventive.View.Uno

Nventive.View.Uno.WinUI The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Nventive.View.Uno.WinUI

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Uno.XamlMerge.Task:

Repository Stars
unoplatform/uno
Build Mobile, Desktop and WebAssembly apps with C# and XAML. Today. Open source and professionally supported.
unoplatform/Uno.Themes
This library is designed to help you use the Material, Fluent or Cupertino design system with the Uno Platform
Version Downloads Last updated
1.32.0-dev.61 10,262 12/5/2023
1.31.0-dev.59 87 11/8/2023
1.30.0-dev.54 58 11/8/2023
1.29.0-dev.52 58 11/8/2023
1.28.0-dev.46 61 11/8/2023
1.27.0-dev.44 91,362 7/21/2023
1.26.0-dev.40 84,010 2/17/2023
1.25.0-dev.38 141 2/17/2023
1.24.0-dev.34 113 2/15/2023
1.23.0-dev.24 167 2/8/2023
1.22.0-dev.22 1,967 1/12/2023
1.21.0-dev.21 156 12/19/2022
1.20.0-dev.20 97 12/19/2022
1.19.0-dev.19 97 12/19/2022
1.18.0-dev.18 149 12/16/2022
1.16.0-dev.16 1,098 11/23/2022
1.15.0-dev.15 94 11/23/2022
1.14.0-dev.14 96 11/22/2022
1.1.0-dev.13 25,862 5/13/2022
1.1.0-dev.12 89,321 4/13/2022
1.1.0-dev.11 117 4/13/2022
1.1.0-dev.10 134 4/12/2022
1.1.0-dev.9 125 4/11/2022
1.1.0-dev.8 201 4/8/2022
1.1.0-dev.7 116 4/8/2022
1.1.0-dev.6 127 4/7/2022
1.1.0-dev.5 121 4/7/2022
1.1.0-dev.4 124 4/7/2022
1.1.0-dev.3 238 3/8/2022
1.1.0-dev.2 3,025 2/25/2022
1.1.0-dev.1 116 2/23/2022
1.0.0 121,154 2/8/2022
0.1.0-dev.51 12,577 1/19/2022
0.1.0-dev.50 161 1/12/2022
0.1.0-dev.48 2,855 1/10/2022
0.1.0-dev.47 7,648 1/6/2022
0.1.0-dev.46 2,592 1/5/2022
0.1.0-dev.45 144 1/5/2022
0.1.0-dev.44 136 1/4/2022
0.1.0-dev.43 133 1/4/2022
0.1.0-dev.42 185 1/3/2022
0.1.0-dev.41 502 12/14/2021
0.1.0-dev.37 149 12/14/2021

#  (2022-02-08)