Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Commit b22acb2

Browse files
author
Immo Landwerth
committed
Simplify header after syncing with LCA
1 parent 5cf9e8a commit b22acb2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Microsoft.DotNet.CodeFormatting/Rules/HasCopyrightHeaderFormattingRule.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ internal sealed class HasCopyrightHeaderFormattingRule : IFormattingRule
1818
static readonly string[] CopyrightHeader =
1919
{
2020
"// Copyright (c) Microsoft. All rights reserved.",
21-
"// This code is licensed under the MIT License.",
22-
"// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR",
23-
"// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,",
24-
"// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT."
21+
"// Licensed under the MIT license. See LICENSE file in the project root for full license information."
2522
};
2623

2724
public async Task<Document> ProcessAsync(Document document, CancellationToken cancellationToken)

0 commit comments

Comments
 (0)