### Execute XamlStyler Tool via Git Bash Source: https://github.com/xavalon/xamlstyler/wiki/Git-Bash Runs the xstyler.exe command-line tool from the .dotnet/tools directory using Git Bash shell. This command invokes the XamlStyler utility which is used for formatting and styling XAML files. The tool must be previously installed in the user's .dotnet/tools directory. ```bash $HOME/.dotnet/tools/xstyler.exe ``` -------------------------------- ### Attribute Ordering Rule Groups Configuration Source: https://github.com/xavalon/xamlstyler/wiki/Attribute-Reordering Defines the default attribute ordering rule groups for XAML Styler. Each string element represents one group with comma-delimited attributes. DOS wildcards are supported. Attributes are ordered by group position (top to bottom) and within groups (left to right). ```text "x:Class", "xmlns, xmlns:x", "xmlns:*", "x:Key, Key, x:Name, Name, x:Uid, Uid, Title", "Grid.Row, Grid.RowSpan, Grid.Column, Grid.ColumnSpan, Canvas.Left, Canvas.Top, Canvas.Right, Canvas.Bottom", "Width, Height, MinWidth, MinHeight, MaxWidth, MaxHeight", "Margin, Padding, HorizontalAlignment, VerticalAlignment, HorizontalContentAlignment, VerticalContentAlignment, Panel.ZIndex", "*:*, *", "PageSource, PageIndex, Offset, Color, TargetName, Property, Value, StartPoint, EndPoint", "mc:Ignorable, d:IsDataSource, d:LayoutOverrides, d:IsStaticText", "Storyboard.*, From, To, Duration" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.