batzen / XAMLTools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XAMLTools

Build status Release Issues Downloads Nuget License

Various tools for easing the development of XAML related applications.

As i only use WPF myself everything is focused on WPF, but things should work for other XAML dialects (at least in theory).

You can either use the commandline tool XAMLTools or the MSBuild version XAMLTools.MSBuild to make use of the provided functionalities.

CI builds can be consumed from appveyor.

XAMLCombine

Combines multiple XAML files to one large file.
This is useful when you want to provide one Generic.xaml instead of multiple small XAML files.
Using one large XAML file not only makes it easier to consume, but can also drastically improving loading performance.

Using the MSBuild-Task

<XAMLCombineItems Include="Themes/Controls/*.xaml">
  <TargetFile>Themes/Generic.xaml</TargetFile>
</XAMLCombineItems>

The MSBuild-Task includes the items used for combining as pages during debug builds and removes them from pages during release builds. This is done to reduce the binary size for release builds and still enable intellisense in debug builds for those XAML files.

Remarks when using Rider
To get intellisense in debug builds inside the XAML files and to prevent duplicate display of those files you have to define:

<PropertyGroup Condition="'$(IsBuildingInsideRider)' == 'True'">
  <DefaultItemExcludes>$(DefaultItemExcludes);Themes\Controls\*.xaml</DefaultItemExcludes>
</PropertyGroup>

<ItemGroup Condition="'$(IsBuildingInsideRider)' == 'True'">
  <Page Include="Themes\Controls\*.xaml" />
</ItemGroup>

Using the executable

XAMLTools accepts the following commandline parameters for the combine verb:

  • -s "Path_To_Your_SourceFile" => A file containing a new line separated list of files to combine (lines starting with # are skipped)
  • -t "Path_To_Your_Target_File.xaml"

XAMLColorSchemeGenerator

Generates color scheme XAML files while replacing certain parts of a template file.

For an example on how this tool works see the generator input and template files.

Using the MSBuild-Task

<XAMLColorSchemeGeneratorItems Include="Themes\ColorScheme.Template.xaml">
  <ParametersFile>Themes\GeneratorParameters.json</ParametersFile>
  <OutputPath>Themes\ColorSchemes</OutputPath>
</XAMLColorSchemeGeneratorItems>

Using the executable

XAMLTools accepts the following commandline parameters for the colorscheme verb:

  • -p "Path_To_Your_GeneratorParameters.json"
  • -t "Path_To_Your_ColorScheme.Template.xaml"
  • -o "Path_To_Your_Output_Folder"

About

License:MIT License


Languages

Language:C# 93.7%Language:PowerShell 3.3%Language:Shell 2.6%Language:Batchfile 0.4%