mirror of
https://github.com/microsoft/terminal.git
synced 2026-05-17 15:36:35 +00:00
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.
18 lines
375 B
YAML
18 lines
375 B
YAML
|
|
jobs:
|
|
- job: CodeFormatCheck
|
|
displayName: Proper Code Formatting Check
|
|
pool: { vmImage: windows-2022 }
|
|
|
|
steps:
|
|
- checkout: self
|
|
fetchDepth: 1
|
|
submodules: false
|
|
clean: true
|
|
|
|
- task: PowerShell@2
|
|
displayName: 'Code Formatting Check'
|
|
inputs:
|
|
targetType: filePath
|
|
filePath: '.\build\scripts\Invoke-FormattingCheck.ps1'
|