Skip to content

Commit

Permalink
Move the XamlStyler config to src/ (#36202)
Browse files Browse the repository at this point in the history
my never ending goal to minimize files in the root dir
  • Loading branch information
crutkas authored Dec 10, 2024
1 parent 9591950 commit 474b0cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pipelines/applyXamlStyling.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ if (-not $Passive)

if ($files.count -gt 0)
{
dotnet tool run xstyler -c "$PSScriptRoot\..\Settings.XamlStyler" -f $files
dotnet tool run xstyler -c "$PSScriptRoot\..\src\Settings.XamlStyler" -f $files
}
else
{
Expand All @@ -111,7 +111,7 @@ else

if ($files.count -gt 0)
{
dotnet tool run xstyler -p -c "$PSScriptRoot\..\Settings.XamlStyler" -f $files
dotnet tool run xstyler -p -c "$PSScriptRoot\..\src\Settings.XamlStyler" -f $files

if ($lastExitCode -eq 1)
{
Expand Down
File renamed without changes.

0 comments on commit 474b0cf

Please sign in to comment.