mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
5 lines
288 B
PowerShell
5 lines
288 B
PowerShell
|
|
$gitRoot = git rev-parse --show-toplevel
|
||
|
|
|
||
|
|
# $xamlFilesForStyler = (git ls-files "$gitRoot/**/*.xaml") -join ","
|
||
|
|
$xamlFilesForStyler = (git ls-files "$gitRoot/src/modules/cmdpal/**/*.xaml") -join ","
|
||
|
|
dotnet tool run xstyler -- -c "$gitRoot\src\Settings.XamlStyler" -f "$xamlFilesForStyler"
|