From 6d94fbc89fca2322a94b038c61822210a2158a3e Mon Sep 17 00:00:00 2001 From: Ian O'Neill Date: Mon, 17 Oct 2022 18:48:10 +0100 Subject: [PATCH] Update XamlStyler version (#14230) Updates the version of XamlStyler to one with support for .NET 6.0. The version used before this depended on .NET 3.1, [which goes out of support on 2022-12-13.](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core) This shouldn't be controversial as .NET 6.0 is included with VS 2022, unlike .NET 3.1. --- .config/dotnet-tools.json | 2 +- build/pipelines/templates/check-formatting.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 2c4e940b50..e56b4d46c5 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "XamlStyler.Console": { - "version": "3.2008.4", + "version": "3.2206.4", "commands": [ "xstyler" ] diff --git a/build/pipelines/templates/check-formatting.yml b/build/pipelines/templates/check-formatting.yml index f487a7a81c..46abca0324 100644 --- a/build/pipelines/templates/check-formatting.yml +++ b/build/pipelines/templates/check-formatting.yml @@ -2,7 +2,7 @@ jobs: - job: CodeFormatCheck displayName: Proper Code Formatting Check - pool: { vmImage: windows-2019 } + pool: { vmImage: windows-2022 } steps: - checkout: self